From 117b024c855ac5626929813a7103ade6230eb8aa Mon Sep 17 00:00:00 2001 From: zleyyij <75810274+zleyyij@users.noreply.github.com> Date: Thu, 3 Oct 2024 08:02:13 -0600 Subject: [PATCH] symlinks are hard --- README.md | 3 + fish/README.md | 6 + fish/fish | 1 - fish/fish/config.fish | 6 + fish/fish/fish_variables | 32 + neovim/README.md | 5 + neovim/nvim | 1 - neovim/nvim/init.lua | 628 + neovim/nvim/lazy-lock.json | 25 + zed/zed/.tmp0OmkRc | 26 + zed/zed/.tmp1vDDGG | 3 + zed/zed/.tmp3JxEvq | 3 + zed/zed/.tmp5njjyG | 14 + zed/zed/.tmp6ImW6w | 3 + zed/zed/.tmp8cfRJd | 3 + zed/zed/.tmpCav8cy | 3 + zed/zed/.tmpCdyjUV | 206 + zed/zed/.tmpClU6tv | 3 + zed/zed/.tmpD3fT6I | 30 + zed/zed/.tmpFXlDhI | 3 + zed/zed/.tmpK6V2N2 | 26 + zed/zed/.tmpKDdDZy | 3 + zed/zed/.tmpKTgmd8 | 3 + zed/zed/.tmpMVa3jY | 6994 +++++++ zed/zed/.tmpMqNDDv | 397 + zed/zed/.tmpO88SCe | 4 + zed/zed/.tmpPnuuIZ | 3 + zed/zed/.tmpQmRyV3 | 15355 ++++++++++++++++ zed/zed/.tmpTNnDis | 253 + zed/zed/.tmpX9uuUx | 3 + zed/zed/.tmpXPn6hV | 4 + zed/zed/.tmpiXLxC5 | 3 + zed/zed/.tmpoPjE2z | 3 + zed/zed/.tmpsvmD94 | 9 + zed/zed/.tmptnQipo | 3 + zed/zed/.tmpx7oYof | 4063 ++++ .../semantic-index-db.0.mdb/data.mdb | Bin 0 -> 49152 bytes .../semantic-index-db.0.mdb/lock.mdb | Bin 0 -> 8192 bytes .../prompts/prompts-library-db.0.mdb/data.mdb | Bin 0 -> 81920 bytes .../prompts/prompts-library-db.0.mdb/lock.mdb | Bin 0 -> 8192 bytes zed/zed/settings.json | 13 + 41 files changed, 28141 insertions(+), 2 deletions(-) create mode 100644 README.md create mode 100644 fish/README.md delete mode 120000 fish/fish create mode 100644 fish/fish/config.fish create mode 100644 fish/fish/fish_variables delete mode 120000 neovim/nvim create mode 100644 neovim/nvim/init.lua create mode 100644 neovim/nvim/lazy-lock.json create mode 100644 zed/zed/.tmp0OmkRc create mode 100644 zed/zed/.tmp1vDDGG create mode 100644 zed/zed/.tmp3JxEvq create mode 100644 zed/zed/.tmp5njjyG create mode 100644 zed/zed/.tmp6ImW6w create mode 100644 zed/zed/.tmp8cfRJd create mode 100644 zed/zed/.tmpCav8cy create mode 100644 zed/zed/.tmpCdyjUV create mode 100644 zed/zed/.tmpClU6tv create mode 100644 zed/zed/.tmpD3fT6I create mode 100644 zed/zed/.tmpFXlDhI create mode 100644 zed/zed/.tmpK6V2N2 create mode 100644 zed/zed/.tmpKDdDZy create mode 100644 zed/zed/.tmpKTgmd8 create mode 100644 zed/zed/.tmpMVa3jY create mode 100644 zed/zed/.tmpMqNDDv create mode 100644 zed/zed/.tmpO88SCe create mode 100644 zed/zed/.tmpPnuuIZ create mode 100644 zed/zed/.tmpQmRyV3 create mode 100644 zed/zed/.tmpTNnDis create mode 100644 zed/zed/.tmpX9uuUx create mode 100644 zed/zed/.tmpXPn6hV create mode 100644 zed/zed/.tmpiXLxC5 create mode 100644 zed/zed/.tmpoPjE2z create mode 100644 zed/zed/.tmpsvmD94 create mode 100644 zed/zed/.tmptnQipo create mode 100644 zed/zed/.tmpx7oYof create mode 100644 zed/zed/embeddings/semantic-index-db.0.mdb/data.mdb create mode 100644 zed/zed/embeddings/semantic-index-db.0.mdb/lock.mdb create mode 100644 zed/zed/prompts/prompts-library-db.0.mdb/data.mdb create mode 100644 zed/zed/prompts/prompts-library-db.0.mdb/lock.mdb create mode 100644 zed/zed/settings.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..59c7b3d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +Config files for various applications + +## TODO: create a justfile for managing everything diff --git a/fish/README.md b/fish/README.md new file mode 100644 index 0000000..2821583 --- /dev/null +++ b/fish/README.md @@ -0,0 +1,6 @@ +My config files for the fish shell. + +Install using +``` +ln -s $PWD/fish ~/.config/fish +``` diff --git a/fish/fish b/fish/fish deleted file mode 120000 index a63c959..0000000 --- a/fish/fish +++ /dev/null @@ -1 +0,0 @@ -/Users/arc/.config/fish/ \ No newline at end of file diff --git a/fish/fish/config.fish b/fish/fish/config.fish new file mode 100644 index 0000000..fa701c8 --- /dev/null +++ b/fish/fish/config.fish @@ -0,0 +1,6 @@ +if status is-interactive + # Commands to run in interactive sessions can go here +end + +setenv FZF_DEFAULT_COMMAND 'fd --type file --follow' +setenv FZF_CTRL_T_COMMAND 'fd --type file --follow' diff --git a/fish/fish/fish_variables b/fish/fish/fish_variables new file mode 100644 index 0000000..9c38a68 --- /dev/null +++ b/fish/fish/fish_variables @@ -0,0 +1,32 @@ +# This file contains fish universal variable definitions. +# VERSION: 3.0 +SETUVAR __fish_initialized:3400 +SETUVAR fish_color_autosuggestion:brblack +SETUVAR fish_color_cancel:\x2dr +SETUVAR fish_color_command:blue +SETUVAR fish_color_comment:red +SETUVAR fish_color_cwd:green +SETUVAR fish_color_cwd_root:red +SETUVAR fish_color_end:green +SETUVAR fish_color_error:brred +SETUVAR fish_color_escape:brcyan +SETUVAR fish_color_history_current:\x2d\x2dbold +SETUVAR fish_color_host:normal +SETUVAR fish_color_host_remote:yellow +SETUVAR fish_color_normal:normal +SETUVAR fish_color_operator:brcyan +SETUVAR fish_color_param:cyan +SETUVAR fish_color_quote:yellow +SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold +SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_status:red +SETUVAR fish_color_user:brgreen +SETUVAR fish_color_valid_path:\x2d\x2dunderline +SETUVAR fish_key_bindings:fish_default_key_bindings +SETUVAR fish_pager_color_completion:normal +SETUVAR fish_pager_color_description:yellow\x1e\x2di +SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline +SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan +SETUVAR fish_pager_color_selected_background:\x2dr +SETUVAR fish_user_paths:/opt/homebrew/opt/php\x408\x2e1/bin\x1e/Users/arc/\x2ecargo/bin\x1e/opt/homebrew/bin diff --git a/neovim/README.md b/neovim/README.md index 8fa5921..285b257 100644 --- a/neovim/README.md +++ b/neovim/README.md @@ -1,5 +1,10 @@ This config should be located at `~/.config/nvim/init.lua`. +Install this config with: +``` +ln -s $PWD/nvim/ ~/.config/nvim +``` + Dependencies can be installed (via brew) with: ``` brew install fzf bat ripgrep the_silver_searcher perl universal-ctags fd diff --git a/neovim/nvim b/neovim/nvim deleted file mode 120000 index 86f7bbe..0000000 --- a/neovim/nvim +++ /dev/null @@ -1 +0,0 @@ -/Users/arc/.config/nvim/ \ No newline at end of file diff --git a/neovim/nvim/init.lua b/neovim/nvim/init.lua new file mode 100644 index 0000000..1d980f0 --- /dev/null +++ b/neovim/nvim/init.lua @@ -0,0 +1,628 @@ +-- always set leader first! +vim.keymap.set("n", "", "", { silent = true }) +vim.g.mapleader = " " + +------------------------------------------------------------------------------- +-- +-- preferences +-- +------------------------------------------------------------------------------- +-- never ever folding +vim.opt.foldenable = false +vim.opt.foldmethod = 'manual' +vim.opt.foldlevelstart = 99 +-- very basic "continue indent" mode (autoindent) is always on in neovim +-- could try smartindent/cindent, but meh. +-- vim.opt.cindent = true +-- XXX +-- vim.opt.cmdheight = 2 +-- vim.opt.completeopt = 'menuone,noinsert,noselect' +-- not setting updatedtime because I use K to manually trigger hover effects +-- and lowering it also changes how frequently files are written to swap. +-- vim.opt.updatetime = 300 +-- if key combos seem to be "lagging" +-- http://stackoverflow.com/questions/2158516/delay-before-o-opens-a-new-line +-- vim.opt.timeoutlen = 300 +-- keep more context on screen while scrolling +vim.opt.scrolloff = 2 +-- never show me line breaks if they're not there +vim.opt.wrap = false +-- always draw sign column. prevents buffer moving when adding/deleting sign +vim.opt.signcolumn = 'yes' +-- sweet sweet relative line numbers +vim.opt.relativenumber = true +-- and show the absolute line number for the current line +vim.opt.number = true +-- keep current content top + left when splitting +vim.opt.splitright = true +vim.opt.splitbelow = true +-- infinite undo! +-- NOTE: ends up in ~/.local/state/nvim/undo/ +vim.opt.undofile = true +--" Decent wildmenu +-- in completion, when there is more than one match, +-- list all matches, and only complete to longest common match +vim.opt.wildmode = 'list:longest' +-- when opening a file with a command (like :e), +-- don't suggest files like there: +vim.opt.wildignore = '.hg,.svn,*~,*.png,*.jpg,*.gif,*.min.js,*.swp,*.o,vendor,dist,_site' +-- tabs: go big or go home +vim.opt.shiftwidth = 4 +vim.opt.softtabstop = 4 +vim.opt.tabstop = 8 +vim.opt.expandtab = false +-- case-insensitive search/replace +vim.opt.ignorecase = true +-- unless uppercase in search term +vim.opt.smartcase = true +-- never ever make my terminal beep +vim.opt.vb = true +-- more useful diffs (nvim -d) +--- by ignoring whitespace +vim.opt.diffopt:append('iwhite') +--- and using a smarter algorithm +--- https://vimways.org/2018/the-power-of-diff/ +--- https://stackoverflow.com/questions/32365271/whats-the-difference-between-git-diff-patience-and-git-diff-histogram +--- https://luppeng.wordpress.com/2020/10/10/when-to-use-each-of-the-git-diff-algorithms/ +vim.opt.diffopt:append('algorithm:histogram') +vim.opt.diffopt:append('indent-heuristic') +-- show a column at 80 characters as a guide for long lines +vim.opt.colorcolumn = '80' +--- except in Rust where the rule is 100 characters +vim.api.nvim_create_autocmd('Filetype', { pattern = 'rust', command = 'set colorcolumn=100' }) +-- show more hidden characters +-- also, show tabs nicer +vim.opt.listchars = 'tab:^ ,nbsp:¬,extends:»,precedes:«,trail:•' + +------------------------------------------------------------------------------- +-- +-- hotkeys +-- +------------------------------------------------------------------------------- +-- quick-open +-- Replaced with FZF instead of Files because files pulls up empty for some reason - 2024-10-2 +vim.keymap.set('', '', 'FZF') + -- vim.keymap.set('', '', 'Files') +-- search buffers +vim.keymap.set('n', ';', 'Buffers') +-- quick-save +vim.keymap.set('n', 'w', 'w') +-- make missing : less annoying +vim.keymap.set('n', ';', ':') +-- Ctrl+j and Ctrl+k as Esc +vim.keymap.set('n', '', '') +vim.keymap.set('i', '', '') +vim.keymap.set('v', '', '') +vim.keymap.set('s', '', '') +vim.keymap.set('x', '', '') +vim.keymap.set('c', '', '') +vim.keymap.set('o', '', '') +vim.keymap.set('l', '', '') +vim.keymap.set('t', '', '') +-- Ctrl-j is a little awkward unfortunately: +-- https://github.com/neovim/neovim/issues/5916 +-- So we also map Ctrl+k +vim.keymap.set('n', '', '') +vim.keymap.set('i', '', '') +vim.keymap.set('v', '', '') +vim.keymap.set('s', '', '') +vim.keymap.set('x', '', '') +vim.keymap.set('c', '', '') +vim.keymap.set('o', '', '') +vim.keymap.set('l', '', '') +vim.keymap.set('t', '', '') +-- Ctrl+h to stop searching +vim.keymap.set('v', '', 'nohlsearch') +vim.keymap.set('n', '', 'nohlsearch') +-- Jump to start and end of line using the home row keys +vim.keymap.set('', 'H', '^') +vim.keymap.set('', 'L', '$') +-- Neat X clipboard integration +-- p will paste clipboard into buffer +-- c will copy entire buffer into clipboard +vim.keymap.set('n', 'p', 'read !wl-paste') +-- toggles between buffers +vim.keymap.set('n', '', '') +-- , shows/hides hidden characters +vim.keymap.set('n', ',', ':set invlist') +-- always center search results +vim.keymap.set('n', 'n', 'nzz', { silent = true }) +vim.keymap.set('n', 'N', 'Nzz', { silent = true }) +vim.keymap.set('n', '*', '*zz', { silent = true }) +vim.keymap.set('n', '#', '#zz', { silent = true }) +vim.keymap.set('n', 'g*', 'g*zz', { silent = true }) +-- "very magic" (less escaping needed) regexes by default +vim.keymap.set('n', '?', '?\\v') +vim.keymap.set('n', '/', '/\\v') +vim.keymap.set('c', '%s/', '%sm/') +-- open new file adjacent to current file +vim.keymap.set('n', 'o', ':e =expand("%:p:h") . "/" ') +-- no arrow keys --- force yourself to use the home row +vim.keymap.set('n', '', '') +vim.keymap.set('n', '', '') +vim.keymap.set('i', '', '') +vim.keymap.set('i', '', '') +vim.keymap.set('i', '', '') +vim.keymap.set('i', '', '') +-- let the left and right arrows be useful: they can switch buffers +vim.keymap.set('n', '', ':bp') +vim.keymap.set('n', '', ':bn') +-- make j and k move by visual line, not actual line, when text is soft-wrapped +vim.keymap.set('n', 'j', 'gj') +vim.keymap.set('n', 'k', 'gk') +-- handy keymap for replacing up to next _ (like in variable names) +vim.keymap.set('n', 'm', 'ct_') +-- F1 is pretty close to Esc, so you probably meant Esc +vim.keymap.set('', '', '') +vim.keymap.set('i', '', '') + +-- Use f2 to rename symbol (arc) - 2024-10-02 +vim.keymap.set('n', '', function () vim.lsp.buf.rename() end) +------------------------------------------------------------------------------- +-- +-- autocommands +-- +------------------------------------------------------------------------------- +-- highlight yanked text +vim.api.nvim_create_autocmd( + 'TextYankPost', + { + pattern = '*', + command = 'silent! lua vim.highlight.on_yank({ timeout = 500 })' + } +) +-- jump to last edit position on opening file +vim.api.nvim_create_autocmd( + 'BufReadPost', + { + pattern = '*', + callback = function(ev) + if vim.fn.line("'\"") > 1 and vim.fn.line("'\"") <= vim.fn.line("$") then + -- except for in git commit messages + -- https://stackoverflow.com/questions/31449496/vim-ignore-specifc-file-in-autocommand + if not vim.fn.expand('%:p'):find('.git', 1, true) then + vim.cmd('exe "normal! g\'\\""') + end + end + end + } +) +-- prevent accidental writes to buffers that shouldn't be edited +vim.api.nvim_create_autocmd('BufRead', { pattern = '*.orig', command = 'set readonly' }) +vim.api.nvim_create_autocmd('BufRead', { pattern = '*.pacnew', command = 'set readonly' }) +-- leave paste mode when leaving insert mode (if it was on) +vim.api.nvim_create_autocmd('InsertLeave', { pattern = '*', command = 'set nopaste' }) +-- help filetype detection (add as needed) +--vim.api.nvim_create_autocmd('BufRead', { pattern = '*.ext', command = 'set filetype=someft' }) +-- correctly classify mutt buffers +local email = vim.api.nvim_create_augroup('email', { clear = true }) +vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, { + pattern = '/tmp/mutt*', + group = email, + command = 'setfiletype mail', +}) +-- also, produce "flowed text" wrapping +-- https://brianbuccola.com/line-breaks-in-mutt-and-vim/ +vim.api.nvim_create_autocmd('Filetype', { + pattern = 'mail', + group = email, + command = 'setlocal formatoptions+=w', +}) +-- shorter columns in text because it reads better that way +local text = vim.api.nvim_create_augroup('text', { clear = true }) +for _, pat in ipairs({'text', 'markdown', 'mail', 'gitcommit'}) do + vim.api.nvim_create_autocmd('Filetype', { + pattern = pat, + group = text, + command = 'setlocal spell tw=72 colorcolumn=73', + }) +end +--- tex has so much syntax that a little wider is ok +vim.api.nvim_create_autocmd('Filetype', { + pattern = 'tex', + group = text, + command = 'setlocal spell tw=80 colorcolumn=81', +}) +-- TODO: no autocomplete in text + +------------------------------------------------------------------------------- +-- +-- plugin configuration +-- +------------------------------------------------------------------------------- +-- first, grab the manager +-- https://github.com/folke/lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "https://github.com/folke/lazy.nvim.git", + "--branch=stable", -- latest stable release + lazypath, + }) +end +vim.opt.rtp:prepend(lazypath) +-- then, setup! +require("lazy").setup({ + -- main color scheme + { + "wincent/base16-nvim", + lazy = false, -- load at start + priority = 1000, -- load first + config = function() + vim.cmd([[colorscheme base16-gruvbox-dark-hard]]) + vim.o.background = 'dark' + -- XXX: hi Normal ctermbg=NONE + -- Make comments more prominent -- they are important. + local bools = vim.api.nvim_get_hl(0, { name = 'Boolean' }) + vim.api.nvim_set_hl(0, 'Comment', bools) + -- Make it clearly visible which argument we're at. + local marked = vim.api.nvim_get_hl(0, { name = 'PMenu' }) + vim.api.nvim_set_hl(0, 'LspSignatureActiveParameter', { fg = marked.fg, bg = marked.bg, ctermfg = marked.ctermfg, ctermbg = marked.ctermbg, bold = true }) + -- XXX + -- Would be nice to customize the highlighting of warnings and the like to make + -- them less glaring. But alas + -- https://github.com/nvim-lua/lsp_extensions.nvim/issues/21 + -- call Base16hi("CocHintSign", g:base16_gui03, "", g:base16_cterm03, "", "", "") + end + }, + -- nice bar at the bottom + { + 'itchyny/lightline.vim', + lazy = false, -- also load at start since it's UI + config = function() + -- no need to also show mode in cmd line when we have bar + vim.o.showmode = false + vim.g.lightline = { + active = { + left = { + { 'mode', 'paste' }, + { 'readonly', 'filename', 'modified' } + }, + right = { + { 'lineinfo' }, + { 'percent' }, + { 'fileencoding', 'filetype' } + }, + }, + component_function = { + filename = 'LightlineFilename' + }, + } + function LightlineFilenameInLua(opts) + if vim.fn.expand('%:t') == '' then + return '[No Name]' + else + return vim.fn.getreg('%') + end + end + -- https://github.com/itchyny/lightline.vim/issues/657 + vim.api.nvim_exec( + [[ + function! g:LightlineFilename() + return v:lua.LightlineFilenameInLua() + endfunction + ]], + true + ) + end + }, + -- quick navigation + { + 'ggandor/leap.nvim', + config = function() + require('leap').create_default_mappings() + end + }, + -- better % + { + 'andymass/vim-matchup', + config = function() + vim.g.matchup_matchparen_offscreen = { method = "popup" } + end + }, + -- auto-cd to root of git project + -- 'airblade/vim-rooter' + { + 'notjedi/nvim-rooter.lua', + config = function() + require('nvim-rooter').setup() + end + }, + -- fzf support for ^p + { + 'junegunn/fzf.vim', + -- dependencies = { + -- { 'junegunn/fzf', dir = '~/.fzf', build = './install --all' }, + -- }, + config = function() + -- stop putting a giant window over my editor + vim.g.fzf_layout = { down = '~20%' } + -- when using :Files, pass the file list through + -- + -- https://github.com/jonhoo/proximity-sort + -- + -- to prefer files closer to the current file. + function list_cmd() + local base = vim.fn.fnamemodify(vim.fn.expand('%'), ':h:.:S') + if base == '.' then + -- if there is no current file, + -- proximity-sort can't do its thing + return 'fd --type file --follow' + else + return vim.fn.printf('fd --type file --follow | proximity-sort %s', vim.fn.shellescape(vim.fn.expand('%'))) + end + end + vim.api.nvim_create_user_command('Files', function(arg) + vim.fn['fzf#vim#files'](arg.qargs, { source = list_cmd(), options = '--tiebreak=index' }, arg.bang) + end, { bang = true, nargs = '?', complete = "dir" }) + end + }, + { + 'junegunn/fzf' + }, + -- LSP + { + 'neovim/nvim-lspconfig', + config = function() + -- Setup language servers. + local lspconfig = require('lspconfig') + + -- Rust + lspconfig.rust_analyzer.setup { + -- Server-specific settings. See `:help lspconfig-setup` + settings = { + ["rust-analyzer"] = { + cargo = { + allFeatures = true, + }, + imports = { + group = { + enable = false, + }, + }, + completion = { + postfix = { + enable = false, + }, + }, + }, + }, + } + + -- C + lspconfig.clangd.setup {} + + -- Bash LSP + local configs = require 'lspconfig.configs' + if not configs.bash_lsp and vim.fn.executable('bash-language-server') == 1 then + configs.bash_lsp = { + default_config = { + cmd = { 'bash-language-server', 'start' }, + filetypes = { 'sh' }, + root_dir = require('lspconfig').util.find_git_ancestor, + init_options = { + settings = { + args = {} + } + } + } + } + end + if configs.bash_lsp then + lspconfig.bash_lsp.setup {} + end + + -- Global mappings. + -- See `:help vim.diagnostic.*` for documentation on any of the below functions + vim.keymap.set('n', 'e', vim.diagnostic.open_float) + vim.keymap.set('n', '[d', vim.diagnostic.goto_prev) + vim.keymap.set('n', ']d', vim.diagnostic.goto_next) + vim.keymap.set('n', 'q', vim.diagnostic.setloclist) + + -- Use LspAttach autocommand to only map the following keys + -- after the language server attaches to the current buffer + vim.api.nvim_create_autocmd('LspAttach', { + group = vim.api.nvim_create_augroup('UserLspConfig', {}), + callback = function(ev) + -- Enable completion triggered by + vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc' + + -- Buffer local mappings. + -- See `:help vim.lsp.*` for documentation on any of the below functions + local opts = { buffer = ev.buf } + vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, opts) + vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts) + vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts) + vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, opts) + vim.keymap.set('n', '', vim.lsp.buf.signature_help, opts) + vim.keymap.set('n', 'wa', vim.lsp.buf.add_workspace_folder, opts) + vim.keymap.set('n', 'wr', vim.lsp.buf.remove_workspace_folder, opts) + vim.keymap.set('n', 'wl', function() + print(vim.inspect(vim.lsp.buf.list_workspace_folders())) + end, opts) + --vim.keymap.set('n', 'D', vim.lsp.buf.type_definition, opts) + vim.keymap.set('n', 'r', vim.lsp.buf.rename, opts) + vim.keymap.set({ 'n', 'v' }, 'a', vim.lsp.buf.code_action, opts) + vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts) + vim.keymap.set('n', 'f', function() + vim.lsp.buf.format { async = true } + end, opts) + + local client = vim.lsp.get_client_by_id(ev.data.client_id) + + -- When https://neovim.io/doc/user/lsp.html#lsp-inlay_hint stabilizes + -- *and* there's some way to make it only apply to the current line. + -- if client.server_capabilities.inlayHintProvider then + -- vim.lsp.inlay_hint(ev.buf, true) + -- end + + -- None of this semantics tokens business. + -- https://www.reddit.com/r/neovim/comments/143efmd/is_it_possible_to_disable_treesitter_completely/ + client.server_capabilities.semanticTokensProvider = nil + end, + }) + end + }, + -- LSP-based code-completion + { + "hrsh7th/nvim-cmp", + -- load cmp on InsertEnter + event = "InsertEnter", + -- these dependencies will only be loaded when cmp loads + -- dependencies are always lazy-loaded unless specified otherwise + dependencies = { + 'neovim/nvim-lspconfig', + "hrsh7th/cmp-nvim-lsp", + "hrsh7th/cmp-buffer", + "hrsh7th/cmp-path", + }, + config = function() + local cmp = require'cmp' + cmp.setup({ + snippet = { + -- REQUIRED by nvim-cmp. get rid of it once we can + expand = function(args) + vim.fn["vsnip#anonymous"](args.body) + end, + }, + mapping = cmp.mapping.preset.insert({ + [''] = cmp.mapping.scroll_docs(-4), + [''] = cmp.mapping.scroll_docs(4), + [''] = cmp.mapping.complete(), + [''] = cmp.mapping.abort(), + -- Accept currently selected item. + -- Set `select` to `false` to only confirm explicitly selected items. + [''] = cmp.mapping.confirm({ select = true }), + }), + sources = cmp.config.sources({ + { name = 'nvim_lsp' }, + }, { + { name = 'path' }, + }), + experimental = { + ghost_text = true, + }, + }) + + -- Enable completing paths in : + cmp.setup.cmdline(':', { + sources = cmp.config.sources({ + { name = 'path' } + }) + }) + end + }, + -- inline function signatures + { + "ray-x/lsp_signature.nvim", + event = "VeryLazy", + opts = {}, + config = function(_, opts) + -- Get signatures (and _only_ signatures) when in argument lists. + require "lsp_signature".setup({ + doc_lines = 0, + handler_opts = { + border = "none" + }, + }) + end + }, + -- language support + -- terraform + { + 'hashivim/vim-terraform', + ft = { "terraform" }, + }, + -- svelte + { + 'evanleck/vim-svelte', + ft = { "svelte" }, + }, + -- toml + 'cespare/vim-toml', + -- yaml + { + "cuducos/yaml.nvim", + ft = { "yaml" }, + dependencies = { + "nvim-treesitter/nvim-treesitter", + }, + }, + -- rust + { + 'rust-lang/rust.vim', + ft = { "rust" }, + config = function() + vim.g.rustfmt_autosave = 1 + vim.g.rustfmt_emit_files = 1 + vim.g.rustfmt_fail_silently = 0 + vim.g.rust_clip_command = 'wl-copy' + end + }, + -- C + -- { + -- 'clangd.nvim', + -- ft = { "C" }, + -- }, + -- fish + 'khaveesh/vim-fish-syntax', + -- markdown + { + 'plasticboy/vim-markdown', + ft = { "markdown" }, + dependencies = { + 'godlygeek/tabular', + }, + config = function() + -- never ever fold! + vim.g.vim_markdown_folding_disabled = 1 + -- support front-matter in .md files + vim.g.vim_markdown_frontmatter = 1 + -- 'o' on a list item should insert at same level + vim.g.vim_markdown_new_list_item_indent = 0 + -- don't add bullets when wrapping: + -- https://github.com/preservim/vim-markdown/issues/232 + vim.g.vim_markdown_auto_insert_bullets = 0 + end + }, +}) + +--[[ + +leftover things from init.vim that i may still end up wanting + +" Completion +" Better completion +" menuone: popup even when there's only one match +" noinsert: Do not insert text until a selection is made +" noselect: Do not select, force user to select one from the menu +set completeopt=menuone,noinsert,noselect + +" Settings needed for .lvimrc +set exrc +set secure + +" Wrapping options +set formatoptions=tc " wrap text and comments using textwidth +set formatoptions+=r " continue comments when pressing ENTER in I mode +set formatoptions+=q " enable formatting of comments with gq +set formatoptions+=n " detect lists for formatting +set formatoptions+=b " auto-wrap in insert mode, and do not wrap old long lines + +" s for Rg search +noremap s :Rg +let g:fzf_layout = { 'down': '~20%' } +command! -bang -nargs=* Rg +\ call fzf#vim#grep( +\ 'rg --column --line-number --no-heading --color=always '.shellescape(), 1, +\ 0 ? fzf#vim#with_preview('up:60%') +\ : fzf#vim#with_preview('right:50%:hidden', '?'), +\ 0) + +" q shows stats +nnoremap q g + +--]] diff --git a/neovim/nvim/lazy-lock.json b/neovim/nvim/lazy-lock.json new file mode 100644 index 0000000..1609195 --- /dev/null +++ b/neovim/nvim/lazy-lock.json @@ -0,0 +1,25 @@ +{ + "base16-nvim": { "branch": "main", "commit": "7dcb960acba2f0a662e8d1026464c4959645caab" }, + "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, + "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, + "fzf": { "branch": "master", "commit": "e76aa37fd402f994ff194a02e47576fba928e8f4" }, + "fzf.vim": { "branch": "master", "commit": "ec75ffbfd50630bf2b8d444d89487e149bacf7f3" }, + "lazy.nvim": { "branch": "main", "commit": "1159bdccd8910a0fd0914b24d6c3d186689023d9" }, + "leap.nvim": { "branch": "main", "commit": "c6bfb191f1161fbabace1f36f578a20ac6c7642c" }, + "lightline.vim": { "branch": "master", "commit": "d6a07ea376a4b7372aa59e7ea6a051c9470bb4d0" }, + "lsp_signature.nvim": { "branch": "master", "commit": "fc38521ea4d9ec8dbd4c2819ba8126cea743943b" }, + "nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" }, + "nvim-lspconfig": { "branch": "master", "commit": "8868928d20b392e24dafaafff8c1d75167726fbe" }, + "nvim-rooter.lua": { "branch": "main", "commit": "36c597962c5f136d6230f53837ff14fcaf81eff7" }, + "nvim-treesitter": { "branch": "master", "commit": "98a33cc524c85a78a1ff5a707998629b24cbf8c2" }, + "rust.vim": { "branch": "master", "commit": "889b9a7515db477f4cb6808bef1769e53493c578" }, + "tabular": { "branch": "master", "commit": "12437cd1b53488e24936ec4b091c9324cafee311" }, + "vim-fish-syntax": { "branch": "master", "commit": "e229becbf4bbee21cc78cd2cf24f57112e33c02a" }, + "vim-markdown": { "branch": "master", "commit": "8f6cb3a6ca4e3b6bcda0730145a0b700f3481b51" }, + "vim-matchup": { "branch": "master", "commit": "1975afe63198ab6a0dff7200919828e5cd4330b9" }, + "vim-svelte": { "branch": "main", "commit": "0e93ec53c3667753237282926fec626785622c1c" }, + "vim-terraform": { "branch": "master", "commit": "24de93afb05078bac6a2e966402cc1f672277708" }, + "vim-toml": { "branch": "main", "commit": "d36caa6b1cf508a4df1c691f915572fc02143258" }, + "yaml.nvim": { "branch": "main", "commit": "615985c1886644a4b2c0eebf985c1d1ae8257dd1" } +} diff --git a/zed/zed/.tmp0OmkRc b/zed/zed/.tmp0OmkRc new file mode 100644 index 0000000..f1e2e4a --- /dev/null +++ b/zed/zed/.tmp0OmkRc @@ -0,0 +1,26 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239975,"type":"Memory","memory_in_bytes":107872256,"virtual_memory_in_bytes":455635730432} +{"signed_in":false,"milliseconds_since_first_event":239975,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":108003328,"virtual_memory_in_bytes":455635730432} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006428342,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":108003328,"virtual_memory_in_bytes":455635730432} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.00073594,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":108003328,"virtual_memory_in_bytes":455635730432} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008150622,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":74301440,"virtual_memory_in_bytes":455635730432} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0016862123,"core_count":10} diff --git a/zed/zed/.tmp1vDDGG b/zed/zed/.tmp1vDDGG new file mode 100644 index 0000000..98d7da2 --- /dev/null +++ b/zed/zed/.tmp1vDDGG @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":21,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":21,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmp3JxEvq b/zed/zed/.tmp3JxEvq new file mode 100644 index 0000000..419d941 --- /dev/null +++ b/zed/zed/.tmp3JxEvq @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmp5njjyG b/zed/zed/.tmp5njjyG new file mode 100644 index 0000000..091023c --- /dev/null +++ b/zed/zed/.tmp5njjyG @@ -0,0 +1,14 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"svelte","version":"0.0.1"} +{"signed_in":false,"milliseconds_since_first_event":134,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Memory","memory_in_bytes":69025792,"virtual_memory_in_bytes":458987192320} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":74825728,"virtual_memory_in_bytes":458987192320} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1321039,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":77529088,"virtual_memory_in_bytes":458987192320} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":1.0512534,"core_count":10} diff --git a/zed/zed/.tmp6ImW6w b/zed/zed/.tmp6ImW6w new file mode 100644 index 0000000..419d941 --- /dev/null +++ b/zed/zed/.tmp6ImW6w @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmp8cfRJd b/zed/zed/.tmp8cfRJd new file mode 100644 index 0000000..09c5e89 --- /dev/null +++ b/zed/zed/.tmp8cfRJd @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpCav8cy b/zed/zed/.tmpCav8cy new file mode 100644 index 0000000..09c5e89 --- /dev/null +++ b/zed/zed/.tmpCav8cy @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpCdyjUV b/zed/zed/.tmpCdyjUV new file mode 100644 index 0000000..1ca4c3c --- /dev/null +++ b/zed/zed/.tmpCdyjUV @@ -0,0 +1,206 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"svelte","version":"0.0.1"} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":69807,"type":"Action","source":"command palette","action":"auto update: view release notes"} +{"signed_in":false,"milliseconds_since_first_event":190194,"type":"Edit","duration":29574,"environment":"terminal"} +{"signed_in":false,"milliseconds_since_first_event":197304,"type":"App","operation":"open node project"} +{"signed_in":false,"milliseconds_since_first_event":207391,"type":"Editor","operation":"open","file_extension":"md","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Memory","memory_in_bytes":160219136,"virtual_memory_in_bytes":459119411200} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":139771904,"virtual_memory_in_bytes":459119411200} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":4.29031,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239984,"type":"Memory","memory_in_bytes":107937792,"virtual_memory_in_bytes":459119411200} +{"signed_in":false,"milliseconds_since_first_event":239984,"type":"Cpu","usage_as_percentage":4.267286,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":132284416,"virtual_memory_in_bytes":459127242752} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":5.6793556,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":126697472,"virtual_memory_in_bytes":459067015168} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":6.1360116,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":121470976,"virtual_memory_in_bytes":459067015168} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":5.685151,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":124108800,"virtual_memory_in_bytes":459186520064} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":3.9884102,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":112361472,"virtual_memory_in_bytes":459186520064} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.100315966,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":111771648,"virtual_memory_in_bytes":459186520064} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.09144924,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":107757568,"virtual_memory_in_bytes":459186520064} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09641249,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":100827136,"virtual_memory_in_bytes":459186520064} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.08918631,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98992128,"virtual_memory_in_bytes":459186520064} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09590895,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":90259456,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.08928309,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":87048192,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09208401,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":86704128,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.088516906,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":86786048,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09964407,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":86016000,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.087937705,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85999616,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09487158,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":85950464,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.08722885,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85704704,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09528567,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":85704704,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.08966986,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85639168,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.09247447,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":85590016,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.08973533,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85655552,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.094410166,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":85606400,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0901197,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85606400,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09192571,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":85622784,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.091374286,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85295104,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09546043,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":85213184,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.089419074,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":85213184,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09145535,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":83755008,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.09433377,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83836928,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09284008,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":83787776,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.09082701,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83787776,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09336463,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239980,"type":"Memory","memory_in_bytes":83591168,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":239980,"type":"Cpu","usage_as_percentage":0.092994794,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83705856,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09523082,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":83656704,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.09025003,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83722240,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0958733,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":83722240,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.08955254,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83689472,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09555193,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239988,"type":"Memory","memory_in_bytes":83476480,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":239988,"type":"Cpu","usage_as_percentage":0.08958054,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83329024,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09634588,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":81756160,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.09177617,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83345408,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.096235536,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":83361792,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.09141334,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83689472,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.097608134,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240022,"type":"Memory","memory_in_bytes":84230144,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240022,"type":"Cpu","usage_as_percentage":0.08960657,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84246528,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.094423056,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":84246528,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.08926473,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84246528,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09690963,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":84246528,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.08882345,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84246528,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.095279075,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Memory","memory_in_bytes":84246528,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Cpu","usage_as_percentage":0.09090394,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84262912,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09480435,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":84230144,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.089482546,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84230144,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09204963,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":84230144,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.09058595,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83263488,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09361135,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Memory","memory_in_bytes":83197952,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Cpu","usage_as_percentage":0.09078877,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83427328,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09488347,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":83656704,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0924223,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84377600,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.096343115,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":84377600,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.090662725,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84361216,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0959474,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239979,"type":"Memory","memory_in_bytes":84426752,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":239979,"type":"Cpu","usage_as_percentage":0.09261605,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83918848,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0948493,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":83918848,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.09125937,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84377600,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.098038234,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":84328448,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.091735944,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83836928,"virtual_memory_in_bytes":459176869888} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09329751,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":45940736,"virtual_memory_in_bytes":459176296448} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.09079187,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":47022080,"virtual_memory_in_bytes":459176296448} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.089787066,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":11407939,"type":"Memory","memory_in_bytes":64208896,"virtual_memory_in_bytes":459122327552} +{"signed_in":false,"milliseconds_since_first_event":11407939,"type":"Cpu","usage_as_percentage":0.26680782,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":66551808,"virtual_memory_in_bytes":459122327552} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":5.9363,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":60293120,"virtual_memory_in_bytes":459121754112} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":5.907237,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":69435392,"virtual_memory_in_bytes":459122327552} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":5.662109,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":6145964,"type":"Memory","memory_in_bytes":35864576,"virtual_memory_in_bytes":459181391872} +{"signed_in":false,"milliseconds_since_first_event":6145964,"type":"Cpu","usage_as_percentage":1.8149749,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":35241984,"virtual_memory_in_bytes":459181391872} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.112900265,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":10299947,"type":"Memory","memory_in_bytes":34324480,"virtual_memory_in_bytes":459181391872} +{"signed_in":false,"milliseconds_since_first_event":10299947,"type":"Cpu","usage_as_percentage":0.11048796,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":45842432,"virtual_memory_in_bytes":459120033792} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.11334953,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":6090955,"type":"Memory","memory_in_bytes":34422784,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":6090955,"type":"Cpu","usage_as_percentage":0.09342676,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":33619968,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.10543746,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":3987756,"type":"Memory","memory_in_bytes":29245440,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":3987756,"type":"Cpu","usage_as_percentage":0.098937005,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":25133056,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.10202173,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":11755484,"type":"Memory","memory_in_bytes":25477120,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":11755484,"type":"Cpu","usage_as_percentage":0.09444681,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":25509888,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09803988,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":9969221,"type":"Memory","memory_in_bytes":23216128,"virtual_memory_in_bytes":459120607232} +{"signed_in":false,"milliseconds_since_first_event":9969221,"type":"Cpu","usage_as_percentage":0.09484759,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58802176,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":5.2931,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":53133312,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":5.153157,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57016320,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":4.7184563,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":53739520,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":4.7692804,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58474496,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":4.712155,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":57032704,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":4.558177,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55033856,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":4.4971433,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":62881792,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":4.54939,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58556416,"virtual_memory_in_bytes":459062116352} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":4.507233,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":82526208,"virtual_memory_in_bytes":459092623360} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":5.255543,"core_count":10} diff --git a/zed/zed/.tmpClU6tv b/zed/zed/.tmpClU6tv new file mode 100644 index 0000000..e5bd9d7 --- /dev/null +++ b/zed/zed/.tmpClU6tv @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} diff --git a/zed/zed/.tmpD3fT6I b/zed/zed/.tmpD3fT6I new file mode 100644 index 0000000..ccea354 --- /dev/null +++ b/zed/zed/.tmpD3fT6I @@ -0,0 +1,30 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239798,"type":"Memory","memory_in_bytes":154140672,"virtual_memory_in_bytes":423496073216} +{"signed_in":false,"milliseconds_since_first_event":239798,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":154206208,"virtual_memory_in_bytes":423496073216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2453432,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":244861,"type":"Memory","memory_in_bytes":143654912,"virtual_memory_in_bytes":423495499776} +{"signed_in":false,"milliseconds_since_first_event":244861,"type":"Cpu","usage_as_percentage":0.7328459,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":142147584,"virtual_memory_in_bytes":423496073216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.22111401,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1621674,"type":"Memory","memory_in_bytes":141541376,"virtual_memory_in_bytes":423495499776} +{"signed_in":false,"milliseconds_since_first_event":1621674,"type":"Cpu","usage_as_percentage":0.31587428,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":141082624,"virtual_memory_in_bytes":423495499776} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.11823231,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":137625600,"virtual_memory_in_bytes":423495499776} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.0010218376,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":137674752,"virtual_memory_in_bytes":423495499776} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.020718986,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":114032640,"virtual_memory_in_bytes":423495499776} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0035733122,"core_count":10} diff --git a/zed/zed/.tmpFXlDhI b/zed/zed/.tmpFXlDhI new file mode 100644 index 0000000..09c5e89 --- /dev/null +++ b/zed/zed/.tmpFXlDhI @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpK6V2N2 b/zed/zed/.tmpK6V2N2 new file mode 100644 index 0000000..f674780 --- /dev/null +++ b/zed/zed/.tmpK6V2N2 @@ -0,0 +1,26 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.0.2"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5705,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":5871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239855,"type":"Memory","memory_in_bytes":102711296,"virtual_memory_in_bytes":447190253568} +{"signed_in":false,"milliseconds_since_first_event":239855,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":70156288,"virtual_memory_in_bytes":447190253568} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2592001,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":68780032,"virtual_memory_in_bytes":447190253568} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":1.2488962,"core_count":10} diff --git a/zed/zed/.tmpKDdDZy b/zed/zed/.tmpKDdDZy new file mode 100644 index 0000000..419d941 --- /dev/null +++ b/zed/zed/.tmpKDdDZy @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpKTgmd8 b/zed/zed/.tmpKTgmd8 new file mode 100644 index 0000000..e5bd9d7 --- /dev/null +++ b/zed/zed/.tmpKTgmd8 @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} diff --git a/zed/zed/.tmpMVa3jY b/zed/zed/.tmpMVa3jY new file mode 100644 index 0000000..820e340 --- /dev/null +++ b/zed/zed/.tmpMVa3jY @@ -0,0 +1,6994 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"App","operation":"first open"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"welcome page: toggle vim"} +{"signed_in":false,"milliseconds_since_first_event":6657,"type":"App","operation":"open project"} +{"signed_in":false,"milliseconds_since_first_event":16680,"type":"App","operation":"welcome page: close"} +{"signed_in":false,"milliseconds_since_first_event":23568,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":23568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96020,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":96020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":870,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":152961024,"virtual_memory_in_bytes":466490540032} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":85,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":85,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60199,"type":"Editor","operation":"open","file_extension":"json","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":60199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103579,"type":"Action","source":"command palette","action":"editor: fold"} +{"signed_in":false,"milliseconds_since_first_event":106098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117594,"type":"Action","source":"command palette","action":"editor: fold selected ranges"} +{"signed_in":false,"milliseconds_since_first_event":122556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137303,"type":"Memory","memory_in_bytes":160727040,"virtual_memory_in_bytes":440741888000} +{"signed_in":false,"milliseconds_since_first_event":137303,"type":"Cpu","usage_as_percentage":8.791714,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":256498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257230,"type":"Edit","duration":30739,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":257236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1830,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":1830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4758,"type":"Edit","duration":2400,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":4914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1077,"type":"Memory","memory_in_bytes":161759232,"virtual_memory_in_bytes":466500370432} +{"signed_in":false,"milliseconds_since_first_event":1077,"type":"Cpu","usage_as_percentage":6.9854865,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25549,"type":"Edit","duration":49709,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":25746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174189,"type":"Memory","memory_in_bytes":147931136,"virtual_memory_in_bytes":432150151168} +{"signed_in":false,"milliseconds_since_first_event":174189,"type":"Cpu","usage_as_percentage":4.791981,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":212184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212187,"type":"Edit","duration":40582,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":212366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":138559488,"virtual_memory_in_bytes":432135520256} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.0120652,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":126091264,"virtual_memory_in_bytes":432135520256} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.2305866,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":563,"type":"Edit","duration":750,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1889,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115625,"type":"Memory","memory_in_bytes":148406272,"virtual_memory_in_bytes":432128671744} +{"signed_in":false,"milliseconds_since_first_event":115625,"type":"Cpu","usage_as_percentage":4.8648167,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":154139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155350,"type":"Edit","duration":31046,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":155357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":148832256,"virtual_memory_in_bytes":432126951424} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.806595,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":16212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239965,"type":"Memory","memory_in_bytes":150847488,"virtual_memory_in_bytes":432128671744} +{"signed_in":false,"milliseconds_since_first_event":239965,"type":"Cpu","usage_as_percentage":1.6704049,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":262078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Edit","duration":1,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":1774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":140211,"type":"Memory","memory_in_bytes":146833408,"virtual_memory_in_bytes":432126951424} +{"signed_in":false,"milliseconds_since_first_event":140211,"type":"Cpu","usage_as_percentage":4.160687,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":221604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51958,"type":"Memory","memory_in_bytes":148062208,"virtual_memory_in_bytes":432128671744} +{"signed_in":false,"milliseconds_since_first_event":51958,"type":"Cpu","usage_as_percentage":4.9795365,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":67830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291958,"type":"Memory","memory_in_bytes":155123712,"virtual_memory_in_bytes":432129146880} +{"signed_in":false,"milliseconds_since_first_event":291958,"type":"Cpu","usage_as_percentage":7.7499175,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96307,"type":"Memory","memory_in_bytes":156254208,"virtual_memory_in_bytes":432132014080} +{"signed_in":false,"milliseconds_since_first_event":96307,"type":"Cpu","usage_as_percentage":4.742541,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":127555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":129013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":129018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":129023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178656,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":178656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":279423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":279433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9912,"type":"Memory","memory_in_bytes":162562048,"virtual_memory_in_bytes":440722669568} +{"signed_in":false,"milliseconds_since_first_event":9912,"type":"Cpu","usage_as_percentage":14.436701,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":57385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210896,"type":"Edit","duration":10364,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":211084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29758,"type":"Memory","memory_in_bytes":175063040,"virtual_memory_in_bytes":457905700864} +{"signed_in":false,"milliseconds_since_first_event":29758,"type":"Cpu","usage_as_percentage":6.0052385,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":55128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56059,"type":"Edit","duration":10044,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":56417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189359,"type":"Memory","memory_in_bytes":183009280,"virtual_memory_in_bytes":440722669568} +{"signed_in":false,"milliseconds_since_first_event":189359,"type":"Cpu","usage_as_percentage":7.8677406,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":229971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":276389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":276398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117808,"type":"Memory","memory_in_bytes":182697984,"virtual_memory_in_bytes":432134111232} +{"signed_in":false,"milliseconds_since_first_event":117808,"type":"Cpu","usage_as_percentage":12.081263,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":119032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Edit","duration":25334,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":61,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":61,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":890,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":79,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997302,"type":"Memory","memory_in_bytes":185253888,"virtual_memory_in_bytes":432147595264} +{"signed_in":false,"milliseconds_since_first_event":997302,"type":"Cpu","usage_as_percentage":12.400143,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":185303040,"virtual_memory_in_bytes":432133537792} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.5696943,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":801075,"type":"Memory","memory_in_bytes":185270272,"virtual_memory_in_bytes":432148168704} +{"signed_in":false,"milliseconds_since_first_event":801075,"type":"Cpu","usage_as_percentage":2.2750409,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":185270272,"virtual_memory_in_bytes":432147595264} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07501013,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":733779,"type":"Memory","memory_in_bytes":184008704,"virtual_memory_in_bytes":432149315584} +{"signed_in":false,"milliseconds_since_first_event":733779,"type":"Cpu","usage_as_percentage":2.2028868,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":183894016,"virtual_memory_in_bytes":432147595264} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.4752307,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1778538,"type":"Memory","memory_in_bytes":183894016,"virtual_memory_in_bytes":432147595264} +{"signed_in":false,"milliseconds_since_first_event":1778538,"type":"Cpu","usage_as_percentage":0.069170214,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28601,"type":"Edit","duration":83660,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":28609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":82,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33021,"type":"Edit","duration":49675,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":33026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37352,"type":"Memory","memory_in_bytes":200376320,"virtual_memory_in_bytes":457906651136} +{"signed_in":false,"milliseconds_since_first_event":37352,"type":"Cpu","usage_as_percentage":6.481184,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":76903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Edit","duration":0,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1889,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":85,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":848,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1890,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":79,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":82,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25120,"type":"Memory","memory_in_bytes":226410496,"virtual_memory_in_bytes":449330036736} +{"signed_in":false,"milliseconds_since_first_event":25120,"type":"Cpu","usage_as_percentage":14.901232,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":29665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265123,"type":"Memory","memory_in_bytes":226738176,"virtual_memory_in_bytes":449331183616} +{"signed_in":false,"milliseconds_since_first_event":265123,"type":"Cpu","usage_as_percentage":7.654559,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":283138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":226787328,"virtual_memory_in_bytes":449346387968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.978108,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":213385216,"virtual_memory_in_bytes":449331183616} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":2.581957,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11832,"type":"Editor","operation":"save","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":16110,"type":"Editor","operation":"save","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":16180,"type":"Edit","duration":174830,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":33450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34827,"type":"Memory","memory_in_bytes":217104384,"virtual_memory_in_bytes":457921839104} +{"signed_in":false,"milliseconds_since_first_event":34827,"type":"Cpu","usage_as_percentage":4.438195,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":141514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149288,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":149288,"type":"App","operation":"project diagnostics: open"} +{"signed_in":false,"milliseconds_since_first_event":247875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274827,"type":"Memory","memory_in_bytes":217088000,"virtual_memory_in_bytes":440740429824} +{"signed_in":false,"milliseconds_since_first_event":274827,"type":"Cpu","usage_as_percentage":11.874961,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":216776704,"virtual_memory_in_bytes":432149774336} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.9361093,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":216776704,"virtual_memory_in_bytes":432149200896} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":2.8114097,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2340,"type":"Edit","duration":1,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":3119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":85,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66887,"type":"Memory","memory_in_bytes":235945984,"virtual_memory_in_bytes":440741003264} +{"signed_in":false,"milliseconds_since_first_event":66887,"type":"Cpu","usage_as_percentage":8.142896,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3863,"type":"Memory","memory_in_bytes":233242624,"virtual_memory_in_bytes":432150347776} +{"signed_in":false,"milliseconds_since_first_event":3863,"type":"Cpu","usage_as_percentage":3.525305,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":94969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163577,"type":"Edit","duration":109707,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":163825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47168,"type":"Memory","memory_in_bytes":241795072,"virtual_memory_in_bytes":440743690240} +{"signed_in":false,"milliseconds_since_first_event":47168,"type":"Cpu","usage_as_percentage":7.7001176,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":190004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303448,"type":"Memory","memory_in_bytes":241893376,"virtual_memory_in_bytes":440744263680} +{"signed_in":false,"milliseconds_since_first_event":303448,"type":"Cpu","usage_as_percentage":5.868504,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":240926720,"virtual_memory_in_bytes":432165945344} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1156597,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":240926720,"virtual_memory_in_bytes":432165945344} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.061060093,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":240943104,"virtual_memory_in_bytes":432165945344} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06720332,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":240943104,"virtual_memory_in_bytes":432165945344} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.059035387,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":240943104,"virtual_memory_in_bytes":432165945344} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06686105,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":139925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":139932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":242712576,"virtual_memory_in_bytes":432153608192} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":5.9006224,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":255790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57724,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":57724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88814,"type":"Edit","duration":34632,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":106346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":123206,"type":"Memory","memory_in_bytes":242958336,"virtual_memory_in_bytes":432153608192} +{"signed_in":false,"milliseconds_since_first_event":123206,"type":"Cpu","usage_as_percentage":14.904977,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":242319360,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.8663328,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":241762304,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":3.027378,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":241762304,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.0378008,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":194265088,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":3.0936582,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":173965312,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.1091902,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":173096960,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":3.1218307,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":171376640,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.9279811,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":170442752,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":3.060601,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":170295296,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.1610923,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":156696576,"virtual_memory_in_bytes":432152461312} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":2.8498278,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":117342208,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.9427135,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":117620736,"virtual_memory_in_bytes":432143597568} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":3.0909789,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":118603776,"virtual_memory_in_bytes":432143597568} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.0009012,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239970,"type":"Memory","memory_in_bytes":114360320,"virtual_memory_in_bytes":432143597568} +{"signed_in":false,"milliseconds_since_first_event":239970,"type":"Cpu","usage_as_percentage":2.8827598,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":117489664,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.1708884,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":118112256,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":2.8443265,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":118734848,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":2.7980516,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":250516,"type":"Memory","memory_in_bytes":114786304,"virtual_memory_in_bytes":432158801920} +{"signed_in":false,"milliseconds_since_first_event":250516,"type":"Cpu","usage_as_percentage":3.104498,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":114573312,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.4337582,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":321274,"type":"Memory","memory_in_bytes":114802688,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":321274,"type":"Cpu","usage_as_percentage":0.062115792,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":111230976,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.078933306,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":111280128,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.090142556,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109805568,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.09069985,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":109838336,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.08874467,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":110313472,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09350305,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":110395392,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0891112,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":110870528,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09165145,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":110870528,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.09019286,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":111591424,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.096963495,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":111542272,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.088412724,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":111558656,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0936264,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240035,"type":"Memory","memory_in_bytes":111935488,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240035,"type":"Cpu","usage_as_percentage":0.09575573,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":112164864,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.09679452,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":112148480,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.09181156,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":112164864,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.092698656,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":666340,"type":"Memory","memory_in_bytes":112427008,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":666340,"type":"Cpu","usage_as_percentage":0.0823164,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":112918528,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06864697,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":703822,"type":"Memory","memory_in_bytes":113000448,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":703822,"type":"Cpu","usage_as_percentage":0.07312902,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":110854144,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0759828,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":110837760,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.067497544,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":110870528,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07293881,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":110854144,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.06801024,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":110903296,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07235036,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Memory","memory_in_bytes":104366080,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Cpu","usage_as_percentage":0.067916594,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":104382464,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07237579,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":104366080,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.068600535,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":104579072,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.075970344,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":104333312,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.06878417,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":104366080,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06943316,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":104349696,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.06755046,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":104382464,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07225548,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":104415232,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.067153595,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":102776832,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.072356366,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":784568,"type":"Memory","memory_in_bytes":102907904,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":784568,"type":"Cpu","usage_as_percentage":0.06167873,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100384768,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07382233,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1585914,"type":"Memory","memory_in_bytes":100155392,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":1585914,"type":"Cpu","usage_as_percentage":0.06768605,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100171776,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.05793813,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":100155392,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.05589317,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100188160,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06896431,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":100171776,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.064724796,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100188160,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07031332,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":100352000,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.07007406,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100368384,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.068352066,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":100352000,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.06802694,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100433920,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07316521,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":100417536,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.06916082,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100466688,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.075688735,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":100450304,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0697535,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100466688,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07442463,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":100450304,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.07277673,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100548608,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.074087486,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1099794,"type":"Memory","memory_in_bytes":99860480,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":1099794,"type":"Cpu","usage_as_percentage":0.06529139,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":99991552,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07382866,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1079589,"type":"Memory","memory_in_bytes":100352000,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":1079589,"type":"Cpu","usage_as_percentage":0.06360775,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100483072,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.064675786,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":526171,"type":"Memory","memory_in_bytes":100499456,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":526171,"type":"Cpu","usage_as_percentage":0.058809828,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":100564992,"virtual_memory_in_bytes":432158228480} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07671157,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":648289,"type":"Memory","memory_in_bytes":100564992,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":648289,"type":"Cpu","usage_as_percentage":0.060691126,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":99287040,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06894077,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":638342,"type":"Memory","memory_in_bytes":99385344,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":638342,"type":"Cpu","usage_as_percentage":0.05880167,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":99778560,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0674676,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":99680256,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.04991873,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":99958784,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0645844,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1545907,"type":"Memory","memory_in_bytes":98009088,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":1545907,"type":"Cpu","usage_as_percentage":0.063256525,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98271232,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06794274,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":683875,"type":"Memory","memory_in_bytes":97976320,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":683875,"type":"Cpu","usage_as_percentage":0.06369454,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98091008,"virtual_memory_in_bytes":432157655040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06686405,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1203073,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":432158228480} +{"signed_in":false,"milliseconds_since_first_event":1203073,"type":"Cpu","usage_as_percentage":0.06317423,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":60850176,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.26848912,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":61276160,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":3.0848713,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":63815680,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.1308556,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":64520192,"virtual_memory_in_bytes":432143597568} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":3.134626,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":64913408,"virtual_memory_in_bytes":432159375360} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":3.0937898,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1520764,"type":"Memory","memory_in_bytes":62783488,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":1520764,"type":"Cpu","usage_as_percentage":0.8448642,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":64028672,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":2.7614875,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":63946752,"virtual_memory_in_bytes":432144171008} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":2.72382,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125426,"type":"Memory","memory_in_bytes":110657536,"virtual_memory_in_bytes":432145891328} +{"signed_in":false,"milliseconds_since_first_event":125426,"type":"Cpu","usage_as_percentage":9.712267,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":162357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":248480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":248482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":116277248,"virtual_memory_in_bytes":432145891328} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":7.5616283,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":158835,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":158835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159668,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":159668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160518,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":160518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166234,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":166234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167010,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":167010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206413,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":206413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207565,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":207565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":126320640,"virtual_memory_in_bytes":449326678016} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":12.358256,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24580,"type":"Memory","memory_in_bytes":122748928,"virtual_memory_in_bytes":440734875648} +{"signed_in":false,"milliseconds_since_first_event":24580,"type":"Cpu","usage_as_percentage":5.7881336,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":135558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264581,"type":"Memory","memory_in_bytes":124207104,"virtual_memory_in_bytes":432144793600} +{"signed_in":false,"milliseconds_since_first_event":264581,"type":"Cpu","usage_as_percentage":14.975327,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":279084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":279093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282761,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":282761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196645,"type":"Memory","memory_in_bytes":128335872,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":196645,"type":"Cpu","usage_as_percentage":5.605042,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":128352256,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.06980099,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":737148,"type":"Memory","memory_in_bytes":102793216,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":737148,"type":"Cpu","usage_as_percentage":0.072455555,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":88621056,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.078719966,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1769222,"type":"Memory","memory_in_bytes":77365248,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1769222,"type":"Cpu","usage_as_percentage":0.07245106,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":77889536,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07852526,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":249413,"type":"Memory","memory_in_bytes":78741504,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":249413,"type":"Cpu","usage_as_percentage":0.079584785,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":78839808,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07771322,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":248652,"type":"Memory","memory_in_bytes":78544896,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":248652,"type":"Cpu","usage_as_percentage":0.073819816,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":70877184,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07365587,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":946349,"type":"Memory","memory_in_bytes":70926336,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":946349,"type":"Cpu","usage_as_percentage":0.07032263,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71172096,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07706013,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":278766,"type":"Memory","memory_in_bytes":71188480,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":278766,"type":"Cpu","usage_as_percentage":0.072319284,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":68829184,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07728033,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":570495,"type":"Memory","memory_in_bytes":69255168,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":570495,"type":"Cpu","usage_as_percentage":0.07159324,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":70402048,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.079237975,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":5856044,"type":"Memory","memory_in_bytes":70615040,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":5856044,"type":"Cpu","usage_as_percentage":0.0721856,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":70090752,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.07229627,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":343911,"type":"Memory","memory_in_bytes":70385664,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":343911,"type":"Cpu","usage_as_percentage":0.07047741,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":70942720,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07363325,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":407426,"type":"Memory","memory_in_bytes":70746112,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":407426,"type":"Cpu","usage_as_percentage":0.06714027,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":70909952,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07737682,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":485832,"type":"Memory","memory_in_bytes":70991872,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":485832,"type":"Cpu","usage_as_percentage":0.068027385,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71319552,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.070613414,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":352774,"type":"Memory","memory_in_bytes":71335936,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":352774,"type":"Cpu","usage_as_percentage":0.06474621,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71647232,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07123995,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1244389,"type":"Memory","memory_in_bytes":71663616,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1244389,"type":"Cpu","usage_as_percentage":0.06602812,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71663616,"virtual_memory_in_bytes":432143286272} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.070151955,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":575792,"type":"Memory","memory_in_bytes":71663616,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":575792,"type":"Cpu","usage_as_percentage":0.0707483,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71663616,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.073320925,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":602928,"type":"Memory","memory_in_bytes":71663616,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":602928,"type":"Cpu","usage_as_percentage":0.065687306,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71663616,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07526047,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":389855,"type":"Memory","memory_in_bytes":71696384,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":389855,"type":"Cpu","usage_as_percentage":0.06565101,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72122368,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07167583,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1910825,"type":"Memory","memory_in_bytes":72122368,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1910825,"type":"Cpu","usage_as_percentage":0.06751317,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72237056,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07230957,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1017733,"type":"Memory","memory_in_bytes":72433664,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1017733,"type":"Cpu","usage_as_percentage":0.07420521,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71565312,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07380266,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":314462,"type":"Memory","memory_in_bytes":71565312,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":314462,"type":"Cpu","usage_as_percentage":0.06755665,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71581696,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07454617,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":832829,"type":"Memory","memory_in_bytes":71581696,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":832830,"type":"Cpu","usage_as_percentage":0.067926444,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71614464,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.071288124,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1675527,"type":"Memory","memory_in_bytes":72318976,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1675527,"type":"Cpu","usage_as_percentage":0.06756259,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72204288,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.075111106,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2554498,"type":"Memory","memory_in_bytes":72089600,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":2554498,"type":"Cpu","usage_as_percentage":0.065591015,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71892992,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07047614,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":3281941,"type":"Memory","memory_in_bytes":71532544,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":3281941,"type":"Cpu","usage_as_percentage":0.06944057,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":71581696,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0725074,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2201403,"type":"Memory","memory_in_bytes":71630848,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":2201403,"type":"Cpu","usage_as_percentage":0.06405893,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72155136,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07043013,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2522723,"type":"Memory","memory_in_bytes":72155136,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":2522723,"type":"Cpu","usage_as_percentage":0.06579934,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72286208,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07826684,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2304892,"type":"Memory","memory_in_bytes":72286208,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":2304892,"type":"Cpu","usage_as_percentage":0.0642558,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72040448,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07282213,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1987882,"type":"Memory","memory_in_bytes":72089600,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1987882,"type":"Cpu","usage_as_percentage":0.06472261,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72138752,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.07058579,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1256189,"type":"Memory","memory_in_bytes":72155136,"virtual_memory_in_bytes":432142712832} +{"signed_in":false,"milliseconds_since_first_event":1256189,"type":"Cpu","usage_as_percentage":0.067651704,"core_count":10} diff --git a/zed/zed/.tmpMqNDDv b/zed/zed/.tmpMqNDDv new file mode 100644 index 0000000..f37fd9b --- /dev/null +++ b/zed/zed/.tmpMqNDDv @@ -0,0 +1,397 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":239976,"type":"Memory","memory_in_bytes":125763584,"virtual_memory_in_bytes":449355694080} +{"signed_in":false,"milliseconds_since_first_event":239976,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125632512,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.13039649,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":125632512,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0027284317,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00859009,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.002994857,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005646002,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028504874,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006861635,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028274115,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0072911656,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125272064,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.002769485,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449354547200} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0073547047,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449354547200} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028286036,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0069624963,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028784475,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008153543,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028654595,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055245035,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449355120640} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028293505,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449354547200} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007272668,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":125255680,"virtual_memory_in_bytes":449354547200} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028376174,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":110379008,"virtual_memory_in_bytes":449355694080} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.07226088,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1454031,"type":"Memory","memory_in_bytes":109379584,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":1454031,"type":"Cpu","usage_as_percentage":1.0864222,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109412352,"virtual_memory_in_bytes":449355595776} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008229586,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":109412352,"virtual_memory_in_bytes":449355595776} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030056068,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0068163234,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0029642032,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0077787223,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0027709277,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005164179,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.003138359,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449355595776} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007339422,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449355595776} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030715396,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007781352,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0029363683,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0077295485,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0030758453,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00695772,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.003135056,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449355595776} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007969656,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449355595776} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030876442,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008288192,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":109445120,"virtual_memory_in_bytes":449356169216} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030723824,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113803264,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.23201978,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":113803264,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0037518812,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113754112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062833633,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113754112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.002885869,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113754112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007313453,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113754112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0029591473,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113754112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008255527,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":113754112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.002850591,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0070681823,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0029930728,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00585252,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0030418623,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008248684,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0034360706,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055677225,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030673095,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006917842,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0029931564,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005339698,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113737728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.002895513,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0077509424,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0030798616,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00526838,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.003002791,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007657213,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.003109427,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005772043,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0031001875,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007280442,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.003127145,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007409282,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":113786880,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0029956677,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113770496,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007372719,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":113770496,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0028644558,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":113770496,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056744213,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":325073,"type":"Memory","memory_in_bytes":112852992,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":325073,"type":"Cpu","usage_as_percentage":0.009219305,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":112263168,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009175604,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":75235328,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0031731545,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80478208,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012097182,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80478208,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0027599023,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80412672,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056159673,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80412672,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030699116,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":77234176,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006207311,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240051,"type":"Memory","memory_in_bytes":77234176,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240051,"type":"Cpu","usage_as_percentage":0.0027342378,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":77234176,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0051200152,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240018,"type":"Memory","memory_in_bytes":77234176,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240018,"type":"Cpu","usage_as_percentage":0.0027730793,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":77266944,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0073628537,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":77365248,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.002929761,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76840960,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0069897138,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240014,"type":"Memory","memory_in_bytes":76840960,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240014,"type":"Cpu","usage_as_percentage":0.0027585402,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76857344,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007651706,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0027414795,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76972032,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0048047504,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":699738,"type":"Memory","memory_in_bytes":76939264,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":699738,"type":"Cpu","usage_as_percentage":0.0038892413,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76955648,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008412644,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":76972032,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0032413236,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76972032,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008133719,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":76939264,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0034183005,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76939264,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008048364,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":76939264,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0032175214,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00837078,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0031848713,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008308382,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Memory","memory_in_bytes":76857344,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Cpu","usage_as_percentage":0.0031897854,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":75972608,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005815114,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":75972608,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.003220424,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76120064,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008771193,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":76120064,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.002983132,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76546048,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009067807,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1222556,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":1222556,"type":"Cpu","usage_as_percentage":0.004604268,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0064600725,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0026738504,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0076994607,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0026020475,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005401952,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.002616515,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006571946,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0026295767,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0074202367,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0024905135,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0042069936,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":76873728,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0025139693,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00610123,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Cpu","usage_as_percentage":0.0023595642,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0049465816,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":76890112,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0022737863,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76906496,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0051083243,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240009,"type":"Memory","memory_in_bytes":74760192,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240009,"type":"Cpu","usage_as_percentage":0.002511055,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":74760192,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0051198746,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":74760192,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0023416996,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":74612736,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062648025,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":74612736,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0023878503,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":72318976,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007059606,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":66650112,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0023111638,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67403776,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005738219,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":67403776,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0026149468,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67420160,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0051720343,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":67420160,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0026526295,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67452928,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007373691,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":67452928,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029686878,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67452928,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0071206405,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":67452928,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.002998932,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67502080,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006950046,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":67502080,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0031248822,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67502080,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0067280196,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239980,"type":"Memory","memory_in_bytes":67502080,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":239980,"type":"Cpu","usage_as_percentage":0.0028276397,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67502080,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006725761,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030493939,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005873689,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.003112066,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0071195825,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Cpu","usage_as_percentage":0.0028375513,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059454255,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0028759367,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67616768,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006728954,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":67469312,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0029363562,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67567616,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00740086,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":67567616,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029469011,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67567616,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0075021842,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":67567616,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0027041382,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67567616,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062281587,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":67567616,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.002627119,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67584000,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007350107,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":67584000,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0028316488,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67584000,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0071435687,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":67584000,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029846707,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0080688,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240025,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240025,"type":"Cpu","usage_as_percentage":0.00271725,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67584000,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006031754,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":67584000,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0030836686,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007327406,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0030146698,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0074036364,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028427683,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0068421727,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00306099,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0060496707,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":67600384,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0031549705,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":67452928,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0074516763,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240016,"type":"Memory","memory_in_bytes":63864832,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":240016,"type":"Cpu","usage_as_percentage":0.0028320788,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":65585152,"virtual_memory_in_bytes":449217363968} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007830746,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":65568768,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.002978037,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062316903,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029331367,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006796994,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216217088} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0030129594,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006511867,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029989048,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006914109,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0029580758,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0072389096,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239997,"type":"Memory","memory_in_bytes":65601536,"virtual_memory_in_bytes":449216790528} +{"signed_in":false,"milliseconds_since_first_event":239997,"type":"Cpu","usage_as_percentage":0.0028186152,"core_count":10} diff --git a/zed/zed/.tmpO88SCe b/zed/zed/.tmpO88SCe new file mode 100644 index 0000000..cc8a019 --- /dev/null +++ b/zed/zed/.tmpO88SCe @@ -0,0 +1,4 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.0.1"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} diff --git a/zed/zed/.tmpPnuuIZ b/zed/zed/.tmpPnuuIZ new file mode 100644 index 0000000..3ef3e79 --- /dev/null +++ b/zed/zed/.tmpPnuuIZ @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":23,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":23,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpQmRyV3 b/zed/zed/.tmpQmRyV3 new file mode 100644 index 0000000..5460d55 --- /dev/null +++ b/zed/zed/.tmpQmRyV3 @@ -0,0 +1,15355 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2995,"type":"Extension","extension_id":"html","version":"0.0.1"} +{"signed_in":false,"milliseconds_since_first_event":3090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239774,"type":"Memory","memory_in_bytes":176963584,"virtual_memory_in_bytes":432113909760} +{"signed_in":false,"milliseconds_since_first_event":239774,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27341,"type":"Memory","memory_in_bytes":182452224,"virtual_memory_in_bytes":432119873536} +{"signed_in":false,"milliseconds_since_first_event":27341,"type":"Cpu","usage_as_percentage":1.4991982,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":56150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":85,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53306,"type":"Memory","memory_in_bytes":228491264,"virtual_memory_in_bytes":475102609408} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":11.555865,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":17779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17870,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19417,"type":"Edit","duration":174793,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":20502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21159,"type":"Memory","memory_in_bytes":231243776,"virtual_memory_in_bytes":440738840576} +{"signed_in":false,"milliseconds_since_first_event":21159,"type":"Cpu","usage_as_percentage":7.4825706,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":43589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87277,"type":"Edit","duration":29865,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":88010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36954,"type":"Edit","duration":33569,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":37319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":82,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":82,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":42,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":42,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":85,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":890,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":72,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4125,"type":"Memory","memory_in_bytes":252821504,"virtual_memory_in_bytes":483697491968} +{"signed_in":false,"milliseconds_since_first_event":4125,"type":"Cpu","usage_as_percentage":15.782752,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":11341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34996,"type":"Edit","duration":104159,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":35568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54343,"type":"Edit","duration":72392,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":54349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48627,"type":"Memory","memory_in_bytes":259997696,"virtual_memory_in_bytes":440741920768} +{"signed_in":false,"milliseconds_since_first_event":48627,"type":"Cpu","usage_as_percentage":9.583113,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":63709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":85849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":79,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105438,"type":"Edit","duration":32994,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":105607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91112,"type":"Memory","memory_in_bytes":271630336,"virtual_memory_in_bytes":457929506816} +{"signed_in":false,"milliseconds_since_first_event":91112,"type":"Cpu","usage_as_percentage":12.694208,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":91398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Edit","duration":6946,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21301,"type":"Edit","duration":1204,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":21310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2097,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120228,"type":"Edit","duration":24434,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":120236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1848,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62913,"type":"Memory","memory_in_bytes":275021824,"virtual_memory_in_bytes":440747048960} +{"signed_in":false,"milliseconds_since_first_event":62913,"type":"Cpu","usage_as_percentage":6.5150104,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":703649,"type":"Memory","memory_in_bytes":274710528,"virtual_memory_in_bytes":440746475520} +{"signed_in":false,"milliseconds_since_first_event":703649,"type":"Cpu","usage_as_percentage":0.26214215,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4340,"type":"Edit","duration":22120,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":4351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66639,"type":"Edit","duration":8713,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":67363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83678,"type":"Edit","duration":21494,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":83822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":154,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21827,"type":"Memory","memory_in_bytes":280592384,"virtual_memory_in_bytes":466520735744} +{"signed_in":false,"milliseconds_since_first_event":21827,"type":"Cpu","usage_as_percentage":9.796604,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":78872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90184,"type":"Edit","duration":17352,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":90642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181375,"type":"Edit","duration":460,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":82,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47113,"type":"Edit","duration":17706,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":47123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7788,"type":"Memory","memory_in_bytes":289275904,"virtual_memory_in_bytes":475110817792} +{"signed_in":false,"milliseconds_since_first_event":7788,"type":"Cpu","usage_as_percentage":7.6010857,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":10702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":72,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":72,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":79,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6721,"type":"Editor","operation":"save","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":81810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161403,"type":"Edit","duration":45329,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":193200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193203,"type":"Edit","duration":14,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":193378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15403,"type":"Memory","memory_in_bytes":297402368,"virtual_memory_in_bytes":466520162304} +{"signed_in":false,"milliseconds_since_first_event":15403,"type":"Cpu","usage_as_percentage":8.248497,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":20033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177218,"type":"Edit","duration":86332,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":177398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4076,"type":"Memory","memory_in_bytes":291192832,"virtual_memory_in_bytes":483704242176} +{"signed_in":false,"milliseconds_since_first_event":4076,"type":"Cpu","usage_as_percentage":5.7971087,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":5231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152994,"type":"Edit","duration":36978,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":153186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48648,"type":"Edit","duration":4879,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":48657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":291291136,"virtual_memory_in_bytes":475113013248} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":8.859983,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32857,"type":"Edit","duration":17778,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":33053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Edit","duration":45324,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":61,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32491,"type":"Edit","duration":4673,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":32683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1569,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":42,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28838,"type":"Edit","duration":39010,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":29396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10148,"type":"Memory","memory_in_bytes":304201728,"virtual_memory_in_bytes":475112439808} +{"signed_in":false,"milliseconds_since_first_event":10148,"type":"Cpu","usage_as_percentage":11.03002,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":26275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Edit","duration":8923,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6489,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51427,"type":"Edit","duration":11784,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":51732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51931,"type":"Edit","duration":37138,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":52225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62721,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68741,"type":"Edit","duration":8318,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":68763,"type":"Memory","memory_in_bytes":304758784,"virtual_memory_in_bytes":457929981952} +{"signed_in":false,"milliseconds_since_first_event":68763,"type":"Cpu","usage_as_percentage":9.975161,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":69775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29286,"type":"Edit","duration":15213,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":29295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74211,"type":"Edit","duration":1,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":74440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":38684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87350,"type":"Memory","memory_in_bytes":305184768,"virtual_memory_in_bytes":440749146112} +{"signed_in":false,"milliseconds_since_first_event":87350,"type":"Cpu","usage_as_percentage":10.404284,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":90194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92889,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92889,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93627,"type":"Edit","duration":64348,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":94037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1530,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16427,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17036,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":65,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50027,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54264,"type":"Edit","duration":58699,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":54273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8848,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1890,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":39,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1946,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1184,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1922,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102413,"type":"Memory","memory_in_bytes":304234496,"virtual_memory_in_bytes":440749146112} +{"signed_in":false,"milliseconds_since_first_event":102413,"type":"Cpu","usage_as_percentage":5.826023,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":269402112,"virtual_memory_in_bytes":440748572672} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1288633,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":122475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124332,"type":"Edit","duration":41011,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":124516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8889,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8889,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":64,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":32269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33239,"type":"Editor","operation":"save","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":33241,"type":"Edit","duration":28019,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":37933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":37943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Edit","duration":1,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":1541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25653,"type":"Memory","memory_in_bytes":271859712,"virtual_memory_in_bytes":457931603968} +{"signed_in":false,"milliseconds_since_first_event":25653,"type":"Cpu","usage_as_percentage":8.243344,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":111794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111798,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339630,"type":"Memory","memory_in_bytes":270434304,"virtual_memory_in_bytes":440748572672} +{"signed_in":false,"milliseconds_since_first_event":339630,"type":"Cpu","usage_as_percentage":10.579407,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":270450688,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.03661428,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2024689,"type":"Memory","memory_in_bytes":270450688,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":2024689,"type":"Cpu","usage_as_percentage":0.027186235,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":270106624,"virtual_memory_in_bytes":440748572672} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.45425752,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":98561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":122738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":123442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":123443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165654,"type":"Edit","duration":1,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":165945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":931,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":95,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":61,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":61,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1870,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1870,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2726,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5643,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6035,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":773,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":960,"type":"Memory","memory_in_bytes":275152896,"virtual_memory_in_bytes":475113488384} +{"signed_in":false,"milliseconds_since_first_event":960,"type":"Cpu","usage_as_percentage":8.186194,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3777,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3060,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1551710,"type":"Memory","memory_in_bytes":259817472,"virtual_memory_in_bytes":440748572672} +{"signed_in":false,"milliseconds_since_first_event":1551710,"type":"Cpu","usage_as_percentage":3.0008607,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":259801088,"virtual_memory_in_bytes":440748572672} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2049127,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":259784704,"virtual_memory_in_bytes":440748572672} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.2800981,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":259801088,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.5967503,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1651054,"type":"Memory","memory_in_bytes":259080192,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":1651054,"type":"Cpu","usage_as_percentage":0.028752388,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":259063808,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.038467158,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":5662155,"type":"Memory","memory_in_bytes":258949120,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":5662155,"type":"Cpu","usage_as_percentage":0.0332058,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":258850816,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.037346043,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2808457,"type":"Memory","memory_in_bytes":258850816,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":2808457,"type":"Cpu","usage_as_percentage":0.03129476,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":214106112,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.087685294,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":498156,"type":"Memory","memory_in_bytes":199114752,"virtual_memory_in_bytes":440747999232} +{"signed_in":false,"milliseconds_since_first_event":498156,"type":"Cpu","usage_as_percentage":0.0030270785,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":197181440,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.023350533,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1225252,"type":"Memory","memory_in_bytes":197181440,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":1225252,"type":"Cpu","usage_as_percentage":0.036011558,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":197263360,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.022762908,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1050123,"type":"Memory","memory_in_bytes":197263360,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":1050123,"type":"Cpu","usage_as_percentage":0.031649694,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":197197824,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.02807412,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":7572391,"type":"Memory","memory_in_bytes":197001216,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":7572391,"type":"Cpu","usage_as_percentage":0.02934463,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":197001216,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.035506513,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":12752615,"type":"Memory","memory_in_bytes":196984832,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":12752615,"type":"Cpu","usage_as_percentage":0.029609589,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":196820992,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.030071191,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":329490,"type":"Memory","memory_in_bytes":195379200,"virtual_memory_in_bytes":440739708928} +{"signed_in":false,"milliseconds_since_first_event":329490,"type":"Cpu","usage_as_percentage":0.012130647,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108955,"type":"Edit","duration":89879,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":109580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":110557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":110557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143238,"type":"Memory","memory_in_bytes":205684736,"virtual_memory_in_bytes":457922183168} +{"signed_in":false,"milliseconds_since_first_event":143238,"type":"Cpu","usage_as_percentage":4.741227,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":164601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":188327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193034,"type":"Edit","duration":1604,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":193041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19536,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9023,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":9023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52613,"type":"Editor","operation":"save","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":52615,"type":"Edit","duration":22971,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":62086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":284,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6487,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":42,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":62,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":79,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":42,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":50,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":63,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":395,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":34,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":378,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14949,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17379,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":933,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22321,"type":"Edit","duration":78608,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":22508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1093,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1094,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2390,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2665,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1139,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1790,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6162,"type":"Memory","memory_in_bytes":222396416,"virtual_memory_in_bytes":475107852288} +{"signed_in":false,"milliseconds_since_first_event":6162,"type":"Cpu","usage_as_percentage":12.081707,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":16268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":172617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182436,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182437,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182440,"type":"Edit","duration":9515,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":182621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182849,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184076,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18521,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18980,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19087,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2053,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2636,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3014,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1260,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1422,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2940,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4222,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":848,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":848,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":961,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2731,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":870,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":878,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4781,"type":"Memory","memory_in_bytes":232390656,"virtual_memory_in_bytes":483699081216} +{"signed_in":false,"milliseconds_since_first_event":4781,"type":"Cpu","usage_as_percentage":11.830376,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":4805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":355,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3483,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1245,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":17367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":18837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11781,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12890,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4103,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4325,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4423,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4509,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4652,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":943,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1278,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2073,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2269,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2439,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":677,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":843,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":61324,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":61324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86782,"type":"Action","source":"command palette","action":":411"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108346,"type":"Memory","memory_in_bytes":237764608,"virtual_memory_in_bytes":457974415360} +{"signed_in":false,"milliseconds_since_first_event":108346,"type":"Cpu","usage_as_percentage":17.57588,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":125996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":237945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":238960,"type":"Editor","operation":"save","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":239491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":216907776,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":5.223488,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":216891392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0010648629,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":216924160,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00494326,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":175898624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.001063049,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":174505984,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0021683357,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240011,"type":"Memory","memory_in_bytes":174505984,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240011,"type":"Cpu","usage_as_percentage":0.0013843641,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":168411136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006718373,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":168427520,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0007883535,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":168460288,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005328823,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2182522,"type":"Memory","memory_in_bytes":168558592,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":2182522,"type":"Cpu","usage_as_percentage":0.014507473,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":168558592,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.022836685,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":168607744,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0038673535,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":138739712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005136139,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":138756096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0011655582,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":138870784,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0017954818,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":138919936,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0015432367,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":130973696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027681128,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":96452608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0005484022,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":88014848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0013733048,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":88195072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.00035749265,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":88899584,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004419675,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":400788,"type":"Memory","memory_in_bytes":92864512,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":400788,"type":"Cpu","usage_as_percentage":0.011113222,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":93863936,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.025227962,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":6553961,"type":"Memory","memory_in_bytes":94470144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":6553961,"type":"Cpu","usage_as_percentage":0.0146444915,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":94863360,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008338156,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":95748096,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0025960354,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105316352,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.21799889,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":5040841,"type":"Memory","memory_in_bytes":105447424,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":5040841,"type":"Cpu","usage_as_percentage":0.013417009,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105693184,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.036660388,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2730150,"type":"Memory","memory_in_bytes":105824256,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":2730150,"type":"Cpu","usage_as_percentage":0.03381116,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":106512384,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.03736051,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1212229,"type":"Memory","memory_in_bytes":106610688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1212229,"type":"Cpu","usage_as_percentage":0.03388936,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":106708992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.027675536,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":106430464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0030767547,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":106643456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004717467,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":104939520,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.00054210314,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":104431616,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.001999311,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":104415232,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0007741812,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105136128,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.022824218,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":5532909,"type":"Memory","memory_in_bytes":105152512,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":5532909,"type":"Cpu","usage_as_percentage":0.035013538,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105168896,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.03326852,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":15414473,"type":"Memory","memory_in_bytes":105185280,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":15414473,"type":"Cpu","usage_as_percentage":0.028377188,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105496576,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.03721608,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2001908,"type":"Memory","memory_in_bytes":105529344,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":2001908,"type":"Cpu","usage_as_percentage":0.022982312,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105545728,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.026242577,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1902641,"type":"Memory","memory_in_bytes":104955904,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1902641,"type":"Cpu","usage_as_percentage":0.014790912,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105119744,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005189691,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1245409,"type":"Memory","memory_in_bytes":104841216,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":1245409,"type":"Cpu","usage_as_percentage":0.01174002,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105283584,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.030451834,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":5086216,"type":"Memory","memory_in_bytes":105316352,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":5086216,"type":"Cpu","usage_as_percentage":0.028838616,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105283584,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.036471,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2532917,"type":"Memory","memory_in_bytes":105299968,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":2532917,"type":"Cpu","usage_as_percentage":0.032493483,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105431040,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.038511407,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":6267015,"type":"Memory","memory_in_bytes":105431040,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":6267015,"type":"Cpu","usage_as_percentage":0.031620968,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":92651520,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.021589153,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":92962816,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0023907237,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":92831744,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005186393,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239987,"type":"Memory","memory_in_bytes":92913664,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239987,"type":"Cpu","usage_as_percentage":0.0010794818,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":93732864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012832987,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1272005,"type":"Memory","memory_in_bytes":93667328,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1272005,"type":"Cpu","usage_as_percentage":0.00446468,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":93765632,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0029452762,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":93782016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0007807721,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":94060544,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0029618416,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":94093312,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0012680258,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":94568448,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0060707247,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":94552064,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0012049878,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":94568448,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056450246,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":94584832,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0006199013,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":95109120,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062736697,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":95125504,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0011222531,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":95485952,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0068103657,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240015,"type":"Memory","memory_in_bytes":95502336,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240015,"type":"Cpu","usage_as_percentage":0.0014749548,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":95764480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005753036,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":95748096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0009736487,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":95830016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009161003,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":285877,"type":"Memory","memory_in_bytes":95797248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":285877,"type":"Cpu","usage_as_percentage":0.0029973048,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":95830016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.011717185,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":257641,"type":"Memory","memory_in_bytes":95764480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":257641,"type":"Cpu","usage_as_percentage":0.0022774183,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96026624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0029464217,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":882998,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":882998,"type":"Cpu","usage_as_percentage":0.0062501137,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96026624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008360762,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":96026624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0010132223,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00570589,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":96043008,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0008504106,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0036689565,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0010657925,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062931674,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.001385234,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96075776,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00336827,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0012259035,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96075776,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006523998,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":96059392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0007661495,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96452608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005815751,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":96436224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0010790887,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96485376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006263848,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":338362,"type":"Memory","memory_in_bytes":96534528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":338362,"type":"Cpu","usage_as_percentage":0.0024219346,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96632832,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00903231,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":917912,"type":"Memory","memory_in_bytes":96731136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":917912,"type":"Cpu","usage_as_percentage":0.002395135,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96747520,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007549791,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":715453,"type":"Memory","memory_in_bytes":96747520,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":715453,"type":"Cpu","usage_as_percentage":0.002472324,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96731136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027457508,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":96714752,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0009740862,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96731136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002585886,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":96714752,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0008014495,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96731136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0053507527,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":96714752,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0016599377,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96731136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005253399,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":96714752,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.00048553952,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96731136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005772504,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":96714752,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0021822967,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97107968,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0061988155,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":97091584,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0020775076,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97107968,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059159575,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":97107968,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00042631073,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97124352,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007397085,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":751175,"type":"Memory","memory_in_bytes":97124352,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":751175,"type":"Cpu","usage_as_percentage":0.0025310803,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97124352,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056232177,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240024,"type":"Memory","memory_in_bytes":97124352,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240024,"type":"Cpu","usage_as_percentage":0.0007491817,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97157120,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0022513133,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97140736,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.00072932255,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97173504,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005731942,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":97157120,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0009881285,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97222656,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054590343,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239988,"type":"Memory","memory_in_bytes":97206272,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239988,"type":"Cpu","usage_as_percentage":0.0008058078,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97222656,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006035254,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":97222656,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0008968092,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97239040,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0028536015,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":97222656,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0014244331,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97550336,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059362045,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":97533952,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0010385626,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97566720,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005595664,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":944094,"type":"Memory","memory_in_bytes":97566720,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":944095,"type":"Cpu","usage_as_percentage":0.0028040323,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97714176,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008501509,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":659364,"type":"Memory","memory_in_bytes":97714176,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":659364,"type":"Cpu","usage_as_percentage":0.0024867405,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0051217005,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":97681408,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0010870202,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0026532265,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":97681408,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0009992141,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005206217,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239959,"type":"Memory","memory_in_bytes":97681408,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239959,"type":"Cpu","usage_as_percentage":0.0007384764,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055945423,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":97681408,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0013041275,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97681408,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055563045,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":97681408,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0009187335,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055778073,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0007458104,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97714176,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0061433217,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97697792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0010207322,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97730560,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006165445,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":733170,"type":"Memory","memory_in_bytes":97763328,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":733170,"type":"Cpu","usage_as_percentage":0.0017346794,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97730560,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0065640197,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":658816,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":658816,"type":"Cpu","usage_as_percentage":0.0018857311,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059650973,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.00078942545,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0022863443,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0013460491,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00603743,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0008890865,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027811737,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0011281634,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056848526,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0006083048,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003241325,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.00029607638,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006369938,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00080829085,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00681615,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1054549,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1054549,"type":"Cpu","usage_as_percentage":0.0024278827,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0049383044,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":97779712,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.00093143916,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004735031,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240028,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240028,"type":"Cpu","usage_as_percentage":0.0011890158,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0058786995,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0014679645,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002708591,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0015128433,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0067593507,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00079533516,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059179673,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97796096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0009905482,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97828864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004615932,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0011983331,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97828864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005709192,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1506126,"type":"Memory","memory_in_bytes":97845248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1506126,"type":"Cpu","usage_as_percentage":0.0032014204,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97845248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008464821,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":565067,"type":"Memory","memory_in_bytes":97845248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":565067,"type":"Cpu","usage_as_percentage":0.002482149,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97845248,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0063069104,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0007773032,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97845248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009459573,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":951961,"type":"Memory","memory_in_bytes":97533952,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":951961,"type":"Cpu","usage_as_percentage":0.0033757184,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97648640,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008221973,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97648640,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0014254395,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97665024,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0030974292,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":97665024,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0013913732,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0053498144,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00042030873,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97828864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0030107803,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0019248951,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0063502854,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":97812480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0016565317,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97878016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057776016,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239944,"type":"Memory","memory_in_bytes":97878016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239944,"type":"Cpu","usage_as_percentage":0.0010934924,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97894400,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0050796983,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":97878016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0011761298,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97878016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006525181,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":97878016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.0011428647,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97894400,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006702146,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240052,"type":"Memory","memory_in_bytes":97878016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240052,"type":"Cpu","usage_as_percentage":0.0012003488,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97894400,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0034764805,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97894400,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0009477399,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97927168,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006006778,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":97910784,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0009074561,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":97927168,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002619167,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240026,"type":"Memory","memory_in_bytes":97910784,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240026,"type":"Cpu","usage_as_percentage":0.0012636406,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98041856,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0050240173,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98025472,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0015877304,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98025472,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027952457,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98025472,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0022961602,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98205696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0030653125,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98205696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0014054962,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007451571,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98205696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0008676491,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062798937,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0013456069,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007054263,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0006586608,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0052863276,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0014122246,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005428185,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0012794606,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004846749,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Cpu","usage_as_percentage":0.0008875564,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004751162,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239947,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239947,"type":"Cpu","usage_as_percentage":0.0015623384,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0052084294,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":661556,"type":"Memory","memory_in_bytes":98271232,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":661556,"type":"Cpu","usage_as_percentage":0.0029490408,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98353152,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005786057,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98336768,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00077508,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98336768,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006324799,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Memory","memory_in_bytes":98336768,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Cpu","usage_as_percentage":0.00027936726,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98353152,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0053028674,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98336768,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00067452074,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0025935248,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0002924383,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062201237,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0010103221,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006207714,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.001726898,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057630595,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0009835273,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0034976117,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0017324804,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005536273,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0011308211,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054097413,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0009327079,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0058847303,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0016789443,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0025672868,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0016888616,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005881783,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240045,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240045,"type":"Cpu","usage_as_percentage":0.0011783062,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002820306,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0013417435,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007120303,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":355113,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":355113,"type":"Cpu","usage_as_percentage":0.0023472114,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0033928826,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":439777,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":439777,"type":"Cpu","usage_as_percentage":0.0022080108,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006084487,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0013638996,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0028314465,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0008890869,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005374388,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0011581051,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005793906,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239966,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239966,"type":"Cpu","usage_as_percentage":0.00086321257,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00568586,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0010006417,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.0030198535,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0005150034,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004544951,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239945,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239945,"type":"Cpu","usage_as_percentage":0.0007339859,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.011574217,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":772365,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":772365,"type":"Cpu","usage_as_percentage":0.0022785477,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0071335915,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0015387434,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0030070099,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0007314762,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0060351924,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00088720623,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0035456698,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240026,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240026,"type":"Cpu","usage_as_percentage":0.0011972521,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0048594754,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0015464952,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0052616233,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0009450736,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059024347,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240010,"type":"Cpu","usage_as_percentage":0.0016103908,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007797403,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":350133,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":350133,"type":"Cpu","usage_as_percentage":0.0026945877,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0061795665,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0011905632,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054030754,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240008,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240008,"type":"Cpu","usage_as_percentage":0.0007489842,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0050660926,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00082237687,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003393892,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0008940698,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005062086,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0007511894,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0028509495,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0012165064,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005957103,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0013614348,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003772389,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":899601,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":899601,"type":"Cpu","usage_as_percentage":0.0025162324,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056883157,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0015803571,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006926767,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98566144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0003447142,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054917717,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0008987737,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005553013,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0019861031,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057453914,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239974,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239974,"type":"Cpu","usage_as_percentage":0.0010999957,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002694067,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0008027229,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0050608525,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98582528,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0010643078,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98631680,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006719866,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":604494,"type":"Memory","memory_in_bytes":98631680,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":604494,"type":"Cpu","usage_as_percentage":0.0022863317,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98631680,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008977379,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":611087,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":611087,"type":"Cpu","usage_as_percentage":0.0017940052,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98598912,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007515209,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1057409,"type":"Memory","memory_in_bytes":98222080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1057409,"type":"Cpu","usage_as_percentage":0.0034246375,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00380001,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1314411,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1314411,"type":"Cpu","usage_as_percentage":0.0039906795,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0064009787,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":747948,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":747948,"type":"Cpu","usage_as_percentage":0.004006089,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0075995075,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":863306,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":863306,"type":"Cpu","usage_as_percentage":0.0029389348,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006716899,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":407811,"type":"Memory","memory_in_bytes":98254848,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":407811,"type":"Cpu","usage_as_percentage":0.003995786,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98238464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005746742,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":679993,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":679993,"type":"Cpu","usage_as_percentage":0.003912247,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006690436,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":468287,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":468287,"type":"Cpu","usage_as_percentage":0.0025881922,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007451814,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":483307,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":483307,"type":"Cpu","usage_as_percentage":0.0027105657,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007644943,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":373058,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":373058,"type":"Cpu","usage_as_percentage":0.002661501,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008010603,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":374181,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":374181,"type":"Cpu","usage_as_percentage":0.0019477039,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006909998,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":866115,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":866115,"type":"Cpu","usage_as_percentage":0.0028566783,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005307406,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0015903699,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027818708,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240016,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240016,"type":"Cpu","usage_as_percentage":0.0008189347,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0075056604,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0015517168,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005370682,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0017864706,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006000975,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239994,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239994,"type":"Cpu","usage_as_percentage":0.0010223598,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0064397566,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0011827155,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006279224,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0010088234,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006740463,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0010884869,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0065884665,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98402304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00037264318,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0065301787,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239928,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239928,"type":"Cpu","usage_as_percentage":0.001134253,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054162364,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239995,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239995,"type":"Cpu","usage_as_percentage":0.0010147782,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0033974582,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.00084069214,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98418688,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054547433,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.001384758,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054205684,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98435072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0012819923,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005589971,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":736341,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":736341,"type":"Cpu","usage_as_percentage":0.003101789,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0064626615,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0008521223,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0028912514,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240011,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240011,"type":"Cpu","usage_as_percentage":0.000996847,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057821027,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0019341133,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027175942,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98451456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0014053031,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003382125,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239980,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239980,"type":"Cpu","usage_as_percentage":0.0010827837,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0056607164,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0010009432,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027322127,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0015285661,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006617135,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240009,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240009,"type":"Cpu","usage_as_percentage":0.0011132362,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005615056,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0015317767,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0058424384,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98467840,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0009110605,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0061288956,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0007125454,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027968446,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.00075532903,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005461956,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239958,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239958,"type":"Cpu","usage_as_percentage":0.001548872,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005564515,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0014744651,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98500608,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0061741667,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98484224,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0014411391,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009048169,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":645367,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":645367,"type":"Cpu","usage_as_percentage":0.0015155746,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008631172,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1096791,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1096791,"type":"Cpu","usage_as_percentage":0.0028249472,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00575592,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1083672,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1083672,"type":"Cpu","usage_as_percentage":0.0025615836,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007776359,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":538793,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":538793,"type":"Cpu","usage_as_percentage":0.0021509086,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006284416,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0012200522,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0064384704,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1071910,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1071910,"type":"Cpu","usage_as_percentage":0.0023422393,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008134089,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1077573,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1077573,"type":"Cpu","usage_as_percentage":0.0030789773,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005944704,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":659547,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":659547,"type":"Cpu","usage_as_percentage":0.0021254728,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059985598,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0010494903,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0053526047,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.0007620035,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0053772517,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240020,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240020,"type":"Cpu","usage_as_percentage":0.0006427223,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004543801,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.00069850404,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057579107,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0007335119,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00572573,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0010567794,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0044939895,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0013721833,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98353152,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008312082,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":98353152,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.00074224017,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055795144,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0010387365,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0051178797,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.001954624,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0067698234,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.0018806651,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0028174403,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239997,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239997,"type":"Cpu","usage_as_percentage":0.0009373794,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005209065,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.00090775924,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0039576474,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":98369536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.0008961371,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98385920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005555898,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1761909,"type":"Memory","memory_in_bytes":98549760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1761909,"type":"Cpu","usage_as_percentage":0.0039357194,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005578175,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0011111042,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005982827,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0010658737,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006230001,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240037,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240037,"type":"Cpu","usage_as_percentage":0.0010722498,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0026975544,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0012955851,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005792408,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0011060567,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0054451916,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0015385636,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055552595,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0017342984,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002694003,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.00079504895,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0065808822,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0011694409,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.0031916562,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0009087863,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005614163,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0009950036,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0049701687,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":98516992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0017676277,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":98533376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0064442037,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240015,"type":"Memory","memory_in_bytes":95698944,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240015,"type":"Cpu","usage_as_percentage":0.001123143,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":95961088,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0032270341,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":95961088,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0014970438,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":96157696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005883884,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":366739,"type":"Memory","memory_in_bytes":57573376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":366739,"type":"Cpu","usage_as_percentage":0.0023245984,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56033280,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.010444946,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":289556,"type":"Memory","memory_in_bytes":56033280,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":289556,"type":"Cpu","usage_as_percentage":0.0025166003,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56295424,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0075463364,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":56262656,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.00052533235,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56328192,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005546366,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":56311808,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0014805936,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56426496,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005515361,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":56410112,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0018401231,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56442880,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005862266,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":56442880,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.001275743,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56541184,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0037254698,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":56524800,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0011502657,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56541184,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055132834,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Memory","memory_in_bytes":56524800,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Cpu","usage_as_percentage":0.0011001935,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56541184,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0062521505,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":56573952,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0007505534,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56737792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005671049,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":327270,"type":"Memory","memory_in_bytes":57098240,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":327270,"type":"Cpu","usage_as_percentage":0.0024960102,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57196544,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0063467715,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":298875,"type":"Memory","memory_in_bytes":57196544,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":298875,"type":"Cpu","usage_as_percentage":0.0032199703,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57180160,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009981834,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1660248,"type":"Memory","memory_in_bytes":56393728,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1660248,"type":"Cpu","usage_as_percentage":0.012936394,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56655872,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007354758,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":268598,"type":"Memory","memory_in_bytes":56229888,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":268598,"type":"Cpu","usage_as_percentage":0.0025138217,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56557568,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0041126036,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":55836672,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.005522506,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55869440,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007037133,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":55853056,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0016451866,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55869440,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0030492174,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240012,"type":"Memory","memory_in_bytes":55869440,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240012,"type":"Cpu","usage_as_percentage":0.0013719356,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56016896,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00888005,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":55984128,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0005944121,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56000512,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0045271292,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Memory","memory_in_bytes":55984128,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Cpu","usage_as_percentage":0.001064704,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56033280,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004883883,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239987,"type":"Memory","memory_in_bytes":56033280,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239987,"type":"Cpu","usage_as_percentage":0.0013772306,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55885824,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0024485905,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":55902208,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0018186652,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56000512,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057844245,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":55984128,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0028743064,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56082432,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.022094069,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2809883,"type":"Memory","memory_in_bytes":56016896,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":2809883,"type":"Cpu","usage_as_percentage":0.02959668,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55984128,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007918951,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":56016896,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0015210134,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56098816,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0075577293,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":56098816,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.00048024388,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":56147968,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0057336777,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":55967744,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0014044291,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54362112,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008253925,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":54362112,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0014001908,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54394880,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007085225,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":444136,"type":"Memory","memory_in_bytes":52887552,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":444136,"type":"Cpu","usage_as_percentage":0.0053344243,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53346304,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006609333,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":52772864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0015002826,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52756480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.002834659,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":52789248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.00037669376,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52887552,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004772898,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":52854784,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.00047885405,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53149696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003085378,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":53149696,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0007826042,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52576256,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059020096,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239994,"type":"Memory","memory_in_bytes":52576256,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239994,"type":"Cpu","usage_as_percentage":0.00087643677,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52625408,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027020932,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":52215808,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0012243749,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52641792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007699059,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":52740096,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0010766565,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52871168,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003271471,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":464205,"type":"Memory","memory_in_bytes":52985856,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":464205,"type":"Cpu","usage_as_percentage":0.0040873704,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53411840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004285338,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":53379072,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0012072695,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53592064,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0049547814,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":53395456,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0019020706,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53477376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0066022156,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240017,"type":"Memory","memory_in_bytes":51200000,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240017,"type":"Cpu","usage_as_percentage":0.0014918611,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":51707904,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003536871,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":51773440,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0007040031,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":50757632,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0049218335,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":50380800,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0005463584,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":50511872,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0026133386,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Memory","memory_in_bytes":50511872,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Cpu","usage_as_percentage":0.0008399886,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":50659328,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006370222,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":50855936,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0008796552,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52822016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008856461,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":52281344,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.003094855,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52084736,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0077672107,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":870302,"type":"Memory","memory_in_bytes":52592640,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":870302,"type":"Cpu","usage_as_percentage":0.0042920415,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52756480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008080692,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":52772864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.00074633386,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52805632,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0038374236,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":52805632,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0009078304,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53166080,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005691554,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":53182464,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00062983664,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53231616,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006637668,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":53297152,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0014044616,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53264384,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004387283,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":297225,"type":"Memory","memory_in_bytes":50642944,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":297225,"type":"Cpu","usage_as_percentage":0.002681409,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":52903936,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.014606068,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":6372327,"type":"Memory","memory_in_bytes":50528256,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":6372327,"type":"Cpu","usage_as_percentage":0.016143115,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53051392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.020181851,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":661874,"type":"Memory","memory_in_bytes":53510144,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":661874,"type":"Cpu","usage_as_percentage":0.03161476,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54132736,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.037661873,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":15581516,"type":"Memory","memory_in_bytes":54296576,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":15581516,"type":"Cpu","usage_as_percentage":0.029025622,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54837248,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.033985503,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1213925,"type":"Memory","memory_in_bytes":54247424,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":1213925,"type":"Cpu","usage_as_percentage":0.024546994,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54476800,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0070291385,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":290475,"type":"Memory","memory_in_bytes":53985280,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":290475,"type":"Cpu","usage_as_percentage":0.0069467654,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54362112,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007003716,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":54394880,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0011597826,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54706176,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0055566994,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":54722560,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0014294705,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54870016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0058981096,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239993,"type":"Memory","memory_in_bytes":54919168,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239993,"type":"Cpu","usage_as_percentage":0.0015622397,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55263232,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.003268315,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":55296000,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0013912283,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54181888,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004908885,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":54263808,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.002253851,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55066624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0077284523,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":55066624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.004575165,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54460416,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.010478523,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":3274676,"type":"Memory","memory_in_bytes":53018624,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":3274676,"type":"Cpu","usage_as_percentage":0.012526459,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54198272,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0037233531,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":53673984,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0011188963,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":53870592,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0022818127,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":53657600,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0013409974,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":54280192,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0049848943,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":54394880,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00070079823,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":24379392,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009388158,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":26214400,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0022825315,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":30162944,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0065754815,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":30294016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0012756257,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":30801920,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005884377,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":464238,"type":"Memory","memory_in_bytes":34209792,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":464238,"type":"Cpu","usage_as_percentage":0.008835169,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":33374208,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008418383,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":33439744,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0011094761,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":32931840,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00621828,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":32980992,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.00060168165,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":31490048,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0041355523,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":31506432,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00015538845,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":31735808,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004727762,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":31768576,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.0006076739,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":32129024,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007196483,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Memory","memory_in_bytes":32489472,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":239996,"type":"Cpu","usage_as_percentage":0.001530635,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":32276480,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0041668066,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":21741568,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.002989691,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":27787264,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005805541,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":292173,"type":"Memory","memory_in_bytes":31621120,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":292173,"type":"Cpu","usage_as_percentage":0.005415637,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":20545536,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.022179421,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Memory","memory_in_bytes":20725760,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240005,"type":"Cpu","usage_as_percentage":0.0003496078,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":26198016,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007522053,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Memory","memory_in_bytes":26345472,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240007,"type":"Cpu","usage_as_percentage":0.00060212536,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":31391744,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.011585697,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":7536390,"type":"Memory","memory_in_bytes":32063488,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":7536390,"type":"Cpu","usage_as_percentage":0.02709411,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":33144832,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.029243454,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1231924,"type":"Memory","memory_in_bytes":33554432,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":1231924,"type":"Cpu","usage_as_percentage":0.03242969,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":34242560,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.03873321,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2905843,"type":"Memory","memory_in_bytes":34177024,"virtual_memory_in_bytes":440641044480} +{"signed_in":false,"milliseconds_since_first_event":2905843,"type":"Cpu","usage_as_percentage":0.012336947,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":34684928,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.040132213,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":4750289,"type":"Memory","memory_in_bytes":35045376,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":4750289,"type":"Cpu","usage_as_percentage":0.032994356,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":35291136,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.04542153,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":550689,"type":"Memory","memory_in_bytes":31768576,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":550689,"type":"Cpu","usage_as_percentage":0.034919303,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":34258944,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.037227068,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":963741,"type":"Memory","memory_in_bytes":34340864,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":963741,"type":"Cpu","usage_as_percentage":0.031973567,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":29671424,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.029053569,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":29818880,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0016012929,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":31850496,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.010534727,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":31883264,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0012086718,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":31752192,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008429665,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":31637504,"virtual_memory_in_bytes":440640471040} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.003032325,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":null,"vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2684,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":96284,"type":"Memory","memory_in_bytes":90161152,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":96284,"type":"Cpu","usage_as_percentage":0.8188612,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":90619904,"virtual_memory_in_bytes":440749195264} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.9761285,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":12395350,"type":"Memory","memory_in_bytes":90374144,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":12395350,"type":"Cpu","usage_as_percentage":0.03016423,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":87375872,"virtual_memory_in_bytes":440749195264} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.029262554,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":8348887,"type":"Memory","memory_in_bytes":87375872,"virtual_memory_in_bytes":440749195264} +{"signed_in":false,"milliseconds_since_first_event":8348887,"type":"Cpu","usage_as_percentage":0.030290924,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":84099072,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.48596546,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":84082688,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.2757614,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":83591168,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2300454,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80314368,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":1.3051361,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58621952,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.3019141,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":58638336,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":1.2581095,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58392576,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.3187551,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":58408960,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":1.4198011,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58408960,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2898604,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":58540032,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":1.2691952,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58245120,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.3069026,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":58277888,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":1.3069606,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58540032,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.3076334,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240032,"type":"Memory","memory_in_bytes":58540032,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240032,"type":"Cpu","usage_as_percentage":1.2974466,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":59146240,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.3763064,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":59162624,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":1.2658916,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":59637760,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2809826,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":59473920,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.3471891,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58589184,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2658048,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239935,"type":"Memory","memory_in_bytes":58572800,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":239935,"type":"Cpu","usage_as_percentage":1.2870306,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58359808,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2859973,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":56885248,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":1.2224247,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57327616,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2214266,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1163495,"type":"Memory","memory_in_bytes":56393728,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":1163495,"type":"Cpu","usage_as_percentage":1.142272,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58884096,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2234582,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":494720,"type":"Memory","memory_in_bytes":59031552,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":494720,"type":"Cpu","usage_as_percentage":0.8730731,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58736640,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1651771,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":58392576,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.1672155,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58294272,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.2137562,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":56442880,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":1.1816952,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57507840,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1499788,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":57507840,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.2031529,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57442304,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1716459,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":55377920,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":1.1934805,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55787520,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1888307,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Memory","memory_in_bytes":55001088,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Cpu","usage_as_percentage":1.1961489,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":55263232,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.1723095,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":55246848,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":1.1532933,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":57262080,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":1.1797154,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":53493760,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":1.2302582,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":58523648,"virtual_memory_in_bytes":440749195264} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.82266766,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":340373,"type":"Memory","memory_in_bytes":55394304,"virtual_memory_in_bytes":440749768704} +{"signed_in":false,"milliseconds_since_first_event":340373,"type":"Cpu","usage_as_percentage":1.1003177,"core_count":10} diff --git a/zed/zed/.tmpTNnDis b/zed/zed/.tmpTNnDis new file mode 100644 index 0000000..f492247 --- /dev/null +++ b/zed/zed/.tmpTNnDis @@ -0,0 +1,253 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Memory","memory_in_bytes":105693184,"virtual_memory_in_bytes":450159689728} +{"signed_in":false,"milliseconds_since_first_event":239978,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105775104,"virtual_memory_in_bytes":450159689728} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008278357,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":105775104,"virtual_memory_in_bytes":450159689728} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0030607814,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105840640,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008270619,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":105840640,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0031210256,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105840640,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007474376,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240028,"type":"Memory","memory_in_bytes":105840640,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240028,"type":"Cpu","usage_as_percentage":0.00306785,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105857024,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0066490974,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":105857024,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0031922888,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105857024,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006860539,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":105857024,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.007715154,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105824256,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.014078374,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240011,"type":"Memory","memory_in_bytes":105824256,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240011,"type":"Cpu","usage_as_percentage":0.0030127706,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105857024,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0074668764,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":105873408,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0035900653,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":105873408,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.014054831,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":78299136,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0027220335,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":78299136,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00604066,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":78299136,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.00302938,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":76513280,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.006861716,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":74448896,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029420163,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":74448896,"virtual_memory_in_bytes":450293334016} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008285381,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":1526529,"type":"Memory","memory_in_bytes":77004800,"virtual_memory_in_bytes":450293334016} +{"signed_in":false,"milliseconds_since_first_event":1526529,"type":"Cpu","usage_as_percentage":0.008600637,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":77037568,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008187484,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Memory","memory_in_bytes":77037568,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":239998,"type":"Cpu","usage_as_percentage":0.0043249493,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":77594624,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012913853,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":4789602,"type":"Memory","memory_in_bytes":78299136,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":4789602,"type":"Cpu","usage_as_percentage":0.018775495,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":78643200,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0112379035,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":79446016,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0059043583,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":79446016,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007603365,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":79446016,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.00737924,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":79446016,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007270684,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":79839232,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0032732107,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008884616,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028218995,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005002883,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239994,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":239994,"type":"Cpu","usage_as_percentage":0.0027569127,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0069889203,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0029448557,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0059535983,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":239999,"type":"Cpu","usage_as_percentage":0.0029090724,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293334016} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0072309715,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239995,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293334016} +{"signed_in":false,"milliseconds_since_first_event":239995,"type":"Cpu","usage_as_percentage":0.0028625887,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0077417567,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.003010407,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012770835,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0028590339,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0058938977,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80117760,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028482405,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007555597,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028730556,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007541547,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.002987896,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0076565705,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0029530812,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0076959175,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028114456,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0075703077,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0029617383,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.005494319,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":80019456,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.0075742668,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80363520,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012111888,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":239997,"type":"Memory","memory_in_bytes":80412672,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":239997,"type":"Cpu","usage_as_percentage":0.009616664,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007959975,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028805668,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0073323906,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240008,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240008,"type":"Cpu","usage_as_percentage":0.0028457784,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0069994424,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028393297,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008074375,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0029149046,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007887618,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240018,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240018,"type":"Cpu","usage_as_percentage":0.002818738,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0076201744,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028950032,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012871398,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0029746792,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0079473425,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0028444072,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0073522013,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0030381887,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007546546,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028709336,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0073025883,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028520182,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007551181,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0027944967,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007824974,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0028344325,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80429056,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0073606744,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240004,"type":"Cpu","usage_as_percentage":0.008292954,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0074936086,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0029241866,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008015378,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240003,"type":"Cpu","usage_as_percentage":0.0028262897,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Cpu","usage_as_percentage":0.0073937504,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0030293602,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00573474,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0029610104,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.007798308,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80445440,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0028794887,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80510976,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.009543681,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":80510976,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.0031474887,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80510976,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0082589,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":80527360,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0034685356,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80527360,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.012412499,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240034,"type":"Memory","memory_in_bytes":80527360,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240034,"type":"Cpu","usage_as_percentage":0.0031274208,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80527360,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008006896,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":13259080,"type":"Memory","memory_in_bytes":80592896,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":13259080,"type":"Cpu","usage_as_percentage":0.026019571,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80592896,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.034067363,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":11407834,"type":"Memory","memory_in_bytes":80658432,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":11407834,"type":"Cpu","usage_as_percentage":0.026823536,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80805888,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.035539202,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":2690531,"type":"Memory","memory_in_bytes":80805888,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":2690531,"type":"Cpu","usage_as_percentage":0.028171483,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":80838656,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.032278623,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":278728,"type":"Memory","memory_in_bytes":80855040,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":278728,"type":"Cpu","usage_as_percentage":0.004001306,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":81051648,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008454452,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240032,"type":"Memory","memory_in_bytes":81051648,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240032,"type":"Cpu","usage_as_percentage":0.002936571,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":81051648,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0053142393,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Memory","memory_in_bytes":81068032,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.0031159509,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":81084416,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.008013614,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":81068032,"virtual_memory_in_bytes":450293907456} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.008473332,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":81018880,"virtual_memory_in_bytes":450293334016} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.004959862,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":81018880,"virtual_memory_in_bytes":450293334016} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.0026603192,"core_count":10} diff --git a/zed/zed/.tmpX9uuUx b/zed/zed/.tmpX9uuUx new file mode 100644 index 0000000..419d941 --- /dev/null +++ b/zed/zed/.tmpX9uuUx @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":24,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpXPn6hV b/zed/zed/.tmpXPn6hV new file mode 100644 index 0000000..cc8a019 --- /dev/null +++ b/zed/zed/.tmpXPn6hV @@ -0,0 +1,4 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.0.1"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} diff --git a/zed/zed/.tmpiXLxC5 b/zed/zed/.tmpiXLxC5 new file mode 100644 index 0000000..129d001 --- /dev/null +++ b/zed/zed/.tmpiXLxC5 @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":28,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":28,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpoPjE2z b/zed/zed/.tmpoPjE2z new file mode 100644 index 0000000..b74e808 --- /dev/null +++ b/zed/zed/.tmpoPjE2z @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":22,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":22,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpsvmD94 b/zed/zed/.tmpsvmD94 new file mode 100644 index 0000000..1e07983 --- /dev/null +++ b/zed/zed/.tmpsvmD94 @@ -0,0 +1,9 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"html","version":"0.1.1"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Extension","extension_id":"svelte","version":"0.0.1"} +{"signed_in":false,"milliseconds_since_first_event":97,"type":"Editor","operation":"open","file_extension":"md","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"App","operation":"open node project"} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Memory","memory_in_bytes":105512960,"virtual_memory_in_bytes":458931142656} +{"signed_in":false,"milliseconds_since_first_event":240006,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} diff --git a/zed/zed/.tmptnQipo b/zed/zed/.tmptnQipo new file mode 100644 index 0000000..09c5e89 --- /dev/null +++ b/zed/zed/.tmptnQipo @@ -0,0 +1,3 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":25,"type":"Setting","setting":"keymap","value":"VSCode"} diff --git a/zed/zed/.tmpx7oYof b/zed/zed/.tmpx7oYof new file mode 100644 index 0000000..8f6c5e1 --- /dev/null +++ b/zed/zed/.tmpx7oYof @@ -0,0 +1,4063 @@ +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Setting","setting":"theme","value":"One Dark"} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Setting","setting":"keymap","value":"VSCode"} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"App","operation":"open"} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Editor","operation":"open","file_extension":"rs","vim_mode":true,"copilot_enabled":true,"copilot_enabled_for_language":true} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":239719,"type":"Memory","memory_in_bytes":145735680,"virtual_memory_in_bytes":423488929792} +{"signed_in":false,"milliseconds_since_first_event":239719,"type":"Cpu","usage_as_percentage":0.0,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":107823104,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.111286074,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":107888640,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Cpu","usage_as_percentage":0.011952351,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":108118016,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0027978336,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240001,"type":"Memory","memory_in_bytes":108150784,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":240002,"type":"Cpu","usage_as_percentage":0.010393011,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":108281856,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.0018196855,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Memory","memory_in_bytes":108249088,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":240000,"type":"Cpu","usage_as_percentage":0.012426511,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":108249088,"virtual_memory_in_bytes":423489028096} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":0.00215594,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":10322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25695,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":28287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29682,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":29785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30988,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":40685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4629,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":527,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1604,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1880,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4455,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4704,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":137,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":414,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1049,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1394,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1848,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4095,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1865,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2872,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3364,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4676,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5318,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":88,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":123,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2209,"type":"Edit","duration":47231,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6037,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6664,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6945,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":81,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1141,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1347,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1481,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1482,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1046,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1138,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1792,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4987,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6045,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":356,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":357,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3580,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":33,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":401,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1658,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1032,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1213,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1221,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1812,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2396,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2705,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":637,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1540,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2428,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2494,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":870,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1117,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1321,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1879,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2011,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2134,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2198,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1188,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2951,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1224,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1992,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":866,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1407,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":118,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":495,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1833,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":80,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":323,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":929,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11227,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":76,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":77,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":730,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":776,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1846,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":36,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":43,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":152,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":418,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":529,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":635,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":819,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":914,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1535,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1627,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":918,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5412,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5589,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5673,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5679,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5827,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6191,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6334,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":363,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":447,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1488,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2004,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":241,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":670,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1013,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1595,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1737,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1913,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":44,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":864,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1172,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1853,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1927,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1999,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2124,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3816,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20092,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22362,"type":"Edit","duration":72776,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":24766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24778,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25048,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":25858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26352,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":26520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":319,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":746,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1021,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1080,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1736,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":212,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1289,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3989,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":87,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":353,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":767,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1107,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1307,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1507,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":772,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":829,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":984,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1555,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1763,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1912,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1993,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":280,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":955,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":997,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1085,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1256,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1354,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":41,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":783,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":978,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":983,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1217,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":69,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":398,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":713,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1420,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":165,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1402,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1887,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2573,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2581,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":133,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":259,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":747,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1058,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1066,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1388,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1758,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1784,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1890,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":500,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":774,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2055,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2056,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2387,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":164,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":701,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":714,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1041,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1042,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1051,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1090,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1142,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1223,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1373,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1856,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":94,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":421,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1599,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4731,"type":"Memory","memory_in_bytes":172392448,"virtual_memory_in_bytes":457872097280} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":12.756971,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":371,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":971,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1926,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5438,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5441,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5486,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7248,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49268,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49349,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49698,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49720,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49738,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49756,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49840,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56065,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56206,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":56990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1018,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Edit","duration":50587,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":1196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1197,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1549,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20952,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":21519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":22752,"type":"Edit","duration":686,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":23061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":23368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24276,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24459,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":24841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":70,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":108,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":881,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45170,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45172,"type":"Edit","duration":3210,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":45641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45754,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":45962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46163,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46169,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46261,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46430,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46553,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":46671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":380,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":381,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":822,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1054,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2480,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3266,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3322,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3712,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3779,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4005,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1207,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1377,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2405,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2587,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2588,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2601,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3262,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3263,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3275,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3883,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4062,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":12,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":440,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":538,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":678,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":928,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":986,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1146,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1711,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1905,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1953,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2228,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":48,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":391,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":392,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10586,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10826,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10834,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11115,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11561,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100375,"type":"Memory","memory_in_bytes":185303040,"virtual_memory_in_bytes":423507771392} +{"signed_in":false,"milliseconds_since_first_event":100375,"type":"Cpu","usage_as_percentage":7.7357693,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":180238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180273,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180330,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":180331,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182072,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182075,"type":"Edit","duration":23761,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":182086,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":182663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":229,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":469,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":740,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1151,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1693,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3328,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4503,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":132,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1570,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3876,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3888,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7040,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7272,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7897,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8174,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8182,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8410,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8411,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8460,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8877,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9985,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10799,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11719,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":400,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4316,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4528,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4703,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4809,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5470,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5484,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5805,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5977,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":153,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1771,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1782,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1845,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2111,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2312,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2496,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2497,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4287,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4288,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7148,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7149,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7150,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7332,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10744,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10921,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10947,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":35,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":218,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":267,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":393,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":468,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":644,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":654,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1043,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1144,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1660,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1911,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1919,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":177,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":335,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":337,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":498,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":606,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":764,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":908,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1030,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1209,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1214,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1298,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1406,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1413,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1830,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1981,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":683,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":690,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1175,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1343,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1492,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1493,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1501,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1585,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1769,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1770,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1775,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1898,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2435,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2638,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":199,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":286,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":653,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":818,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":825,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1028,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1034,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1091,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1235,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1490,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2190,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":14568,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53994,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53996,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":53998,"type":"Edit","duration":44377,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":54200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54203,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54446,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54546,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54557,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54850,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54857,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":54976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55063,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55074,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55219,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55225,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55345,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":55623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":68,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":75,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":462,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":718,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":725,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1688,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2326,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2327,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2333,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2416,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2702,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2709,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2995,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3533,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3534,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3886,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3893,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4002,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4444,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4445,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":249,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":251,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":253,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":329,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":336,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":429,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":954,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1366,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1596,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1687,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15572,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15611,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":15669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":19899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":20765,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":30457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31435,"type":"Edit","duration":8174,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":31722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":31722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":157,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":761,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":851,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":936,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2990,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2991,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2998,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3473,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3733,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3915,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3968,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3974,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4104,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":78,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":83,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":563,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3689,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3858,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3906,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4008,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4295,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4454,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4539,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4732,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4801,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4958,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4965,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5171,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":511,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":669,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":745,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":861,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":920,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":925,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1068,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1234,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1358,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1686,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1780,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1904,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":112,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":305,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":616,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":617,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":841,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":847,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1230,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1382,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1383,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1385,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1578,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1852,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1863,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2505,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2512,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2566,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2680,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2681,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":47,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":51,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":254,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":310,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":317,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":471,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":478,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":645,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":646,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":659,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":802,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":803,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1044,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1370,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1376,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1443,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1510,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1894,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2226,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":300,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":541,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":641,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":648,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":811,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1088,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1089,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1099,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5318,"type":"Memory","memory_in_bytes":210993152,"virtual_memory_in_bytes":466462834688} +{"signed_in":false,"milliseconds_since_first_event":5318,"type":"Cpu","usage_as_percentage":10.134797,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":90735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90739,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":90828,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98917,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99009,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99378,"type":"Edit","duration":18018,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":99649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99810,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":99969,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100975,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100976,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100982,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":101026,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":185,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":820,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":896,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":903,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":972,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1514,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1706,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1707,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1937,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2029,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2463,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2631,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3375,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3386,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3506,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3605,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3808,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3938,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3939,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":89,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":173,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":372,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":466,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":554,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":564,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":794,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":806,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":882,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2365,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3077,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3078,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3084,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3145,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3156,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3315,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3558,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3824,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3832,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3860,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3867,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3941,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3948,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":136,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":143,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":303,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":311,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":399,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":873,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":895,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1168,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1283,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1544,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1547,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1797,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1804,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1835,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1884,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2019,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2067,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2368,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2417,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2628,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2710,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2785,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":91,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":92,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":216,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":292,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":299,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":451,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":559,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":634,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":640,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":753,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":842,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":957,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1020,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1114,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1236,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1344,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1615,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1766,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1899,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":13,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":106,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":189,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":196,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":313,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7474,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8610,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8932,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9239,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9240,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9453,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9742,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9743,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9821,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9956,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":9962,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10314,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10472,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10479,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10560,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10565,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10656,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10663,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10722,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10729,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":6,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":404,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7109,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7110,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7140,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7147,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7208,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7433,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7449,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7450,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7456,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7531,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7532,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7537,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7624,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7630,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7715,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7839,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7844,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7923,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":7930,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8006,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8129,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8274,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8281,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8320,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8324,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8491,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8499,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":8571,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":11,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":16,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":127,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":341,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":342,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":346,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":424,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":431,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":552,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":620,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3192,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3204,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3290,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3457,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3518,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3524,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3621,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3831,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4081,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4082,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4083,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":4264,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":205,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":210,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":360,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":513,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":520,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":579,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":755,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":762,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":885,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":892,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":934,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":935,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":942,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1242,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1252,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1502,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1593,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1594,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1600,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1668,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1675,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1760,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1768,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1859,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":5,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":71,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":159,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":243,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":247,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":389,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":397,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":548,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":562,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":592,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":597,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1007,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1012,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1079,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1187,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1350,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":451524,"type":"Memory","memory_in_bytes":212418560,"virtual_memory_in_bytes":457872179200} +{"signed_in":false,"milliseconds_since_first_event":451524,"type":"Cpu","usage_as_percentage":6.5681973,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Memory","memory_in_bytes":208371712,"virtual_memory_in_bytes":432097918976} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Cpu","usage_as_percentage":1.9196047,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":42697,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":42787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100059,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":100166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102632,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102636,"type":"Edit","duration":41683,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":102959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":102959,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103100,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103522,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":103789,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104061,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104075,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104193,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104200,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104309,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104384,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104545,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104551,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104612,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104613,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104662,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104667,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104735,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104741,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104960,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":104967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105047,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105052,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105130,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":105131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":158,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1015,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1098,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1362,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1374,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1442,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1448,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1583,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1590,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1708,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1910,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1916,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2096,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2101,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2270,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2271,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2282,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2434,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2608,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2657,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2700,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2748,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2791,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2891,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2924,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2973,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3016,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":49,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":176,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":186,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":361,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":367,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":408,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":409,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":415,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":458,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":575,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":576,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":582,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":661,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":691,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":692,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":699,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":800,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":807,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":869,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":874,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":950,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1050,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1057,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1246,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1258,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1359,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1543,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1550,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1633,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1717,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1724,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":113,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":120,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":155,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":291,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":297,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":338,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":508,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":515,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":607,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":614,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":671,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":672,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":788,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":795,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":854,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":855,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":862,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":963,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":964,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":970,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1038,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1121,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1122,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1128,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1339,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1340,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1348,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1622,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1623,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1625,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1639,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1647,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1814,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1815,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1823,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1966,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":66,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":73,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":178,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2022,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2023,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2033,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":3166,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52813,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":52817,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":57279,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":58694,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59220,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59223,"type":"Edit","duration":12442,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":59231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59452,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59464,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59655,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59749,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59750,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59757,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59900,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59901,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":59907,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60024,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60025,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60031,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60194,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60195,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60201,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60351,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60517,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60525,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60591,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60598,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60716,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":60723,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27255,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":27403,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67323,"type":"Memory","memory_in_bytes":177405952,"virtual_memory_in_bytes":440691441664} +{"signed_in":false,"milliseconds_since_first_event":67323,"type":"Cpu","usage_as_percentage":7.40833,"core_count":10} +{"signed_in":false,"milliseconds_since_first_event":84516,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":84618,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93967,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":93979,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97301,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":97306,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98233,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":98238,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107069,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":107071,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116119,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":116215,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117752,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":117871,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162131,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":162135,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183039,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":184468,"type":"Edit","duration":1545,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":230461,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230465,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230504,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230523,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230542,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":230556,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265685,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265689,"type":"Edit","duration":1,"environment":"editor"} +{"signed_in":false,"milliseconds_since_first_event":265696,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265751,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265759,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265902,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":265909,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266010,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266017,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266202,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":266211,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":10,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":86,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":160,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":161,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":167,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":277,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":285,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":369,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":485,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":577,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":584,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":619,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":626,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":786,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":787,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":793,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":944,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1064,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1070,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1231,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1232,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1244,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1296,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1302,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1419,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1426,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1519,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1526,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1602,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1603,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1609,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1727,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1728,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1734,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1796,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":0,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":67,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":74,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":183,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":250,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":257,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":304,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":308,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":425,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":432,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":467,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":567,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":574,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":642,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":649,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":666,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":674,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":868,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":875,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1125,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1126,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1293,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1294,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1475,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1476,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1477,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1650,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1651,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1836,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1837,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":1838,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2000,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2001,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2003,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2179,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2180,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} +{"signed_in":false,"milliseconds_since_first_event":2181,"type":"Copilot","suggestion_id":null,"suggestion_accepted":false,"file_extension":null} diff --git a/zed/zed/embeddings/semantic-index-db.0.mdb/data.mdb b/zed/zed/embeddings/semantic-index-db.0.mdb/data.mdb new file mode 100644 index 0000000000000000000000000000000000000000..e95a0d89be253239119a8c9286c956c675e4f2ed GIT binary patch literal 49152 zcmeI(J5Iwu5CG7@G@O8zGNM4{1PLV<$N?h9L`Dih-q3I&PJuWHWm=99qS%%tOOYsW z6TK<+Gak*ZU%wGuTpbtRUq7E0U80_s0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!5-N0tC)lpnrEi#{2)id%tQpFI&}YFc0g_8sEH$JuU*hX4Tr1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72#g_ce`uP;ZKSvLdQn$py36OO vtW&=&3yVJWU?UX+M?Rh(I_ZMXlAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5;&zb{bw?<1->k6ANsX3gKfl^YNsK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB=C*1+LZw zRn&1mnU2Pz>1f~jRUWDSC~hCdcaz6MtNU$16&JA_&YR_M)(rgvpmh-tAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk z1PBlyK!Ctc3#88Zua`EgZ9o(=Lq~L=jRkDr0woPfuz-XDX~WFI_HMcS>3-g^pCxVUm_kduYY4et y|5xpKmzHUMeh>l#2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkL{yTAoE!wvWV literal 0 HcmV?d00001 diff --git a/zed/zed/settings.json b/zed/zed/settings.json new file mode 100644 index 0000000..25b91b0 --- /dev/null +++ b/zed/zed/settings.json @@ -0,0 +1,13 @@ +// Zed settings +// +// For information on how to configure Zed, see the Zed +// documentation: https://zed.dev/docs/configuring-zed +// +// To see all of Zed's default settings without changing your +// custom settings, run the `open default settings` command +// from the command palette or from `Zed` application menu. +{ + "vim_mode": true, + "ui_font_size": 16, + "buffer_font_size": 16 +}