Skip to content

Instantly share code, notes, and snippets.

@zikaeroh
Created November 15, 2019 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zikaeroh/4c7df49e6f99778d63e21d7d2173ae9e to your computer and use it in GitHub Desktop.
Save zikaeroh/4c7df49e6f99778d63e21d7d2173ae9e to your computer and use it in GitHub Desktop.
more 35388
[Trace - 17:45:05.684 PM] Sending request 'initialize - (0)'.
Params: {"processId":38921,"rootPath":"/home/jake/zikaeroh/hortbot/hortbot","rootUri":"file:///home/jake/zikaeroh/hortbot/hortbot","capabilities":{"workspace":{"applyEdit":true,"workspaceEdit":{"documentChanges":true,"resourceOperations":["create","rename","delete"],"failureHandling":"textOnlyTransactional"},"didChangeConfiguration":{"dynamicRegistration":true},"didChangeWatchedFiles":{"dynamicRegistration":true},"symbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26]}},"executeCommand":{"dynamicRegistration":true},"configuration":true,"workspaceFolders":true},"textDocument":{"publishDiagnostics":{"relatedInformation":true},"synchronization":{"dynamicRegistration":true,"willSave":true,"willSaveWaitUntil":true,"didSave":true},"completion":{"dynamicRegistration":true,"contextSupport":true,"completionItem":{"snippetSupport":true,"commitCharactersSupport":true,"documentationFormat":["markdown","plaintext"],"deprecatedSupport":true,"preselectSupport":true},"completionItemKind":{"valueSet":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]}},"hover":{"dynamicRegistration":true,"contentFormat":["markdown","plaintext"]},"signatureHelp":{"dynamicRegistration":true,"signatureInformation":{"documentationFormat":["markdown","plaintext"],"parameterInformation":{"labelOffsetSupport":true}}},"definition":{"dynamicRegistration":true,"linkSupport":true},"references":{"dynamicRegistration":true},"documentHighlight":{"dynamicRegistration":true},"documentSymbol":{"dynamicRegistration":true,"symbolKind":{"valueSet":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26]},"hierarchicalDocumentSymbolSupport":true},"codeAction":{"dynamicRegistration":true,"codeActionLiteralSupport":{"codeActionKind":{"valueSet":["","quickfix","refactor","refactor.extract","refactor.inline","refactor.rewrite","source","source.organizeImports"]}}},"codeLens":{"dynamicRegistration":true},"formatting":{"dynamicRegistration":true},"rangeFormatting":{"dynamicRegistration":true},"onTypeFormatting":{"dynamicRegistration":true},"rename":{"dynamicRegistration":true,"prepareSupport":true},"documentLink":{"dynamicRegistration":true},"typeDefinition":{"dynamicRegistration":true,"linkSupport":true},"implementation":{"dynamicRegistration":true,"linkSupport":true},"colorProvider":{"dynamicRegistration":true},"foldingRange":{"dynamicRegistration":true,"rangeLimit":5000,"lineFoldingOnly":true},"declaration":{"dynamicRegistration":true,"linkSupport":true}}},"initializationOptions":{},"trace":"off","workspaceFolders":[{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot","name":"hortbot"}]}
[Trace - 17:45:05.685 PM] Received response 'initialize - (0)' in 1ms.
Result: {"capabilities":{"textDocumentSync":{"openClose":true,"change":2,"save":{}},"completionProvider":{"triggerCharacters":["."]},"hoverProvider":true,"signatureHelpProvider":{"triggerCharacters":["(",","]},"definitionProvider":true,"typeDefinitionProvider":true,"implementationProvider":true,"referencesProvider":true,"documentHighlightProvider":true,"documentSymbolProvider":true,"codeActionProvider":{"codeActionKinds":["quickfix","source.organizeImports"]},"documentLinkProvider":{},"documentFormattingProvider":true,"renameProvider":{"prepareProvider":true},"foldingRangeProvider":true,"executeCommandProvider":{"commands":["tidy"]},"workspace":{"workspaceFolders":{"supported":true,"changeNotifications":"workspace/didChangeWorkspaceFolders"}}},"custom":null}
[Trace - 17:45:05.686 PM] Sending notification 'initialized'.
Params: {}
[Trace - 17:45:05.686 PM] Received request 'client/registerCapability - (1)'.
Params: {"registrations":[{"id":"workspace/didChangeConfiguration","method":"workspace/didChangeConfiguration"},{"id":"workspace/didChangeWorkspaceFolders","method":"workspace/didChangeWorkspaceFolders"}]}
[Trace - 17:45:05.686 PM] Sending notification 'textDocument/didOpen'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","languageId":"go","version":1,"text":"package bot\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/hortbot/hortbot/internal/bnsq\"\n\t\"github.com/hortbot/hortbot/internal/cli\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/botflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsqflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/redisflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/sqlflags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/twitchflags\"\n\t\"github.com/hortbot/hortbot/internal/pkg/ctxlog\"\n\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx\"\n\t\"go.opencensus.io/trace\"\n\t\"go.uber.org/zap\"\n\t\"golang.org/x/sync/semaphore\"\n)\n\ntype config struct {\n\tcli.Common\n\tSQL sqlflags.SQL\n\tTwitch twitchflags.Twitch\n\tRedis redisflags.Redis\n\tBot botflags.Bot\n\tNSQ nsqflags.NSQ\n\tJaeger jaegerflags.Jaeger\n}\n\nfunc Run(args []string) {\n\tcli.Run(\"bot\", args, &config{\n\t\tCommon: cli.DefaultCommon,\n\t\tSQL: sqlflags.DefaultSQL,\n\t\tTwitch: twitchflags.DefaultTwitch,\n\t\tRedis: redisflags.DefaultRedis,\n\t\tBot: botflags.DefaultBot,\n\t\tNSQ: nsqflags.DefaultNSQ,\n\t\tJaeger: jaegerflags.DefaultJaeger,\n\t})\n}\n\nfunc (config *config) Main(ctx context.Context, _ []string) {\n\tdefer config.Jaeger.Init(ctx, \"bot\", config.Debug)()\n\n\tconnector := config.SQL.Connector(ctx)\n\tconnector = config.Jaeger.TraceDB(config.Debug, connector)\n\tdb := config.SQL.Open(ctx, connector)\n\trdb := config.Redis.Client()\n\ttwitchAPI := config.Twitch.Client()\n\tsender := config.NSQ.NewSendMessagePublisher()\n\tnotifier := config.NSQ.NewNotifyPublisher()\n\n\tb := config.Bot.New(ctx, db, rdb, sender, notifier, twitchAPI)\n\tdefer b.Stop()\n\n\tsem := semaphore.NewWeighted(int64(config.Bot.Workers))\n\n\tg := errgroupx.FromContext(ctx)\n\n\tincomingSub := config.NSQ.NewIncomingSubscriber(15*time.Second, func(i *bnsq.Incoming, metadata *bnsq.Metadata) error {\n\t\tctx, span := trace.StartSpanWithRemoteParent(ctx, \"OnIncoming\", metadata.ParentSpan())\n\t\tdefer span.End()\n\n\t\tif err := sem.Acquire(ctx, 1); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tg.Go(func(ctx context.Context) error {\n\t\t\tctx, span := trace.StartSpanWithRemoteParent(ctx, \"Worker\", span.SpanContext())\n\t\t\tdefer span.End()\n\n\t\t\tdefer sem.Release(1)\n\t\t\tb.Handle(ctx, i.Origin, i.Message)\n\t\t\treturn ctx.Err()\n\t\t})\n\n\t\treturn nil\n\t})\n\n\tg.Go(sender.Run)\n\tg.Go(notifier.Run)\n\tg.Go(incomingSub.Run)\n\n\tif err := g.WaitIgnoreStop(); err != nil {\n\t\tctxlog.Info(ctx, \"exiting\", zap.Error(err))\n\t}\n}\n"}}
[Trace - 17:45:05.689 PM] Sending response 'client/registerCapability - (1)' took 2ms.
Result: {}
[Trace - 17:45:05.698 PM] Sending request 'textDocument/codeAction - (1)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":15,"character":40},"end":{"line":15,"character":40}},"context":{"diagnostics":[]}}
[Trace - 17:45:05.698 PM] Sending request 'textDocument/documentLink - (2)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:05.768 PM] Received request 'workspace/configuration - (2)'.
Params: {"items":[{"scopeUri":"file:///home/jake/zikaeroh/hortbot/hortbot","section":"gopls"},{"scopeUri":"file:///home/jake/zikaeroh/hortbot/hortbot","section":"gopls-hortbot"}]}
[Trace - 17:45:05.768 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:05 Build info\n----------\ngolang.org/x/tools/gopls master\n golang.org/x/tools/gopls@v0.1.8-0.20191114222411-4191b8cbba09 h1:DpzRwf3XU8+90FfXmvm4kWXKty1+ETF7dVnz/su5a/s=\n github.com/BurntSushi/toml@v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=\n github.com/sergi/go-diff@v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ=\n golang.org/x/sync@v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=\n golang.org/x/tools@v0.0.0-20191114200427-caa0b0f7d508 h1:0FYNp0PF9kFm/ZUrvcJiQ12IUJJG7iAc6Cu01wbKrbU=\n golang.org/x/xerrors@v0.0.0-20190717185122-a985d3407aa7 h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc=\n honnef.co/go/tools@v0.0.1-2019.2.3 h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM=\n\nGo info\n-------\ngo version go1.13.4 linux/amd64\n\nGO111MODULE=\"\"\nGOARCH=\"amd64\"\nGOBIN=\"\"\nGOCACHE=\"/home/jake/.cache/go-build\"\nGOENV=\"/home/jake/.config/go/env\"\nGOEXE=\"\"\nGOFLAGS=\"\"\nGOHOSTARCH=\"amd64\"\nGOHOSTOS=\"linux\"\nGONOPROXY=\"\"\nGONOSUMDB=\"\"\nGOOS=\"linux\"\nGOPATH=\"/home/jake/go\"\nGOPRIVATE=\"\"\nGOPROXY=\"https://proxy.golang.org,direct\"\nGOROOT=\"/usr/lib/go\"\nGOSUMDB=\"sum.golang.org\"\nGOTMPDIR=\"\"\nGOTOOLDIR=\"/usr/lib/go/pkg/tool/linux_amd64\"\nGCCGO=\"gccgo\"\nAR=\"ar\"\nCC=\"gcc\"\nCXX=\"g++\"\nCGO_ENABLED=\"1\"\nGOMOD=\"/home/jake/zikaeroh/hortbot/hortbot/go.mod\"\nCGO_CFLAGS=\"-g -O2\"\nCGO_CPPFLAGS=\"\"\nCGO_CXXFLAGS=\"-g -O2\"\nCGO_FFLAGS=\"-g -O2\"\nCGO_LDFLAGS=\"-g -O2\"\nPKG_CONFIG=\"pkg-config\"\nGOGCCFLAGS=\"-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build430471797=/tmp/go-build -gno-record-gcc-switches\"\n"}
[Trace - 17:45:05.774 PM] Sending response 'workspace/configuration - (2)' took 5ms.
Result: [{"usePlaceholders":false,"completeUnimported":true,"watchFileChanges":true,"deepCompletion":true,"go-diff":true},null]
[Trace - 17:45:05.894 PM] Sending request 'textDocument/foldingRange - (3)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:06.795 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackages = 117"}
[Trace - 17:45:06.795 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxlog\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxlog/ctxlog.go]"}
[Trace - 17:45:06.796 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/publisher.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/subscriber.go]"}
[Trace - 17:45:06.797 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/version\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/version/version.go]"}
[Trace - 17:45:06.797 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/cli.go]"}
[Trace - 17:45:06.797 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cbp\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp.go]"}
[Trace - 17:45:06.797 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/models\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/models/autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/blocked_users.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_queries.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_table_names.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_types.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/channels.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_infos.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_lists.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/custom_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/psql_upsert.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/quotes.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/repeated_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/scheduled_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/twitch_tokens.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/models/variables.go]"}
[Trace - 17:45:06.797 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/modelsx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/channel.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/modelsx.go]"}
[Trace - 17:45:06.797 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/redis.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/http.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/linkmatch\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/youtube\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtube.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/findlinks\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/repeat\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/recache\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache.go]"}
[Trace - 17:45:06.798 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/errgroupx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/accesslevel_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/actions.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/builtin_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_admin.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_fun.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_lastfm.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_levels.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_list.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_management.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_moderation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_quote.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_raffle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_random.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_schedule.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_settings.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_steam.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_var.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_website.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/correlation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/custom_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/deps.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/handle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/interfaces.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/rdb.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/session.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/sessiontype_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/testing.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/user_state.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/var.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/nsqflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/nsqflags/nsqargs.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/jaegerflags/jaegerargs.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations/esc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/bindata.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/esc.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/redisflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/sqlflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/sqlflags/sqlargs.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/twitchflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/twitchflags/twitchargs.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/botflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/botflags/botargs.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/confimport\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/confimport/confimport.go]"}
[Trace - 17:45:06.799 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/confconvert\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/main.go /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/site_db.go /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/twitch.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurlfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurlfakes/fake_api.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/confimport\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confimport/confimport.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ircx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc/breq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/birc.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/config.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/connecton.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/twitchx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/twitchx/twitchx.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/ircflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/ircflags/ircargs.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/irc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/irc/main.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/web/mid\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/web/mid/mid.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/web/templates\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/about.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/base.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channel.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channels.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/docs.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/gen.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/index.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/login.qtpl.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/sidebar_scripts.qtpl.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/web\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/web/middleware.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/session.go /home/jake/zikaeroh/hortbot/hortbot/internal/web/web.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/webflags\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/webflags/webargs.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/singleproc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/singleproc/singleproc.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/web\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/web/main.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/main.go]"}
[Trace - 17:45:06.800 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot/botfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_notifier.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_rand.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_sender.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife/extralifefakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralifefakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm/lastfmfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfmfakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam/steamfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steamfakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban/urbanfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urbanfakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch/twitchfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitchfakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/youtube/youtubefakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtubefakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd/xkcdfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcdfakes/fake_api.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/testutil.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/miniredistest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/miniredistest/miniredistest.go]"}
[Trace - 17:45:06.801 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot/btest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/apis.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/clock.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/db.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/fakes.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/irc.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/script_tester.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/twitch.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxhack\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/tls.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/nsqtest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/nsqtest/nsqtest.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/pgtest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/pgtest/pgtest.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/testutil/redistest\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/redistest/redistest.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/config_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/connection_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/shared_test.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc.test\n\tfiles = [/home/jake/.cache/go-build/44/449e1a355fe51b9dfb7ef5c3f6feaa64c0226d927c3b2eb0ee9995a3fd7881ce-d]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc/breq.test\n\tfiles = [/home/jake/.cache/go-build/a8/a80d214598d924d91af3a36ffcde1b47e2be0601d6086d903fcdb63031bd5212-d]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations_test.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/migrations.test\n\tfiles = [/home/jake/.cache/go-build/9e/9e8846ac4cf1765248455e0ca27336d65a4cf5f7bc96a3db2b6a26998327f782-d]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web_test.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl_test.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis.test\n\tfiles = [/home/jake/.cache/go-build/99/9942599c62884849cc08d6b67915ef27e1b0595282adf33009b62c840ae24f3c-d]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife_test.go]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban.test\n\tfiles = [/home/jake/.cache/go-build/06/060a1917760e21f5242a0d055e230c6c3ea1aaa29909bbf1f962eba51505a493-d]"}
[Trace - 17:45:06.802 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd.test\n\tfiles = [/home/jake/.cache/go-build/2a/2a24b2da96f8c34b71811cbd8872b7cafd9ac21da00dbdccc2d75b5db90ade35-d]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/birc/breq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq.go /home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/bench_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/main_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/script_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/testcmd_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot.test\n\tfiles = [/home/jake/.cache/go-build/47/479319ad1cc8f73778af99b9f17fc38d7303d652de7daf0a56b5bdf0c33f7e3b-d]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/xkcd_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/lastfm.test\n\tfiles = [/home/jake/.cache/go-build/32/32df16d3e210a510043f013176b3cacc4d1827b30e1c4020bb976108e5f7981b-d]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/tinyurl.test\n\tfiles = [/home/jake/.cache/go-build/99/996a7ea007c669f5589857dbfcb7d2b9b20672b5f1bc179574e0835dd12b8597-d]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/errgroupx_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/errgroupx.test\n\tfiles = [/home/jake/.cache/go-build/1d/1d2d016717473279731bacbf6cc41be99d10bc1e4d0068b92538b66dd002a6c6-d]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/tls.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/accesslevel_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/actions.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/builtin_commands.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_admin.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_autoreplies.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_fun.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_lastfm.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_levels.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_list.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_management.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_moderation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_quote.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_raffle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_random.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_schedule.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_settings.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_steam.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_var.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_website.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/correlation.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/custom_command.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/deps.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/filters.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/handle.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/interfaces.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/rdb.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/repeat.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/session.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/sessiontype_string.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/testing.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/user_state.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/var.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bot/export_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/publisher.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/subscriber.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/export_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/fakeirc.test\n\tfiles = [/home/jake/.cache/go-build/e7/e74659b1e3ced26c53bfbf3d2b73edb98d9c0eee1331ec7e43501c6a273b7b01-d]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cbp_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp_test.go]"}
[Trace - 17:45:06.803 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/findlinks_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks_test.go]"}
[Trace - 17:45:06.804 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/findlinks.test\n\tfiles = [/home/jake/.cache/go-build/ae/ae7f518dca0f877b8264213f1d3e6c2173fa941e53c3314bf90bbb98240b2505-d]"}
[Trace - 17:45:06.804 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cbp.test\n\tfiles = [/home/jake/.cache/go-build/72/729ecc894a1bf98486976c6e3b82f7ca6206ca3494be1b1b012a4175df9092d0-d]"}
[Trace - 17:45:06.804 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ircx\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/extralife.test\n\tfiles = [/home/jake/.cache/go-build/ae/ae1b40cd21fcf3b25ab77bc19939a8f02c31b2d72e869418b9bfd0ea2e828c28-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/linkmatch.test\n\tfiles = [/home/jake/.cache/go-build/e1/e1f3241e79f270a8094a97e6bd572e093a0cb075c72482b5e8a692e6181c3e53-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/db/redis\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/redis.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ircx.test\n\tfiles = [/home/jake/.cache/go-build/84/844cd46d79b2edb56cad61822f5d5c8544d92aa299dc97d5a0db5807ae65615b-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/linkmatch_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/steam.test\n\tfiles = [/home/jake/.cache/go-build/2e/2efd9496a7674857f1a8b23fd391bfb90838c10cdb70b744641f1b7ba5c10c7c-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/http.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/bnsq.test\n\tfiles = [/home/jake/.cache/go-build/ed/ed3164eec202a876f51e771279b45a177324dae4c4a1b80282fef8d07e5f86d0-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/fake_twitch_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/twitch.test\n\tfiles = [/home/jake/.cache/go-build/46/4649e8947eb0d533542d956be7161f6f877ad72d7459d195feb34465bb2f510b-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/apis/urban_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxhack\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/recache_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/ctxhack.test\n\tfiles = [/home/jake/.cache/go-build/f7/f7cb8f249ec2fa90c8b83d6429f1003d0da18267f018b99fc8ab98aaa4560093-d]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x_test.go]"}
[Trace - 17:45:06.805 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x.test\n\tfiles = [/home/jake/.cache/go-build/e5/e5fa3bfd21a0bc296f3802dc776f1143db52cd157663ec5d747386cb363ce78c-d]"}
[Trace - 17:45:06.806 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/repeat_test\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/cron_test.go /home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat_test.go]"}
[Trace - 17:45:06.806 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/recache.test\n\tfiles = [/home/jake/.cache/go-build/3f/3fefbe12098cf98dfeb9a520c67a52cf351c96f807779059bb0547387396c20f-d]"}
[Trace - 17:45:06.806 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/repeat.test\n\tfiles = [/home/jake/.cache/go-build/15/15f8dbf930cd33f7c8ed5a4bf4519d4379f2473e166bb9713bec1097f809a316-d]"}
[Trace - 17:45:06.807 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/pkg/oauth2x/oauth2xfakes\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2xfakes/fake_token_source.go]"}
[Trace - 17:45:07.709 PM] Received response 'textDocument/codeAction - (1)' in 2011ms.
Result: {}
[Trace - 17:45:07.731 PM] Received response 'textDocument/documentLink - (2)' in 2032ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:07.731 PM] Received response 'textDocument/foldingRange - (3)' in 1837ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:07.802 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:26.682 PM] Sending request 'textDocument/hover - (4)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"position":{"line":16,"character":25}}
[Trace - 17:45:26.684 PM] Received response 'textDocument/hover - (4)' in 1ms.
Result: {"contents":{"kind":"markdown","value":"```go\n\"go.opencensus.io/trace\"\n```"},"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}}}
[Trace - 17:45:27.405 PM] Sending request 'textDocument/codeAction - (5)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:27.414 PM] Received response 'textDocument/codeAction - (5)' in 8ms.
Result: {}
[Trace - 17:45:27.682 PM] Sending request 'textDocument/definition - (6)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"position":{"line":11,"character":41}}
[Trace - 17:45:27.683 PM] Received response 'textDocument/definition - (6)' in 1ms.
Result: [{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go","range":{"start":{"line":1,"character":0},"end":{"line":14,"character":37}}}]
[Trace - 17:45:27.716 PM] Sending request 'textDocument/hover - (7)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"position":{"line":11,"character":41}}
[Trace - 17:45:27.716 PM] Received response 'textDocument/hover - (7)' in 0ms.
Result: {"contents":{"kind":"markdown","value":"```go\n\"github.com/hortbot/hortbot/internal/cli/flags/redisflags\"\n```"},"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":59}}}
[Trace - 17:45:27.736 PM] Sending notification 'textDocument/didOpen'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go","languageId":"go","version":1,"text":"// Package redisflags processes redis-related flags.\npackage redisflags\n\nimport (\n\tgoredis \"github.com/go-redis/redis/v7\"\n\t\"github.com/hortbot/hortbot/internal/db/redis\"\n)\n\ntype Redis struct {\n\tAddr string `long:\"redis-addr\" env:\"HB_REDIS_ADDR\" description:\"Redis address\" required:\"true\"`\n}\n\nvar DefaultRedis = Redis{}\n\nfunc (args *Redis) Client() *redis.DB {\n\treturn redis.New(goredis.NewClient(&goredis.Options{\n\t\tAddr: args.Addr,\n\t}))\n}\n"}}
[Trace - 17:45:27.736 PM] Sending notification 'textDocument/didClose'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go"}}
[Trace - 17:45:27.743 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go","diagnostics":[]}
[Trace - 17:45:27.743 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go","diagnostics":[]}
[Trace - 17:45:27.745 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:27 failed to run analyses: no package for github.com/hortbot/hortbot/internal/cli/flags/redisflags\n\tfile = file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go"}
[Trace - 17:45:28.755 PM] Sending request 'textDocument/hover - (8)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"position":{"line":11,"character":41}}
[Trace - 17:45:28.755 PM] Received response 'textDocument/hover - (8)' in 0ms.
Result: {"contents":{"kind":"markdown","value":"```go\n\"github.com/hortbot/hortbot/internal/cli/flags/redisflags\"\n```"},"range":{"start":{"line":11,"character":1},"end":{"line":11,"character":59}}}
[Trace - 17:45:30.354 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":2},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"rangeLength":0,"text":"\n\t\"go.opencensus.io/trace\""},{"range":{"start":{"line":16,"character":0},"end":{"line":17,"character":0}},"rangeLength":26,"text":""}]}
[Trace - 17:45:30.524 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":3},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":16,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx\""},{"range":{"start":{"line":15,"character":0},"end":{"line":16,"character":0}},"rangeLength":53,"text":""}]}
[Trace - 17:45:30.526 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:30 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:30.710 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":4},"contentChanges":[{"range":{"start":{"line":15,"character":18},"end":{"line":15,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/pkg/ctxlog\""},{"range":{"start":{"line":14,"character":0},"end":{"line":15,"character":0}},"rangeLength":50,"text":""}]}
[Trace - 17:45:30.713 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:30 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:30.894 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":5},"contentChanges":[{"range":{"start":{"line":14,"character":18},"end":{"line":14,"character":18}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/twitchflags\""},{"range":{"start":{"line":13,"character":0},"end":{"line":14,"character":0}},"rangeLength":61,"text":""}]}
[Trace - 17:45:30.899 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:30 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:31.093 PM] Sending request 'textDocument/foldingRange - (9)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:31.094 PM] Received response 'textDocument/foldingRange - (9)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:31.144 PM] Sending request 'textDocument/codeAction - (10)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":13,"character":18},"end":{"line":13,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:31.353 PM] Sending request 'textDocument/documentLink - (11)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:31.425 PM] Sending request 'textDocument/codeAction - (12)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:45:31.425 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:31 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:31.426 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:31 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:31.429 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:31.625 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:31 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:31.625 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:31 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:31.627 PM] Received response 'textDocument/codeAction - (10)' in 483ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":2,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 17:45:31.628 PM] Received response 'textDocument/documentLink - (11)' in 274ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:31.630 PM] Received response 'textDocument/codeAction - (12)' in 205ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":2,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 17:45:31.640 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":6},"contentChanges":[{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"rangeLength":0,"text":"\"\n\t\"go.uber.org/zap"},{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"rangeLength":53,"text":""}]}
[Trace - 17:45:31.641 PM] Sending request 'textDocument/formatting - (13)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:45:31.837 PM] Sending request 'textDocument/foldingRange - (14)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:32.391 PM] Sending notification '$/cancelRequest'.
Params: {"id":13}
[Trace - 17:45:32.411 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":6}}
[Error - 17:45:32.411 PM] Received #13 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:45:32.411 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:32 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:32.411 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:32 : context canceled"}
[Trace - 17:45:32.412 PM] Received response 'textDocument/foldingRange - (14)' in 574ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:32.477 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:32 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:32.477 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:32 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:32.478 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:32 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 17:45:32.482 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"severity":1,"source":"compiler","message":"could not import gitopencensus.io/trace (no package for import gitopencensus.io/trace)"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"severity":1,"source":"compiler","message":"zap redeclared in this block"},{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":18}},"severity":1,"source":"compiler","message":"other declaration of zap"},{"range":{"start":{"line":59,"character":6},"end":{"line":59,"character":27}},"severity":1,"source":"compiler","message":"undeclared name: errgroupx"}]}
[Trace - 17:45:32.639 PM] Sending request 'textDocument/documentLink - (15)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:32.640 PM] Received response 'textDocument/documentLink - (15)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/gitopencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:32.739 PM] Sending request 'textDocument/codeAction - (16)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":13,"character":18},"end":{"line":13,"character":18}},"context":{"diagnostics":[{"range":{"start":{"line":13,"character":1},"end":{"line":13,"character":18}},"message":"other declaration of zap","severity":1,"source":"compiler"}]}}
[Trace - 17:45:33.780 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":7},"contentChanges":[{"range":{"start":{"line":16,"character":24},"end":{"line":17,"character":17}},"rangeLength":19,"text":""},{"range":{"start":{"line":16,"character":5},"end":{"line":16,"character":5}},"rangeLength":0,"text":"hub.com/hortbot/hortbot/internal/pkg/errgroupx\"\n\t\"go."}]}
[Trace - 17:45:33.781 PM] Sending notification '$/cancelRequest'.
Params: {"id":16}
[Error - 17:45:33.783 PM] Received #16 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:45:33.783 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:33 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:33.784 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:33 : context canceled"}
[Trace - 17:45:33.978 PM] Sending request 'textDocument/foldingRange - (17)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:33.979 PM] Received response 'textDocument/foldingRange - (17)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:34.077 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":8},"contentChanges":[{"range":{"start":{"line":13,"character":18},"end":{"line":14,"character":60}},"rangeLength":61,"text":""},{"range":{"start":{"line":13,"character":0},"end":{"line":13,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/twitchflags\"\n"}]}
[Trace - 17:45:34.085 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:34 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:34.272 PM] Sending request 'textDocument/foldingRange - (18)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:34.272 PM] Received response 'textDocument/foldingRange - (18)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:34.308 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":9},"contentChanges":[{"range":{"start":{"line":14,"character":18},"end":{"line":15,"character":49}},"rangeLength":50,"text":""},{"range":{"start":{"line":14,"character":0},"end":{"line":14,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/pkg/ctxlog\"\n"}]}
[Trace - 17:45:34.314 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:34 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:34.478 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":10},"contentChanges":[{"range":{"start":{"line":15,"character":18},"end":{"line":16,"character":52}},"rangeLength":53,"text":""},{"range":{"start":{"line":15,"character":0},"end":{"line":15,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/pkg/errgroupx\"\n"}]}
[Trace - 17:45:34.481 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:34 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:34.671 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":11},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":17,"character":25}},"rangeLength":26,"text":""},{"range":{"start":{"line":16,"character":0},"end":{"line":16,"character":0}},"rangeLength":0,"text":"\t\"go.opencensus.io/trace\"\n"}]}
[Trace - 17:45:34.674 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:34 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:34.779 PM] Sending request 'textDocument/documentLink - (19)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:34.780 PM] Received response 'textDocument/documentLink - (19)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:34.869 PM] Sending request 'textDocument/foldingRange - (20)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:34.870 PM] Received response 'textDocument/foldingRange - (20)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:34.921 PM] Sending request 'textDocument/codeAction - (21)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":18}},"message":"zap redeclared in this block","severity":1,"source":"compiler"}]}}
[Trace - 17:45:35.357 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:35 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:35.357 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:35 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:35.358 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:35 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 17:45:35.364 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:35.364 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:35 failed to run analyses: no CheckPackageHandle for gitopencensus.io/trace:true\n\tfile = file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}
[Trace - 17:45:35.537 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:35 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:35.537 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:35 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Error - 17:45:35.546 PM] Received #21 no CheckPackageHandles for &{[file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go] /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go %!s(source.FileKind=0) %!s(*cache.view=&{0xc000256580 1 {[ELECTRON_RUN_AS_NODE=1 SHELL=/usr/bin/zsh LSCOLORS=Gxfxcxdxbxegedabagacad COLORTERM=truecolor LESS=-R QT_WAYLAND_DISABLE_WINDOWDECORATION=1 I3SOCK=/run/user/1000/sway-ipc.1000.1232.sock TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2 TERMINATOR_UUID=urn:uuid:e5569f7e-f72d-4439-a539-6624032667f5 NO_AT_BRIDGE=1 XCURSOR_SIZE=24 EDITOR=vim XDG_SEAT=seat0 PWD=/home/jake/zikaeroh/hortbot/hortbot LOGNAME=jake XDG_SESSION_TYPE=tty HOME=/home/jake LANG=en_US.UTF-8 _JAVA_AWT_WM_NONREPARENTING=1 LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: VTE_VERSION=5802 SWAYSOCK=/run/user/1000/sway-ipc.1000.1232.sock WAYLAND_DISPLAY=wayland-0 G_ENABLE_DIAGNOSTIC=0 INVOCATION_ID=22e3b4a4323b443da35eacea8456ce57 TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x20309d54defed5d4 RUST_SRC_PATH=/home/jake/rustc/src SYSTEMD_EDITOR=vim _PROFILE_SOURCED=yes STEAM_FRAME_FORCE_CLOSE=1 XDG_SESSION_CLASS=user TERM=xterm-256color USER=jake DISPLAY=:0 RUSTC_WRAPPER=sccache SHLVL=3 MOZ_ENABLE_WAYLAND=1 PAGER=less MOZ_USE_XINPUT2=1 XDG_VTNR=1 XDG_SESSION_ID=1 LC_CTYPE= XDG_RUNTIME_DIR=/run/user/1000 JOURNAL_STREAM=9:25744 PATH=/home/jake/bin:/home/jake/.dotnet/tools:/home/jake/.cargo/bin:/home/jake/go/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/lib:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/git:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/archlinux:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/adb:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/docker:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/golang:/home/jake/.antigen/bundles/zsh-users/zsh-syntax-highlighting:/home/jake/.antigen/bundles/zsh-users/zsh-autosuggestions:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/cp:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/systemd:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/mosh:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/rsync:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/rust:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/common-aliases DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus MAIL=/var/spool/mail/jake OLDPWD=/home/jake GOPATH=/home/jake/go _=/opt/visual-studio-code/bin/../code APPLICATION_INSIGHTS_NO_DIAGNOSTIC_CHANNEL=true VSCODE_CLI=1 ELECTRON_NO_ATTACH_CONSOLE=1 CHROME_DESKTOP=code-url-handler.desktop VSCODE_NLS_CONFIG={"locale":"en-us","availableLanguages":{},"_languagePackSupport":true} VSCODE_NODE_CACHED_DATA_DIR=/home/jake/.config/Code/CachedData/8795a9889db74563ddd43eb0a897a2384129a619 VSCODE_LOGS=/home/jake/.config/Code/logs/20191114T174416 VSCODE_IPC_HOOK=/run/user/1000/vscode-6986c22e-1.40.1-main.sock VSCODE_PID=38250 AMD_ENTRYPOINT=vs/workbench/services/extensions/node/extensionHostProcess PIPE_LOGGING=true VERBOSE_LOGGING=true VSCODE_IPC_HOOK_EXTHOST=/tmp/vscode-ipc-4f48e730-721a-4cd8-964a-6ccb55784fbc.sock VSCODE_HANDLES_UNCAUGHT_ERRORS=true VSCODE_LOG_STACK=false GOROOT=/usr/lib/go GOPROXY=https://proxy.golang.org,direct] [] 2 map[] false true true 2 true true true markdown true map[0:map[quickfix:true source.organizeImports:true] 1:map[source.organizeImports:true] 2:map[]] [tidy] 2 {true true false true true false false 100000000} 0xa67c30 [0x128ce00 0x128cee0 0x128cfc0 0x128d0a0 0x128d180 0x128d260 0x128d340 0x128d420 0x128d500 0x128d6c0 0x128d880 0x128d960 0x128da40 0x128db20 0x128dc00 0x128ddc0 0x128dea0 0x128df80 0x128e060 0x128e140 0x128e220 0x128e300 0x128dce0] false} {0 0} 0xc00031e690 0xc00ccfc180 0x4913e0 hortbot file:///home/jake/zikaeroh/hortbot/hortbot 0xc0017c04d0 {13793292732033043198 1993912260 0x12996a0} map[] map[file:///home/jake/.cache/go-build/06/060a1917760e21f5242a0d055e230c6c3ea1aaa29909bbf1f962eba51505a493-d:0xc000505940 file:///home/jake/.cache/go-build/08/0811deb19de70704eba1b279cdb5f3522a0beaa5999045c1da8bdc3eaa43e1d1-d:0xc000165e40 file:///home/jake/.cache/go-build/0f/0f535df00baf85a78d752286dc05a6045d11a518193316b476bd18cd0c19774f-d:0xc000082000 file:///home/jake/.cache/go-build/15/15f8dbf930cd33f7c8ed5a4bf4519d4379f2473e166bb9713bec1097f809a316-d:0xc000658240 file:///home/jake/.cache/go-build/1d/1d2d016717473279731bacbf6cc41be99d10bc1e4d0068b92538b66dd002a6c6-d:0xc000592300 file:///home/jake/.cache/go-build/23/234880deda302e7a06442cd78b4a68ad7d31ee07b36157701430564e0fcaedb5-d:0xc0002c2400 file:///home/jake/.cache/go-build/29/2927d5ef7c163fbc2152a3a551527d1fc83feb2b41196b81292d7c7960bf02c0-d:0xc0002c2300 file:///home/jake/.cache/go-build/2a/2a24b2da96f8c34b71811cbd8872b7cafd9ac21da00dbdccc2d75b5db90ade35-d:0xc000505c40 file:///home/jake/.cache/go-build/2b/2b5c18117df0e3efc79d5d515546182622744de4735c10747ffea843f80f7ae2-d:0xc000165c80 file:///home/jake/.cache/go-build/2e/2efd9496a7674857f1a8b23fd391bfb90838c10cdb70b744641f1b7ba5c10c7c-d:0xc000504300 file:///home/jake/.cache/go-build/32/32df16d3e210a510043f013176b3cacc4d1827b30e1c4020bb976108e5f7981b-d:0xc000504000 file:///home/jake/.cache/go-build/3f/3fefbe12098cf98dfeb9a520c67a52cf351c96f807779059bb0547387396c20f-d:0xc000593e00 file:///home/jake/.cache/go-build/44/449e1a355fe51b9dfb7ef5c3f6feaa64c0226d927c3b2eb0ee9995a3fd7881ce-d:0xc000374940 file:///home/jake/.cache/go-build/46/4649e8947eb0d533542d956be7161f6f877ad72d7459d195feb34465bb2f510b-d:0xc0005054c0 file:///home/jake/.cache/go-build/47/479319ad1cc8f73778af99b9f17fc38d7303d652de7daf0a56b5bdf0c33f7e3b-d:0xc000431c00 file:///home/jake/.cache/go-build/4b/4bc3b0a46c3ce3efd6e97c3f3018eddc25a82de370338db6d93fdfe0fab51785-d:0xc000b1c680 file:///home/jake/.cache/go-build/5c/5ceeb704b7af3e61fa406f98ff2f6130a6e7afda5ab3f7d1dea6074794d1af47-d:0xc0002c2200 file:///home/jake/.cache/go-build/62/626d98d156da6b7537e76de846df9f00bab8e27106bf3cfb4cfe65e7a7ae7b24-d:0xc000165ac0 file:///home/jake/.cache/go-build/68/684f8fac0ae002d50a30fc6444e25b3fc30e6aec98bea779526680fb75f52e89-d:0xc000b1c300 file:///home/jake/.cache/go-build/68/68d348dd661af4c617f78d1806c73c86ae4bcb6e11d98705c5d016e808bd55f2-d:0xc0002c2600 file:///home/jake/.cache/go-build/72/729ecc894a1bf98486976c6e3b82f7ca6206ca3494be1b1b012a4175df9092d0-d:0xc0004a2000 file:///home/jake/.cache/go-build/84/844cd46d79b2edb56cad61822f5d5c8544d92aa299dc97d5a0db5807ae65615b-d:0xc000593300 file:///home/jake/.cache/go-build/92/92db4499692a421e5d3f96ddade72d83ea7748a044740d6ab66116059d70cf9d-d:0xc0002c2500 file:///home/jake/.cache/go-build/99/9942599c62884849cc08d6b67915ef27e1b0595282adf33009b62c840ae24f3c-d:0xc0004a3480 file:///home/jake/.cache/go-build/99/996a7ea007c669f5589857dbfcb7d2b9b20672b5f1bc179574e0835dd12b8597-d:0xc000504600 file:///home/jake/.cache/go-build/99/9986c41f947951d7d0d4a6633cf55b9df93c87e2c073ebd1309c772a480de689-d:0xc000b1c4c0 file:///home/jake/.cache/go-build/9e/9e8846ac4cf1765248455e0ca27336d65a4cf5f7bc96a3db2b6a26998327f782-d:0xc0004a2300 file:///home/jake/.cache/go-build/a8/a80d214598d924d91af3a36ffcde1b47e2be0601d6086d903fcdb63031bd5212-d:0xc000374ec0 file:///home/jake/.cache/go-build/ae/ae1b40cd21fcf3b25ab77bc19939a8f02c31b2d72e869418b9bfd0ea2e828c28-d:0xc0004a3d00 file:///home/jake/.cache/go-build/ae/ae7f518dca0f877b8264213f1d3e6c2173fa941e53c3314bf90bbb98240b2505-d:0xc000592f80 file:///home/jake/.cache/go-build/bd/bd0c611ffef50c2eb9710ace88ed62d6555c9ef3ad15f4da7a8bdb9418c12bc9-d:0xc0001658c0 file:///home/jake/.cache/go-build/e1/e1f3241e79f270a8094a97e6bd572e093a0cb075c72482b5e8a692e6181c3e53-d:0xc000593700 file:///home/jake/.cache/go-build/e5/e5fa3bfd21a0bc296f3802dc776f1143db52cd157663ec5d747386cb363ce78c-d:0xc000593ac0 file:///home/jake/.cache/go-build/e7/e74659b1e3ced26c53bfbf3d2b73edb98d9c0eee1331ec7e43501c6a273b7b01-d:0xc000592c80 file:///home/jake/.cache/go-build/ec/ecb76cb6c3068500c10f36ee03e8be1fb25c5d9d1479158e407ec218a4bce61a-d:0xc000165700 file:///home/jake/.cache/go-build/ed/ed3164eec202a876f51e771279b45a177324dae4c4a1b80282fef8d07e5f86d0-d:0xc000375a00 file:///home/jake/.cache/go-build/f7/f7cb8f249ec2fa90c8b83d6429f1003d0da18267f018b99fc8ab98aaa4560093-d:0xc000505f80 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/exporter/jaeger@v0.2.0/agent.go:0xc00075bb40 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/exporter/jaeger@v0.2.0/jaeger.go:0xc00075bc40 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/dbstats_go1.11.go:0xc0000e7cc0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/driver.go:0xc0000e7dc0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/driver_go1.10.go:0xc0000e7ec0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/observability.go:0xc0000e7fc0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/options.go:0xc0001520c0 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/cache.go:0xc000359240 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/comm.go:0xc000359340 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/common.go:0xc000359440 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/doc.go:0xc000359580 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/tag.go:0xc000359680 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/track.go:0xc000359780 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/user.go:0xc000359880 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/attributes.go:0xc0004fe840 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/gotty.go:0xc0004fe940 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/parser.go:0xc0004fea40 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/types.go:0xc0004feb40 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/array.go:0xc000506580 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/doc.go:0xc0005066c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/expand.go:0xc0005067c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/filter.go:0xc0005068c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/iteration.go:0xc0005069c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/manipulation.go:0xc000506ac0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/property.go:0xc000506bc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/query.go:0xc000506cc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/traversal.go:0xc000506dc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/type.go:0xc000506ec0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/utilities.go:0xc000506fc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/purell@v1.1.1/purell.go:0xc00053cd40 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/urlesc@v0.0.0-20170810143723-de5bf2ad4578/urlesc.go:0xc00053ce40 file:///home/jake/go/pkg/mod/github.com/alicebob/gopher-json@v0.0.0-20180125190556-5a6b3ba71ee6/doc.go:0xc000871440 file:///home/jake/go/pkg/mod/github.com/alicebob/gopher-json@v0.0.0-20180125190556-5a6b3ba71ee6/json.go:0xc000871540 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/check.go:0xc000ca8d40 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_connection.go:0xc00053d440 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_generic.go:0xc0005834c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_geo.go:0xc0005c9880 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_hash.go:0xc0008701c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_list.go:0xc0008702c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_pubsub.go:0xc0008703c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_scripting.go:0xc0008704c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_server.go:0xc0008705c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_set.go:0xc0008706c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_sorted_set.go:0xc0008707c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_string.go:0xc0008708c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_transactions.go:0xc0008709c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/db.go:0xc000870ac0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/direct.go:0xc000870bc0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/geo.go:0xc000870cc0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/geohash/base32.go:0xc000889840 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/geohash/geohash.go:0xc000889940 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/keys.go:0xc000870dc0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/lua.go:0xc000870f00 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/miniredis.go:0xc000871000 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/pubsub.go:0xc000871100 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/redis.go:0xc000871200 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/server/proto.go:0xc000889a80 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/server/server.go:0xc000889b80 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/sorted_set.go:0xc000871340 file:///home/jake/go/pkg/mod/github.com/andybalholm/cascadia@v1.0.0/parser.go:0xc0005070c0 file:///home/jake/go/pkg/mod/github.com/andybalholm/cascadia@v1.0.0/selector.go:0xc0005071c0 file:///home/jake/go/pkg/mod/github.com/araddon/dateparse@v0.0.0-20190622164848-0fb0a474d195/parseany.go:0xc000638940 file:///home/jake/go/pkg/mod/github.com/bmatcuk/doublestar@v1.1.5/doublestar.go:0xc000583500 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/backoff.go:0xc000369740 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/context.go:0xc000369840 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/exponential.go:0xc000369940 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/retry.go:0xc000369a40 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/ticker.go:0xc000369b40 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/tries.go:0xc000369c40 file:///home/jake/go/pkg/mod/github.com/containerd/continuity@v0.0.0-20190827140505-75bee3e2ccb6/pathdriver/path_driver.go:0xc0004c0f80 file:///home/jake/go/pkg/mod/github.com/docker/go-connections@v0.4.0/nat/nat.go:0xc000401040 file:///home/jake/go/pkg/mod/github.com/docker/go-connections@v0.4.0/nat/parse.go:0xc000401140 file:///home/jake/go/pkg/mod/github.com/docker/go-connections@v0.4.0/nat/sort.go:0xc000401240 file:///home/jake/go/pkg/mod/github.com/docker/go-units@v0.4.0/duration.go:0xc0003b8f40 file:///home/jake/go/pkg/mod/github.com/docker/go-units@v0.4.0/size.go:0xc0003b9040 file:///home/jake/go/pkg/mod/github.com/docker/go-units@v0.4.0/ulimit.go:0xc0003b9140 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/big.go:0xc0007c4280 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/bigbytes.go:0xc0007c4380 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/bytes.go:0xc0007c4480 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/comma.go:0xc0007c45c0 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/commaf.go:0xc0007c46c0 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/ftoa.go:0xc0007c47c0 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/humanize.go:0xc0007c4900 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/number.go:0xc0007c4a00 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/ordinals.go:0xc0007c4b00 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/si.go:0xc0007c4c00 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/times.go:0xc0007c4d00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/big.go:0xc0003b1a00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/big_ctx.go:0xc0003b1b40 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/context.go:0xc0003b1c40 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/decomposer.go:0xc0003b1d80 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/doc.go:0xc0003b1e80 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/format.go:0xc0003b1f80 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/format_string.go:0xc0001f60c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/abs.go:0xc0001f6800 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/arith.go:0xc0001f6900 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/arith_1_12.go:0xc0001f6a00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/intlen.go:0xc0001f6b00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/pow.go:0xc0001f6c00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/c/const.go:0xc0001f6d00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/c/const64.go:0xc0001f6e00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/operatingmode_string.go:0xc0001f61c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/payload_string.go:0xc0001f62c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/roundingmode_string.go:0xc0001f63c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/scan.go:0xc0001f64c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/util.go:0xc0001f6600 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/zdebug0.go:0xc0001f6700 file:///home/jake/go/pkg/mod/github.com/felixge/httpsnoop@v1.0.1/capture_metrics.go:0xc0005c8b40 file:///home/jake/go/pkg/mod/github.com/felixge/httpsnoop@v1.0.1/docs.go:0xc0005c8c40 file:///home/jake/go/pkg/mod/github.com/felixge/httpsnoop@v1.0.1/wrap_generated_gteq_1.8.go:0xc0005c8d40 file:///home/jake/go/pkg/mod/github.com/fortytw2/leaktest@v1.3.0/leaktest.go:0xc0003746c0 file:///home/jake/go/pkg/mod/github.com/friendsofgo/errors@v0.9.2/errors.go:0xc0004d4fc0 file:///home/jake/go/pkg/mod/github.com/friendsofgo/errors@v0.9.2/stack.go:0xc0004d50c0 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/chain.go:0xc0007c5d40 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/chi.go:0xc0007c5e40 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/context.go:0xc0007c5f40 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/compress.go:0xc0007e4280 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/content_charset.go:0xc0007e4380 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/content_type.go:0xc0007e4480 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/get_head.go:0xc0007e4580 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/heartbeat.go:0xc0007e4680 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/logger.go:0xc0007e4780 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/middleware.go:0xc0007e4880 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/nocache.go:0xc0007e4980 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/profiler.go:0xc0007e4a80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/realip.go:0xc0007e4b80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/recoverer.go:0xc0007e4c80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/request_id.go:0xc0007e4d80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/strip.go:0xc0007e4e80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/terminal.go:0xc0007e4f80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/throttle.go:0xc0007e5080 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/timeout.go:0xc0007e5180 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/url_format.go:0xc0007e5280 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/value.go:0xc0007e5380 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/wrap_writer.go:0xc0007e5480 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/mux.go:0xc0007e4040 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/tree.go:0xc0007e4140 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/cluster.go:0xc0002a8c80 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/cluster_commands.go:0xc0002a8d80 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/command.go:0xc0002a8e80 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/commands.go:0xc0002a8fc0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/doc.go:0xc0002a90c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/error.go:0xc0002a91c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/consistenthash/consistenthash.go:0xc000358500 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/hashtag/hashtag.go:0xc000358640 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/internal.go:0xc0002a9e00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/log.go:0xc0002a9f40 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/once.go:0xc000358040 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/conn.go:0xc0003587c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/pool.go:0xc0003588c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/pool_single.go:0xc000358a00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/pool_sticky.go:0xc000358b00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/proto/reader.go:0xc000358c00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/proto/scan.go:0xc000358d00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/proto/writer.go:0xc000358e00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/util.go:0xc000358140 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/util/strconv.go:0xc000358280 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/util/unsafe.go:0xc000358380 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/iterator.go:0xc0002a92c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/options.go:0xc0002a93c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/pipeline.go:0xc0002a94c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/pubsub.go:0xc0002a95c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/redis.go:0xc0002a96c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/result.go:0xc0002a97c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/ring.go:0xc0002a98c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/script.go:0xc0002a99c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/sentinel.go:0xc0002a9ac0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/tx.go:0xc0002a9bc0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/universal.go:0xc0002a9cc0 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/auth.go:0xc0002c3a40 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/buffer.go:0xc0002c3b40 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/collations.go:0xc0002c3c80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/connection.go:0xc0002c3d80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/connection_go18.go:0xc0002c3e80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/const.go:0xc0002c3f80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/driver.go:0xc000368080 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/dsn.go:0xc000368180 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/errors.go:0xc000368280 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/fields.go:0xc000368380 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/infile.go:0xc000368480 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/packets.go:0xc000368580 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/result.go:0xc000368680 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/rows.go:0xc000368780 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/statement.go:0xc000368880 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/transaction.go:0xc000368980 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/utils.go:0xc000368a80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/utils_go18.go:0xc000368b80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/acronyms.go:0xc000638a80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/camelize.go:0xc000638b80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/capitalize.go:0xc000638c80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/custom_data.go:0xc000638d80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/dasherize.go:0xc000638e80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/flect.go:0xc000638f80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/humanize.go:0xc000639080 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/ident.go:0xc000639180 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/lower_upper.go:0xc000639280 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/ordinalize.go:0xc000639380 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/pascalize.go:0xc000639480 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/plural_rules.go:0xc000639580 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/pluralize.go:0xc000639680 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/rule.go:0xc000639780 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/singular_rules.go:0xc000639880 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/singularize.go:0xc000639980 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/titleize.go:0xc000639a80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/underscore.go:0xc000639b80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/version.go:0xc000639c80 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/codec.go:0xc0008b0640 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/generator.go:0xc0008b0880 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/sql.go:0xc0008b0a80 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/uuid.go:0xc0008b0c00 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/driver.go:0xc0001f9d80 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/error.go:0xc0001f9ec0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/postgres/postgres.go:0xc00027cdc0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/util.go:0xc0001f9fc0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/internal/url/url.go:0xc00027c0c0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/log.go:0xc0001f9980 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/migrate.go:0xc0001f9a80 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/migration.go:0xc0001f9b80 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/driver.go:0xc00027c280 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/go_bindata/go-bindata.go:0xc0002c27c0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/migration.go:0xc00027c380 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/parse.go:0xc00027c480 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/util.go:0xc0001f9c80 file:///home/jake/go/pkg/mod/github.com/golang/groupcache@v0.0.0-20190702054246-869f871628b6/lru/lru.go:0xc000ca9880 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/decode.go:0xc000d26e40 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/decode_amd64.go:0xc000d26f40 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/encode.go:0xc000ce2f80 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/encode_amd64.go:0xc000ce30c0 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/snappy.go:0xc000ce3640 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/commandinfo.go:0xc000889d00 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/conn.go:0xc000889e00 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/doc.go:0xc000889f00 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/go18.go:0xc0000e4000 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/log.go:0xc0000e4100 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/pool.go:0xc0000e4200 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/pubsub.go:0xc0000e4300 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/redis.go:0xc0000e4440 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/reply.go:0xc0000e4540 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/scan.go:0xc0000e4640 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/script.go:0xc0000e4740 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/equate.go:0xc000297740 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/ignore.go:0xc000297840 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/sort.go:0xc000297940 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/struct_filter.go:0xc000297a40 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/xform.go:0xc000297b40 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/compare.go:0xc0000e5080 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/export_unsafe.go:0xc0000e51c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/diff/debug_disable.go:0xc0000e5ac0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/diff/diff.go:0xc0000e5bc0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/flags/flags.go:0xc0000e5d00 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/flags/toolchain_recent.go:0xc0000e5e40 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/function/func.go:0xc0000e5f80 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/value/pointer_unsafe.go:0xc0001b8100 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/value/sort.go:0xc0001b8200 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/value/zero.go:0xc0001b8300 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/options.go:0xc0000e52c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/path.go:0xc0000e53c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report.go:0xc0000e54c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_compare.go:0xc0000e55c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_reflect.go:0xc0000e56c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_slices.go:0xc0000e57c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_text.go:0xc0000e58c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_value.go:0xc0000e59c0 file:///home/jake/go/pkg/mod/github.com/gorilla/securecookie@v1.1.1/doc.go:0xc000822440 file:///home/jake/go/pkg/mod/github.com/gorilla/securecookie@v1.1.1/securecookie.go:0xc000822540 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/cookie_go111.go:0xc0007e5cc0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/doc.go:0xc0007e5dc0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/lex.go:0xc0007e5ec0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/options_go111.go:0xc0007e5fc0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/sessions.go:0xc0008220c0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/store.go:0xc0008221c0 file:///home/jake/go/pkg/mod/github.com/goware/urlx@v0.3.1/urlx.go:0xc00053cc40 file:///home/jake/go/pkg/mod/github.com/hako/durafmt@v0.0.0-20191009132224-3f39dc1ed9f4/durafmt.go:0xc000639e00 file:///home/jake/go/pkg/mod/github.com/hashicorp/errwrap@v1.0.0/errwrap.go:0xc00027cc00 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/append.go:0xc00027c5c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/flatten.go:0xc00027c6c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/format.go:0xc00027c7c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/multierror.go:0xc00027c8c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/prefix.go:0xc00027c9c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/sort.go:0xc00027cac0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/base_conn.go:0xc00053b3c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/conn.go:0xc00053b4c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/ctcp.go:0xc00053b5c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/helpers.go:0xc00053b6c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/irc.go:0xc00053b7c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/message.go:0xc00053b8c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/message_encode.go:0xc00053ba00 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/message_parse.go:0xc00053bb00 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/parse_error.go:0xc00053bc00 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/doc.go:0xc0004a3880 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/env.go:0xc0004a3980 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/response.go:0xc0004a3a80 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/transport.go:0xc0004a3b80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/arg.go:0xc000b1db80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/closest.go:0xc000b1dd00 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/command.go:0xc000b1de80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/completion.go:0xc000b1df80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/convert.go:0xc0003189c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/error.go:0xc000318dc0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/flags.go:0xc000319000 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/group.go:0xc000319180 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/help.go:0xc000319300 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/ini.go:0xc000319540 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/man.go:0xc0003198c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/multitag.go:0xc000319a40 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/option.go:0xc000319d80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/optstyle_other.go:0xc00040a040 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/parser.go:0xc00040a1c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/termsize.go:0xc00040a2c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/tiocgwinsz_linux.go:0xc00040a4c0 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/bind.go:0xc000368d40 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/doc.go:0xc000368e40 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/named.go:0xc000368f40 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/named_context.go:0xc000369040 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/reflectx/reflect.go:0xc000369340 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/sqlx.go:0xc000369140 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/sqlx_context.go:0xc000369240 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/types/types.go:0xc000369500 file:///home/jake/go/pkg/mod/github.com/joho/godotenv@v1.3.0/godotenv.go:0xc00040a700 file:///home/jake/go/pkg/mod/github.com/leononame/clock@v0.1.6/clock.go:0xc00053bd40 file:///home/jake/go/pkg/mod/github.com/leononame/clock@v0.1.6/ticker.go:0xc00053be40 file:///home/jake/go/pkg/mod/github.com/leononame/clock@v0.1.6/timer.go:0xc00053bf40 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/array.go:0xc00027cec0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/buf.go:0xc00027cfc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/conn.go:0xc00027d0c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/conn_go18.go:0xc00027d1c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/connector.go:0xc00027d2c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/copy.go:0xc00027d3c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/doc.go:0xc00027d4c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/encode.go:0xc00027d5c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/error.go:0xc00027d6c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/notify.go:0xc00027d7c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/oid/doc.go:0xc0001f6fc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/oid/types.go:0xc0001f70c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/rows.go:0xc00027d8c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/scram/scram.go:0xc00027dec0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/ssl.go:0xc00027d9c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/ssl_permissions.go:0xc00027dac0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/url.go:0xc00027dbc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/user_posix.go:0xc00027dcc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/uuid.go:0xc00027ddc0 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/api_request.go:0xc000902940 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/command.go:0xc000d37e80 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/config.go:0xc000d37f80 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/config_flag.go:0xc000d26400 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/conn.go:0xc000d26500 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/consumer.go:0xc000d26640 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/delegates.go:0xc000d26740 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/errors.go:0xc000d26840 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/message.go:0xc000d26940 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/producer.go:0xc000d26a40 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/protocol.go:0xc000d26b40 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/states.go:0xc000d26c40 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/version.go:0xc000d26d40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/algorithm.go:0xc000426d40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/digest.go:0xc000426e40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/digester.go:0xc000426f40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/doc.go:0xc000427040 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/verifiers.go:0xc000427140 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/annotations.go:0xc000426640 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/config.go:0xc000426740 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/descriptor.go:0xc000426840 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/index.go:0xc000426940 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/layout.go:0xc000426a40 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/manifest.go:0xc000426b40 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/mediatype.go:0xc000426c40 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/version.go:0xc000427280 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/versioned.go:0xc000427380 file:///home/jake/go/pkg/mod/github.com/opencontainers/runc@v1.0.0-rc5/libcontainer/user/lookup.go:0xc00046b540 file:///home/jake/go/pkg/mod/github.com/opencontainers/runc@v1.0.0-rc5/libcontainer/user/lookup_unix.go:0xc00046b680 file:///home/jake/go/pkg/mod/github.com/opencontainers/runc@v1.0.0-rc5/libcontainer/user/user.go:0xc00046b780 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/auth.go:0xc000369dc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/change.go:0xc000369f00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/client.go:0xc0003b8000 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/client_unix.go:0xc0003b8100 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/container.go:0xc0003b8200 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/distribution.go:0xc0003b8300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/env.go:0xc0003b8400 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/event.go:0xc0003b8500 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/exec.go:0xc0003b8600 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/image.go:0xc0003b8700 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/misc.go:0xc0003b8800 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/network.go:0xc0003b8900 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/env.go:0xc0003b9280 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/hosts.go:0xc0003b93c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/hosts_unix.go:0xc0003b94c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/ip.go:0xc0003b95c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/opts.go:0xc0003b96c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/opts_unix.go:0xc0003b97c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/quotedstring.go:0xc0003b98c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/runtime.go:0xc0003b99c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/ulimit.go:0xc0003b9ac0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/archive.go:0xc0004275c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/archive_linux.go:0xc0004276c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/archive_unix.go:0xc0004277c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/changes.go:0xc0004278c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/changes_linux.go:0xc0004279c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/changes_unix.go:0xc000427ac0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/copy.go:0xc000427bc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/copy_unix.go:0xc000427cc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/diff.go:0xc000427dc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/time_linux.go:0xc000427ec0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/whiteouts.go:0xc000427fc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/wrap.go:0xc00046a0c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/fileutils/fileutils.go:0xc00046ad80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/fileutils/fileutils_unix.go:0xc00046ae80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/homedir/homedir_linux.go:0xc0004fe4c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/homedir/homedir_unix.go:0xc0004fe5c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/idtools.go:0xc00046b140 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/idtools_unix.go:0xc00046b240 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/usergroupadd_linux.go:0xc00046b340 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/utils_unix.go:0xc00046b440 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/buffer.go:0xc0004c1880 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/bytespipe.go:0xc0004c1980 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/fswriters.go:0xc0004c1a80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/readers.go:0xc0004c1b80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/temp_unix.go:0xc0004c1c80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/writeflusher.go:0xc0004c1d80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/writers.go:0xc0004c1e80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/jsonmessage/jsonmessage.go:0xc0004fe700 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/flags.go:0xc0004c10c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/flags_linux.go:0xc0004c11c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mount.go:0xc0004c12c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mounter_linux.go:0xc0004c13c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mountinfo.go:0xc0004c14c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mountinfo_linux.go:0xc0004c15c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/sharedsubtree_linux.go:0xc0004c16c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/pools/pools.go:0xc0004fe300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/stdcopy/stdcopy.go:0xc0004ff300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/chtimes.go:0xc00046b900 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/chtimes_unix.go:0xc00046ba00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/errors.go:0xc00046bb00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/exitcode.go:0xc00046bc00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/filesys.go:0xc00046bd00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/init.go:0xc00046be00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/init_unix.go:0xc00046bf00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/lcow.go:0xc0004c0000 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/lcow_unix.go:0xc0004c0100 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/lstat_unix.go:0xc0004c0200 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/meminfo.go:0xc0004c0300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/meminfo_linux.go:0xc0004c0400 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/mknod.go:0xc0004c0500 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/path.go:0xc0004c0600 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/process_unix.go:0xc0004c0700 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/rm.go:0xc0004c0800 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/stat_linux.go:0xc0004c0900 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/stat_unix.go:0xc0004c0a00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/syscall_unix.go:0xc0004c0b40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/umask.go:0xc0004c0c80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/utimes_linux.go:0xc0004c0d80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/xattrs_linux.go:0xc0004c0e80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/ascii.go:0xc0004fec80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/proxy.go:0xc0004fed80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/tc.go:0xc0004fee80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/term.go:0xc0004fef80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/termios_linux.go:0xc0004ff080 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/winsize.go:0xc0004ff180 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/plugin.go:0xc0003b8a00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/signal.go:0xc0003b8b00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/tar.go:0xc0003b8c40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/tls.go:0xc0003b8d40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/auth.go:0xc0003b9bc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/blkiodev/blkio.go:0xc000401c80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/client.go:0xc0003b9cc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/configs.go:0xc0003b9e00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/config.go:0xc000401380 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_changes.go:0xc000401480 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_create.go:0xc000401580 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_top.go:0xc000401680 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_update.go:0xc000401780 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_wait.go:0xc000401880 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/host_config.go:0xc000401980 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/hostconfig_unix.go:0xc000401a80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/waitcondition.go:0xc000401b80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/error_response.go:0xc0003b9f00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/filters/parse.go:0xc000426080 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/graph_driver_data.go:0xc000400000 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/id_response.go:0xc000400100 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/image_delete_response_item.go:0xc000400200 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/image_summary.go:0xc000400300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/mount/mount.go:0xc000401dc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/network/network.go:0xc000426300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin.go:0xc000400400 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_device.go:0xc000400540 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_env.go:0xc000400640 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_interface_type.go:0xc000400740 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_mount.go:0xc000400840 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_responses.go:0xc000400940 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/port.go:0xc000400a40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/registry/authenticate.go:0xc000426440 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/registry/registry.go:0xc000426540 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/seccomp.go:0xc000400b40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/service_update_response.go:0xc000400c40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/stats.go:0xc000400d40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/strslice/strslice.go:0xc000401f00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/types.go:0xc000400e40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/versions/compare.go:0xc000426180 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/volume.go:0xc000400f40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/volume.go:0xc0003b8e40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/dockertest.go:0xc000369640 file:///home/jake/go/pkg/mod/github.com/patrickmn/go-cache@v2.1.0+incompatible/cache.go:0xc0003cf700 file:///home/jake/go/pkg/mod/github.com/patrickmn/go-cache@v2.1.0+incompatible/sharded.go:0xc0003cf800 file:///home/jake/go/pkg/mod/github.com/pkg/errors@v0.8.1/errors.go:0xc0002c3300 file:///home/jake/go/pkg/mod/github.com/pkg/errors@v0.8.1/stack.go:0xc0002c3400 file:///home/jake/go/pkg/mod/github.com/pmylund/go-cache@v2.1.0+incompatible/cache.go:0xc0003ce7c0 file:///home/jake/go/pkg/mod/github.com/pmylund/go-cache@v2.1.0+incompatible/sharded.go:0xc0003ce8c0 file:///home/jake/go/pkg/mod/github.com/posener/ctxutil@v1.0.0/doc.go:0xc00040ad00 file:///home/jake/go/pkg/mod/github.com/posener/ctxutil@v1.0.0/signal.go:0xc00040ae00 file:///home/jake/go/pkg/mod/github.com/posener/ctxutil@v1.0.0/values.go:0xc00040af00 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/chain.go:0xc000583bc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/constantdelay.go:0xc000583cc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/cron.go:0xc000583dc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/doc.go:0xc000583ec0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/logger.go:0xc000583fc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/option.go:0xc0005f8100 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/parser.go:0xc000638000 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/spec.go:0xc000638140 file:///home/jake/go/pkg/mod/github.com/rs/xid@v1.2.1/hostid_linux.go:0xc00075ac40 file:///home/jake/go/pkg/mod/github.com/rs/xid@v1.2.1/id.go:0xc00075ad40 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/format.go:0xc0003cff80 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/format_list.go:0xc000506080 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/signature.go:0xc000506180 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/thumbnail.go:0xc000506280 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/utils.go:0xc000506380 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/video_info.go:0xc000506480 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/alt_exit.go:0xc000528000 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/doc.go:0xc000528100 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/entry.go:0xc000528200 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/exported.go:0xc000528300 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/formatter.go:0xc000528400 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/hooks.go:0xc000528500 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/json_formatter.go:0xc000528600 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/logger.go:0xc000528700 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/logrus.go:0xc000528800 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/terminal_check_notappengine.go:0xc000528900 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/terminal_check_unix.go:0xc000528a00 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/text_formatter.go:0xc000528b00 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/writer.go:0xc000528c00 file:///home/jake/go/pkg/mod/github.com/spf13/cast@v1.3.0/cast.go:0xc0009be540 file:///home/jake/go/pkg/mod/github.com/spf13/cast@v1.3.0/caste.go:0xc0009be640 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/agent/agent.go:0xc0000e6f80 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/agent/constants.go:0xc0000e7080 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/agent/ttypes.go:0xc0000e7180 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/jaeger/agent.go:0xc0000e7280 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/jaeger/constants.go:0xc0000e73c0 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/jaeger/ttypes.go:0xc0000e7500 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/zipkincore/constants.go:0xc0000e7640 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/zipkincore/ttypes.go:0xc0000e7740 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/zipkincore/zipkincollector.go:0xc0000e7880 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/application_exception.go:0xc00075bd40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/binary_protocol.go:0xc00075be40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/compact_protocol.go:0xc00075bf40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/exception.go:0xc0000e6040 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/memory_buffer.go:0xc0000e6140 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/messagetype.go:0xc0000e6240 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/numeric.go:0xc0000e6340 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/processor.go:0xc0000e6440 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/protocol.go:0xc0000e6540 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/protocol_exception.go:0xc0000e6640 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/protocol_factory.go:0xc0000e6740 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/rich_transport.go:0xc0000e6840 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/serializer.go:0xc0000e6940 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/simple_json_protocol.go:0xc0000e6a40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/transport.go:0xc0000e6b40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/transport_exception.go:0xc0000e6c40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/transport_factory.go:0xc0000e6d40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/type.go:0xc0000e6e40 file:///home/jake/go/pkg/mod/github.com/valyala/bytebufferpool@v1.0.0/bytebuffer.go:0xc0007c5640 file:///home/jake/go/pkg/mod/github.com/valyala/bytebufferpool@v1.0.0/doc.go:0xc0007c5740 file:///home/jake/go/pkg/mod/github.com/valyala/bytebufferpool@v1.0.0/pool.go:0xc0007c5840 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/bytebuffer.go:0xc0007c4e40 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/doc.go:0xc0007c4f40 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/htmlescapewriter.go:0xc0007c5040 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/jsonstring.go:0xc0007c5140 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/urlencode.go:0xc0007c5240 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/util.go:0xc0007c5340 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/util_noappengine.go:0xc0007c5440 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/writer.go:0xc0007c5540 file:///home/jake/go/pkg/mod/github.com/volatiletech/inflect@v0.0.0-20170731032912-e7201282ae8d/inflect.go:0xc0008b1200 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/bool.go:0xc0004d5200 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/byte.go:0xc0004d5300 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/bytes.go:0xc0004d5400 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/convert/convert.go:0xc0008b0140 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/float32.go:0xc0004d5500 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/float64.go:0xc0004d5600 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int.go:0xc0004d5700 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int16.go:0xc0004d5800 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int32.go:0xc0004d5900 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int64.go:0xc0004d5a00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int8.go:0xc0004d5b00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/json.go:0xc0004d5c00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/string.go:0xc0004d5d00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/time.go:0xc0004d5e00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint.go:0xc0004d5f00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint16.go:0xc00050c000 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint32.go:0xc00050c2c0 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint64.go:0xc00050c640 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint8.go:0xc0008b0000 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/columns.go:0xc0008b1400 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/context_keys.go:0xc0008b1500 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/db.go:0xc0008b1600 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/debug.go:0xc0008b1700 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/errors.go:0xc0008b1800 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/global.go:0xc0008b1900 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/hooks.go:0xc0008b1a00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/binary_driver.go:0xc0008b1b40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/column.go:0xc0008b1c40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/config.go:0xc0008b1d40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/driver_main.go:0xc0008b1e40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/interface.go:0xc0008b1f40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/keys.go:0xc0009be040 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/registration.go:0xc0009be140 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/relationships.go:0xc0009be240 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/table.go:0xc0009be340 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/importers/imports.go:0xc0009be440 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/eager_load.go:0xc0003b0a40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/helpers.go:0xc0003b0b40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/qm/query_mods.go:0xc0003b1040 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/qmhelper/qmhelper.go:0xc0003b1180 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/query.go:0xc0003b0d00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/query_builders.go:0xc0003b0e00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/reflect.go:0xc0003b0f00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/randomize/random.go:0xc0008b02c0 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/randomize/randomize.go:0xc0008b0480 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/buf_pool.go:0xc0008b0e00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/inflect.go:0xc0008b0f00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/sets.go:0xc0008b1000 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/strmangle.go:0xc0008b1100 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/array.go:0xc0003b1340 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/byte.go:0xc0003b1440 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/decimal.go:0xc0003b1580 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/hstore.go:0xc0003b16c0 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/json.go:0xc0003b17c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/alloc.go:0xc0008716c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/ast.go:0xc000888f00 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/expr.go:0xc000889000 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/misc.go:0xc000889100 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/stmt.go:0xc000889200 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/token.go:0xc000889300 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/auxlib.go:0xc0008717c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/baselib.go:0xc0008718c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/channellib.go:0xc0008719c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/compile.go:0xc000871ac0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/config.go:0xc000871bc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/coroutinelib.go:0xc000871cc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/debuglib.go:0xc000871dc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/function.go:0xc000871ec0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/iolib.go:0xc000871fc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/linit.go:0xc000888180 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/loadlib.go:0xc000888280 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/mathlib.go:0xc000888380 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/opcode.go:0xc000888480 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/oslib.go:0xc000888580 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/package.go:0xc000888680 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/parse/lexer.go:0xc000889440 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/parse/parser.go:0xc000889540 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/pm/pm.go:0xc000889680 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/state.go:0xc000888780 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/stringlib.go:0xc000888880 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/table.go:0xc000888980 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/tablelib.go:0xc000888ac0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/utils.go:0xc000888bc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/value.go:0xc000888d00 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/vm.go:0xc000888e00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/internal.go:0xc000ca99c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/sanitize.go:0xc000ca9ac0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/tagencoding/tagencoding.go:0xc0001f8d40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/traceinternals.go:0xc000b36000 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/doc.go:0xc000152800 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/exemplar.go:0xc000152900 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/label.go:0xc000152a00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/metric.go:0xc000152b00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/point.go:0xc000152c00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/type_string.go:0xc000152d00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/unit.go:0xc000152e00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricproducer/manager.go:0xc0001f8e80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricproducer/producer.go:0xc0001f8f80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/opencensus.go:0xc000b36600 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/client.go:0xc0005c8e80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/client_stats.go:0xc0005c8f80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/doc.go:0xc0005c9080 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/propagation/b3/b3.go:0xc0005c9780 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/route.go:0xc0005c9180 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/server.go:0xc0005c9280 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/span_annotating_client_trace.go:0xc0005c9380 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/stats.go:0xc0005c9480 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/trace.go:0xc0005c9580 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/wrapped_body.go:0xc0005c9680 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/resource/resource.go:0xc000152f00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/doc.go:0xc000152200 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/internal/record.go:0xc000153080 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/measure.go:0xc000152300 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/measure_float64.go:0xc000152400 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/measure_int64.go:0xc000152500 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/record.go:0xc000152600 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/units.go:0xc000152700 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/aggregation.go:0xc0001f8440 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/aggregation_data.go:0xc0001f8540 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/collector.go:0xc0001f8640 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/doc.go:0xc0001f8740 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/export.go:0xc0001f8840 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/view.go:0xc0001f8940 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/view_to_metric.go:0xc0001f8a40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/worker.go:0xc0001f8b40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/worker_commands.go:0xc0001f8c40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/context.go:0xc000153180 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/doc.go:0xc000153280 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/key.go:0xc000153380 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/map.go:0xc000153480 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/map_codec.go:0xc0001535c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/metadata.go:0xc0001536c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/profile_19.go:0xc0001537c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/validate.go:0xc0001538c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/basetypes.go:0xc000ca8bc0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/config.go:0xc000ca8cc0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/doc.go:0xc000ca8e00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/evictedqueue.go:0xc000ca8f00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/export.go:0xc000ca9000 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/internal/internal.go:0xc000b36900 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/lrumap.go:0xc000ca9100 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/propagation/propagation.go:0xc000b1ccc0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/sampling.go:0xc000ca9200 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/spanbucket.go:0xc000ca9300 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/spanstore.go:0xc000ca9400 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/status_codes.go:0xc000ca9500 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/trace.go:0xc000ca9600 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/trace_go11.go:0xc000ca9780 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/tracestate/tracestate.go:0xc000b36d40 file:///home/jake/go/pkg/mod/go.uber.org/atomic@v1.5.0/atomic.go:0xc00048dc00 file:///home/jake/go/pkg/mod/go.uber.org/atomic@v1.5.0/error.go:0xc00048dd00 file:///home/jake/go/pkg/mod/go.uber.org/atomic@v1.5.0/string.go:0xc00048de00 file:///home/jake/go/pkg/mod/go.uber.org/multierr@v1.3.0/error.go:0xc00048df40 file:///home/jake/go/pkg/mod/go.uber.org/multierr@v1.3.0/go113.go:0xc0003e8080 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/array.go:0xc000cbb480 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/buffer/buffer.go:0xc0003e8400 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/buffer/pool.go:0xc0003e8540 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/config.go:0xc000cbb580 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/doc.go:0xc000cbb680 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/encoder.go:0xc000cbb7c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/error.go:0xc000cbb8c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/field.go:0xc000cbb9c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/flag.go:0xc000cbbac0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/global.go:0xc000cbbbc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/global_go112.go:0xc000cbbcc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/http_handler.go:0xc000cbbdc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/internal/bufferpool/bufferpool.go:0xc0003e81c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/internal/color/color.go:0xc0003e9b40 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/internal/exit/exit.go:0xc0003e9d00 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/level.go:0xc000cbbec0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/logger.go:0xc000cbbfc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/options.go:0xc000ce20c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/sink.go:0xc000ce21c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/stacktrace.go:0xc000ce22c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/sugar.go:0xc000ce23c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/time.go:0xc000ce24c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/writer.go:0xc000ce2600 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/console_encoder.go:0xc0003e87c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/core.go:0xc0003e88c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/doc.go:0xc0003e8a00 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/encoder.go:0xc0003e8b40 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/entry.go:0xc0003e8c80 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/error.go:0xc0003e8d80 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/field.go:0xc0003e8ec0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/hook.go:0xc0003e9080 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/json_encoder.go:0xc0003e9200 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/level.go:0xc0003e9340 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/level_strings.go:0xc0003e9440 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/marshaler.go:0xc0003e9540 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/memory_encoder.go:0xc0003e9640 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/sampler.go:0xc0003e9740 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/tee.go:0xc0003e98c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/write_syncer.go:0xc0003e99c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/context.go:0xc0004c1f80 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/ctxhttp/ctxhttp.go:0xc0002a8080 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/go17.go:0xc0004fe080 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/go19.go:0xc0004fe180 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/atom/atom.go:0xc000507d00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/atom/table.go:0xc000507e00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/const.go:0xc0005072c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/doc.go:0xc0005073c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/doctype.go:0xc0005074c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/entity.go:0xc0005075c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/escape.go:0xc0005076c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/foreign.go:0xc000507800 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/node.go:0xc000507900 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/parse.go:0xc000507a00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/render.go:0xc000507b00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/token.go:0xc000507c00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/idna10.0.0.go:0xc00053cf80 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/punycode.go:0xc00053d080 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/tables11.0.0.go:0xc00053d180 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/trie.go:0xc00053d280 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/trieval.go:0xc00053d3c0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/clientcredentials/clientcredentials.go:0xc0003cf940 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/doc.go:0xc0001f7c00 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/oauth2.go:0xc0001f7d00 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/token.go:0xc0001f7e00 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/transport.go:0xc0001f7f40 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/oauth2.go:0xc0001f78c0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/token.go:0xc0001f79c0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/transport.go:0xc0001f7ac0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/twitch/twitch.go:0xc0003cfa80 file:///home/jake/go/pkg/mod/golang.org/x/sync@v0.0.0-20190911185100-cd5d95a43a6e/errgroup/errgroup.go:0xc0005838c0 file:///home/jake/go/pkg/mod/golang.org/x/sync@v0.0.0-20190911185100-cd5d95a43a6e/semaphore/semaphore.go:0xc0000e7b00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/affinity_linux.go:0xc000528d00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/aliases.go:0xc000528e00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/bluetooth_linux.go:0xc000528f00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/constants.go:0xc000529000 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/dev_linux.go:0xc000529100 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/dirent.go:0xc000529200 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/endian_little.go:0xc000529300 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/env_unix.go:0xc000529400 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/fcntl.go:0xc000529500 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/ioctl.go:0xc000529600 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/pagesize_unix.go:0xc000529700 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/race0.go:0xc000529800 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/readdirent_getdents.go:0xc000529900 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/sockcmsg_linux.go:0xc000529a00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/sockcmsg_unix.go:0xc000529b00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/str.go:0xc000529c00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall.go:0xc000529d40 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux.go:0xc000529e40 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux_amd64.go:0xc000529f40 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux_amd64_gc.go:0xc00053c040 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux_gc.go:0xc00053c140 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_unix.go:0xc00053c240 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_unix_gc.go:0xc00053c340 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/timestruct.go:0xc00053c440 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zerrors_linux_amd64.go:0xc00053c540 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zptrace386_linux.go:0xc00053c640 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zsyscall_linux_amd64.go:0xc00053c740 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zsysnum_linux_amd64.go:0xc00053c840 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/ztypes_linux_amd64.go:0xc00053c940 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/secure/bidirule/bidirule.go:0xc00053d500 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/secure/bidirule/bidirule10.0.0.go:0xc00053d600 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/transform/transform.go:0xc00053d740 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/bidi.go:0xc00053d900 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/bracket.go:0xc00053da00 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/core.go:0xc00053db00 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/prop.go:0xc00053dc40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/tables11.0.0.go:0xc00053dd40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/trieval.go:0xc00053de40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/composition.go:0xc00053dfc0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/forminfo.go:0xc0005820c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/input.go:0xc0005821c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/iter.go:0xc0005822c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/normalize.go:0xc0005823c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/readwriter.go:0xc0005824c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/tables11.0.0.go:0xc0005825c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/transform.go:0xc0005826c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/trie.go:0xc0005827c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/kind_string.go:0xc000582940 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/tables11.0.0.go:0xc000582a40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/transform.go:0xc000582b40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/trieval.go:0xc000582c40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/width.go:0xc000582d40 file:///home/jake/go/pkg/mod/google.golang.org/api@v0.4.0/support/bundler/bundler.go:0xc0000e7a00 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/assert.go:0xc0001b8b00 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/cmp/compare.go:0xc0001b9b80 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/cmp/result.go:0xc0001b9c80 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/result.go:0xc0001b8c00 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/env/env.go:0xc0005926c0 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/difflib/difflib.go:0xc0001b9fc0 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/format/diff.go:0xc0001b9d80 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/format/format.go:0xc0001b9ec0 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/source/defers.go:0xc000296140 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/source/source.go:0xc000296240 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/x/subtest/context.go:0xc000592800 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/schemes.go:0xc000582f40 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/tlds.go:0xc000583040 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/tlds_pseudo.go:0xc000583140 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/xurls.go:0xc000583240 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/birc.go:0xc0004ffe00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq.go:0xc0004ffc00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq_test.go:0xc000374d80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/config.go:0xc0004fff00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/config_test.go:0xc0003741c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/connection_test.go:0xc0003742c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/connecton.go:0xc0005c8000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer.go:0xc0005c8100 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer_test.go:0xc0003743c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool.go:0xc0005c8200 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool_test.go:0xc0003744c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/shared_test.go:0xc0003745c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/export_test.go:0xc0003752c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/helpers.go:0xc00053a280 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming.go:0xc00053a540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming_test.go:0xc000375400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/message.go:0xc00053ae40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify.go:0xc00053af40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify_test.go:0xc000375500 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/publisher.go:0xc00053b040 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message.go:0xc00053b140 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message_test.go:0xc000375600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/subscriber.go:0xc00053b240 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level.go:0xc00075a080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level_test.go:0xc000430640 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/accesslevel_string.go:0xc0005f82c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/actions.go:0xc0005f83c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/autoreplies.go:0xc0005f84c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/bench_test.go:0xc000430880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot.go:0xc0005f85c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot_test.go:0xc000430980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_notifier.go:0xc000823540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_rand.go:0xc000823640 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_sender.go:0xc000823740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/apis.go:0xc0000e4900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/clock.go:0xc0000e4a00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/db.go:0xc0000e4b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/fakes.go:0xc0000e4c40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/irc.go:0xc0000e4d40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/script_tester.go:0xc0000e4e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/twitch.go:0xc0000e4f80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/builtin_commands.go:0xc0005f86c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_admin.go:0xc0005f87c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_autoreplies.go:0xc0005f88c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_command.go:0xc0005f89c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_filters.go:0xc0005f8ac0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_fun.go:0xc0005f8bc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_lastfm.go:0xc0005f8cc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_levels.go:0xc0005f8dc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_list.go:0xc0005f8ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_management.go:0xc0005f8fc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_moderation.go:0xc0005f90c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_quote.go:0xc0005f91c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_raffle.go:0xc0005f92c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_random.go:0xc0005f93c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_repeat.go:0xc0005f94c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_schedule.go:0xc0005f95c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_settings.go:0xc0005f96c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_steam.go:0xc0005f97c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_twitch.go:0xc0005f98c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_var.go:0xc0005f99c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_website.go:0xc0005f9ac0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/correlation.go:0xc0005f9bc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/custom_command.go:0xc0005f9cc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/deps.go:0xc0005f9dc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/export_test.go:0xc000430740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/filters.go:0xc0005f9ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/handle.go:0xc0005f9fc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/helpers.go:0xc000229500 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/interfaces.go:0xc000b94c00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/main_test.go:0xc000430a80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/rdb.go:0xc000638240 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/repeat.go:0xc000638340 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/script_test.go:0xc000430b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/session.go:0xc000638440 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/sessiontype_string.go:0xc000638540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/testcmd_test.go:0xc000430c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/testing.go:0xc000638640 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/user_state.go:0xc000638740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/var.go:0xc000638840 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp.go:0xc00040b540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp_test.go:0xc000431ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/cli.go:0xc000b1d900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/botflags/botargs.go:0xc00075aec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/ircflags/ircargs.go:0xc0005c8540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/jaegerflags/jaegerargs.go:0xc00075ba40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/nsqflags/nsqargs.go:0xc0001f9180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go:0xc0001f94c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/sqlflags/sqlargs.go:0xc0002c2a00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/twitchflags/twitchargs.go:0xc0002c2bc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/webflags/webargs.go:0xc000822a00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go:0xc0002c2d00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/helpers.go:0xc0002c3600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/main.go:0xc0002c3700 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/site_db.go:0xc0002c3800 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/twitch.go:0xc0002c3900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confimport/confimport.go:0xc0004ff980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/irc/main.go:0xc0005c8880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/singleproc/singleproc.go:0xc000822c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/web/main.go:0xc000822e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/confimport/confimport.go:0xc0002c3200 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/bindata.go:0xc0001f9600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/esc.go:0xc0001f9700 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations.go:0xc0001f9840 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations_test.go:0xc0004a21c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/autoreplies.go:0xc00040b6c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/blocked_users.go:0xc00040b880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_queries.go:0xc00040b980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_table_names.go:0xc00040ba80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_types.go:0xc00040bbc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/channels.go:0xc00040bd00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_infos.go:0xc00040be40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_lists.go:0xc00040bfc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/custom_commands.go:0xc0004d40c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/psql_upsert.go:0xc0004d41c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/quotes.go:0xc0004d4300 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/repeated_commands.go:0xc0004d4440 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/scheduled_commands.go:0xc0004d4580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/twitch_tokens.go:0xc0004d4780 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/variables.go:0xc0004d4880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/channel.go:0xc0001f72c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/modelsx.go:0xc0001f73c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot.go:0xc0002a8280 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot_test.go:0xc0004a2b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe.go:0xc0002a8380 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe_test.go:0xc0004a2c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc.go:0xc0002a8480 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc_test.go:0xc0004a2d80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys.go:0xc0002a8580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys_test.go:0xc0004a2740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool.go:0xc0002a8680 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool_test.go:0xc0004a2840 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate.go:0xc0002a8780 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate_test.go:0xc0004a2940 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set.go:0xc0002a8880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set_test.go:0xc0004a2a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join.go:0xc0002a8980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join_test.go:0xc0004a2e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/redis.go:0xc0002a8a80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web.go:0xc0002a8b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web_test.go:0xc0004a2f80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife.go:0xc000359000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife_test.go:0xc0004a3740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralifefakes/fake_api.go:0xc000823880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm.go:0xc000359140 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm_test.go:0xc0004a3ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfmfakes/fake_api.go:0xc0008239c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam.go:0xc0003cea80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam_test.go:0xc0005041c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steamfakes/fake_api.go:0xc000823b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl.go:0xc0003cebc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl_test.go:0xc0005044c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurlfakes/fake_api.go:0xc000823c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache.go:0xc0003cee40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache_test.go:0xc000504b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel.go:0xc0003cef80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel_test.go:0xc000504c00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters.go:0xc0003cf080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters_test.go:0xc000504d00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/fake_twitch_test.go:0xc000504e00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers.go:0xc0003cf180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers_test.go:0xc0005049c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/http.go:0xc0003cf280 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams.go:0xc0003cf380 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams_test.go:0xc000504f00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch.go:0xc0003cf480 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch_test.go:0xc000505000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitchfakes/fake_api.go:0xc000823dc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users.go:0xc0003cf580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users_test.go:0xc000505100 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban.go:0xc0003cfc00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban_test.go:0xc000505800 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urbanfakes/fake_api.go:0xc000823f40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd.go:0xc0003cfd40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd_test.go:0xc000505b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcdfakes/fake_api.go:0xc000870080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtube.go:0xc0003cfe80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtubefakes/fake_api.go:0xc000888040 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack.go:0xc0002972c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack_test.go:0xc000505e40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxlog/ctxlog.go:0xc000b956c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx.go:0xc0005837c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx_test.go:0xc0005921c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper.go:0xc000297400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper_test.go:0xc0005925c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server.go:0xc000297500 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server_test.go:0xc0005929c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/tls.go:0xc000297600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks.go:0xc00053cb40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks_test.go:0xc000592e40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx.go:0xc0004ffac0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx_test.go:0xc000593180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch.go:0xc0005833c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch_test.go:0xc000593580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x.go:0xc0003ced00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x_test.go:0xc000593900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2xfakes/fake_token_source.go:0xc000297cc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache.go:0xc000583680 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache_test.go:0xc000593c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/cron_test.go:0xc000658000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat.go:0xc000583a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat_test.go:0xc000658100 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/miniredistest/miniredistest.go:0xc0004fe400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/nsqtest/nsqtest.go:0xc000297e00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/pgtest/pgtest.go:0xc000297f40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/redistest/redistest.go:0xc000374080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/testutil.go:0xc000350680 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/twitchx/twitchx.go:0xc0005c8400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/version/version.go:0xc000b1cfc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/mid/mid.go:0xc0005c8a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/middleware.go:0xc0007c5a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/session.go:0xc0007c5b40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/about.qtpl.go:0xc0005c9980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/base.qtpl.go:0xc0005c9a80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channel.qtpl.go:0xc0005c9b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channels.qtpl.go:0xc0005c9c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/docs.qtpl.go:0xc0005c9d80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/gen.go:0xc0005c9e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/index.qtpl.go:0xc0005c9f80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/login.qtpl.go:0xc0007c4080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/sidebar_scripts.qtpl.go:0xc0007c4180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/web.go:0xc0007c5c40 file:///home/jake/zikaeroh/hortbot/hortbot/main.go:0xc000823000 file:///usr/lib/go/src/archive/tar/common.go:0xc00046a1c0 file:///usr/lib/go/src/archive/tar/format.go:0xc00046a2c0 file:///usr/lib/go/src/archive/tar/reader.go:0xc00046a3c0 file:///usr/lib/go/src/archive/tar/stat_actime1.go:0xc00046a4c0 file:///usr/lib/go/src/archive/tar/stat_unix.go:0xc00046a5c0 file:///usr/lib/go/src/archive/tar/strconv.go:0xc00046a6c0 file:///usr/lib/go/src/archive/tar/writer.go:0xc00046a7c0 file:///usr/lib/go/src/bufio/bufio.go:0xc000351bc0 file:///usr/lib/go/src/bufio/scan.go:0xc000351cc0 file:///usr/lib/go/src/bytes/buffer.go:0xc000ce2700 file:///usr/lib/go/src/bytes/bytes.go:0xc000ce2800 file:///usr/lib/go/src/bytes/reader.go:0xc000ce2900 file:///usr/lib/go/src/compress/bzip2/bit_reader.go:0xc00046a940 file:///usr/lib/go/src/compress/bzip2/bzip2.go:0xc00046aa40 file:///usr/lib/go/src/compress/bzip2/huffman.go:0xc00046ab40 file:///usr/lib/go/src/compress/bzip2/move_to_front.go:0xc00046ac40 file:///usr/lib/go/src/compress/flate/deflate.go:0xc000318040 file:///usr/lib/go/src/compress/flate/deflatefast.go:0xc000318140 file:///usr/lib/go/src/compress/flate/dict_decoder.go:0xc000318240 file:///usr/lib/go/src/compress/flate/huffman_bit_writer.go:0xc000318340 file:///usr/lib/go/src/compress/flate/huffman_code.go:0xc000318440 file:///usr/lib/go/src/compress/flate/inflate.go:0xc000318540 file:///usr/lib/go/src/compress/flate/token.go:0xc000318640 file:///usr/lib/go/src/compress/gzip/gunzip.go:0xc000351e40 file:///usr/lib/go/src/compress/gzip/gzip.go:0xc000351f40 file:///usr/lib/go/src/container/list/list.go:0xc000318d40 file:///usr/lib/go/src/context/context.go:0xc000b957c0 file:///usr/lib/go/src/crypto/aes/aes_gcm.go:0xc000319b00 file:///usr/lib/go/src/crypto/aes/block.go:0xc000319c00 file:///usr/lib/go/src/crypto/aes/cipher.go:0xc000319dc0 file:///usr/lib/go/src/crypto/aes/cipher_asm.go:0xc000319ec0 file:///usr/lib/go/src/crypto/aes/const.go:0xc000266000 file:///usr/lib/go/src/crypto/aes/modes.go:0xc000266240 file:///usr/lib/go/src/crypto/cipher/cbc.go:0xc0002663c0 file:///usr/lib/go/src/crypto/cipher/cfb.go:0xc000266540 file:///usr/lib/go/src/crypto/cipher/cipher.go:0xc000266740 file:///usr/lib/go/src/crypto/cipher/ctr.go:0xc000266a00 file:///usr/lib/go/src/crypto/cipher/gcm.go:0xc000266bc0 file:///usr/lib/go/src/crypto/cipher/io.go:0xc000266d80 file:///usr/lib/go/src/crypto/cipher/ofb.go:0xc000266f80 file:///usr/lib/go/src/crypto/cipher/xor_amd64.go:0xc0002670c0 file:///usr/lib/go/src/crypto/crypto.go:0xc000229100 file:///usr/lib/go/src/crypto/des/block.go:0xc000229240 file:///usr/lib/go/src/crypto/des/cipher.go:0xc000229340 file:///usr/lib/go/src/crypto/des/const.go:0xc000229480 file:///usr/lib/go/src/crypto/dsa/dsa.go:0xc000272840 file:///usr/lib/go/src/crypto/ecdsa/ecdsa.go:0xc000229600 file:///usr/lib/go/src/crypto/ed25519/ed25519.go:0xc0002e8440 file:///usr/lib/go/src/crypto/ed25519/internal/edwards25519/const.go:0xc0002e86c0 file:///usr/lib/go/src/crypto/ed25519/internal/edwards25519/edwards25519.go:0xc0002e87c0 file:///usr/lib/go/src/crypto/elliptic/elliptic.go:0xc000229700 file:///usr/lib/go/src/crypto/elliptic/p224.go:0xc000229800 file:///usr/lib/go/src/crypto/elliptic/p256_asm.go:0xc000229900 file:///usr/lib/go/src/crypto/hmac/hmac.go:0xc0002e8940 file:///usr/lib/go/src/crypto/internal/randutil/randutil.go:0xc000229a40 file:///usr/lib/go/src/crypto/internal/subtle/aliasing.go:0xc000267380 file:///usr/lib/go/src/crypto/md5/md5.go:0xc0002e8a80 file:///usr/lib/go/src/crypto/md5/md5block.go:0xc0002e8b80 file:///usr/lib/go/src/crypto/md5/md5block_decl.go:0xc0002e8c80 file:///usr/lib/go/src/crypto/rand/eagain.go:0xc000318f40 file:///usr/lib/go/src/crypto/rand/rand.go:0xc0003191c0 file:///usr/lib/go/src/crypto/rand/rand_batched.go:0xc000319400 file:///usr/lib/go/src/crypto/rand/rand_linux.go:0xc0003195c0 file:///usr/lib/go/src/crypto/rand/rand_unix.go:0xc000319700 file:///usr/lib/go/src/crypto/rand/util.go:0xc000319880 file:///usr/lib/go/src/crypto/rc4/rc4.go:0xc0002e8dc0 file:///usr/lib/go/src/crypto/rsa/pkcs1v15.go:0xc0002e8f00 file:///usr/lib/go/src/crypto/rsa/pss.go:0xc0002e9000 file:///usr/lib/go/src/crypto/rsa/rsa.go:0xc0002e9100 file:///usr/lib/go/src/crypto/sha1/sha1.go:0xc0002e9240 file:///usr/lib/go/src/crypto/sha1/sha1block.go:0xc0002e9340 file:///usr/lib/go/src/crypto/sha1/sha1block_amd64.go:0xc0002e9440 file:///usr/lib/go/src/crypto/sha256/sha256.go:0xc0002e95c0 file:///usr/lib/go/src/crypto/sha256/sha256block.go:0xc0002e96c0 file:///usr/lib/go/src/crypto/sha256/sha256block_amd64.go:0xc0002e97c0 file:///usr/lib/go/src/crypto/sha256/sha256block_decl.go:0xc0002e98c0 file:///usr/lib/go/src/crypto/sha512/sha512.go:0xc000229b80 file:///usr/lib/go/src/crypto/sha512/sha512block.go:0xc000229c80 file:///usr/lib/go/src/crypto/sha512/sha512block_amd64.go:0xc000229d80 file:///usr/lib/go/src/crypto/subtle/constant_time.go:0xc0002674c0 file:///usr/lib/go/src/crypto/tls/alert.go:0xc00044ff80 file:///usr/lib/go/src/crypto/tls/auth.go:0xc0002280c0 file:///usr/lib/go/src/crypto/tls/cipher_suites.go:0xc000228280 file:///usr/lib/go/src/crypto/tls/common.go:0xc000228440 file:///usr/lib/go/src/crypto/tls/conn.go:0xc0002285c0 file:///usr/lib/go/src/crypto/tls/handshake_client.go:0xc0002286c0 file:///usr/lib/go/src/crypto/tls/handshake_client_tls13.go:0xc0002287c0 file:///usr/lib/go/src/crypto/tls/handshake_messages.go:0xc000228900 file:///usr/lib/go/src/crypto/tls/handshake_server.go:0xc000228a00 file:///usr/lib/go/src/crypto/tls/handshake_server_tls13.go:0xc000228b00 file:///usr/lib/go/src/crypto/tls/key_agreement.go:0xc000228c00 file:///usr/lib/go/src/crypto/tls/key_schedule.go:0xc000228d00 file:///usr/lib/go/src/crypto/tls/prf.go:0xc000228e00 file:///usr/lib/go/src/crypto/tls/ticket.go:0xc000228f00 file:///usr/lib/go/src/crypto/tls/tls.go:0xc000229000 file:///usr/lib/go/src/crypto/x509/cert_pool.go:0xc0002e9a00 file:///usr/lib/go/src/crypto/x509/pem_decrypt.go:0xc0002e9b00 file:///usr/lib/go/src/crypto/x509/pkcs1.go:0xc0002e9c00 file:///usr/lib/go/src/crypto/x509/pkcs8.go:0xc0002e9d00 file:///usr/lib/go/src/crypto/x509/pkix/pkix.go:0xc000272a40 file:///usr/lib/go/src/crypto/x509/root.go:0xc0002e9e00 file:///usr/lib/go/src/crypto/x509/root_linux.go:0xc0002e9f00 file:///usr/lib/go/src/crypto/x509/root_unix.go:0xc000272000 file:///usr/lib/go/src/crypto/x509/sec1.go:0xc000272100 file:///usr/lib/go/src/crypto/x509/verify.go:0xc000272340 file:///usr/lib/go/src/crypto/x509/x509.go:0xc000272480 file:///usr/lib/go/src/database/sql/convert.go:0xc0004d4980 file:///usr/lib/go/src/database/sql/ctxutil.go:0xc0004d4a80 file:///usr/lib/go/src/database/sql/driver/driver.go:0xc0004d4d40 file:///usr/lib/go/src/database/sql/driver/types.go:0xc0004d4e40 file:///usr/lib/go/src/database/sql/sql.go:0xc0004d4bc0 file:///usr/lib/go/src/encoding/asn1/asn1.go:0xc000229ec0 file:///usr/lib/go/src/encoding/asn1/common.go:0xc000229fc0 file:///usr/lib/go/src/encoding/asn1/marshal.go:0xc0002e8180 file:///usr/lib/go/src/encoding/base32/base32.go:0xc0008222c0 file:///usr/lib/go/src/encoding/base64/base64.go:0xc000d26280 file:///usr/lib/go/src/encoding/binary/binary.go:0xc000ca9b00 file:///usr/lib/go/src/encoding/binary/varint.go:0xc000ca9c00 file:///usr/lib/go/src/encoding/encoding.go:0xc000d26140 file:///usr/lib/go/src/encoding/gob/dec_helpers.go:0xc000359980 file:///usr/lib/go/src/encoding/gob/decode.go:0xc000359a80 file:///usr/lib/go/src/encoding/gob/decoder.go:0xc000359bc0 file:///usr/lib/go/src/encoding/gob/doc.go:0xc000359cc0 file:///usr/lib/go/src/encoding/gob/enc_helpers.go:0xc000359dc0 file:///usr/lib/go/src/encoding/gob/encode.go:0xc000359ec0 file:///usr/lib/go/src/encoding/gob/encoder.go:0xc000359fc0 file:///usr/lib/go/src/encoding/gob/error.go:0xc0003ce100 file:///usr/lib/go/src/encoding/gob/type.go:0xc0003ce200 file:///usr/lib/go/src/encoding/hex/hex.go:0xc000272b40 file:///usr/lib/go/src/encoding/json/decode.go:0xc000ce3940 file:///usr/lib/go/src/encoding/json/encode.go:0xc000ce3a40 file:///usr/lib/go/src/encoding/json/fold.go:0xc000ce3b40 file:///usr/lib/go/src/encoding/json/indent.go:0xc000ce3c40 file:///usr/lib/go/src/encoding/json/scanner.go:0xc000ce3d40 file:///usr/lib/go/src/encoding/json/stream.go:0xc000ce3e40 file:///usr/lib/go/src/encoding/json/tables.go:0xc000ce3f40 file:///usr/lib/go/src/encoding/json/tags.go:0xc000d26040 file:///usr/lib/go/src/encoding/pem/pem.go:0xc000272d40 file:///usr/lib/go/src/encoding/xml/marshal.go:0xc0003ce380 file:///usr/lib/go/src/encoding/xml/read.go:0xc0003ce480 file:///usr/lib/go/src/encoding/xml/typeinfo.go:0xc0003ce580 file:///usr/lib/go/src/encoding/xml/xml.go:0xc0003ce680 file:///usr/lib/go/src/errors/errors.go:0xc000b95900 file:///usr/lib/go/src/errors/wrap.go:0xc000b95a00 file:///usr/lib/go/src/expvar/expvar.go:0xc0007e5580 file:///usr/lib/go/src/flag/flag.go:0xc00048dac0 file:///usr/lib/go/src/fmt/doc.go:0xc00050d440 file:///usr/lib/go/src/fmt/errors.go:0xc00050d540 file:///usr/lib/go/src/fmt/format.go:0xc00050d780 file:///usr/lib/go/src/fmt/print.go:0xc00050d8c0 file:///usr/lib/go/src/fmt/scan.go:0xc00050da00 file:///usr/lib/go/src/go/ast/ast.go:0xc0001b8d40 file:///usr/lib/go/src/go/ast/commentmap.go:0xc0001b8e40 file:///usr/lib/go/src/go/ast/filter.go:0xc0001b8f40 file:///usr/lib/go/src/go/ast/import.go:0xc0001b9040 file:///usr/lib/go/src/go/ast/print.go:0xc0001b9140 file:///usr/lib/go/src/go/ast/resolve.go:0xc0001b9280 file:///usr/lib/go/src/go/ast/scope.go:0xc0001b9380 file:///usr/lib/go/src/go/ast/walk.go:0xc0001b9480 file:///usr/lib/go/src/go/format/format.go:0xc000296340 file:///usr/lib/go/src/go/format/internal.go:0xc000296440 file:///usr/lib/go/src/go/parser/interface.go:0xc000296540 file:///usr/lib/go/src/go/parser/parser.go:0xc000296680 file:///usr/lib/go/src/go/printer/nodes.go:0xc0002967c0 file:///usr/lib/go/src/go/printer/printer.go:0xc0002968c0 file:///usr/lib/go/src/go/scanner/errors.go:0xc0001b9580 file:///usr/lib/go/src/go/scanner/scanner.go:0xc0001b9680 file:///usr/lib/go/src/go/token/position.go:0xc0001b97c0 file:///usr/lib/go/src/go/token/serialize.go:0xc0001b98c0 file:///usr/lib/go/src/go/token/token.go:0xc0001b99c0 file:///usr/lib/go/src/hash/crc32/crc32.go:0xc000318780 file:///usr/lib/go/src/hash/crc32/crc32_amd64.go:0xc000318880 file:///usr/lib/go/src/hash/crc32/crc32_generic.go:0xc000318980 file:///usr/lib/go/src/hash/hash.go:0xc000318ac0 file:///usr/lib/go/src/html/entity.go:0xc0009a52c0 file:///usr/lib/go/src/html/escape.go:0xc0009a5440 file:///usr/lib/go/src/html/template/attr.go:0xc0009be740 file:///usr/lib/go/src/html/template/attr_string.go:0xc0009be840 file:///usr/lib/go/src/html/template/content.go:0xc0009be940 file:///usr/lib/go/src/html/template/context.go:0xc0009bea40 file:///usr/lib/go/src/html/template/css.go:0xc0009beb40 file:///usr/lib/go/src/html/template/delim_string.go:0xc0009bec40 file:///usr/lib/go/src/html/template/doc.go:0xc0009bf000 file:///usr/lib/go/src/html/template/element_string.go:0xc0009bf100 file:///usr/lib/go/src/html/template/error.go:0xc0009bf240 file:///usr/lib/go/src/html/template/escape.go:0xc0009bf3c0 file:///usr/lib/go/src/html/template/html.go:0xc0009bf500 file:///usr/lib/go/src/html/template/js.go:0xc0009bf600 file:///usr/lib/go/src/html/template/jsctx_string.go:0xc0009bf700 file:///usr/lib/go/src/html/template/state_string.go:0xc0009bf980 file:///usr/lib/go/src/html/template/template.go:0xc0009bfb40 file:///usr/lib/go/src/html/template/transition.go:0xc0009bfd40 file:///usr/lib/go/src/html/template/url.go:0xc0009bff40 file:///usr/lib/go/src/html/template/urlpart_string.go:0xc0009a50c0 file:///usr/lib/go/src/internal/bytealg/bytealg.go:0xc000c4ad00 file:///usr/lib/go/src/internal/bytealg/compare_native.go:0xc000c4ae00 file:///usr/lib/go/src/internal/bytealg/count_native.go:0xc000c4af00 file:///usr/lib/go/src/internal/bytealg/equal_generic.go:0xc000c4b000 file:///usr/lib/go/src/internal/bytealg/equal_native.go:0xc000c4b100 file:///usr/lib/go/src/internal/bytealg/index_amd64.go:0xc000c4b200 file:///usr/lib/go/src/internal/bytealg/index_native.go:0xc000c4b300 file:///usr/lib/go/src/internal/bytealg/indexbyte_native.go:0xc000c4b400 file:///usr/lib/go/src/internal/cpu/cpu.go:0xc000c4b500 file:///usr/lib/go/src/internal/cpu/cpu_amd64.go:0xc000c4b600 file:///usr/lib/go/src/internal/cpu/cpu_x86.go:0xc000c4b700 file:///usr/lib/go/src/internal/fmtsort/sort.go:0xc00050db00 file:///usr/lib/go/src/internal/nettrace/nettrace.go:0xc0000822c0 file:///usr/lib/go/src/internal/oserror/errors.go:0xc000cbb280 file:///usr/lib/go/src/internal/poll/errno_unix.go:0xc000874e00 file:///usr/lib/go/src/internal/poll/fd.go:0xc000874f00 file:///usr/lib/go/src/internal/poll/fd_fsync_posix.go:0xc000875040 file:///usr/lib/go/src/internal/poll/fd_mutex.go:0xc0008751c0 file:///usr/lib/go/src/internal/poll/fd_poll_runtime.go:0xc000875380 file:///usr/lib/go/src/internal/poll/fd_posix.go:0xc000875540 file:///usr/lib/go/src/internal/poll/fd_unix.go:0xc000875680 file:///usr/lib/go/src/internal/poll/fd_writev_unix.go:0xc0008757c0 file:///usr/lib/go/src/internal/poll/hook_cloexec.go:0xc0008758c0 file:///usr/lib/go/src/internal/poll/hook_unix.go:0xc000875a40 file:///usr/lib/go/src/internal/poll/sendfile_linux.go:0xc000875b40 file:///usr/lib/go/src/internal/poll/sock_cloexec.go:0xc000875cc0 file:///usr/lib/go/src/internal/poll/sockopt.go:0xc000875e40 file:///usr/lib/go/src/internal/poll/sockopt_linux.go:0xc000875f40 file:///usr/lib/go/src/internal/poll/sockopt_unix.go:0xc00048c040 file:///usr/lib/go/src/internal/poll/sockoptip.go:0xc00048c180 file:///usr/lib/go/src/internal/poll/splice_linux.go:0xc00048c2c0 file:///usr/lib/go/src/internal/poll/writev.go:0xc00048c3c0 file:///usr/lib/go/src/internal/race/doc.go:0xc000c68ec0 file:///usr/lib/go/src/internal/race/norace.go:0xc000c68fc0 file:///usr/lib/go/src/internal/reflectlite/swapper.go:0xc000b95b00 file:///usr/lib/go/src/internal/reflectlite/type.go:0xc000b95c00 file:///usr/lib/go/src/internal/reflectlite/value.go:0xc000b95d00 file:///usr/lib/go/src/internal/singleflight/singleflight.go:0xc000082780 file:///usr/lib/go/src/internal/syscall/unix/at.go:0xc00048c540 file:///usr/lib/go/src/internal/syscall/unix/at_sysnum_linux.go:0xc00048c740 file:///usr/lib/go/src/internal/syscall/unix/at_sysnum_newfstatat_linux.go:0xc00048c840 file:///usr/lib/go/src/internal/syscall/unix/getrandom_linux.go:0xc00048c980 file:///usr/lib/go/src/internal/syscall/unix/getrandom_linux_amd64.go:0xc00048ca80 file:///usr/lib/go/src/internal/syscall/unix/nonblocking.go:0xc00048cc00 file:///usr/lib/go/src/internal/testlog/log.go:0xc00048cd40 file:///usr/lib/go/src/io/io.go:0xc000ce2a00 file:///usr/lib/go/src/io/ioutil/ioutil.go:0xc0003e9e80 file:///usr/lib/go/src/io/ioutil/tempfile.go:0xc0003e9f80 file:///usr/lib/go/src/io/multi.go:0xc000ce2b00 file:///usr/lib/go/src/io/pipe.go:0xc000ce2c00 file:///usr/lib/go/src/log/log.go:0xc000350600 file:///usr/lib/go/src/math/abs.go:0xc000ca9d40 file:///usr/lib/go/src/math/acosh.go:0xc000ca9e40 file:///usr/lib/go/src/math/asin.go:0xc000ca9f40 file:///usr/lib/go/src/math/asinh.go:0xc000d36040 file:///usr/lib/go/src/math/atan.go:0xc000d36140 file:///usr/lib/go/src/math/atan2.go:0xc000d36240 file:///usr/lib/go/src/math/atanh.go:0xc000d36340 file:///usr/lib/go/src/math/big/accuracy_string.go:0xc000267680 file:///usr/lib/go/src/math/big/arith.go:0xc000267800 file:///usr/lib/go/src/math/big/arith_amd64.go:0xc000267940 file:///usr/lib/go/src/math/big/arith_decl.go:0xc000267b80 file:///usr/lib/go/src/math/big/decimal.go:0xc000267c80 file:///usr/lib/go/src/math/big/doc.go:0xc000267d80 file:///usr/lib/go/src/math/big/float.go:0xc000267e80 file:///usr/lib/go/src/math/big/floatconv.go:0xc000267f80 file:///usr/lib/go/src/math/big/floatmarsh.go:0xc00044e5c0 file:///usr/lib/go/src/math/big/ftoa.go:0xc00044ecc0 file:///usr/lib/go/src/math/big/int.go:0xc00044edc0 file:///usr/lib/go/src/math/big/intconv.go:0xc00044eec0 file:///usr/lib/go/src/math/big/intmarsh.go:0xc00044efc0 file:///usr/lib/go/src/math/big/nat.go:0xc00044f0c0 file:///usr/lib/go/src/math/big/natconv.go:0xc00044f1c0 file:///usr/lib/go/src/math/big/prime.go:0xc00044f2c0 file:///usr/lib/go/src/math/big/rat.go:0xc00044f400 file:///usr/lib/go/src/math/big/ratconv.go:0xc00044f500 file:///usr/lib/go/src/math/big/ratmarsh.go:0xc00044f600 file:///usr/lib/go/src/math/big/roundingmode_string.go:0xc00044f740 file:///usr/lib/go/src/math/big/sqrt.go:0xc00044f840 file:///usr/lib/go/src/math/bits.go:0xc000d36440 file:///usr/lib/go/src/math/bits/bits.go:0xc000d27b80 file:///usr/lib/go/src/math/bits/bits_errors.go:0xc000d27c80 file:///usr/lib/go/src/math/bits/bits_tables.go:0xc000d27d80 file:///usr/lib/go/src/math/cbrt.go:0xc000d36540 file:///usr/lib/go/src/math/const.go:0xc000d36640 file:///usr/lib/go/src/math/copysign.go:0xc000d36740 file:///usr/lib/go/src/math/dim.go:0xc000d36840 file:///usr/lib/go/src/math/erf.go:0xc000d36940 file:///usr/lib/go/src/math/erfinv.go:0xc000d36a40 file:///usr/lib/go/src/math/exp.go:0xc000d36b40 file:///usr/lib/go/src/math/exp_asm.go:0xc000d36c40 file:///usr/lib/go/src/math/expm1.go:0xc000d36d40 file:///usr/lib/go/src/math/floor.go:0xc000d36e40 file:///usr/lib/go/src/math/frexp.go:0xc000d36f40 file:///usr/lib/go/src/math/gamma.go:0xc000d37040 file:///usr/lib/go/src/math/hypot.go:0xc000d37140 file:///usr/lib/go/src/math/j0.go:0xc000d37240 file:///usr/lib/go/src/math/j1.go:0xc000d37340 file:///usr/lib/go/src/math/jn.go:0xc000d37440 file:///usr/lib/go/src/math/ldexp.go:0xc000d37540 file:///usr/lib/go/src/math/lgamma.go:0xc000d37640 file:///usr/lib/go/src/math/log.go:0xc000d37740 file:///usr/lib/go/src/math/log10.go:0xc000d37840 file:///usr/lib/go/src/math/log1p.go:0xc000d37940 file:///usr/lib/go/src/math/logb.go:0xc000d37a40 file:///usr/lib/go/src/math/mod.go:0xc000d37b40 file:///usr/lib/go/src/math/modf.go:0xc000d37c40 file:///usr/lib/go/src/math/nextafter.go:0xc000d37d40 file:///usr/lib/go/src/math/pow.go:0xc000d26f80 file:///usr/lib/go/src/math/pow10.go:0xc000d27080 file:///usr/lib/go/src/math/rand/exp.go:0xc00044f980 file:///usr/lib/go/src/math/rand/normal.go:0xc00044fa80 file:///usr/lib/go/src/math/rand/rand.go:0xc00044fb80 file:///usr/lib/go/src/math/rand/rng.go:0xc00044fcc0 file:///usr/lib/go/src/math/rand/zipf.go:0xc00044fdc0 file:///usr/lib/go/src/math/remainder.go:0xc000d27180 file:///usr/lib/go/src/math/signbit.go:0xc000d27280 file:///usr/lib/go/src/math/sin.go:0xc000d27380 file:///usr/lib/go/src/math/sincos.go:0xc000d27480 file:///usr/lib/go/src/math/sinh.go:0xc000d27580 file:///usr/lib/go/src/math/sqrt.go:0xc000d27680 file:///usr/lib/go/src/math/tan.go:0xc000d27780 file:///usr/lib/go/src/math/tanh.go:0xc000d27880 file:///usr/lib/go/src/math/trig_reduce.go:0xc000d27980 file:///usr/lib/go/src/math/unsafe.go:0xc000d27a80 file:///usr/lib/go/src/mime/encodedword.go:0xc000b37d40 file:///usr/lib/go/src/mime/grammar.go:0xc000b37e40 file:///usr/lib/go/src/mime/mediatype.go:0xc000b37fc0 file:///usr/lib/go/src/mime/multipart/formdata.go:0xc000b94400 file:///usr/lib/go/src/mime/multipart/multipart.go:0xc000b94540 file:///usr/lib/go/src/mime/multipart/writer.go:0xc000b94740 file:///usr/lib/go/src/mime/quotedprintable/reader.go:0xc000b94840 file:///usr/lib/go/src/mime/quotedprintable/writer.go:0xc000b94a00 file:///usr/lib/go/src/mime/type.go:0xc000b940c0 file:///usr/lib/go/src/mime/type_unix.go:0xc000b941c0 file:///usr/lib/go/src/net/addrselect.go:0xc000272ec0 file:///usr/lib/go/src/net/conf.go:0xc000272fc0 file:///usr/lib/go/src/net/dial.go:0xc000273140 file:///usr/lib/go/src/net/dnsclient.go:0xc000273340 file:///usr/lib/go/src/net/dnsclient_unix.go:0xc000273500 file:///usr/lib/go/src/net/dnsconfig_unix.go:0xc000273600 file:///usr/lib/go/src/net/error_posix.go:0xc000273840 file:///usr/lib/go/src/net/error_unix.go:0xc000273940 file:///usr/lib/go/src/net/fd_unix.go:0xc000273c80 file:///usr/lib/go/src/net/file.go:0xc000200980 file:///usr/lib/go/src/net/file_unix.go:0xc000200b80 file:///usr/lib/go/src/net/hook.go:0xc000200d00 file:///usr/lib/go/src/net/hook_unix.go:0xc000200f40 file:///usr/lib/go/src/net/hosts.go:0xc000201080 file:///usr/lib/go/src/net/http/client.go:0xc000350780 file:///usr/lib/go/src/net/http/clone.go:0xc000350880 file:///usr/lib/go/src/net/http/cookie.go:0xc000350980 file:///usr/lib/go/src/net/http/doc.go:0xc000350a80 file:///usr/lib/go/src/net/http/filetransport.go:0xc000350bc0 file:///usr/lib/go/src/net/http/fs.go:0xc000350cc0 file:///usr/lib/go/src/net/http/h2_bundle.go:0xc000350dc0 file:///usr/lib/go/src/net/http/header.go:0xc000350ec0 file:///usr/lib/go/src/net/http/http.go:0xc000350fc0 file:///usr/lib/go/src/net/http/httptrace/trace.go:0xc0009022c0 file:///usr/lib/go/src/net/http/httputil/dump.go:0xc0004ff480 file:///usr/lib/go/src/net/http/httputil/httputil.go:0xc0004ff580 file:///usr/lib/go/src/net/http/httputil/persist.go:0xc0004ff680 file:///usr/lib/go/src/net/http/httputil/reverseproxy.go:0xc0004ff780 file:///usr/lib/go/src/net/http/internal/chunked.go:0xc000902400 file:///usr/lib/go/src/net/http/internal/testcert.go:0xc000902500 file:///usr/lib/go/src/net/http/jar.go:0xc0003510c0 file:///usr/lib/go/src/net/http/method.go:0xc0003511c0 file:///usr/lib/go/src/net/http/pprof/pprof.go:0xc0007e56c0 file:///usr/lib/go/src/net/http/request.go:0xc0003512c0 file:///usr/lib/go/src/net/http/response.go:0xc0003513c0 file:///usr/lib/go/src/net/http/roundtrip.go:0xc0003514c0 file:///usr/lib/go/src/net/http/server.go:0xc0003515c0 file:///usr/lib/go/src/net/http/sniff.go:0xc0003516c0 file:///usr/lib/go/src/net/http/socks_bundle.go:0xc0003517c0 file:///usr/lib/go/src/net/http/status.go:0xc0003518c0 file:///usr/lib/go/src/net/http/transfer.go:0xc0003519c0 file:///usr/lib/go/src/net/http/transport.go:0xc000351ac0 file:///usr/lib/go/src/net/interface.go:0xc000201280 file:///usr/lib/go/src/net/interface_linux.go:0xc000201440 file:///usr/lib/go/src/net/ip.go:0xc0002015c0 file:///usr/lib/go/src/net/iprawsock.go:0xc000201700 file:///usr/lib/go/src/net/iprawsock_posix.go:0xc000201cc0 file:///usr/lib/go/src/net/ipsock.go:0xc000201dc0 file:///usr/lib/go/src/net/ipsock_posix.go:0xc000201ec0 file:///usr/lib/go/src/net/lookup.go:0xc0001a6500 file:///usr/lib/go/src/net/lookup_unix.go:0xc0001a6e80 file:///usr/lib/go/src/net/mac.go:0xc0001a71c0 file:///usr/lib/go/src/net/net.go:0xc000172200 file:///usr/lib/go/src/net/nss.go:0xc000172540 file:///usr/lib/go/src/net/parse.go:0xc000172640 file:///usr/lib/go/src/net/pipe.go:0xc0001727c0 file:///usr/lib/go/src/net/port.go:0xc000172980 file:///usr/lib/go/src/net/port_unix.go:0xc000172b00 file:///usr/lib/go/src/net/rawconn.go:0xc000172d00 file:///usr/lib/go/src/net/sendfile_linux.go:0xc000172e40 file:///usr/lib/go/src/net/sock_cloexec.go:0xc000173100 file:///usr/lib/go/src/net/sock_linux.go:0xc0001732c0 file:///usr/lib/go/src/net/sock_posix.go:0xc000173480 file:///usr/lib/go/src/net/sockaddr_posix.go:0xc000173580 file:///usr/lib/go/src/net/sockopt_linux.go:0xc000173900 file:///usr/lib/go/src/net/sockopt_posix.go:0xc000173a80 file:///usr/lib/go/src/net/sockoptip_linux.go:0xc000173c00 file:///usr/lib/go/src/net/sockoptip_posix.go:0xc000173dc0 file:///usr/lib/go/src/net/splice_linux.go:0xc000173f80 file:///usr/lib/go/src/net/tcpsock.go:0xc000164180 file:///usr/lib/go/src/net/tcpsock_posix.go:0xc000164700 file:///usr/lib/go/src/net/tcpsockopt_posix.go:0xc000164940 file:///usr/lib/go/src/net/tcpsockopt_unix.go:0xc000164b00 file:///usr/lib/go/src/net/textproto/header.go:0xc000b94d80 file:///usr/lib/go/src/net/textproto/pipeline.go:0xc000b94f80 file:///usr/lib/go/src/net/textproto/reader.go:0xc000b95200 file:///usr/lib/go/src/net/textproto/textproto.go:0xc000902040 file:///usr/lib/go/src/net/textproto/writer.go:0xc000902140 file:///usr/lib/go/src/net/udpsock.go:0xc000164d40 file:///usr/lib/go/src/net/udpsock_posix.go:0xc000164e80 file:///usr/lib/go/src/net/unixsock.go:0xc000165180 file:///usr/lib/go/src/net/unixsock_posix.go:0xc0001653c0 file:///usr/lib/go/src/net/url/url.go:0xc000b1cc00 file:///usr/lib/go/src/net/writev_unix.go:0xc000165580 file:///usr/lib/go/src/os/dir.go:0xc0009a4280 file:///usr/lib/go/src/os/dir_unix.go:0xc0009a4380 file:///usr/lib/go/src/os/env.go:0xc0009a4480 file:///usr/lib/go/src/os/env_default.go:0xc0009a4580 file:///usr/lib/go/src/os/error.go:0xc0009a4680 file:///usr/lib/go/src/os/error_errno.go:0xc0009a47c0 file:///usr/lib/go/src/os/error_posix.go:0xc0009a48c0 file:///usr/lib/go/src/os/exec.go:0xc0009a49c0 file:///usr/lib/go/src/os/exec/exec.go:0xc00040a800 file:///usr/lib/go/src/os/exec/exec_unix.go:0xc00040aa00 file:///usr/lib/go/src/os/exec/lp_unix.go:0xc00040ab80 file:///usr/lib/go/src/os/exec_posix.go:0xc0009a4ac0 file:///usr/lib/go/src/os/exec_unix.go:0xc0009a4bc0 file:///usr/lib/go/src/os/executable.go:0xc0009a4cc0 file:///usr/lib/go/src/os/executable_procfs.go:0xc0009a4dc0 file:///usr/lib/go/src/os/file.go:0xc0009a4ec0 file:///usr/lib/go/src/os/file_posix.go:0xc0009a4fc0 file:///usr/lib/go/src/os/file_unix.go:0xc0009a51c0 file:///usr/lib/go/src/os/getwd.go:0xc0009a5380 file:///usr/lib/go/src/os/path.go:0xc0009a55c0 file:///usr/lib/go/src/os/path_unix.go:0xc0009a5840 file:///usr/lib/go/src/os/pipe_linux.go:0xc0009a59c0 file:///usr/lib/go/src/os/proc.go:0xc0009a5ac0 file:///usr/lib/go/src/os/rawconn.go:0xc0009a5d00 file:///usr/lib/go/src/os/removeall_at.go:0xc0009a5f00 file:///usr/lib/go/src/os/signal/doc.go:0xc00040b080 file:///usr/lib/go/src/os/signal/signal.go:0xc00040b180 file:///usr/lib/go/src/os/signal/signal_unix.go:0xc00040b380 file:///usr/lib/go/src/os/stat.go:0xc0008740c0 file:///usr/lib/go/src/os/stat_linux.go:0xc0008741c0 file:///usr/lib/go/src/os/stat_unix.go:0xc0008742c0 file:///usr/lib/go/src/os/sticky_notbsd.go:0xc000874480 file:///usr/lib/go/src/os/str.go:0xc000874580 file:///usr/lib/go/src/os/sys.go:0xc0008746c0 file:///usr/lib/go/src/os/sys_linux.go:0xc0008747c0 file:///usr/lib/go/src/os/sys_unix.go:0xc0008749c0 file:///usr/lib/go/src/os/types.go:0xc000874b00 file:///usr/lib/go/src/os/types_unix.go:0xc000874c00 file:///usr/lib/go/src/os/user/lookup.go:0xc0002c2000 file:///usr/lib/go/src/os/user/user.go:0xc0002c2100 file:///usr/lib/go/src/os/wait_waitid.go:0xc000874d00 file:///usr/lib/go/src/path/filepath/match.go:0xc000350080 file:///usr/lib/go/src/path/filepath/path.go:0xc000350180 file:///usr/lib/go/src/path/filepath/path_unix.go:0xc000350280 file:///usr/lib/go/src/path/filepath/symlink.go:0xc000350380 file:///usr/lib/go/src/path/filepath/symlink_unix.go:0xc000350480 file:///usr/lib/go/src/path/match.go:0xc000902640 file:///usr/lib/go/src/path/path.go:0xc000902740 file:///usr/lib/go/src/reflect/deepequal.go:0xc000d27f00 file:///usr/lib/go/src/reflect/makefunc.go:0xc00050c040 file:///usr/lib/go/src/reflect/swapper.go:0xc00050c180 file:///usr/lib/go/src/reflect/type.go:0xc00050c380 file:///usr/lib/go/src/reflect/value.go:0xc00050c500 file:///usr/lib/go/src/regexp/backtrack.go:0xc000ce3800 file:///usr/lib/go/src/regexp/exec.go:0xc000ca8000 file:///usr/lib/go/src/regexp/onepass.go:0xc000ca8100 file:///usr/lib/go/src/regexp/regexp.go:0xc000ca8200 file:///usr/lib/go/src/regexp/syntax/compile.go:0xc000ca8300 file:///usr/lib/go/src/regexp/syntax/doc.go:0xc000ca8400 file:///usr/lib/go/src/regexp/syntax/op_string.go:0xc000ca8500 file:///usr/lib/go/src/regexp/syntax/parse.go:0xc000ca8600 file:///usr/lib/go/src/regexp/syntax/perl_groups.go:0xc000ca8700 file:///usr/lib/go/src/regexp/syntax/prog.go:0xc000ca8800 file:///usr/lib/go/src/regexp/syntax/regexp.go:0xc000ca8900 file:///usr/lib/go/src/regexp/syntax/simplify.go:0xc000ca8a00 file:///usr/lib/go/src/runtime/alg.go:0xc000b95e00 file:///usr/lib/go/src/runtime/atomic_pointer.go:0xc000b95f00 file:///usr/lib/go/src/runtime/cgo.go:0xc000bfa000 file:///usr/lib/go/src/runtime/cgo/callbacks.go:0xc0000828c0 file:///usr/lib/go/src/runtime/cgo/callbacks_traceback.go:0xc000082a00 file:///usr/lib/go/src/runtime/cgo/iscgo.go:0xc000082b80 file:///usr/lib/go/src/runtime/cgo/mmap.go:0xc000082dc0 file:///usr/lib/go/src/runtime/cgo/setenv.go:0xc000083140 file:///usr/lib/go/src/runtime/cgo/sigaction.go:0xc000b1c080 file:///usr/lib/go/src/runtime/cgo_mmap.go:0xc000bfa100 file:///usr/lib/go/src/runtime/cgo_sigaction.go:0xc000bfa200 file:///usr/lib/go/src/runtime/cgocall.go:0xc000bfa300 file:///usr/lib/go/src/runtime/cgocallback.go:0xc000bfa400 file:///usr/lib/go/src/runtime/cgocheck.go:0xc000bfa500 file:///usr/lib/go/src/runtime/chan.go:0xc000bfa600 file:///usr/lib/go/src/runtime/compiler.go:0xc000bfa700 file:///usr/lib/go/src/runtime/complex.go:0xc000bfa800 file:///usr/lib/go/src/runtime/cpuflags.go:0xc000bfa900 file:///usr/lib/go/src/runtime/cpuflags_amd64.go:0xc000bfaa00 file:///usr/lib/go/src/runtime/cpuprof.go:0xc000bfab00 file:///usr/lib/go/src/runtime/cputicks.go:0xc000bfac00 file:///usr/lib/go/src/runtime/debug.go:0xc000bfad00 file:///usr/lib/go/src/runtime/debug/garbage.go:0xc0007e5840 file:///usr/lib/go/src/runtime/debug/mod.go:0xc0007e5940 file:///usr/lib/go/src/runtime/debug/stack.go:0xc0007e5a40 file:///usr/lib/go/src/runtime/debug/stubs.go:0xc0007e5b40 file:///usr/lib/go/src/runtime/debugcall.go:0xc000bfae00 file:///usr/lib/go/src/runtime/debuglog.go:0xc000bfaf00 file:///usr/lib/go/src/runtime/debuglog_off.go:0xc000bfb000 file:///usr/lib/go/src/runtime/defs_linux_amd64.go:0xc000bfb100 file:///usr/lib/go/src/runtime/env_posix.go:0xc000bfb200 file:///usr/lib/go/src/runtime/error.go:0xc000bfb300 file:///usr/lib/go/src/runtime/extern.go:0xc000bfb400 file:///usr/lib/go/src/runtime/fastlog2.go:0xc000bfb500 file:///usr/lib/go/src/runtime/fastlog2table.go:0xc000bfb600 file:///usr/lib/go/src/runtime/float.go:0xc000bfb700 file:///usr/lib/go/src/runtime/hash64.go:0xc000bfb800 file:///usr/lib/go/src/runtime/heapdump.go:0xc000bfb900 file:///usr/lib/go/src/runtime/iface.go:0xc000bfba00 file:///usr/lib/go/src/runtime/internal/atomic/atomic_amd64x.go:0xc000c4b8c0 file:///usr/lib/go/src/runtime/internal/atomic/stubs.go:0xc000c4b9c0 file:///usr/lib/go/src/runtime/internal/math/math.go:0xc000c4bb00 file:///usr/lib/go/src/runtime/internal/sys/arch.go:0xc000c4bc00 file:///usr/lib/go/src/runtime/internal/sys/arch_amd64.go:0xc000c4bd00 file:///usr/lib/go/src/runtime/internal/sys/intrinsics.go:0xc000c4be00 file:///usr/lib/go/src/runtime/internal/sys/stubs.go:0xc000c4bf00 file:///usr/lib/go/src/runtime/internal/sys/sys.go:0xc000c68040 file:///usr/lib/go/src/runtime/internal/sys/zgoarch_amd64.go:0xc000c68140 file:///usr/lib/go/src/runtime/internal/sys/zgoos_linux.go:0xc000c68240 file:///usr/lib/go/src/runtime/internal/sys/zversion.go:0xc000c68340 file:///usr/lib/go/src/runtime/lfstack.go:0xc000bfbb00 file:///usr/lib/go/src/runtime/lfstack_64bit.go:0xc000bfbc00 file:///usr/lib/go/src/runtime/lock_futex.go:0xc000bfbd00 file:///usr/lib/go/src/runtime/malloc.go:0xc000bfbe00 file:///usr/lib/go/src/runtime/map.go:0xc000bfbf00 file:///usr/lib/go/src/runtime/map_fast32.go:0xc000c10000 file:///usr/lib/go/src/runtime/map_fast64.go:0xc000c10100 file:///usr/lib/go/src/runtime/map_faststr.go:0xc000c10200 file:///usr/lib/go/src/runtime/mbarrier.go:0xc000c10300 file:///usr/lib/go/src/runtime/mbitmap.go:0xc000c10400 file:///usr/lib/go/src/runtime/mcache.go:0xc000c10500 file:///usr/lib/go/src/runtime/mcentral.go:0xc000c10600 file:///usr/lib/go/src/runtime/mem_linux.go:0xc000c10700 file:///usr/lib/go/src/runtime/mfinal.go:0xc000c10800 file:///usr/lib/go/src/runtime/mfixalloc.go:0xc000c10900 file:///usr/lib/go/src/runtime/mgc.go:0xc000c10a00 file:///usr/lib/go/src/runtime/mgclarge.go:0xc000c10b00 file:///usr/lib/go/src/runtime/mgcmark.go:0xc000c10c00 file:///usr/lib/go/src/runtime/mgcscavenge.go:0xc000c10d00 file:///usr/lib/go/src/runtime/mgcstack.go:0xc000c10e00 file:///usr/lib/go/src/runtime/mgcsweep.go:0xc000c10f00 file:///usr/lib/go/src/runtime/mgcsweepbuf.go:0xc000c11000 file:///usr/lib/go/src/runtime/mgcwork.go:0xc000c11100 file:///usr/lib/go/src/runtime/mheap.go:0xc000c11200 file:///usr/lib/go/src/runtime/mprof.go:0xc000c11300 file:///usr/lib/go/src/runtime/msan0.go:0xc000c11400 file:///usr/lib/go/src/runtime/msize.go:0xc000c11500 file:///usr/lib/go/src/runtime/mstats.go:0xc000c11600 file:///usr/lib/go/src/runtime/mwbbuf.go:0xc000c11700 file:///usr/lib/go/src/runtime/netpoll.go:0xc000c11800 file:///usr/lib/go/src/runtime/netpoll_epoll.go:0xc000c11900 file:///usr/lib/go/src/runtime/os_linux.go:0xc000c11a00 file:///usr/lib/go/src/runtime/os_linux_generic.go:0xc000c11b00 file:///usr/lib/go/src/runtime/os_linux_noauxv.go:0xc000c11c00 file:///usr/lib/go/src/runtime/os_nonopenbsd.go:0xc000c11d00 file:///usr/lib/go/src/runtime/panic.go:0xc000c11e00 file:///usr/lib/go/src/runtime/plugin.go:0xc000c11f00 file:///usr/lib/go/src/runtime/pprof/elf.go:0xc0001539c0 file:///usr/lib/go/src/runtime/pprof/label.go:0xc000153ac0 file:///usr/lib/go/src/runtime/pprof/map.go:0xc000153bc0 file:///usr/lib/go/src/runtime/pprof/pprof.go:0xc000153cc0 file:///usr/lib/go/src/runtime/pprof/proto.go:0xc000153dc0 file:///usr/lib/go/src/runtime/pprof/protobuf.go:0xc000153ec0 file:///usr/lib/go/src/runtime/pprof/protomem.go:0xc000153fc0 file:///usr/lib/go/src/runtime/pprof/runtime.go:0xc0001f80c0 file:///usr/lib/go/src/runtime/print.go:0xc000c26000 file:///usr/lib/go/src/runtime/proc.go:0xc000c26100 file:///usr/lib/go/src/runtime/profbuf.go:0xc000c26200 file:///usr/lib/go/src/runtime/proflabel.go:0xc000c26300 file:///usr/lib/go/src/runtime/race0.go:0xc000c26400 file:///usr/lib/go/src/runtime/rdebug.go:0xc000c26500 file:///usr/lib/go/src/runtime/relax_stub.go:0xc000c26600 file:///usr/lib/go/src/runtime/runtime.go:0xc000c26700 file:///usr/lib/go/src/runtime/runtime1.go:0xc000c26800 file:///usr/lib/go/src/runtime/runtime2.go:0xc000c26900 file:///usr/lib/go/src/runtime/rwmutex.go:0xc000c26a00 file:///usr/lib/go/src/runtime/select.go:0xc000c26b00 file:///usr/lib/go/src/runtime/sema.go:0xc000c26c00 file:///usr/lib/go/src/runtime/signal_amd64x.go:0xc000c26d00 file:///usr/lib/go/src/runtime/signal_linux_amd64.go:0xc000c26e00 file:///usr/lib/go/src/runtime/signal_sighandler.go:0xc000c26f00 file:///usr/lib/go/src/runtime/signal_unix.go:0xc000c27000 file:///usr/lib/go/src/runtime/sigqueue.go:0xc000c27100 file:///usr/lib/go/src/runtime/sigqueue_note.go:0xc000c27200 file:///usr/lib/go/src/runtime/sigtab_linux_generic.go:0xc000c27300 file:///usr/lib/go/src/runtime/sizeclasses.go:0xc000c27400 file:///usr/lib/go/src/runtime/slice.go:0xc000c27500 file:///usr/lib/go/src/runtime/softfloat64.go:0xc000c27600 file:///usr/lib/go/src/runtime/stack.go:0xc000c27700 file:///usr/lib/go/src/runtime/string.go:0xc000c27800 file:///usr/lib/go/src/runtime/stubs.go:0xc000c27900 file:///usr/lib/go/src/runtime/stubs2.go:0xc000c27a00 file:///usr/lib/go/src/runtime/stubs3.go:0xc000c27b00 file:///usr/lib/go/src/runtime/stubs_amd64x.go:0xc000c27c00 file:///usr/lib/go/src/runtime/stubs_linux.go:0xc000c27d00 file:///usr/lib/go/src/runtime/symtab.go:0xc000c27e00 file:///usr/lib/go/src/runtime/sys_nonppc64x.go:0xc000c27f00 file:///usr/lib/go/src/runtime/sys_x86.go:0xc000c4a000 file:///usr/lib/go/src/runtime/time.go:0xc000c4a100 file:///usr/lib/go/src/runtime/timestub.go:0xc000c4a200 file:///usr/lib/go/src/runtime/timestub2.go:0xc000c4a300 file:///usr/lib/go/src/runtime/trace.go:0xc000c4a400 file:///usr/lib/go/src/runtime/trace/annotation.go:0xc000b36ec0 file:///usr/lib/go/src/runtime/trace/trace.go:0xc000b1c9c0 file:///usr/lib/go/src/runtime/traceback.go:0xc000c4a500 file:///usr/lib/go/src/runtime/type.go:0xc000c4a600 file:///usr/lib/go/src/runtime/typekind.go:0xc000c4a700 file:///usr/lib/go/src/runtime/utf8.go:0xc000c4a800 file:///usr/lib/go/src/runtime/vdso_elf64.go:0xc000c4a900 file:///usr/lib/go/src/runtime/vdso_linux.go:0xc000c4aa00 file:///usr/lib/go/src/runtime/vdso_linux_amd64.go:0xc000c4ab00 file:///usr/lib/go/src/runtime/write_err.go:0xc000c4ac00 file:///usr/lib/go/src/sort/search.go:0xc00050dc40 file:///usr/lib/go/src/sort/slice.go:0xc00050ddc0 file:///usr/lib/go/src/sort/slice_go113.go:0xc00050df00 file:///usr/lib/go/src/sort/sort.go:0xc0009a4000 file:///usr/lib/go/src/sort/zfuncversion.go:0xc0009a4100 file:///usr/lib/go/src/strconv/atob.go:0xc00050c6c0 file:///usr/lib/go/src/strconv/atof.go:0xc00050c900 file:///usr/lib/go/src/strconv/atoi.go:0xc00050cac0 file:///usr/lib/go/src/strconv/decimal.go:0xc00050cc00 file:///usr/lib/go/src/strconv/doc.go:0xc00050cd40 file:///usr/lib/go/src/strconv/extfloat.go:0xc00050ce40 file:///usr/lib/go/src/strconv/ftoa.go:0xc00050cf40 file:///usr/lib/go/src/strconv/isprint.go:0xc00050d040 file:///usr/lib/go/src/strconv/itoa.go:0xc00050d140 file:///usr/lib/go/src/strconv/quote.go:0xc00050d240 file:///usr/lib/go/src/strings/builder.go:0xc00048cf00 file:///usr/lib/go/src/strings/compare.go:0xc00048d080 file:///usr/lib/go/src/strings/reader.go:0xc00048d240 file:///usr/lib/go/src/strings/replace.go:0xc00048d340 file:///usr/lib/go/src/strings/search.go:0xc00048d580 file:///usr/lib/go/src/strings/strings.go:0xc00048d7c0 file:///usr/lib/go/src/sync/atomic/doc.go:0xc000c69100 file:///usr/lib/go/src/sync/atomic/value.go:0xc000c69200 file:///usr/lib/go/src/sync/cond.go:0xc000c68580 file:///usr/lib/go/src/sync/map.go:0xc000c68680 file:///usr/lib/go/src/sync/mutex.go:0xc000c68780 file:///usr/lib/go/src/sync/once.go:0xc000c68880 file:///usr/lib/go/src/sync/pool.go:0xc000c68980 file:///usr/lib/go/src/sync/poolqueue.go:0xc000c68a80 file:///usr/lib/go/src/sync/runtime.go:0xc000c68b80 file:///usr/lib/go/src/sync/rwmutex.go:0xc000c68c80 file:///usr/lib/go/src/sync/waitgroup.go:0xc000c68d80 file:///usr/lib/go/src/syscall/dirent.go:0xc000c69b80 file:///usr/lib/go/src/syscall/endian_little.go:0xc000c69c80 file:///usr/lib/go/src/syscall/env_unix.go:0xc000c69d80 file:///usr/lib/go/src/syscall/exec_linux.go:0xc000c69e80 file:///usr/lib/go/src/syscall/exec_unix.go:0xc000c69f80 file:///usr/lib/go/src/syscall/flock.go:0xc000cba080 file:///usr/lib/go/src/syscall/lsf_linux.go:0xc000cba180 file:///usr/lib/go/src/syscall/msan0.go:0xc000cba280 file:///usr/lib/go/src/syscall/net.go:0xc000cba380 file:///usr/lib/go/src/syscall/netlink_linux.go:0xc000cba480 file:///usr/lib/go/src/syscall/setuidgid_linux.go:0xc000cba580 file:///usr/lib/go/src/syscall/sockcmsg_linux.go:0xc000cba680 file:///usr/lib/go/src/syscall/sockcmsg_unix.go:0xc000cba780 file:///usr/lib/go/src/syscall/str.go:0xc000cba880 file:///usr/lib/go/src/syscall/syscall.go:0xc000cba980 file:///usr/lib/go/src/syscall/syscall_linux.go:0xc000cbaa80 file:///usr/lib/go/src/syscall/syscall_linux_amd64.go:0xc000cbab80 file:///usr/lib/go/src/syscall/syscall_unix.go:0xc000cbac80 file:///usr/lib/go/src/syscall/timestruct.go:0xc000cbad80 file:///usr/lib/go/src/syscall/zerrors_linux_amd64.go:0xc000cbae80 file:///usr/lib/go/src/syscall/zsyscall_linux_amd64.go:0xc000cbaf80 file:///usr/lib/go/src/syscall/zsysnum_linux_amd64.go:0xc000cbb080 file:///usr/lib/go/src/syscall/ztypes_linux_amd64.go:0xc000cbb180 file:///usr/lib/go/src/testing/allocs.go:0xc000296b00 file:///usr/lib/go/src/testing/benchmark.go:0xc000296c00 file:///usr/lib/go/src/testing/cover.go:0xc000296d00 file:///usr/lib/go/src/testing/example.go:0xc000296e00 file:///usr/lib/go/src/testing/internal/testdeps/deps.go:0xc000374bc0 file:///usr/lib/go/src/testing/match.go:0xc000296f00 file:///usr/lib/go/src/testing/run_example.go:0xc000297040 file:///usr/lib/go/src/testing/testing.go:0xc000297140 file:///usr/lib/go/src/text/scanner/scanner.go:0xc00046af80 file:///usr/lib/go/src/text/tabwriter/tabwriter.go:0xc0001f8200 file:///usr/lib/go/src/text/template/doc.go:0xc0009a5680 file:///usr/lib/go/src/text/template/exec.go:0xc0009a5880 file:///usr/lib/go/src/text/template/funcs.go:0xc0009a5c00 file:///usr/lib/go/src/text/template/helper.go:0xc0003b0080 file:///usr/lib/go/src/text/template/option.go:0xc0003b0180 file:///usr/lib/go/src/text/template/parse/lex.go:0xc0003b0440 file:///usr/lib/go/src/text/template/parse/node.go:0xc0003b0540 file:///usr/lib/go/src/text/template/parse/parse.go:0xc0003b06c0 file:///usr/lib/go/src/text/template/template.go:0xc0003b0280 file:///usr/lib/go/src/time/format.go:0xc000c69380 file:///usr/lib/go/src/time/sleep.go:0xc000c69480 file:///usr/lib/go/src/time/sys_unix.go:0xc000c69580 file:///usr/lib/go/src/time/tick.go:0xc000c69680 file:///usr/lib/go/src/time/time.go:0xc000c69780 file:///usr/lib/go/src/time/zoneinfo.go:0xc000c69880 file:///usr/lib/go/src/time/zoneinfo_read.go:0xc000c69980 file:///usr/lib/go/src/time/zoneinfo_unix.go:0xc000c69a80 file:///usr/lib/go/src/unicode/casetables.go:0xc000ce2d40 file:///usr/lib/go/src/unicode/digit.go:0xc000ce2e40 file:///usr/lib/go/src/unicode/graphic.go:0xc000ce3240 file:///usr/lib/go/src/unicode/letter.go:0xc000ce3340 file:///usr/lib/go/src/unicode/tables.go:0xc000ce3440 file:///usr/lib/go/src/unicode/utf16/utf16.go:0xc00048d940 file:///usr/lib/go/src/unicode/utf8/utf8.go:0xc000ce3580 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go:0xc000b1dc80 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go:0xc000b36080 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go:0xc000b36240 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go:0xc000b36580 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/asn1.go:0xc000b1ce80 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go:0xc000b1d740 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/builder.go:0xc000b1d240 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/string.go:0xc000b1d5c0 file:///usr/lib/go/src/vendor/golang.org/x/crypto/curve25519/doc.go:0xc000b37900 file:///usr/lib/go/src/vendor/golang.org/x/crypto/curve25519/mont25519_amd64.go:0xc000b37a00 file:///usr/lib/go/src/vendor/golang.org/x/crypto/hkdf/hkdf.go:0xc000b37b40 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go:0xc000b36800 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/chacha20/chacha_noasm.go:0xc000b36940 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/chacha20/xor.go:0xc000b36c00 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go:0xc000b36f00 file:///usr/lib/go/src/vendor/golang.org/x/crypto/poly1305/poly1305.go:0xc000b370c0 file:///usr/lib/go/src/vendor/golang.org/x/crypto/poly1305/sum_amd64.go:0xc000b371c0 file:///usr/lib/go/src/vendor/golang.org/x/crypto/poly1305/sum_generic.go:0xc000b372c0 file:///usr/lib/go/src/vendor/golang.org/x/net/dns/dnsmessage/message.go:0xc000b1c8c0 file:///usr/lib/go/src/vendor/golang.org/x/net/http/httpguts/guts.go:0xc000902a00 file:///usr/lib/go/src/vendor/golang.org/x/net/http/httpguts/httplex.go:0xc000902b00 file:///usr/lib/go/src/vendor/golang.org/x/net/http/httpproxy/proxy.go:0xc00053a880 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/encode.go:0xc00053aa00 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/hpack.go:0xc00053ab00 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/huffman.go:0xc00053ac00 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/tables.go:0xc00053ad00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/idna10.0.0.go:0xc000902c00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/punycode.go:0xc000902d00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/tables11.0.0.go:0xc000902e00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/trie.go:0xc000902f00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/trieval.go:0xc000903000 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/byteorder.go:0xc000b37440 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/cpu.go:0xc000b37540 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go:0xc000b37640 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/cpu_x86.go:0xc000b37780 file:///usr/lib/go/src/vendor/golang.org/x/text/secure/bidirule/bidirule.go:0xc000903100 file:///usr/lib/go/src/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go:0xc000903200 file:///usr/lib/go/src/vendor/golang.org/x/text/transform/transform.go:0xc000903380 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/bidi.go:0xc000903500 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/bracket.go:0xc000903600 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/core.go:0xc000903700 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/prop.go:0xc000903840 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go:0xc000903940 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/trieval.go:0xc000903a40 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/composition.go:0xc000903bc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/forminfo.go:0xc000903cc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/input.go:0xc000903dc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/iter.go:0xc000903ec0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/normalize.go:0xc000903fc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/readwriter.go:0xc00053a180 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go:0xc00053a300 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/transform.go:0xc00053a480 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/trie.go:0xc00053a600] map[060a1917760e21f5242a0d055e230c6c3ea1aaa29909bbf1f962eba51505a493-d:[0xc000505940] 0811deb19de70704eba1b279cdb5f3522a0beaa5999045c1da8bdc3eaa43e1d1-d:[0xc000165e40] 0f535df00baf85a78d752286dc05a6045d11a518193316b476bd18cd0c19774f-d:[0xc000082000] 15f8dbf930cd33f7c8ed5a4bf4519d4379f2473e166bb9713bec1097f809a316-d:[0xc000658240] 1d2d016717473279731bacbf6cc41be99d10bc1e4d0068b92538b66dd002a6c6-d:[0xc000592300] 234880deda302e7a06442cd78b4a68ad7d31ee07b36157701430564e0fcaedb5-d:[0xc0002c2400] 2927d5ef7c163fbc2152a3a551527d1fc83feb2b41196b81292d7c7960bf02c0-d:[0xc0002c2300] 2a24b2da96f8c34b71811cbd8872b7cafd9ac21da00dbdccc2d75b5db90ade35-d:[0xc000505c40] 2b5c18117df0e3efc79d5d515546182622744de4735c10747ffea843f80f7ae2-d:[0xc000165c80] 2efd9496a7674857f1a8b23fd391bfb90838c10cdb70b744641f1b7ba5c10c7c-d:[0xc000504300] 32df16d3e210a510043f013176b3cacc4d1827b30e1c4020bb976108e5f7981b-d:[0xc000504000] 3fefbe12098cf98dfeb9a520c67a52cf351c96f807779059bb0547387396c20f-d:[0xc000593e00] 449e1a355fe51b9dfb7ef5c3f6feaa64c0226d927c3b2eb0ee9995a3fd7881ce-d:[0xc000374940] 4649e8947eb0d533542d956be7161f6f877ad72d7459d195feb34465bb2f510b-d:[0xc0005054c0] 479319ad1cc8f73778af99b9f17fc38d7303d652de7daf0a56b5bdf0c33f7e3b-d:[0xc000431c00] 4bc3b0a46c3ce3efd6e97c3f3018eddc25a82de370338db6d93fdfe0fab51785-d:[0xc000b1c680] 5ceeb704b7af3e61fa406f98ff2f6130a6e7afda5ab3f7d1dea6074794d1af47-d:[0xc0002c2200] 626d98d156da6b7537e76de846df9f00bab8e27106bf3cfb4cfe65e7a7ae7b24-d:[0xc000165ac0] 684f8fac0ae002d50a30fc6444e25b3fc30e6aec98bea779526680fb75f52e89-d:[0xc000b1c300] 68d348dd661af4c617f78d1806c73c86ae4bcb6e11d98705c5d016e808bd55f2-d:[0xc0002c2600] 729ecc894a1bf98486976c6e3b82f7ca6206ca3494be1b1b012a4175df9092d0-d:[0xc0004a2000] 844cd46d79b2edb56cad61822f5d5c8544d92aa299dc97d5a0db5807ae65615b-d:[0xc000593300] 92db4499692a421e5d3f96ddade72d83ea7748a044740d6ab66116059d70cf9d-d:[0xc0002c2500] 9942599c62884849cc08d6b67915ef27e1b0595282adf33009b62c840ae24f3c-d:[0xc0004a3480] 996a7ea007c669f5589857dbfcb7d2b9b20672b5f1bc179574e0835dd12b8597-d:[0xc000504600] 9986c41f947951d7d0d4a6633cf55b9df93c87e2c073ebd1309c772a480de689-d:[0xc000b1c4c0] 9e8846ac4cf1765248455e0ca27336d65a4cf5f7bc96a3db2b6a26998327f782-d:[0xc0004a2300] a80d214598d924d91af3a36ffcde1b47e2be0601d6086d903fcdb63031bd5212-d:[0xc000374ec0] about.qtpl.go:[0xc0005c9980] abs.go:[0xc000ca9d40 0xc0001f6800] access_level.go:[0xc00075a080] access_level_test.go:[0xc000430640] accesslevel_string.go:[0xc0005f82c0] accuracy_string.go:[0xc000267680] acosh.go:[0xc000ca9e40] acronyms.go:[0xc000638a80] actions.go:[0xc0005f83c0] addrselect.go:[0xc000272ec0] ae1b40cd21fcf3b25ab77bc19939a8f02c31b2d72e869418b9bfd0ea2e828c28-d:[0xc0004a3d00] ae7f518dca0f877b8264213f1d3e6c2173fa941e53c3314bf90bbb98240b2505-d:[0xc000592f80] aes_gcm.go:[0xc000319b00] affinity_linux.go:[0xc000528d00] agent.go:[0xc00075bb40 0xc0000e6f80 0xc0000e7280] aggregation.go:[0xc0001f8440] aggregation_data.go:[0xc0001f8540] alert.go:[0xc00044ff80] alg.go:[0xc000b95e00] algorithm.go:[0xc000426d40] aliases.go:[0xc000528e00] aliasing.go:[0xc000267380 0xc000b36f00] alloc.go:[0xc0008716c0] allocs.go:[0xc000296b00] alt_exit.go:[0xc000528000] annotation.go:[0xc000b36ec0] annotations.go:[0xc000426640] api_request.go:[0xc000902940] apis.go:[0xc0000e4900] append.go:[0xc00027c5c0] application_exception.go:[0xc00075bd40] arch.go:[0xc000c4bc00] arch_amd64.go:[0xc000c4bd00] archive.go:[0xc0004275c0] archive_linux.go:[0xc0004276c0] archive_unix.go:[0xc0004277c0] arg.go:[0xc000b1db80] arith.go:[0xc000267800 0xc0001f6900] arith_1_12.go:[0xc0001f6a00] arith_amd64.go:[0xc000267940] arith_decl.go:[0xc000267b80] array.go:[0xc000cbb480 0xc0003b1340 0xc000506580 0xc00027cec0] ascii.go:[0xc0004fec80] asin.go:[0xc000ca9f40] asinh.go:[0xc000d36040] asn1.go:[0xc000229ec0 0xc000b1ce80 0xc000b1d740] assert.go:[0xc0001b8b00] ast.go:[0xc000888f00 0xc0001b8d40] at.go:[0xc00048c540] at_sysnum_linux.go:[0xc00048c740] at_sysnum_newfstatat_linux.go:[0xc00048c840] atan.go:[0xc000d36140] atan2.go:[0xc000d36240] atanh.go:[0xc000d36340] atob.go:[0xc00050c6c0] atof.go:[0xc00050c900] atoi.go:[0xc00050cac0] atom.go:[0xc000507d00] atomic.go:[0xc00048dc00] atomic_amd64x.go:[0xc000c4b8c0] atomic_pointer.go:[0xc000b95f00] attr.go:[0xc0009be740] attr_string.go:[0xc0009be840] attributes.go:[0xc0004fe840] auth.go:[0xc0002280c0 0xc0002c3a40 0xc000369dc0 0xc0003b9bc0] authenticate.go:[0xc000426440] autoreplies.go:[0xc00040b6c0 0xc0005f84c0] auxlib.go:[0xc0008717c0] b3.go:[0xc0005c9780] backoff.go:[0xc000369740] backtrack.go:[0xc000ce3800] base.qtpl.go:[0xc0005c9a80] base32.go:[0xc0008222c0 0xc000889840] base64.go:[0xc000d26280] base_conn.go:[0xc00053b3c0] baselib.go:[0xc0008718c0] basetypes.go:[0xc000ca8bc0] bd0c611ffef50c2eb9710ace88ed62d6555c9ef3ad15f4da7a8bdb9418c12bc9-d:[0xc0001658c0] bench_test.go:[0xc000430880] benchmark.go:[0xc000296c00] bidi.go:[0xc000903500 0xc00053d900] bidirule.go:[0xc000903100 0xc00053d500] bidirule10.0.0.go:[0xc000903200 0xc00053d600] big.go:[0xc0003b1a00 0xc0007c4280] big_ctx.go:[0xc0003b1b40] bigbytes.go:[0xc0007c4380] binary.go:[0xc000ca9b00] binary_driver.go:[0xc0008b1b40] binary_protocol.go:[0xc00075be40] bind.go:[0xc000368d40] bindata.go:[0xc0001f9600] birc.go:[0xc0004ffe00] bit_reader.go:[0xc00046a940] bits.go:[0xc000d36440 0xc000d27b80] bits_errors.go:[0xc000d27c80] bits_tables.go:[0xc000d27d80] blkio.go:[0xc000401c80] block.go:[0xc000319c00 0xc000229240] blocked_users.go:[0xc00040b880] bluetooth_linux.go:[0xc000528f00] boil_queries.go:[0xc00040b980] boil_table_names.go:[0xc00040ba80] boil_types.go:[0xc00040bbc0] bool.go:[0xc0004d5200] bot.go:[0xc0002a8280 0xc0005f85c0 0xc0002c2d00] bot_test.go:[0xc000430980 0xc0004a2b80] botargs.go:[0xc00075aec0] bracket.go:[0xc000903600 0xc00053da00] breq.go:[0xc0004ffc00] breq_test.go:[0xc000374d80] buf.go:[0xc00027cfc0] buf_pool.go:[0xc0008b0e00] buffer.go:[0xc000ce2700 0xc0003e8400 0xc0002c3b40 0xc0004c1880] bufferpool.go:[0xc0003e81c0] bufio.go:[0xc000351bc0] builder.go:[0xc00048cf00 0xc000b1d240] builtin_commands.go:[0xc0005f86c0] bundler.go:[0xc0000e7a00] byte.go:[0xc0004d5300 0xc0003b1440] bytealg.go:[0xc000c4ad00] bytebuffer.go:[0xc0007c4e40 0xc0007c5640] byteorder.go:[0xc000b37440] bytes.go:[0xc000ce2800 0xc0004d5400 0xc0007c4480] bytespipe.go:[0xc0004c1980] bzip2.go:[0xc00046aa40] cache.go:[0xc000359240 0xc0003ce7c0 0xc0003cee40 0xc0003cf700] cache_test.go:[0xc000504b00] callbacks.go:[0xc0000828c0] callbacks_traceback.go:[0xc000082a00] camelize.go:[0xc000638b80] capitalize.go:[0xc000638c80] capture_metrics.go:[0xc0005c8b40] casetables.go:[0xc000ce2d40] cast.go:[0xc0009be540] caste.go:[0xc0009be640] cbc.go:[0xc0002663c0] cbp.go:[0xc00040b540] cbp_test.go:[0xc000431ec0] cbrt.go:[0xc000d36540] cert_pool.go:[0xc0002e9a00] cfb.go:[0xc000266540] cgo.go:[0xc000bfa000] cgo_mmap.go:[0xc000bfa100] cgo_sigaction.go:[0xc000bfa200] cgocall.go:[0xc000bfa300] cgocallback.go:[0xc000bfa400] cgocheck.go:[0xc000bfa500] chacha20poly1305.go:[0xc000b1dc80] chacha20poly1305_amd64.go:[0xc000b36080] chacha20poly1305_generic.go:[0xc000b36240] chacha_generic.go:[0xc000b36800] chacha_noasm.go:[0xc000b36940] chain.go:[0xc000583bc0 0xc0007c5d40] chan.go:[0xc000bfa600] change.go:[0xc000369f00] changes.go:[0xc0004278c0] changes_linux.go:[0xc0004279c0] changes_unix.go:[0xc000427ac0] channel.go:[0xc0001f72c0 0xc0003cef80] channel.qtpl.go:[0xc0005c9b80] channel_test.go:[0xc000504c00] channellib.go:[0xc0008719c0] channels.go:[0xc00040bd00] channels.qtpl.go:[0xc0005c9c80] chatters.go:[0xc0003cf080] chatters_test.go:[0xc000504d00] check.go:[0xc000ca8d40] chi.go:[0xc0007c5e40] chtimes.go:[0xc00046b900] chtimes_unix.go:[0xc00046ba00] chunked.go:[0xc000902400] cipher.go:[0xc000319dc0 0xc000266740 0xc000229340] cipher_asm.go:[0xc000319ec0] cipher_suites.go:[0xc000228280] cli.go:[0xc000b1d900] client.go:[0xc000350780 0xc0003b8000 0xc0003b9cc0 0xc0005c8e80] client_stats.go:[0xc0005c8f80] client_unix.go:[0xc0003b8100] clientcredentials.go:[0xc0003cf940] clock.go:[0xc00053bd40 0xc0000e4a00] clone.go:[0xc000350880] closest.go:[0xc000b1dd00] cluster.go:[0xc0002a8c80] cluster_commands.go:[0xc0002a8d80] cmd_admin.go:[0xc0005f87c0] cmd_autoreplies.go:[0xc0005f88c0] cmd_command.go:[0xc0005f89c0] cmd_connection.go:[0xc00053d440] cmd_filters.go:[0xc0005f8ac0] cmd_fun.go:[0xc0005f8bc0] cmd_generic.go:[0xc0005834c0] cmd_geo.go:[0xc0005c9880] cmd_hash.go:[0xc0008701c0] cmd_lastfm.go:[0xc0005f8cc0] cmd_levels.go:[0xc0005f8dc0] cmd_list.go:[0xc0005f8ec0 0xc0008702c0] cmd_management.go:[0xc0005f8fc0] cmd_moderation.go:[0xc0005f90c0] cmd_pubsub.go:[0xc0008703c0] cmd_quote.go:[0xc0005f91c0] cmd_raffle.go:[0xc0005f92c0] cmd_random.go:[0xc0005f93c0] cmd_repeat.go:[0xc0005f94c0] cmd_schedule.go:[0xc0005f95c0] cmd_scripting.go:[0xc0008704c0] cmd_server.go:[0xc0008705c0] cmd_set.go:[0xc0008706c0] cmd_settings.go:[0xc0005f96c0] cmd_sorted_set.go:[0xc0008707c0] cmd_steam.go:[0xc0005f97c0] cmd_string.go:[0xc0008708c0] cmd_transactions.go:[0xc0008709c0] cmd_twitch.go:[0xc0005f98c0] cmd_var.go:[0xc0005f99c0] cmd_website.go:[0xc0005f9ac0] codec.go:[0xc0008b0640] collations.go:[0xc0002c3c80] collector.go:[0xc0001f8640] color.go:[0xc0003e9b40] column.go:[0xc0008b1c40] columns.go:[0xc0008b1400] comm.go:[0xc000359340] comma.go:[0xc0007c45c0] commaf.go:[0xc0007c46c0] command.go:[0xc000d37e80 0xc000b1de80 0xc0002a8e80] command_infos.go:[0xc00040be40] command_lists.go:[0xc00040bfc0] commandinfo.go:[0xc000889d00] commands.go:[0xc0002a8fc0] commentmap.go:[0xc0001b8e40] common.go:[0xc000228440 0xc000229fc0 0xc000359440 0xc00046a1c0] compact_protocol.go:[0xc00075bf40] compare.go:[0xc00048d080 0xc000426180 0xc0000e5080 0xc0001b9b80] compare_native.go:[0xc000c4ae00] compile.go:[0xc000ca8300 0xc000871ac0] compiler.go:[0xc000bfa700] completion.go:[0xc000b1df80] complex.go:[0xc000bfa800] composition.go:[0xc000903bc0 0xc00053dfc0] compress.go:[0xc0007e4280] cond.go:[0xc000c68580] conf.go:[0xc000272fc0] config.go:[0xc000cbb580 0xc000d37f80 0xc000ca8cc0 0xc0008b1d40 0xc000401380 0xc000426740 0xc0004fff00 0xc000871bc0] config_flag.go:[0xc000d26400] config_test.go:[0xc0003741c0] configs.go:[0xc0003b9e00] confimport.go:[0xc0002c3200 0xc0004ff980] conn.go:[0xc0002285c0 0xc00053b4c0 0xc000d26500 0xc0003587c0 0xc00027d0c0 0xc000889e00] conn_go18.go:[0xc00027d1c0] connection.go:[0xc0002c3d80] connection_go18.go:[0xc0002c3e80] connection_test.go:[0xc0003742c0] connecton.go:[0xc0005c8000] connector.go:[0xc00027d2c0] consistenthash.go:[0xc000358500] console_encoder.go:[0xc0003e87c0] const.go:[0xc000d36640 0xc000266000 0xc000229480 0xc0002e86c0 0xc0001f6d00 0xc0005072c0 0xc0002c3f80] const64.go:[0xc0001f6e00] constant_time.go:[0xc0002674c0] constantdelay.go:[0xc000583cc0] constants.go:[0xc000529000 0xc0000e7080 0xc0000e73c0 0xc0000e7640] consumer.go:[0xc000d26640] container.go:[0xc0003b8200] container_changes.go:[0xc000401480] container_create.go:[0xc000401580] container_top.go:[0xc000401680] container_update.go:[0xc000401780] container_wait.go:[0xc000401880] content.go:[0xc0009be940] content_charset.go:[0xc0007e4380] content_type.go:[0xc0007e4480] context.go:[0xc000b957c0 0xc0009bea40 0xc0003b1c40 0xc000153180 0xc000369840 0xc0004c1f80 0xc0007c5f40 0xc000592800] context_keys.go:[0xc0008b1500] convert.go:[0xc0003189c0 0xc0004d4980 0xc0008b0140] cookie.go:[0xc000350980] cookie_go111.go:[0xc0007e5cc0] copy.go:[0xc00027d3c0 0xc000427bc0] copy_unix.go:[0xc000427cc0] copysign.go:[0xc000d36740] core.go:[0xc0003e88c0 0xc000903700 0xc00053db00] coroutinelib.go:[0xc000871cc0] correlation.go:[0xc0005f9bc0] count_native.go:[0xc000c4af00] cover.go:[0xc000296d00] cpu.go:[0xc000c4b500 0xc000b37540] cpu_amd64.go:[0xc000c4b600] cpu_gc_x86.go:[0xc000b37640] cpu_x86.go:[0xc000c4b700 0xc000b37780] cpuflags.go:[0xc000bfa900] cpuflags_amd64.go:[0xc000bfaa00] cpuprof.go:[0xc000bfab00] cputicks.go:[0xc000bfac00] crc32.go:[0xc000318780] crc32_amd64.go:[0xc000318880] crc32_generic.go:[0xc000318980] cron.go:[0xc000583dc0] cron_test.go:[0xc000658000] crypto.go:[0xc000229100] css.go:[0xc0009beb40] ctcp.go:[0xc00053b5c0] ctr.go:[0xc000266a00] ctxhack.go:[0xc0002972c0] ctxhack_test.go:[0xc000505e40] ctxhttp.go:[0xc0002a8080] ctxlog.go:[0xc000b956c0] ctxutil.go:[0xc0004d4a80] custom_command.go:[0xc0005f9cc0] custom_commands.go:[0xc0004d40c0] custom_data.go:[0xc000638d80] dasherize.go:[0xc000638e80] db.go:[0xc0008b1600 0xc000870ac0 0xc0000e4b00] dbstats_go1.11.go:[0xc0000e7cc0] debug.go:[0xc000bfad00 0xc0008b1700] debug_disable.go:[0xc0000e5ac0] debugcall.go:[0xc000bfae00] debuglib.go:[0xc000871dc0] debuglog.go:[0xc000bfaf00] debuglog_off.go:[0xc000bfb000] dec_helpers.go:[0xc000359980] decimal.go:[0xc00050cc00 0xc000267c80 0xc0003b1580] decode.go:[0xc000ce3940 0xc000d26e40 0xc000359a80] decode_amd64.go:[0xc000d26f40] decoder.go:[0xc000359bc0] decomposer.go:[0xc0003b1d80] dedupe.go:[0xc0002a8380] dedupe_test.go:[0xc0004a2c80] deepequal.go:[0xc000d27f00] defers.go:[0xc000296140] deflate.go:[0xc000318040] deflatefast.go:[0xc000318140] defs_linux_amd64.go:[0xc000bfb100] delegates.go:[0xc000d26740] delim_string.go:[0xc0009bec40] deps.go:[0xc0005f9dc0 0xc000374bc0] descriptor.go:[0xc000426840] dev_linux.go:[0xc000529100] dial.go:[0xc000273140] dialer.go:[0xc0005c8100] dialer_test.go:[0xc0003743c0] dict_decoder.go:[0xc000318240] diff.go:[0xc000427dc0 0xc0000e5bc0 0xc0001b9d80] difflib.go:[0xc0001b9fc0] digest.go:[0xc000426e40] digester.go:[0xc000426f40] digit.go:[0xc000ce2e40] dim.go:[0xc000d36840] dir.go:[0xc0009a4280] dir_unix.go:[0xc0009a4380] direct.go:[0xc000870bc0] dirent.go:[0xc000c69b80 0xc000529200] distribution.go:[0xc0003b8300] dnsclient.go:[0xc000273340] dnsclient_unix.go:[0xc000273500] dnsconfig_unix.go:[0xc000273600] doc.go:[0xc000c68ec0 0xc000c69100 0xc000cbb680 0xc00050cd40 0xc00050d440 0xc0003e8a00 0xc000350a80 0xc000267d80 0xc000b37900 0xc000ca8400 0xc000ca8e00 0xc00040ad00 0xc00040b080 0xc0009bf000 0xc0009a5680 0xc0003b1e80 0xc0001f6fc0 0xc0001f7c00 0xc0002a90c0 0xc000359580 0xc000359cc0 0xc0005066c0 0xc0005073c0 0xc000528100 0xc000583ec0 0xc000152200 0xc000152800 0xc000153280 0xc0001f8740 0xc00027d4c0 0xc000368e40 0xc000427040 0xc0005c9080 0xc0007c4f40 0xc0007c5740 0xc0007e5dc0 0xc000822440 0xc000871440 0xc000889f00 0xc0004a3880] dockertest.go:[0xc000369640] docs.go:[0xc0005c8c40] docs.qtpl.go:[0xc0005c9d80] doctype.go:[0xc0005074c0] doublestar.go:[0xc000583500] driver.go:[0xc0004d4d40 0xc0000e7dc0 0xc0001f9d80 0xc00027c280 0xc000368080] driver_go1.10.go:[0xc0000e7ec0] driver_main.go:[0xc0008b1e40] dsa.go:[0xc000272840] dsn.go:[0xc000368180] dump.go:[0xc0004ff480] durafmt.go:[0xc000639e00] duration.go:[0xc0003b8f40] e1f3241e79f270a8094a97e6bd572e093a0cb075c72482b5e8a692e6181c3e53-d:[0xc000593700] e5fa3bfd21a0bc296f3802dc776f1143db52cd157663ec5d747386cb363ce78c-d:[0xc000593ac0] e74659b1e3ced26c53bfbf3d2b73edb98d9c0eee1331ec7e43501c6a273b7b01-d:[0xc000592c80] eagain.go:[0xc000318f40] eager_load.go:[0xc0003b0a40] ecb76cb6c3068500c10f36ee03e8be1fb25c5d9d1479158e407ec218a4bce61a-d:[0xc000165700] ecdsa.go:[0xc000229600] ed25519.go:[0xc0002e8440] ed3164eec202a876f51e771279b45a177324dae4c4a1b80282fef8d07e5f86d0-d:[0xc000375a00] edwards25519.go:[0xc0002e87c0] element_string.go:[0xc0009bf100] elf.go:[0xc0001539c0] elliptic.go:[0xc000229700] enc_helpers.go:[0xc000359dc0] encode.go:[0xc000ce3a40 0xc00053aa00 0xc000ce2f80 0xc000359ec0 0xc00027d5c0] encode_amd64.go:[0xc000ce30c0] encodedword.go:[0xc000b37d40] encoder.go:[0xc000cbb7c0 0xc0003e8b40 0xc000359fc0] encoding.go:[0xc000d26140] endian_little.go:[0xc000c69c80 0xc000529300] entity.go:[0xc0009a52c0 0xc0005075c0] entry.go:[0xc0003e8c80 0xc000528200] env.go:[0xc0009a4480 0xc0003b8400 0xc0003b9280 0xc0004a3980 0xc0005926c0] env_default.go:[0xc0009a4580] env_posix.go:[0xc000bfb200] env_unix.go:[0xc000c69d80 0xc000529400] equal_generic.go:[0xc000c4b000] equal_native.go:[0xc000c4b100] equate.go:[0xc000297740] erf.go:[0xc000d36940] erfinv.go:[0xc000d36a40] errgroup.go:[0xc0005838c0] errgroupx.go:[0xc0005837c0] errgroupx_test.go:[0xc0005921c0] errno_unix.go:[0xc000874e00] error.go:[0xc000bfb300 0xc000cbb8c0 0xc0009a4680 0xc00048dd00 0xc00048df40 0xc0003e8d80 0xc000318dc0 0xc0009bf240 0xc0002a91c0 0xc0003ce100 0xc0001f9ec0 0xc00027d6c0] error_errno.go:[0xc0009a47c0] error_posix.go:[0xc0009a48c0 0xc000273840] error_response.go:[0xc0003b9f00] error_unix.go:[0xc000273940] errors.go:[0xc000b95900 0xc000cbb280 0xc00050d540 0xc000d26840 0xc0004d4fc0 0xc0008b1800 0xc0002c3300 0xc000368280 0xc00046bb00 0xc0001b9580] errwrap.go:[0xc00027cc00] esc.go:[0xc0001f9700] escape.go:[0xc0009bf3c0 0xc0009a5440 0xc0005076c0] event.go:[0xc0003b8500] evictedqueue.go:[0xc000ca8f00] example.go:[0xc000296e00] exception.go:[0xc0000e6040] exec.go:[0xc0009a49c0 0xc000ca8000 0xc00040a800 0xc0009a5880 0xc0003b8600] exec_linux.go:[0xc000c69e80] exec_posix.go:[0xc0009a4ac0] exec_unix.go:[0xc000c69f80 0xc0009a4bc0 0xc00040aa00] executable.go:[0xc0009a4cc0] executable_procfs.go:[0xc0009a4dc0] exemplar.go:[0xc000152900] exit.go:[0xc0003e9d00] exitcode.go:[0xc00046bc00] exp.go:[0xc000d36b40 0xc00044f980] exp_asm.go:[0xc000d36c40] expand.go:[0xc0005067c0] expm1.go:[0xc000d36d40] exponential.go:[0xc000369940] export.go:[0xc000ca9000 0xc0001f8840] export_test.go:[0xc0003752c0 0xc000430740] export_unsafe.go:[0xc0000e51c0] exported.go:[0xc000528300] expr.go:[0xc000889000] expvar.go:[0xc0007e5580] extern.go:[0xc000bfb400] extfloat.go:[0xc00050ce40] extralife.go:[0xc000359000] extralife_test.go:[0xc0004a3740] f7cb8f249ec2fa90c8b83d6429f1003d0da18267f018b99fc8ab98aaa4560093-d:[0xc000505f80] fake_api.go:[0xc000823880 0xc0008239c0 0xc000823b00 0xc000823c80 0xc000823dc0 0xc000823f40 0xc000870080 0xc000888040] fake_notifier.go:[0xc000823540] fake_rand.go:[0xc000823640] fake_sender.go:[0xc000823740] fake_token_source.go:[0xc000297cc0] fake_twitch_test.go:[0xc000504e00] fakes.go:[0xc0000e4c40] fastlog2.go:[0xc000bfb500] fastlog2table.go:[0xc000bfb600] fcntl.go:[0xc000529500] fd.go:[0xc000874f00] fd_fsync_posix.go:[0xc000875040] fd_mutex.go:[0xc0008751c0] fd_poll_runtime.go:[0xc000875380] fd_posix.go:[0xc000875540] fd_unix.go:[0xc000875680 0xc000273c80] fd_writev_unix.go:[0xc0008757c0] field.go:[0xc000cbb9c0 0xc0003e8ec0] fields.go:[0xc000368380] file.go:[0xc0009a4ec0 0xc000200980] file_posix.go:[0xc0009a4fc0] file_unix.go:[0xc0009a51c0 0xc000200b80] filesys.go:[0xc00046bd00] filetransport.go:[0xc000350bc0] fileutils.go:[0xc00046ad80] fileutils_unix.go:[0xc00046ae80] filter.go:[0xc0005068c0 0xc0001b8f40] filters.go:[0xc0005f9ec0] findlinks.go:[0xc00053cb40] findlinks_test.go:[0xc000592e40] flag.go:[0xc000cbbac0 0xc00048dac0] flags.go:[0xc000319000 0xc0004c10c0 0xc0000e5d00] flags_linux.go:[0xc0004c11c0] flatten.go:[0xc00027c6c0] flect.go:[0xc000638f80] float.go:[0xc000bfb700 0xc000267e80] float32.go:[0xc0004d5500] float64.go:[0xc0004d5600] floatconv.go:[0xc000267f80] floatmarsh.go:[0xc00044e5c0] flock.go:[0xc000cba080] floor.go:[0xc000d36e40] fold.go:[0xc000ce3b40] foreign.go:[0xc000507800] format.go:[0xc000c69380 0xc00050d780 0xc0003b1f80 0xc0003cff80 0xc00027c7c0 0xc00046a2c0 0xc0001b9ec0 0xc000296340] format_list.go:[0xc000506080] format_string.go:[0xc0001f60c0] formatter.go:[0xc000528400] formdata.go:[0xc000b94400] forminfo.go:[0xc000903cc0 0xc0005820c0] frexp.go:[0xc000d36f40] fs.go:[0xc000350cc0] fswriters.go:[0xc0004c1a80] ftoa.go:[0xc00050cf40 0xc00044ecc0 0xc0007c47c0] func.go:[0xc0000e5f80] funcs.go:[0xc0009a5c00] function.go:[0xc000871ec0] gamma.go:[0xc000d37040] garbage.go:[0xc0007e5840] gcm.go:[0xc000266bc0] gen.go:[0xc0005c9e80] generator.go:[0xc0008b0880] geo.go:[0xc000870cc0] geohash.go:[0xc000889940] get_head.go:[0xc0007e4580] getrandom_linux.go:[0xc00048c980] getrandom_linux_amd64.go:[0xc00048ca80] getwd.go:[0xc0009a5380] global.go:[0xc000cbbbc0 0xc0008b1900] global_go112.go:[0xc000cbbcc0] go-bindata.go:[0xc0002c27c0] go113.go:[0xc0003e8080] go17.go:[0xc0004fe080] go18.go:[0xc0000e4000] go19.go:[0xc0004fe180] godotenv.go:[0xc00040a700] gotty.go:[0xc0004fe940] grammar.go:[0xc000b37e40] graph_driver_data.go:[0xc000400000] graphic.go:[0xc000ce3240] group.go:[0xc000319180] gunzip.go:[0xc000351e40] guts.go:[0xc000902a00] gzip.go:[0xc000351f40] h2_bundle.go:[0xc000350dc0] handle.go:[0xc0005f9fc0] handshake_client.go:[0xc0002286c0] handshake_client_tls13.go:[0xc0002287c0] handshake_messages.go:[0xc000228900] handshake_server.go:[0xc000228a00] handshake_server_tls13.go:[0xc000228b00] hash.go:[0xc000318ac0] hash64.go:[0xc000bfb800] hashtag.go:[0xc000358640] header.go:[0xc000350ec0 0xc000b94d80] heapdump.go:[0xc000bfb900] heartbeat.go:[0xc0007e4680] help.go:[0xc000319300] helper.go:[0xc0003b0080 0xc000297400] helper_test.go:[0xc0005925c0] helpers.go:[0xc00053a280 0xc00053b6c0 0xc0003b0b40 0xc0003cf180 0xc000229500 0xc0002c3600] helpers_test.go:[0xc0005049c0] hex.go:[0xc000272b40] hkdf.go:[0xc000b37b40] hmac.go:[0xc0002e8940] homedir_linux.go:[0xc0004fe4c0] homedir_unix.go:[0xc0004fe5c0] hook.go:[0xc0003e9080 0xc000200d00] hook_cloexec.go:[0xc0008758c0] hook_unix.go:[0xc000875a40 0xc000200f40] hooks.go:[0xc0008b1a00 0xc000528500] host_config.go:[0xc000401980] hostconfig_unix.go:[0xc000401a80] hostid_linux.go:[0xc00075ac40] hosts.go:[0xc000201080 0xc0003b93c0] hosts_unix.go:[0xc0003b94c0] hpack.go:[0xc00053ab00] hstore.go:[0xc0003b16c0] html.go:[0xc0009bf500] htmlescapewriter.go:[0xc0007c5040] http.go:[0xc000350fc0 0xc0003cf280] http_handler.go:[0xc000cbbdc0] httplex.go:[0xc000902b00] httputil.go:[0xc0004ff580] huffman.go:[0xc00053ac00 0xc00046ab40] huffman_bit_writer.go:[0xc000318340] huffman_code.go:[0xc000318440] humanize.go:[0xc000639080 0xc0007c4900] hypot.go:[0xc000d37140] id.go:[0xc00075ad40] id_response.go:[0xc000400100] ident.go:[0xc000639180] idna10.0.0.go:[0xc000902c00 0xc00053cf80] idtools.go:[0xc00046b140] idtools_unix.go:[0xc00046b240] iface.go:[0xc000bfba00] ignore.go:[0xc000297840] image.go:[0xc0003b8700] image_delete_response_item.go:[0xc000400200] image_summary.go:[0xc000400300] import.go:[0xc0001b9040] imports.go:[0xc0009be440] incoming.go:[0xc00053a540] incoming_test.go:[0xc000375400] indent.go:[0xc000ce3c40] index.go:[0xc000426940] index.qtpl.go:[0xc0005c9f80] index_amd64.go:[0xc000c4b200] index_native.go:[0xc000c4b300] indexbyte_native.go:[0xc000c4b400] infile.go:[0xc000368480] inflate.go:[0xc000318540] inflect.go:[0xc0008b0f00 0xc0008b1200] ini.go:[0xc000319540] init.go:[0xc00046be00] init_unix.go:[0xc00046bf00] input.go:[0xc000903dc0 0xc0005821c0] int.go:[0xc00044edc0 0xc0004d5700] int16.go:[0xc0004d5800] int32.go:[0xc0004d5900] int64.go:[0xc0004d5a00] int8.go:[0xc0004d5b00] intconv.go:[0xc00044eec0] interface.go:[0xc000201280 0xc0008b1f40 0xc000296540] interface_linux.go:[0xc000201440] interfaces.go:[0xc000b94c00] internal.go:[0xc000ca99c0 0xc000b36900 0xc0002a9e00 0xc000296440] intlen.go:[0xc0001f6b00] intmarsh.go:[0xc00044efc0] intrinsics.go:[0xc000c4be00] io.go:[0xc000ce2a00 0xc000266d80] ioctl.go:[0xc000529600] iolib.go:[0xc000871fc0] ioutil.go:[0xc0003e9e80] ip.go:[0xc0002015c0 0xc0003b95c0] iprawsock.go:[0xc000201700] iprawsock_posix.go:[0xc000201cc0] ipsock.go:[0xc000201dc0] ipsock_posix.go:[0xc000201ec0] irc.go:[0xc00053b7c0 0xc0002a8480 0xc0000e4d40] irc_test.go:[0xc0004a2d80] ircargs.go:[0xc0005c8540] ircx.go:[0xc0004ffac0] ircx_test.go:[0xc000593180] iscgo.go:[0xc000082b80] isprint.go:[0xc00050d040] iter.go:[0xc000903ec0 0xc0005822c0] iteration.go:[0xc0005069c0] iterator.go:[0xc0002a92c0] itoa.go:[0xc00050d140] j0.go:[0xc000d37240] j1.go:[0xc000d37340] jaeger.go:[0xc00075bc40] jaegerargs.go:[0xc00075ba40] jar.go:[0xc0003510c0] jn.go:[0xc000d37440] js.go:[0xc0009bf600] jsctx_string.go:[0xc0009bf700] json.go:[0xc0004d5c00 0xc0003b17c0 0xc000871540] json_encoder.go:[0xc0003e9200] json_formatter.go:[0xc000528600] jsonmessage.go:[0xc0004fe700] jsonstring.go:[0xc0007c5140] key.go:[0xc000153380] key_agreement.go:[0xc000228c00] key_schedule.go:[0xc000228d00] keys.go:[0xc0009be040 0xc0002a8580 0xc000870dc0] keys_test.go:[0xc0004a2740] kind_string.go:[0xc000582940] label.go:[0xc000152a00 0xc000153ac0] lastfm.go:[0xc000359140] lastfm_test.go:[0xc0004a3ec0] layout.go:[0xc000426a40] lcow.go:[0xc0004c0000] lcow_unix.go:[0xc0004c0100] ldexp.go:[0xc000d37540] leaktest.go:[0xc0003746c0] letter.go:[0xc000ce3340] level.go:[0xc000cbbec0 0xc0003e9340] level_strings.go:[0xc0003e9440] lex.go:[0xc0003b0440 0xc0007e5ec0] lexer.go:[0xc000889440] lfstack.go:[0xc000bfbb00] lfstack_64bit.go:[0xc000bfbc00] lgamma.go:[0xc000d37640] linit.go:[0xc000888180] linkmatch.go:[0xc0005833c0] linkmatch_test.go:[0xc000593580] list.go:[0xc000318d40] loadlib.go:[0xc000888280] lock_futex.go:[0xc000bfbd00] log.go:[0xc000d37740 0xc00048cd40 0xc000350600 0xc0002a9f40 0xc0001f9980 0xc0000e4100] log10.go:[0xc000d37840] log1p.go:[0xc000d37940] logb.go:[0xc000d37a40] logger.go:[0xc000cbbfc0 0xc000528700 0xc000583fc0 0xc0007e4780] login.qtpl.go:[0xc0007c4080] logrus.go:[0xc000528800] lookup.go:[0xc0001a6500 0xc0002c2000 0xc00046b540] lookup_unix.go:[0xc0001a6e80 0xc00046b680] lower_upper.go:[0xc000639280] lp_unix.go:[0xc00040ab80] lru.go:[0xc000ca9880] lrumap.go:[0xc000ca9100] lsf_linux.go:[0xc000cba180] lstat_unix.go:[0xc0004c0200] lua.go:[0xc000870f00] mac.go:[0xc0001a71c0] main.go:[0xc0002c3700 0xc0005c8880 0xc000822e80 0xc000823000] main_test.go:[0xc000430a80] makefunc.go:[0xc00050c040] malloc.go:[0xc000bfbe00] man.go:[0xc0003198c0] manager.go:[0xc0001f8e80] manifest.go:[0xc000426b40] manipulation.go:[0xc000506ac0] map.go:[0xc000bfbf00 0xc000c68680 0xc000153480 0xc000153bc0] map_codec.go:[0xc0001535c0] map_fast32.go:[0xc000c10000] map_fast64.go:[0xc000c10100] map_faststr.go:[0xc000c10200] marshal.go:[0xc0002e8180 0xc0003ce380] marshaler.go:[0xc0003e9540] match.go:[0xc000350080 0xc000902640 0xc000296f00] math.go:[0xc000c4bb00] mathlib.go:[0xc000888380] mbarrier.go:[0xc000c10300] mbitmap.go:[0xc000c10400] mcache.go:[0xc000c10500] mcentral.go:[0xc000c10600] md5.go:[0xc0002e8a80] md5block.go:[0xc0002e8b80] md5block_decl.go:[0xc0002e8c80] measure.go:[0xc000152300] measure_float64.go:[0xc000152400] measure_int64.go:[0xc000152500] mediatype.go:[0xc000b37fc0 0xc000426c40] mem_linux.go:[0xc000c10700] meminfo.go:[0xc0004c0300] meminfo_linux.go:[0xc0004c0400] memory_buffer.go:[0xc0000e6140] memory_encoder.go:[0xc0003e9640] message.go:[0xc000b1c8c0 0xc00053ae40 0xc00053b8c0 0xc000d26940] message_encode.go:[0xc00053ba00] message_parse.go:[0xc00053bb00] messagetype.go:[0xc0000e6240] metadata.go:[0xc0001536c0] method.go:[0xc0003511c0] metric.go:[0xc000152b00] mfinal.go:[0xc000c10800] mfixalloc.go:[0xc000c10900] mgc.go:[0xc000c10a00] mgclarge.go:[0xc000c10b00] mgcmark.go:[0xc000c10c00] mgcscavenge.go:[0xc000c10d00] mgcstack.go:[0xc000c10e00] mgcsweep.go:[0xc000c10f00] mgcsweepbuf.go:[0xc000c11000] mgcwork.go:[0xc000c11100] mheap.go:[0xc000c11200] mid.go:[0xc0005c8a40] middleware.go:[0xc0007c5a40 0xc0007e4880] migrate.go:[0xc0001f9a80] migration.go:[0xc0001f9b80 0xc00027c380] migrations.go:[0xc0001f9840] migrations_test.go:[0xc0004a21c0] miniredis.go:[0xc000871000] miniredistest.go:[0xc0004fe400] misc.go:[0xc0003b8800 0xc000889100] mknod.go:[0xc0004c0500] mmap.go:[0xc000082dc0] mod.go:[0xc000d37b40 0xc0007e5940] modelsx.go:[0xc0001f73c0] modes.go:[0xc000266240] modf.go:[0xc000d37c40] mont25519_amd64.go:[0xc000b37a00] mount.go:[0xc000401dc0 0xc0004c12c0] mounter_linux.go:[0xc0004c13c0] mountinfo.go:[0xc0004c14c0] mountinfo_linux.go:[0xc0004c15c0] move_to_front.go:[0xc00046ac40] mprof.go:[0xc000c11300] msan0.go:[0xc000c11400 0xc000cba280] msize.go:[0xc000c11500] mstats.go:[0xc000c11600] multi.go:[0xc000ce2b00] multierror.go:[0xc00027c8c0] multipart.go:[0xc000b94540] multitag.go:[0xc000319a40] mutex.go:[0xc000c68780] mux.go:[0xc0007e4040] mwbbuf.go:[0xc000c11700] named.go:[0xc000368f40] named_context.go:[0xc000369040] nat.go:[0xc00044f0c0 0xc000401040] natconv.go:[0xc00044f1c0] net.go:[0xc000cba380 0xc000172200] netlink_linux.go:[0xc000cba480] netpoll.go:[0xc000c11800] netpoll_epoll.go:[0xc000c11900] nettrace.go:[0xc0000822c0] network.go:[0xc0003b8900 0xc000426300] nextafter.go:[0xc000d37d40] nocache.go:[0xc0007e4980] node.go:[0xc0003b0540 0xc000507900] nodes.go:[0xc0002967c0] nonblocking.go:[0xc00048cc00] norace.go:[0xc000c68fc0] normal.go:[0xc00044fa80] normalize.go:[0xc000903fc0 0xc0005823c0] notify.go:[0xc00053af40 0xc00027d7c0] notify_test.go:[0xc000375500] nsqargs.go:[0xc0001f9180] nsqtest.go:[0xc000297e00] nss.go:[0xc000172540] number.go:[0xc0007c4a00] numeric.go:[0xc0000e6340] oauth2.go:[0xc0001f78c0 0xc0001f7d00] oauth2x.go:[0xc0003ced00] oauth2x_test.go:[0xc000593900] observability.go:[0xc0000e7fc0] ofb.go:[0xc000266f80] once.go:[0xc000c68880 0xc000358040] onepass.go:[0xc000ca8100] op_bool.go:[0xc0002a8680] op_bool_test.go:[0xc0004a2840] op_rate.go:[0xc0002a8780] op_rate_test.go:[0xc0004a2940] op_set.go:[0xc0002a8880] op_set_test.go:[0xc0004a2a40] op_string.go:[0xc000ca8500] opcode.go:[0xc000888480] opencensus.go:[0xc000b36600] operatingmode_string.go:[0xc0001f61c0] option.go:[0xc000319d80 0xc0003b0180 0xc0005f8100] options.go:[0xc000ce20c0 0xc0002a93c0 0xc0001520c0 0xc0000e52c0] options_go111.go:[0xc0007e5fc0] opts.go:[0xc0003b96c0] opts_unix.go:[0xc0003b97c0] optstyle_other.go:[0xc00040a040] ordinalize.go:[0xc000639380] ordinals.go:[0xc0007c4b00] os_linux.go:[0xc000c11a00] os_linux_generic.go:[0xc000c11b00] os_linux_noauxv.go:[0xc000c11c00] os_nonopenbsd.go:[0xc000c11d00] oslib.go:[0xc000888580] p224.go:[0xc000229800] p256_asm.go:[0xc000229900] package.go:[0xc000888680] packets.go:[0xc000368580] pagesize_unix.go:[0xc000529700] panic.go:[0xc000c11e00] parse.go:[0xc000172640 0xc000ca8600 0xc0003b06c0 0xc000507a00 0xc00027c480 0xc000401140 0xc000426080] parse_error.go:[0xc00053bc00] parseany.go:[0xc000638940] parser.go:[0xc00040a1c0 0xc0005070c0 0xc000638000 0xc0004fea40 0xc000889540 0xc000296680] pascalize.go:[0xc000639480] path.go:[0xc0009a55c0 0xc000350180 0xc000902740 0xc0004c0600 0xc0000e53c0] path_driver.go:[0xc0004c0f80] path_unix.go:[0xc0009a5840 0xc000350280] payload_string.go:[0xc0001f62c0] pem.go:[0xc000272d40] pem_decrypt.go:[0xc0002e9b00] perl_groups.go:[0xc000ca8700] persist.go:[0xc0004ff680] pgtest.go:[0xc000297f40] pipe.go:[0xc000ce2c00 0xc0001727c0] pipe_linux.go:[0xc0009a59c0] pipeline.go:[0xc000b94f80 0xc0002a94c0] pkcs1.go:[0xc0002e9c00] pkcs1v15.go:[0xc0002e8f00] pkcs8.go:[0xc0002e9d00] pkix.go:[0xc000272a40] plugin.go:[0xc000c11f00 0xc0003b8a00 0xc000400400] plugin_device.go:[0xc000400540] plugin_env.go:[0xc000400640] plugin_interface_type.go:[0xc000400740] plugin_mount.go:[0xc000400840] plugin_responses.go:[0xc000400940] plural_rules.go:[0xc000639580] pluralize.go:[0xc000639680] pm.go:[0xc000889680] point.go:[0xc000152c00] pointer_unsafe.go:[0xc0001b8100] poly1305.go:[0xc000b370c0] pool.go:[0xc000c68980 0xc0003e8540 0xc0003588c0 0xc0005c8200 0xc0007c5840 0xc0000e4200] pool_single.go:[0xc000358a00] pool_sticky.go:[0xc000358b00] pool_test.go:[0xc0003744c0] poolqueue.go:[0xc000c68a80] pools.go:[0xc0004fe300] port.go:[0xc000172980 0xc000400a40] port_unix.go:[0xc000172b00] position.go:[0xc0001b97c0] postgres.go:[0xc00027cdc0] pow.go:[0xc000d26f80 0xc0001f6c00] pow10.go:[0xc000d27080] pprof.go:[0xc000153cc0 0xc0007e56c0] prefix.go:[0xc00027c9c0] prf.go:[0xc000228e00] prime.go:[0xc00044f2c0] print.go:[0xc000c26000 0xc00050d8c0 0xc0001b9140] printer.go:[0xc0002968c0] proc.go:[0xc000c26100 0xc0009a5ac0] process_unix.go:[0xc0004c0700] processor.go:[0xc0000e6440] producer.go:[0xc000d26a40 0xc0001f8f80] profbuf.go:[0xc000c26200] profile_19.go:[0xc0001537c0] profiler.go:[0xc0007e4a80] proflabel.go:[0xc000c26300] prog.go:[0xc000ca8800] prop.go:[0xc000903840 0xc00053dc40] propagation.go:[0xc000b1ccc0] property.go:[0xc000506bc0] proto.go:[0xc000153dc0 0xc000889a80] protobuf.go:[0xc000153ec0] protocol.go:[0xc000d26b40 0xc0000e6540] protocol_exception.go:[0xc0000e6640] protocol_factory.go:[0xc0000e6740] protomem.go:[0xc000153fc0] proxy.go:[0xc00053a880 0xc0004fed80] psql_upsert.go:[0xc0004d41c0] pss.go:[0xc0002e9000] public_join.go:[0xc0002a8980] public_join_test.go:[0xc0004a2e80] publisher.go:[0xc00053b040] pubsub.go:[0xc0002a95c0 0xc000871100 0xc0000e4300] punycode.go:[0xc000902d00 0xc00053d080] purell.go:[0xc00053cd40] qmhelper.go:[0xc0003b1180] query.go:[0xc0003b0d00 0xc000506cc0] query_builders.go:[0xc0003b0e00] query_mods.go:[0xc0003b1040] quote.go:[0xc00050d240] quotedstring.go:[0xc0003b98c0] quotes.go:[0xc0004d4300] race0.go:[0xc000c26400 0xc000529800] rand.go:[0xc0003191c0 0xc00044fb80] rand_batched.go:[0xc000319400] rand_linux.go:[0xc0003195c0] rand_unix.go:[0xc000319700] random.go:[0xc0008b02c0] randomize.go:[0xc0008b0480] randutil.go:[0xc000229a40] rat.go:[0xc00044f400] ratconv.go:[0xc00044f500] ratmarsh.go:[0xc00044f600] rawconn.go:[0xc0009a5d00 0xc000172d00] rc4.go:[0xc0002e8dc0] rdb.go:[0xc000638240] rdebug.go:[0xc000c26500] read.go:[0xc0003ce480] readdirent_getdents.go:[0xc000529900] reader.go:[0xc000ce2900 0xc00048d240 0xc000b94840 0xc000b95200 0xc000358c00 0xc00046a3c0] readers.go:[0xc0004c1b80] readwriter.go:[0xc00053a180 0xc0005824c0] realip.go:[0xc0007e4b80] recache.go:[0xc000583680] recache_test.go:[0xc000593c80] record.go:[0xc000152600 0xc000153080] recoverer.go:[0xc0007e4c80] redis.go:[0xc0002a8a80 0xc0002a96c0 0xc000871200 0xc0000e4440] redisargs.go:[0xc0001f94c0] redistest.go:[0xc000374080] reflect.go:[0xc0003b0f00 0xc000369340] regexp.go:[0xc000ca8200 0xc000ca8900] registration.go:[0xc0009be140] registry.go:[0xc000426540] relationships.go:[0xc0009be240] relax_stub.go:[0xc000c26600] remainder.go:[0xc000d27180] removeall_at.go:[0xc0009a5f00] render.go:[0xc000507b00] repeat.go:[0xc000583a40 0xc000638340] repeat_test.go:[0xc000658100] repeated_commands.go:[0xc0004d4440] replace.go:[0xc00048d340] reply.go:[0xc0000e4540] report.go:[0xc0000e54c0] report_compare.go:[0xc0000e55c0] report_reflect.go:[0xc0000e56c0] report_slices.go:[0xc0000e57c0] report_text.go:[0xc0000e58c0] report_value.go:[0xc0000e59c0] request.go:[0xc0003512c0] request_id.go:[0xc0007e4d80] resolve.go:[0xc0001b9280] resource.go:[0xc000152f00] response.go:[0xc0003513c0 0xc0004a3a80] result.go:[0xc0002a97c0 0xc000368680 0xc0001b8c00 0xc0001b9c80] retry.go:[0xc000369a40] reverseproxy.go:[0xc0004ff780] rich_transport.go:[0xc0000e6840] ring.go:[0xc0002a98c0] rm.go:[0xc0004c0800] rng.go:[0xc00044fcc0] root.go:[0xc0002e9e00] root_linux.go:[0xc0002e9f00] root_unix.go:[0xc000272000] roundingmode_string.go:[0xc00044f740 0xc0001f63c0] roundtrip.go:[0xc0003514c0] route.go:[0xc0005c9180] rows.go:[0xc00027d8c0 0xc000368780] rsa.go:[0xc0002e9100] rule.go:[0xc000639780] run_example.go:[0xc000297040] runtime.go:[0xc000c26700 0xc000c68b80 0xc0001f80c0 0xc0003b99c0] runtime1.go:[0xc000c26800] runtime2.go:[0xc000c26900] rwmutex.go:[0xc000c26a00 0xc000c68c80] sampler.go:[0xc0003e9740] sampling.go:[0xc000ca9200] sanitize.go:[0xc000ca9ac0] scan.go:[0xc00050da00 0xc000351cc0 0xc0001f64c0 0xc000358d00 0xc0000e4640] scanner.go:[0xc000ce3d40 0xc00046af80 0xc0001b9680] scheduled_commands.go:[0xc0004d4580] schemes.go:[0xc000582f40] scope.go:[0xc0001b9380] scram.go:[0xc00027dec0] script.go:[0xc0002a99c0 0xc0000e4740] script_test.go:[0xc000430b80] script_tester.go:[0xc0000e4e80] search.go:[0xc00050dc40 0xc00048d580] sec1.go:[0xc000272100] seccomp.go:[0xc000400b40] securecookie.go:[0xc000822540] select.go:[0xc000c26b00] selector.go:[0xc0005071c0] sema.go:[0xc000c26c00] semaphore.go:[0xc0000e7b00] send_message.go:[0xc00053b140] send_message_test.go:[0xc000375600] sendfile_linux.go:[0xc000875b40 0xc000172e40] sentinel.go:[0xc0002a9ac0] serialize.go:[0xc0001b98c0] serializer.go:[0xc0000e6940] server.go:[0xc0003515c0 0xc0005c9280 0xc000889b80 0xc000297500] server_test.go:[0xc0005929c0] service_update_response.go:[0xc000400c40] session.go:[0xc000638440 0xc0007c5b40] sessions.go:[0xc0008220c0] sessiontype_string.go:[0xc000638540] setenv.go:[0xc000083140] sets.go:[0xc0008b1000] setuidgid_linux.go:[0xc000cba580] sha1.go:[0xc0002e9240] sha1block.go:[0xc0002e9340] sha1block_amd64.go:[0xc0002e9440] sha256.go:[0xc0002e95c0] sha256block.go:[0xc0002e96c0] sha256block_amd64.go:[0xc0002e97c0] sha256block_decl.go:[0xc0002e98c0] sha512.go:[0xc000229b80] sha512block.go:[0xc000229c80] sha512block_amd64.go:[0xc000229d80] sharded.go:[0xc0003ce8c0 0xc0003cf800] shared_test.go:[0xc0003745c0] sharedsubtree_linux.go:[0xc0004c16c0] si.go:[0xc0007c4c00] sidebar_scripts.qtpl.go:[0xc0007c4180] sigaction.go:[0xc000b1c080] signal.go:[0xc00040ae00 0xc00040b180 0xc0003b8b00] signal_amd64x.go:[0xc000c26d00] signal_linux_amd64.go:[0xc000c26e00] signal_sighandler.go:[0xc000c26f00] signal_unix.go:[0xc000c27000 0xc00040b380] signature.go:[0xc000506180] signbit.go:[0xc000d27280] sigqueue.go:[0xc000c27100] sigqueue_note.go:[0xc000c27200] sigtab_linux_generic.go:[0xc000c27300] simple_json_protocol.go:[0xc0000e6a40] simplify.go:[0xc000ca8a00] sin.go:[0xc000d27380] sincos.go:[0xc000d27480] singleflight.go:[0xc000082780] singleproc.go:[0xc000822c80] singular_rules.go:[0xc000639880] singularize.go:[0xc000639980] sinh.go:[0xc000d27580] sink.go:[0xc000ce21c0] site_db.go:[0xc0002c3800] size.go:[0xc0003b9040] sizeclasses.go:[0xc000c27400] sleep.go:[0xc000c69480] slice.go:[0xc000c27500 0xc00050ddc0] slice_go113.go:[0xc00050df00] snappy.go:[0xc000ce3640] sniff.go:[0xc0003516c0] sock_cloexec.go:[0xc000875cc0 0xc000173100] sock_linux.go:[0xc0001732c0] sock_posix.go:[0xc000173480] sockaddr_posix.go:[0xc000173580] sockcmsg_linux.go:[0xc000cba680 0xc000529a00] sockcmsg_unix.go:[0xc000cba780 0xc000529b00] sockopt.go:[0xc000875e40] sockopt_linux.go:[0xc000875f40 0xc000173900] sockopt_posix.go:[0xc000173a80] sockopt_unix.go:[0xc00048c040] sockoptip.go:[0xc00048c180] sockoptip_linux.go:[0xc000173c00] sockoptip_posix.go:[0xc000173dc0] socks_bundle.go:[0xc0003517c0] softfloat64.go:[0xc000c27600] sort.go:[0xc00050db00 0xc0009a4000 0xc00027cac0 0xc000401240 0xc0001b8200 0xc000297940] sorted_set.go:[0xc000871340] source.go:[0xc000296240] span_annotating_client_trace.go:[0xc0005c9380] spanbucket.go:[0xc000ca9300] spanstore.go:[0xc000ca9400] spec.go:[0xc000638140] splice_linux.go:[0xc00048c2c0 0xc000173f80] sql.go:[0xc0004d4bc0 0xc0008b0a80] sqlargs.go:[0xc0002c2a00] sqlx.go:[0xc000369140] sqlx_context.go:[0xc000369240] sqrt.go:[0xc000d27680 0xc00044f840] ssl.go:[0xc00027d9c0] ssl_permissions.go:[0xc00027dac0] stack.go:[0xc000c27700 0xc0004d50c0 0xc0002c3400 0xc0007e5a40] stacktrace.go:[0xc000ce22c0] stat.go:[0xc0008740c0] stat_actime1.go:[0xc00046a4c0] stat_linux.go:[0xc0008741c0 0xc0004c0900] stat_unix.go:[0xc0008742c0 0xc00046a5c0 0xc0004c0a00] state.go:[0xc000888780] state_string.go:[0xc0009bf980] statement.go:[0xc000368880] states.go:[0xc000d26c40] stats.go:[0xc000400d40 0xc0005c9480] status.go:[0xc0003518c0] status_codes.go:[0xc000ca9500] stdcopy.go:[0xc0004ff300] steam.go:[0xc0003cea80] steam_test.go:[0xc0005041c0] sticky_notbsd.go:[0xc000874480] stmt.go:[0xc000889200] store.go:[0xc0008221c0] str.go:[0xc000cba880 0xc000874580 0xc000529c00] strconv.go:[0xc000358280 0xc00046a6c0] stream.go:[0xc000ce3e40] streams.go:[0xc0003cf380] streams_test.go:[0xc000504f00] string.go:[0xc000c27800 0xc00048de00 0xc000b1d5c0 0xc0004d5d00] stringlib.go:[0xc000888880] strings.go:[0xc00048d7c0] strip.go:[0xc0007e4e80] strmangle.go:[0xc0008b1100] strslice.go:[0xc000401f00] struct_filter.go:[0xc000297a40] stubs.go:[0xc000c27900 0xc000c4b9c0 0xc000c4bf00 0xc0007e5b40] stubs2.go:[0xc000c27a00] stubs3.go:[0xc000c27b00] stubs_amd64x.go:[0xc000c27c00] stubs_linux.go:[0xc000c27d00] subscriber.go:[0xc00053b240] sugar.go:[0xc000ce23c0] sum_amd64.go:[0xc000b371c0] sum_generic.go:[0xc000b372c0] swapper.go:[0xc000b95b00 0xc00050c180] symlink.go:[0xc000350380] symlink_unix.go:[0xc000350480] symtab.go:[0xc000c27e00] sys.go:[0xc000c68040 0xc0008746c0] sys_linux.go:[0xc0008747c0] sys_nonppc64x.go:[0xc000c27f00] sys_unix.go:[0xc000c69580 0xc0008749c0] sys_x86.go:[0xc000c4a000] syscall.go:[0xc000cba980 0xc000529d40] syscall_linux.go:[0xc000cbaa80 0xc000529e40] syscall_linux_amd64.go:[0xc000cbab80 0xc000529f40] syscall_linux_amd64_gc.go:[0xc00053c040] syscall_linux_gc.go:[0xc00053c140] syscall_unix.go:[0xc000cbac80 0xc00053c240 0xc0004c0b40] syscall_unix_gc.go:[0xc00053c340] table.go:[0xc0009be340 0xc000507e00 0xc000888980] tablelib.go:[0xc000888ac0] tables.go:[0xc000ce3440 0xc000ce3f40 0xc00053ad00] tables11.0.0.go:[0xc000902e00 0xc000903940 0xc00053a300 0xc00053d180 0xc00053dd40 0xc0005825c0 0xc000582a40] tabwriter.go:[0xc0001f8200] tag.go:[0xc000359680] tagencoding.go:[0xc0001f8d40] tags.go:[0xc000d26040] tan.go:[0xc000d27780] tanh.go:[0xc000d27880] tar.go:[0xc0003b8c40] tc.go:[0xc0004fee80] tcpsock.go:[0xc000164180] tcpsock_posix.go:[0xc000164700] tcpsockopt_posix.go:[0xc000164940] tcpsockopt_unix.go:[0xc000164b00] tee.go:[0xc0003e98c0] temp_unix.go:[0xc0004c1c80] tempfile.go:[0xc0003e9f80] template.go:[0xc0009bfb40 0xc0003b0280] term.go:[0xc0004fef80] terminal.go:[0xc0007e4f80] terminal_check_notappengine.go:[0xc000528900] terminal_check_unix.go:[0xc000528a00] termios_linux.go:[0xc0004ff080] termsize.go:[0xc00040a2c0] testcert.go:[0xc000902500] testcmd_test.go:[0xc000430c80] testing.go:[0xc000638640 0xc000297140] testutil.go:[0xc000350680] text_formatter.go:[0xc000528b00] textproto.go:[0xc000902040] throttle.go:[0xc0007e5080] thumbnail.go:[0xc000506280] tick.go:[0xc000c69680] ticker.go:[0xc00053be40 0xc000369b40] ticket.go:[0xc000228f00] time.go:[0xc000c4a100 0xc000c69780 0xc000ce24c0 0xc0004d5e00] time_linux.go:[0xc000427ec0] timeout.go:[0xc0007e5180] timer.go:[0xc00053bf40] times.go:[0xc0007c4d00] timestruct.go:[0xc000cbad80 0xc00053c440] timestub.go:[0xc000c4a200] timestub2.go:[0xc000c4a300] tinyurl.go:[0xc0003cebc0] tinyurl_test.go:[0xc0005044c0] tiocgwinsz_linux.go:[0xc00040a4c0] titleize.go:[0xc000639a80] tlds.go:[0xc000583040] tlds_pseudo.go:[0xc000583140] tls.go:[0xc000229000 0xc0003b8d40 0xc000297600] token.go:[0xc000318640 0xc0001f79c0 0xc0001f7e00 0xc000507c00 0xc000889300 0xc0001b99c0] toolchain_recent.go:[0xc0000e5e40] trace.go:[0xc000c4a400 0xc0009022c0 0xc000ca9600 0xc000b1c9c0 0xc0005c9580] trace_go11.go:[0xc000ca9780] traceback.go:[0xc000c4a500] traceinternals.go:[0xc000b36000] tracestate.go:[0xc000b36d40] track.go:[0xc000359780] transaction.go:[0xc000368980] transfer.go:[0xc0003519c0] transform.go:[0xc000903380 0xc00053a480 0xc00053d740 0xc0005826c0 0xc000582b40] transition.go:[0xc0009bfd40] transport.go:[0xc000351ac0 0xc0001f7ac0 0xc0001f7f40 0xc0000e6b40 0xc0004a3b80] transport_exception.go:[0xc0000e6c40] transport_factory.go:[0xc0000e6d40] traversal.go:[0xc000506dc0] tree.go:[0xc0007e4140] trie.go:[0xc000902f00 0xc00053a600 0xc00053d280 0xc0005827c0] tries.go:[0xc000369c40] trieval.go:[0xc000903000 0xc000903a40 0xc00053d3c0 0xc00053de40 0xc000582c40] trig_reduce.go:[0xc000d27980] ttypes.go:[0xc0000e7180 0xc0000e7500 0xc0000e7740] twitch.go:[0xc0003cf480 0xc0003cfa80 0xc0002c3900 0xc0000e4f80] twitch_test.go:[0xc000505000] twitch_tokens.go:[0xc0004d4780] twitchargs.go:[0xc0002c2bc0] twitchx.go:[0xc0005c8400] tx.go:[0xc0002a9bc0] type.go:[0xc000b95c00 0xc000c4a600 0xc00050c380 0xc000b940c0 0xc0003ce200 0xc000506ec0 0xc0000e6e40] type_string.go:[0xc000152d00] type_unix.go:[0xc000b941c0] typeinfo.go:[0xc0003ce580] typekind.go:[0xc000c4a700] types.go:[0xc000874b00 0xc0004d4e40 0xc0001f70c0 0xc000369500 0xc000400e40 0xc0004feb40] types_unix.go:[0xc000874c00] udpsock.go:[0xc000164d40] udpsock_posix.go:[0xc000164e80] uint.go:[0xc0004d5f00] uint16.go:[0xc00050c000] uint32.go:[0xc00050c2c0] uint64.go:[0xc00050c640] uint8.go:[0xc0008b0000] ulimit.go:[0xc0003b9140 0xc0003b9ac0] umask.go:[0xc0004c0c80] underscore.go:[0xc000639b80] unit.go:[0xc000152e00] units.go:[0xc000152700] universal.go:[0xc0002a9cc0] unixsock.go:[0xc000165180] unixsock_posix.go:[0xc0001653c0] unsafe.go:[0xc000d27a80 0xc000358380] urban.go:[0xc0003cfc00] urban_test.go:[0xc000505800] url.go:[0xc000b1cc00 0xc0009bff40 0xc00027c0c0 0xc00027dbc0] url_format.go:[0xc0007e5280] urlencode.go:[0xc0007c5240] urlesc.go:[0xc00053ce40] urlpart_string.go:[0xc0009a50c0] urlx.go:[0xc00053cc40] user.go:[0xc000359880 0xc0002c2100 0xc00046b780] user_posix.go:[0xc00027dcc0] user_state.go:[0xc000638740] usergroupadd_linux.go:[0xc00046b340] users.go:[0xc0003cf580] users_test.go:[0xc000505100] utf16.go:[0xc00048d940] utf8.go:[0xc000c4a800 0xc000ce3580] util.go:[0xc000319880 0xc0001f6600 0xc000358140 0xc0001f9c80 0xc0001f9fc0 0xc0007c5340] util_noappengine.go:[0xc0007c5440] utilities.go:[0xc000506fc0] utils.go:[0xc000506380 0xc000368a80 0xc000888bc0] utils_go18.go:[0xc000368b80] utils_unix.go:[0xc00046b440] utimes_linux.go:[0xc0004c0d80] uuid.go:[0xc0008b0c00 0xc00027ddc0] validate.go:[0xc0001538c0] value.go:[0xc000b95d00 0xc000c69200 0xc00050c500 0xc0007e5380 0xc000888d00] values.go:[0xc00040af00] var.go:[0xc000638840] variables.go:[0xc0004d4880] varint.go:[0xc000ca9c00] vdso_elf64.go:[0xc000c4a900] vdso_linux.go:[0xc000c4aa00] vdso_linux_amd64.go:[0xc000c4ab00] verifiers.go:[0xc000427140] verify.go:[0xc000272340] version.go:[0xc000d26d40 0xc000b1cfc0 0xc000639c80 0xc000427280] versioned.go:[0xc000427380] video_info.go:[0xc000506480] view.go:[0xc0001f8940] view_to_metric.go:[0xc0001f8a40] vm.go:[0xc000888e00] volume.go:[0xc0003b8e40 0xc000400f40] wait_waitid.go:[0xc000874d00] waitcondition.go:[0xc000401b80] waitgroup.go:[0xc000c68d80] walk.go:[0xc0001b9480] web.go:[0xc0002a8b80 0xc0007c5c40] web_test.go:[0xc0004a2f80] webargs.go:[0xc000822a00] whiteouts.go:[0xc000427fc0] width.go:[0xc000582d40] winsize.go:[0xc0004ff180] worker.go:[0xc0001f8b40] worker_commands.go:[0xc0001f8c40] wrap.go:[0xc000b95a00 0xc00046a0c0] wrap_generated_gteq_1.8.go:[0xc0005c8d40] wrap_writer.go:[0xc0007e5480] wrapped_body.go:[0xc0005c9680] write_err.go:[0xc000c4ac00] write_syncer.go:[0xc0003e99c0] writeflusher.go:[0xc0004c1d80] writer.go:[0xc000ce2600 0xc000b94740 0xc000b94a00 0xc000902140 0xc000358e00 0xc000528c00 0xc00046a7c0 0xc0007c5540] writers.go:[0xc0004c1e80] writev.go:[0xc00048c3c0] writev_unix.go:[0xc000165580] x509.go:[0xc000272480] xattrs_linux.go:[0xc0004c0e80] xchacha20poly1305.go:[0xc000b36580] xform.go:[0xc000297b40] xkcd.go:[0xc0003cfd40] xkcd_test.go:[0xc000505b00] xml.go:[0xc0003ce680] xor.go:[0xc000b36c00] xor_amd64.go:[0xc0002670c0] xurls.go:[0xc000583240] youtube.go:[0xc0003cfe80] zdebug0.go:[0xc0001f6700] zero.go:[0xc0001b8300] zerrors_linux_amd64.go:[0xc000cbae80 0xc00053c540] zfuncversion.go:[0xc0009a4100] zgoarch_amd64.go:[0xc000c68140] zgoos_linux.go:[0xc000c68240] zipf.go:[0xc00044fdc0] zipkincollector.go:[0xc0000e7880] zoneinfo.go:[0xc000c69880] zoneinfo_read.go:[0xc000c69980] zoneinfo_unix.go:[0xc000c69a80] zptrace386_linux.go:[0xc00053c640] zsyscall_linux_amd64.go:[0xc000cbaf80 0xc00053c740] zsysnum_linux_amd64.go:[0xc000cbb080 0xc00053c840] ztypes_linux_amd64.go:[0xc000cbb180 0xc00053c940] zversion.go:[0xc000c68340]] {0 0} 0xc008291770 0xc00035e1a0 {0 0} map[file:///usr/lib/go/src/builtin/builtin.go:{}]})}
[Trace - 17:45:35.620 PM] Sending request 'textDocument/codeAction - (22)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:35.859 PM] Sending request 'textDocument/codeAction - (23)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:45:36.557 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:36 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:36.558 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:36 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:36.560 PM] Received response 'textDocument/codeAction - (22)' in 939ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":7,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":13,"character":3},"end":{"line":14,"character":3}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 17:45:37.298 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:37 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:37.298 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:37 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:37.300 PM] Received response 'textDocument/codeAction - (23)' in 1441ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":7,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":13,"character":3},"end":{"line":14,"character":3}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 17:45:37.306 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":12},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"rangeLength":0,"text":"\"\n\t\"go.uber.org/zap"},{"range":{"start":{"line":13,"character":3},"end":{"line":14,"character":3}},"rangeLength":61,"text":""}]}
[Trace - 17:45:37.306 PM] Sending request 'textDocument/formatting - (24)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:45:37.504 PM] Sending request 'textDocument/foldingRange - (25)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:37.574 PM] Sending request 'textDocument/codeAction - (26)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":17},"end":{"line":17,"character":17}},"context":{"diagnostics":[]}}
[Trace - 17:45:38.057 PM] Sending notification '$/cancelRequest'.
Params: {"id":24}
[Error - 17:45:38.062 PM] Received #24 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:45:38.062 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:38 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:38.062 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 : context canceled"}
[Trace - 17:45:38.062 PM] Received response 'textDocument/foldingRange - (25)' in 557ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":85,"endCharacter":1,"kind":"imports"}]
[Trace - 17:45:38.074 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 no dep handle: no metadata for gitopencensus.io/trace\n\tpackage = gitopencensus.io/trace"}
[Trace - 17:45:38.075 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:38 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:38.075 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:38 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:38.103 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":16,"character":18},"end":{"line":16,"character":18}},"severity":1,"source":"syntax","message":"expected ';', found \""}]}
[Trace - 17:45:38.118 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":12}}
[Trace - 17:45:38.304 PM] Sending request 'textDocument/documentLink - (27)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:38.377 PM] Sending request 'textDocument/codeAction - (28)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":17},"end":{"line":17,"character":17}},"context":{"diagnostics":[]}}
[Trace - 17:45:38.378 PM] Sending notification '$/cancelRequest'.
Params: {"id":26}
[Trace - 17:45:38.382 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:38 go/packages.Load\n\tpackages = 1"}
[Error - 17:45:38.382 PM] Received #26 no package for command-line-arguments
[Trace - 17:45:38.383 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:38 go/packages.Load\n\tpackage = /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:38.383 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 : context canceled"}
[Trace - 17:45:38.383 PM] Received response 'textDocument/documentLink - (27)' in 79ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":17}},"target":"https://godoc.org/go.uber.org/zap"}]
[Trace - 17:45:38.384 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.384 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.384 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.384 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.384 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.385 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.385 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.385 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.385 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.386 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:38.386 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:38 cannot unquote import path: invalid syntax\n\tPath = "}
[Error - 17:45:38.822 PM] Received #28 no packages found for query
[Trace - 17:45:38.823 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:38 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:39.222 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":13},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":17,"character":17}},"rangeLength":19,"text":""},{"range":{"start":{"line":13,"character":3},"end":{"line":13,"character":3}},"rangeLength":0,"text":"ithub.com/hortbot/hortbot/internal/cli/flags/twitchflags\"\n\t\"g"}]}
[Trace - 17:45:39.395 PM] Sending request 'textDocument/foldingRange - (29)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:39.396 PM] Received response 'textDocument/foldingRange - (29)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:39.447 PM] Sending request 'textDocument/codeAction - (30)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:40.203 PM] Sending request 'textDocument/documentLink - (31)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:40.267 PM] Sending request 'textDocument/codeAction - (32)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[{"range":{"start":{"line":16,"character":18},"end":{"line":16,"character":18}},"message":"expected ';', found \"","severity":1,"source":"syntax"}]}}
[Trace - 17:45:40.307 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:40 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:40.307 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:40 go/packages.Load\n\tpackage = command-line-arguments\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:40.310 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:40.424 PM] Received response 'textDocument/codeAction - (30)' in 977ms.
Result: {}
[Trace - 17:45:40.425 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:40 go/packages.Load\n\tpackage = command-line-arguments\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:40.425 PM] Received response 'textDocument/documentLink - (31)' in 221ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:40.426 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:40 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:40.429 PM] Received response 'textDocument/codeAction - (32)' in 162ms.
Result: {}
[Trace - 17:45:40.450 PM] Sending request 'textDocument/formatting - (33)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:45:40.454 PM] Received response 'textDocument/formatting - (33)' in 4ms.
Result: []
[Trace - 17:45:40.535 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":13}}
[Trace - 17:45:40.565 PM] Sending request 'textDocument/codeAction - (34)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:40.574 PM] Received response 'textDocument/codeAction - (34)' in 9ms.
Result: {}
[Trace - 17:45:43.023 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":14},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"rangeLength":0,"text":"\n\t\"go.opencensus.io/trace\""},{"range":{"start":{"line":16,"character":0},"end":{"line":17,"character":0}},"rangeLength":26,"text":""}]}
[Trace - 17:45:43.216 PM] Sending request 'textDocument/foldingRange - (35)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:43.217 PM] Received response 'textDocument/foldingRange - (35)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:43.268 PM] Sending request 'textDocument/codeAction - (36)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":16,"character":18},"end":{"line":16,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:43.521 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":15},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":17,"character":25}},"rangeLength":26,"text":""},{"range":{"start":{"line":16,"character":0},"end":{"line":16,"character":0}},"rangeLength":0,"text":"\t\"go.opencensus.io/trace\"\n"}]}
[Trace - 17:45:43.521 PM] Sending notification '$/cancelRequest'.
Params: {"id":36}
[Error - 17:45:43.524 PM] Received #36 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:45:43.524 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:43 : context canceled"}
[Trace - 17:45:43.525 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:43 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:43.530 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:43 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:43.693 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":16},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":18,"character":30}},"rangeLength":31,"text":""},{"range":{"start":{"line":17,"character":0},"end":{"line":17,"character":0}},"rangeLength":0,"text":"\t\"golang.org/x/sync/semaphore\"\n"}]}
[Trace - 17:45:43.695 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:43 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:43.892 PM] Sending request 'textDocument/foldingRange - (37)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:43.893 PM] Received response 'textDocument/foldingRange - (37)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:43.943 PM] Sending request 'textDocument/codeAction - (38)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:44.016 PM] Sending request 'textDocument/documentLink - (39)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:44.051 PM] Sending request 'textDocument/codeAction - (40)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:45:44.232 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:44 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:44.232 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:44 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:44.235 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:44.484 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:44 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:44.484 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:44 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:44.487 PM] Received response 'textDocument/codeAction - (38)' in 544ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":14,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 17:45:44.487 PM] Received response 'textDocument/documentLink - (39)' in 471ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:44.490 PM] Received response 'textDocument/codeAction - (40)' in 439ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":14,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"newText":""},{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"newText":"\"\n\t\"go.uber.org/zap"}]}]}}]
[Trace - 17:45:44.497 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":17},"contentChanges":[{"range":{"start":{"line":17,"character":24},"end":{"line":17,"character":24}},"rangeLength":0,"text":"\"\n\t\"go.uber.org/zap"},{"range":{"start":{"line":16,"character":5},"end":{"line":17,"character":5}},"rangeLength":26,"text":""}]}
[Trace - 17:45:44.497 PM] Sending request 'textDocument/formatting - (41)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:45:44.696 PM] Sending request 'textDocument/foldingRange - (42)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:45.247 PM] Sending notification '$/cancelRequest'.
Params: {"id":41}
[Error - 17:45:45.250 PM] Received #41 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -mod=readonly -- go.ang.org/x/sync/sema go.uber.org/zapphore]: signal: killed:
[Trace - 17:45:45.251 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:45 : context canceled"}
[Trace - 17:45:45.251 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:45 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:45.251 PM] Received response 'textDocument/foldingRange - (42)' in 555ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":18,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:45.273 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":17}}
[Trace - 17:45:45.343 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:45 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:45.343 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:45 no dep handle: no metadata for go.ang.org/x/sync/sema\n\tpackage = go.ang.org/x/sync/sema"}
[Trace - 17:45:45.343 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:45 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:45.343 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:45 no dep handle: no metadata for go.uber.org/zapphore\n\tpackage = go.uber.org/zapphore"}
[Trace - 17:45:45.350 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"severity":1,"source":"compiler","message":"could not import go.ang.org/x/sync/sema (no package for import go.ang.org/x/sync/sema)"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":23}},"severity":1,"source":"compiler","message":"could not import go.uber.org/zapphore (no package for import go.uber.org/zapphore)"},{"range":{"start":{"line":57,"character":8},"end":{"line":57,"character":29}},"severity":1,"source":"compiler","message":"undeclared name: semaphore"},{"range":{"start":{"line":62,"character":15},"end":{"line":62,"character":46}},"severity":1,"source":"compiler","message":"undeclared name: trace"},{"range":{"start":{"line":70,"character":16},"end":{"line":70,"character":47}},"severity":1,"source":"compiler","message":"undeclared name: trace"},{"range":{"start":{"line":16,"character":1},"end":{"line":16,"character":25}},"severity":1,"source":"compiler","message":"\"go.ang.org/x/sync/sema\" imported but not used"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":23}},"severity":1,"source":"compiler","message":"\"go.uber.org/zapphore\" imported but not used"}]}
[Trace - 17:45:45.496 PM] Sending request 'textDocument/documentLink - (43)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:45.496 PM] Received response 'textDocument/documentLink - (43)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.ang.org/x/sync/sema"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":22}},"target":"https://godoc.org/go.uber.org/zapphore"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":17}},"target":"https://godoc.org/go.uber.org/zap"}]
[Trace - 17:45:45.606 PM] Sending request 'textDocument/codeAction - (44)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:46.710 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":18},"contentChanges":[{"range":{"start":{"line":16,"character":24},"end":{"line":17,"character":17}},"rangeLength":19,"text":""},{"range":{"start":{"line":16,"character":5},"end":{"line":16,"character":5}},"rangeLength":0,"text":"opencensus.io/trace\"\n\t\"gol"}]}
[Trace - 17:45:46.710 PM] Sending notification '$/cancelRequest'.
Params: {"id":44}
[Error - 17:45:46.715 PM] Received #44 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:45:46.715 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:46 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:46.715 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:46 : context canceled"}
[Trace - 17:45:46.904 PM] Sending request 'textDocument/foldingRange - (45)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:46.905 PM] Received response 'textDocument/foldingRange - (45)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":18,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:46.935 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":19},"contentChanges":[{"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"rangeLength":0,"text":"\n\t\"golang.org/x/sync/semaphore\""},{"range":{"start":{"line":17,"character":0},"end":{"line":18,"character":0}},"rangeLength":31,"text":""}]}
[Trace - 17:45:46.939 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:46 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:47.126 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":20},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"rangeLength":0,"text":"\n\t\"go.opencensus.io/trace\""},{"range":{"start":{"line":16,"character":0},"end":{"line":17,"character":0}},"rangeLength":26,"text":""}]}
[Trace - 17:45:47.135 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:47 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:47.324 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":21},"contentChanges":[{"range":{"start":{"line":16,"character":18},"end":{"line":17,"character":25}},"rangeLength":26,"text":""},{"range":{"start":{"line":16,"character":0},"end":{"line":16,"character":0}},"rangeLength":0,"text":"\t\"go.opencensus.io/trace\"\n"}]}
[Trace - 17:45:47.351 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:47 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:47.522 PM] Sending request 'textDocument/foldingRange - (46)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:47.522 PM] Received response 'textDocument/foldingRange - (46)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":18,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:47.575 PM] Sending request 'textDocument/codeAction - (47)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":23}},"message":"could not import go.uber.org/zapphore (no package for import go.uber.org/zapphore)","severity":1,"source":"compiler"},{"range":{"start":{"line":17,"character":1},"end":{"line":17,"character":23}},"message":"\"go.uber.org/zapphore\" imported but not used","severity":1,"source":"compiler"}]}}
[Trace - 17:45:47.706 PM] Sending request 'textDocument/documentLink - (48)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:48.047 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:48 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:48.047 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:48 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:48.048 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:48 no dep handle: no metadata for go.ang.org/x/sync/sema\n\tpackage = go.ang.org/x/sync/sema"}
[Trace - 17:45:48.048 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:48 no dep handle: no metadata for go.uber.org/zapphore\n\tpackage = go.uber.org/zapphore"}
[Trace - 17:45:48.064 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:48.064 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:48 failed to run analyses: no CheckPackageHandle for go.ang.org/x/sync/sema:true\n\tfile = file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}
[Trace - 17:45:48.204 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:48 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:48.204 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:48 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:48.211 PM] Received response 'textDocument/documentLink - (48)' in 505ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":17}},"target":"https://godoc.org/go.uber.org/zap"}]
[Error - 17:45:48.214 PM] Received #47 no CheckPackageHandles for &{[file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go] /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go %!s(source.FileKind=0) %!s(*cache.view=&{0xc000256580 1 {[ELECTRON_RUN_AS_NODE=1 SHELL=/usr/bin/zsh LSCOLORS=Gxfxcxdxbxegedabagacad COLORTERM=truecolor LESS=-R QT_WAYLAND_DISABLE_WINDOWDECORATION=1 I3SOCK=/run/user/1000/sway-ipc.1000.1232.sock TERMINATOR_DBUS_PATH=/net/tenshu/Terminator2 TERMINATOR_UUID=urn:uuid:e5569f7e-f72d-4439-a539-6624032667f5 NO_AT_BRIDGE=1 XCURSOR_SIZE=24 EDITOR=vim XDG_SEAT=seat0 PWD=/home/jake/zikaeroh/hortbot/hortbot LOGNAME=jake XDG_SESSION_TYPE=tty HOME=/home/jake LANG=en_US.UTF-8 _JAVA_AWT_WM_NONREPARENTING=1 LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: VTE_VERSION=5802 SWAYSOCK=/run/user/1000/sway-ipc.1000.1232.sock WAYLAND_DISPLAY=wayland-0 G_ENABLE_DIAGNOSTIC=0 INVOCATION_ID=22e3b4a4323b443da35eacea8456ce57 TERMINATOR_DBUS_NAME=net.tenshu.Terminator20x20309d54defed5d4 RUST_SRC_PATH=/home/jake/rustc/src SYSTEMD_EDITOR=vim _PROFILE_SOURCED=yes STEAM_FRAME_FORCE_CLOSE=1 XDG_SESSION_CLASS=user TERM=xterm-256color USER=jake DISPLAY=:0 RUSTC_WRAPPER=sccache SHLVL=3 MOZ_ENABLE_WAYLAND=1 PAGER=less MOZ_USE_XINPUT2=1 XDG_VTNR=1 XDG_SESSION_ID=1 LC_CTYPE= XDG_RUNTIME_DIR=/run/user/1000 JOURNAL_STREAM=9:25744 PATH=/home/jake/bin:/home/jake/.dotnet/tools:/home/jake/.cargo/bin:/home/jake/go/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/android-sdk/platform-tools:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/lib:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/git:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/archlinux:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/adb:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/docker:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/golang:/home/jake/.antigen/bundles/zsh-users/zsh-syntax-highlighting:/home/jake/.antigen/bundles/zsh-users/zsh-autosuggestions:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/cp:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/systemd:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/mosh:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/rsync:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/rust:/home/jake/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/common-aliases DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus MAIL=/var/spool/mail/jake OLDPWD=/home/jake GOPATH=/home/jake/go _=/opt/visual-studio-code/bin/../code APPLICATION_INSIGHTS_NO_DIAGNOSTIC_CHANNEL=true VSCODE_CLI=1 ELECTRON_NO_ATTACH_CONSOLE=1 CHROME_DESKTOP=code-url-handler.desktop VSCODE_NLS_CONFIG={"locale":"en-us","availableLanguages":{},"_languagePackSupport":true} VSCODE_NODE_CACHED_DATA_DIR=/home/jake/.config/Code/CachedData/8795a9889db74563ddd43eb0a897a2384129a619 VSCODE_LOGS=/home/jake/.config/Code/logs/20191114T174416 VSCODE_IPC_HOOK=/run/user/1000/vscode-6986c22e-1.40.1-main.sock VSCODE_PID=38250 AMD_ENTRYPOINT=vs/workbench/services/extensions/node/extensionHostProcess PIPE_LOGGING=true VERBOSE_LOGGING=true VSCODE_IPC_HOOK_EXTHOST=/tmp/vscode-ipc-4f48e730-721a-4cd8-964a-6ccb55784fbc.sock VSCODE_HANDLES_UNCAUGHT_ERRORS=true VSCODE_LOG_STACK=false GOROOT=/usr/lib/go GOPROXY=https://proxy.golang.org,direct] [] 2 map[] false true true 2 true true true markdown true map[0:map[quickfix:true source.organizeImports:true] 1:map[source.organizeImports:true] 2:map[]] [tidy] 2 {true true false true true false false 100000000} 0xa67c30 [0x128ce00 0x128cee0 0x128cfc0 0x128d0a0 0x128d180 0x128d260 0x128d340 0x128d420 0x128d500 0x128d6c0 0x128d880 0x128d960 0x128da40 0x128db20 0x128dc00 0x128ddc0 0x128dea0 0x128df80 0x128e060 0x128e140 0x128e220 0x128e300 0x128dce0] false} {0 0} 0xc00031e690 0xc00b507b00 0x4913e0 hortbot file:///home/jake/zikaeroh/hortbot/hortbot 0xc0017c04d0 {13793292767223941975 34751330857 0x12996a0} map[] map[file:///home/jake/.cache/go-build/06/060a1917760e21f5242a0d055e230c6c3ea1aaa29909bbf1f962eba51505a493-d:0xc000505940 file:///home/jake/.cache/go-build/08/0811deb19de70704eba1b279cdb5f3522a0beaa5999045c1da8bdc3eaa43e1d1-d:0xc000165e40 file:///home/jake/.cache/go-build/0f/0f535df00baf85a78d752286dc05a6045d11a518193316b476bd18cd0c19774f-d:0xc000082000 file:///home/jake/.cache/go-build/15/15f8dbf930cd33f7c8ed5a4bf4519d4379f2473e166bb9713bec1097f809a316-d:0xc000658240 file:///home/jake/.cache/go-build/1d/1d2d016717473279731bacbf6cc41be99d10bc1e4d0068b92538b66dd002a6c6-d:0xc000592300 file:///home/jake/.cache/go-build/23/234880deda302e7a06442cd78b4a68ad7d31ee07b36157701430564e0fcaedb5-d:0xc0002c2400 file:///home/jake/.cache/go-build/29/2927d5ef7c163fbc2152a3a551527d1fc83feb2b41196b81292d7c7960bf02c0-d:0xc0002c2300 file:///home/jake/.cache/go-build/2a/2a24b2da96f8c34b71811cbd8872b7cafd9ac21da00dbdccc2d75b5db90ade35-d:0xc000505c40 file:///home/jake/.cache/go-build/2b/2b5c18117df0e3efc79d5d515546182622744de4735c10747ffea843f80f7ae2-d:0xc000165c80 file:///home/jake/.cache/go-build/2e/2efd9496a7674857f1a8b23fd391bfb90838c10cdb70b744641f1b7ba5c10c7c-d:0xc000504300 file:///home/jake/.cache/go-build/32/32df16d3e210a510043f013176b3cacc4d1827b30e1c4020bb976108e5f7981b-d:0xc000504000 file:///home/jake/.cache/go-build/3f/3fefbe12098cf98dfeb9a520c67a52cf351c96f807779059bb0547387396c20f-d:0xc000593e00 file:///home/jake/.cache/go-build/44/449e1a355fe51b9dfb7ef5c3f6feaa64c0226d927c3b2eb0ee9995a3fd7881ce-d:0xc000374940 file:///home/jake/.cache/go-build/46/4649e8947eb0d533542d956be7161f6f877ad72d7459d195feb34465bb2f510b-d:0xc0005054c0 file:///home/jake/.cache/go-build/47/479319ad1cc8f73778af99b9f17fc38d7303d652de7daf0a56b5bdf0c33f7e3b-d:0xc000431c00 file:///home/jake/.cache/go-build/4b/4bc3b0a46c3ce3efd6e97c3f3018eddc25a82de370338db6d93fdfe0fab51785-d:0xc000b1c680 file:///home/jake/.cache/go-build/5c/5ceeb704b7af3e61fa406f98ff2f6130a6e7afda5ab3f7d1dea6074794d1af47-d:0xc0002c2200 file:///home/jake/.cache/go-build/62/626d98d156da6b7537e76de846df9f00bab8e27106bf3cfb4cfe65e7a7ae7b24-d:0xc000165ac0 file:///home/jake/.cache/go-build/68/684f8fac0ae002d50a30fc6444e25b3fc30e6aec98bea779526680fb75f52e89-d:0xc000b1c300 file:///home/jake/.cache/go-build/68/68d348dd661af4c617f78d1806c73c86ae4bcb6e11d98705c5d016e808bd55f2-d:0xc0002c2600 file:///home/jake/.cache/go-build/72/729ecc894a1bf98486976c6e3b82f7ca6206ca3494be1b1b012a4175df9092d0-d:0xc0004a2000 file:///home/jake/.cache/go-build/84/844cd46d79b2edb56cad61822f5d5c8544d92aa299dc97d5a0db5807ae65615b-d:0xc000593300 file:///home/jake/.cache/go-build/92/92db4499692a421e5d3f96ddade72d83ea7748a044740d6ab66116059d70cf9d-d:0xc0002c2500 file:///home/jake/.cache/go-build/99/9942599c62884849cc08d6b67915ef27e1b0595282adf33009b62c840ae24f3c-d:0xc0004a3480 file:///home/jake/.cache/go-build/99/996a7ea007c669f5589857dbfcb7d2b9b20672b5f1bc179574e0835dd12b8597-d:0xc000504600 file:///home/jake/.cache/go-build/99/9986c41f947951d7d0d4a6633cf55b9df93c87e2c073ebd1309c772a480de689-d:0xc000b1c4c0 file:///home/jake/.cache/go-build/9e/9e8846ac4cf1765248455e0ca27336d65a4cf5f7bc96a3db2b6a26998327f782-d:0xc0004a2300 file:///home/jake/.cache/go-build/a8/a80d214598d924d91af3a36ffcde1b47e2be0601d6086d903fcdb63031bd5212-d:0xc000374ec0 file:///home/jake/.cache/go-build/ae/ae1b40cd21fcf3b25ab77bc19939a8f02c31b2d72e869418b9bfd0ea2e828c28-d:0xc0004a3d00 file:///home/jake/.cache/go-build/ae/ae7f518dca0f877b8264213f1d3e6c2173fa941e53c3314bf90bbb98240b2505-d:0xc000592f80 file:///home/jake/.cache/go-build/bd/bd0c611ffef50c2eb9710ace88ed62d6555c9ef3ad15f4da7a8bdb9418c12bc9-d:0xc0001658c0 file:///home/jake/.cache/go-build/e1/e1f3241e79f270a8094a97e6bd572e093a0cb075c72482b5e8a692e6181c3e53-d:0xc000593700 file:///home/jake/.cache/go-build/e5/e5fa3bfd21a0bc296f3802dc776f1143db52cd157663ec5d747386cb363ce78c-d:0xc000593ac0 file:///home/jake/.cache/go-build/e7/e74659b1e3ced26c53bfbf3d2b73edb98d9c0eee1331ec7e43501c6a273b7b01-d:0xc000592c80 file:///home/jake/.cache/go-build/ec/ecb76cb6c3068500c10f36ee03e8be1fb25c5d9d1479158e407ec218a4bce61a-d:0xc000165700 file:///home/jake/.cache/go-build/ed/ed3164eec202a876f51e771279b45a177324dae4c4a1b80282fef8d07e5f86d0-d:0xc000375a00 file:///home/jake/.cache/go-build/f7/f7cb8f249ec2fa90c8b83d6429f1003d0da18267f018b99fc8ab98aaa4560093-d:0xc000505f80 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/exporter/jaeger@v0.2.0/agent.go:0xc00075bb40 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/exporter/jaeger@v0.2.0/jaeger.go:0xc00075bc40 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/dbstats_go1.11.go:0xc0000e7cc0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/driver.go:0xc0000e7dc0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/driver_go1.10.go:0xc0000e7ec0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/observability.go:0xc0000e7fc0 file:///home/jake/go/pkg/mod/contrib.go.opencensus.io/integrations/ocsql@v0.1.4/options.go:0xc0001520c0 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/cache.go:0xc000359240 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/comm.go:0xc000359340 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/common.go:0xc000359440 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/doc.go:0xc000359580 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/tag.go:0xc000359680 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/track.go:0xc000359780 file:///home/jake/go/pkg/mod/github.com/!kovensky/go-lastfm@v0.0.0-20160622014344-f0f9315dd59a/user.go:0xc000359880 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/attributes.go:0xc0004fe840 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/gotty.go:0xc0004fe940 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/parser.go:0xc0004fea40 file:///home/jake/go/pkg/mod/github.com/!nvveen/!gotty@v0.0.0-20120604004816-cd527374f1e5/types.go:0xc0004feb40 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/array.go:0xc000506580 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/doc.go:0xc0005066c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/expand.go:0xc0005067c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/filter.go:0xc0005068c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/iteration.go:0xc0005069c0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/manipulation.go:0xc000506ac0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/property.go:0xc000506bc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/query.go:0xc000506cc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/traversal.go:0xc000506dc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/type.go:0xc000506ec0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/goquery@v1.5.0/utilities.go:0xc000506fc0 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/purell@v1.1.1/purell.go:0xc00053cd40 file:///home/jake/go/pkg/mod/github.com/!puerkito!bio/urlesc@v0.0.0-20170810143723-de5bf2ad4578/urlesc.go:0xc00053ce40 file:///home/jake/go/pkg/mod/github.com/alicebob/gopher-json@v0.0.0-20180125190556-5a6b3ba71ee6/doc.go:0xc000871440 file:///home/jake/go/pkg/mod/github.com/alicebob/gopher-json@v0.0.0-20180125190556-5a6b3ba71ee6/json.go:0xc000871540 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/check.go:0xc000ca8d40 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_connection.go:0xc00053d440 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_generic.go:0xc0005834c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_geo.go:0xc0005c9880 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_hash.go:0xc0008701c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_list.go:0xc0008702c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_pubsub.go:0xc0008703c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_scripting.go:0xc0008704c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_server.go:0xc0008705c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_set.go:0xc0008706c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_sorted_set.go:0xc0008707c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_string.go:0xc0008708c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/cmd_transactions.go:0xc0008709c0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/db.go:0xc000870ac0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/direct.go:0xc000870bc0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/geo.go:0xc000870cc0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/geohash/base32.go:0xc000889840 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/geohash/geohash.go:0xc000889940 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/keys.go:0xc000870dc0 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/lua.go:0xc000870f00 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/miniredis.go:0xc000871000 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/pubsub.go:0xc000871100 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/redis.go:0xc000871200 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/server/proto.go:0xc000889a80 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/server/server.go:0xc000889b80 file:///home/jake/go/pkg/mod/github.com/alicebob/miniredis/v2@v2.10.1/sorted_set.go:0xc000871340 file:///home/jake/go/pkg/mod/github.com/andybalholm/cascadia@v1.0.0/parser.go:0xc0005070c0 file:///home/jake/go/pkg/mod/github.com/andybalholm/cascadia@v1.0.0/selector.go:0xc0005071c0 file:///home/jake/go/pkg/mod/github.com/araddon/dateparse@v0.0.0-20190622164848-0fb0a474d195/parseany.go:0xc000638940 file:///home/jake/go/pkg/mod/github.com/bmatcuk/doublestar@v1.1.5/doublestar.go:0xc000583500 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/backoff.go:0xc000369740 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/context.go:0xc000369840 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/exponential.go:0xc000369940 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/retry.go:0xc000369a40 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/ticker.go:0xc000369b40 file:///home/jake/go/pkg/mod/github.com/cenkalti/backoff/v3@v3.0.0/tries.go:0xc000369c40 file:///home/jake/go/pkg/mod/github.com/containerd/continuity@v0.0.0-20190827140505-75bee3e2ccb6/pathdriver/path_driver.go:0xc0004c0f80 file:///home/jake/go/pkg/mod/github.com/docker/go-connections@v0.4.0/nat/nat.go:0xc000401040 file:///home/jake/go/pkg/mod/github.com/docker/go-connections@v0.4.0/nat/parse.go:0xc000401140 file:///home/jake/go/pkg/mod/github.com/docker/go-connections@v0.4.0/nat/sort.go:0xc000401240 file:///home/jake/go/pkg/mod/github.com/docker/go-units@v0.4.0/duration.go:0xc0003b8f40 file:///home/jake/go/pkg/mod/github.com/docker/go-units@v0.4.0/size.go:0xc0003b9040 file:///home/jake/go/pkg/mod/github.com/docker/go-units@v0.4.0/ulimit.go:0xc0003b9140 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/big.go:0xc0007c4280 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/bigbytes.go:0xc0007c4380 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/bytes.go:0xc0007c4480 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/comma.go:0xc0007c45c0 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/commaf.go:0xc0007c46c0 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/ftoa.go:0xc0007c47c0 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/humanize.go:0xc0007c4900 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/number.go:0xc0007c4a00 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/ordinals.go:0xc0007c4b00 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/si.go:0xc0007c4c00 file:///home/jake/go/pkg/mod/github.com/dustin/go-humanize@v1.0.0/times.go:0xc0007c4d00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/big.go:0xc0003b1a00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/big_ctx.go:0xc0003b1b40 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/context.go:0xc0003b1c40 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/decomposer.go:0xc0003b1d80 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/doc.go:0xc0003b1e80 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/format.go:0xc0003b1f80 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/format_string.go:0xc0001f60c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/abs.go:0xc0001f6800 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/arith.go:0xc0001f6900 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/arith_1_12.go:0xc0001f6a00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/intlen.go:0xc0001f6b00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/arith/pow.go:0xc0001f6c00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/c/const.go:0xc0001f6d00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/internal/c/const64.go:0xc0001f6e00 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/operatingmode_string.go:0xc0001f61c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/payload_string.go:0xc0001f62c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/roundingmode_string.go:0xc0001f63c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/scan.go:0xc0001f64c0 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/util.go:0xc0001f6600 file:///home/jake/go/pkg/mod/github.com/ericlagergren/decimal@v0.0.0-20191018222636-98d6b4cb4b5e/zdebug0.go:0xc0001f6700 file:///home/jake/go/pkg/mod/github.com/felixge/httpsnoop@v1.0.1/capture_metrics.go:0xc0005c8b40 file:///home/jake/go/pkg/mod/github.com/felixge/httpsnoop@v1.0.1/docs.go:0xc0005c8c40 file:///home/jake/go/pkg/mod/github.com/felixge/httpsnoop@v1.0.1/wrap_generated_gteq_1.8.go:0xc0005c8d40 file:///home/jake/go/pkg/mod/github.com/fortytw2/leaktest@v1.3.0/leaktest.go:0xc0003746c0 file:///home/jake/go/pkg/mod/github.com/friendsofgo/errors@v0.9.2/errors.go:0xc0004d4fc0 file:///home/jake/go/pkg/mod/github.com/friendsofgo/errors@v0.9.2/stack.go:0xc0004d50c0 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/chain.go:0xc0007c5d40 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/chi.go:0xc0007c5e40 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/context.go:0xc0007c5f40 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/compress.go:0xc0007e4280 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/content_charset.go:0xc0007e4380 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/content_type.go:0xc0007e4480 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/get_head.go:0xc0007e4580 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/heartbeat.go:0xc0007e4680 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/logger.go:0xc0007e4780 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/middleware.go:0xc0007e4880 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/nocache.go:0xc0007e4980 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/profiler.go:0xc0007e4a80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/realip.go:0xc0007e4b80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/recoverer.go:0xc0007e4c80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/request_id.go:0xc0007e4d80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/strip.go:0xc0007e4e80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/terminal.go:0xc0007e4f80 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/throttle.go:0xc0007e5080 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/timeout.go:0xc0007e5180 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/url_format.go:0xc0007e5280 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/value.go:0xc0007e5380 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/middleware/wrap_writer.go:0xc0007e5480 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/mux.go:0xc0007e4040 file:///home/jake/go/pkg/mod/github.com/go-chi/chi@v4.0.2+incompatible/tree.go:0xc0007e4140 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/cluster.go:0xc0002a8c80 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/cluster_commands.go:0xc0002a8d80 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/command.go:0xc0002a8e80 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/commands.go:0xc0002a8fc0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/doc.go:0xc0002a90c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/error.go:0xc0002a91c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/consistenthash/consistenthash.go:0xc000358500 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/hashtag/hashtag.go:0xc000358640 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/internal.go:0xc0002a9e00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/log.go:0xc0002a9f40 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/once.go:0xc000358040 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/conn.go:0xc0003587c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/pool.go:0xc0003588c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/pool_single.go:0xc000358a00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/pool/pool_sticky.go:0xc000358b00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/proto/reader.go:0xc000358c00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/proto/scan.go:0xc000358d00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/proto/writer.go:0xc000358e00 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/util.go:0xc000358140 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/util/strconv.go:0xc000358280 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/internal/util/unsafe.go:0xc000358380 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/iterator.go:0xc0002a92c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/options.go:0xc0002a93c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/pipeline.go:0xc0002a94c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/pubsub.go:0xc0002a95c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/redis.go:0xc0002a96c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/result.go:0xc0002a97c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/ring.go:0xc0002a98c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/script.go:0xc0002a99c0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/sentinel.go:0xc0002a9ac0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/tx.go:0xc0002a9bc0 file:///home/jake/go/pkg/mod/github.com/go-redis/redis/v7@v7.0.0-beta.4/universal.go:0xc0002a9cc0 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/auth.go:0xc0002c3a40 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/buffer.go:0xc0002c3b40 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/collations.go:0xc0002c3c80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/connection.go:0xc0002c3d80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/connection_go18.go:0xc0002c3e80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/const.go:0xc0002c3f80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/driver.go:0xc000368080 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/dsn.go:0xc000368180 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/errors.go:0xc000368280 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/fields.go:0xc000368380 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/infile.go:0xc000368480 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/packets.go:0xc000368580 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/result.go:0xc000368680 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/rows.go:0xc000368780 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/statement.go:0xc000368880 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/transaction.go:0xc000368980 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/utils.go:0xc000368a80 file:///home/jake/go/pkg/mod/github.com/go-sql-driver/mysql@v1.4.1/utils_go18.go:0xc000368b80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/acronyms.go:0xc000638a80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/camelize.go:0xc000638b80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/capitalize.go:0xc000638c80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/custom_data.go:0xc000638d80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/dasherize.go:0xc000638e80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/flect.go:0xc000638f80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/humanize.go:0xc000639080 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/ident.go:0xc000639180 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/lower_upper.go:0xc000639280 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/ordinalize.go:0xc000639380 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/pascalize.go:0xc000639480 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/plural_rules.go:0xc000639580 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/pluralize.go:0xc000639680 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/rule.go:0xc000639780 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/singular_rules.go:0xc000639880 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/singularize.go:0xc000639980 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/titleize.go:0xc000639a80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/underscore.go:0xc000639b80 file:///home/jake/go/pkg/mod/github.com/gobuffalo/flect@v0.1.6/version.go:0xc000639c80 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/codec.go:0xc0008b0640 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/generator.go:0xc0008b0880 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/sql.go:0xc0008b0a80 file:///home/jake/go/pkg/mod/github.com/gofrs/uuid@v3.2.0+incompatible/uuid.go:0xc0008b0c00 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/driver.go:0xc0001f9d80 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/error.go:0xc0001f9ec0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/postgres/postgres.go:0xc00027cdc0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/database/util.go:0xc0001f9fc0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/internal/url/url.go:0xc00027c0c0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/log.go:0xc0001f9980 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/migrate.go:0xc0001f9a80 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/migration.go:0xc0001f9b80 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/driver.go:0xc00027c280 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/go_bindata/go-bindata.go:0xc0002c27c0 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/migration.go:0xc00027c380 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/source/parse.go:0xc00027c480 file:///home/jake/go/pkg/mod/github.com/golang-migrate/migrate/v4@v4.7.0/util.go:0xc0001f9c80 file:///home/jake/go/pkg/mod/github.com/golang/groupcache@v0.0.0-20190702054246-869f871628b6/lru/lru.go:0xc000ca9880 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/decode.go:0xc000d26e40 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/decode_amd64.go:0xc000d26f40 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/encode.go:0xc000ce2f80 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/encode_amd64.go:0xc000ce30c0 file:///home/jake/go/pkg/mod/github.com/golang/snappy@v0.0.1/snappy.go:0xc000ce3640 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/commandinfo.go:0xc000889d00 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/conn.go:0xc000889e00 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/doc.go:0xc000889f00 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/go18.go:0xc0000e4000 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/log.go:0xc0000e4100 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/pool.go:0xc0000e4200 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/pubsub.go:0xc0000e4300 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/redis.go:0xc0000e4440 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/reply.go:0xc0000e4540 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/scan.go:0xc0000e4640 file:///home/jake/go/pkg/mod/github.com/gomodule/redigo@v1.7.1-0.20190322064113-39e2c31b7ca3/redis/script.go:0xc0000e4740 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/equate.go:0xc000297740 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/ignore.go:0xc000297840 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/sort.go:0xc000297940 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/struct_filter.go:0xc000297a40 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/cmpopts/xform.go:0xc000297b40 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/compare.go:0xc0000e5080 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/export_unsafe.go:0xc0000e51c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/diff/debug_disable.go:0xc0000e5ac0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/diff/diff.go:0xc0000e5bc0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/flags/flags.go:0xc0000e5d00 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/flags/toolchain_recent.go:0xc0000e5e40 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/function/func.go:0xc0000e5f80 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/value/pointer_unsafe.go:0xc0001b8100 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/value/sort.go:0xc0001b8200 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/internal/value/zero.go:0xc0001b8300 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/options.go:0xc0000e52c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/path.go:0xc0000e53c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report.go:0xc0000e54c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_compare.go:0xc0000e55c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_reflect.go:0xc0000e56c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_slices.go:0xc0000e57c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_text.go:0xc0000e58c0 file:///home/jake/go/pkg/mod/github.com/google/go-cmp@v0.3.1/cmp/report_value.go:0xc0000e59c0 file:///home/jake/go/pkg/mod/github.com/gorilla/securecookie@v1.1.1/doc.go:0xc000822440 file:///home/jake/go/pkg/mod/github.com/gorilla/securecookie@v1.1.1/securecookie.go:0xc000822540 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/cookie_go111.go:0xc0007e5cc0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/doc.go:0xc0007e5dc0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/lex.go:0xc0007e5ec0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/options_go111.go:0xc0007e5fc0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/sessions.go:0xc0008220c0 file:///home/jake/go/pkg/mod/github.com/gorilla/sessions@v1.2.0/store.go:0xc0008221c0 file:///home/jake/go/pkg/mod/github.com/goware/urlx@v0.3.1/urlx.go:0xc00053cc40 file:///home/jake/go/pkg/mod/github.com/hako/durafmt@v0.0.0-20191009132224-3f39dc1ed9f4/durafmt.go:0xc000639e00 file:///home/jake/go/pkg/mod/github.com/hashicorp/errwrap@v1.0.0/errwrap.go:0xc00027cc00 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/append.go:0xc00027c5c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/flatten.go:0xc00027c6c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/format.go:0xc00027c7c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/multierror.go:0xc00027c8c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/prefix.go:0xc00027c9c0 file:///home/jake/go/pkg/mod/github.com/hashicorp/go-multierror@v1.0.0/sort.go:0xc00027cac0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/base_conn.go:0xc00053b3c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/conn.go:0xc00053b4c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/ctcp.go:0xc00053b5c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/helpers.go:0xc00053b6c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/irc.go:0xc00053b7c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/message.go:0xc00053b8c0 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/message_encode.go:0xc00053ba00 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/message_parse.go:0xc00053bb00 file:///home/jake/go/pkg/mod/github.com/jakebailey/irc@v0.0.0-20190904051515-2d11e69506b0/parse_error.go:0xc00053bc00 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/doc.go:0xc0004a3880 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/env.go:0xc0004a3980 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/response.go:0xc0004a3a80 file:///home/jake/go/pkg/mod/github.com/jarcoal/httpmock@v1.0.4/transport.go:0xc0004a3b80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/arg.go:0xc000b1db80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/closest.go:0xc000b1dd00 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/command.go:0xc000b1de80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/completion.go:0xc000b1df80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/convert.go:0xc0003189c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/error.go:0xc000318dc0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/flags.go:0xc000319000 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/group.go:0xc000319180 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/help.go:0xc000319300 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/ini.go:0xc000319540 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/man.go:0xc0003198c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/multitag.go:0xc000319a40 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/option.go:0xc000319d80 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/optstyle_other.go:0xc00040a040 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/parser.go:0xc00040a1c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/termsize.go:0xc00040a2c0 file:///home/jake/go/pkg/mod/github.com/jessevdk/go-flags@v1.4.1-0.20181221193153-c0795c8afcf4/tiocgwinsz_linux.go:0xc00040a4c0 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/bind.go:0xc000368d40 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/doc.go:0xc000368e40 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/named.go:0xc000368f40 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/named_context.go:0xc000369040 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/reflectx/reflect.go:0xc000369340 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/sqlx.go:0xc000369140 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/sqlx_context.go:0xc000369240 file:///home/jake/go/pkg/mod/github.com/jmoiron/sqlx@v1.2.0/types/types.go:0xc000369500 file:///home/jake/go/pkg/mod/github.com/joho/godotenv@v1.3.0/godotenv.go:0xc00040a700 file:///home/jake/go/pkg/mod/github.com/leononame/clock@v0.1.6/clock.go:0xc00053bd40 file:///home/jake/go/pkg/mod/github.com/leononame/clock@v0.1.6/ticker.go:0xc00053be40 file:///home/jake/go/pkg/mod/github.com/leononame/clock@v0.1.6/timer.go:0xc00053bf40 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/array.go:0xc00027cec0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/buf.go:0xc00027cfc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/conn.go:0xc00027d0c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/conn_go18.go:0xc00027d1c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/connector.go:0xc00027d2c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/copy.go:0xc00027d3c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/doc.go:0xc00027d4c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/encode.go:0xc00027d5c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/error.go:0xc00027d6c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/notify.go:0xc00027d7c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/oid/doc.go:0xc0001f6fc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/oid/types.go:0xc0001f70c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/rows.go:0xc00027d8c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/scram/scram.go:0xc00027dec0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/ssl.go:0xc00027d9c0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/ssl_permissions.go:0xc00027dac0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/url.go:0xc00027dbc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/user_posix.go:0xc00027dcc0 file:///home/jake/go/pkg/mod/github.com/lib/pq@v1.2.0/uuid.go:0xc00027ddc0 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/api_request.go:0xc000902940 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/command.go:0xc000d37e80 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/config.go:0xc000d37f80 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/config_flag.go:0xc000d26400 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/conn.go:0xc000d26500 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/consumer.go:0xc000d26640 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/delegates.go:0xc000d26740 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/errors.go:0xc000d26840 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/message.go:0xc000d26940 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/producer.go:0xc000d26a40 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/protocol.go:0xc000d26b40 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/states.go:0xc000d26c40 file:///home/jake/go/pkg/mod/github.com/nsqio/go-nsq@v1.0.7/version.go:0xc000d26d40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/algorithm.go:0xc000426d40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/digest.go:0xc000426e40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/digester.go:0xc000426f40 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/doc.go:0xc000427040 file:///home/jake/go/pkg/mod/github.com/opencontainers/go-digest@v1.0.0-rc1/verifiers.go:0xc000427140 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/annotations.go:0xc000426640 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/config.go:0xc000426740 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/descriptor.go:0xc000426840 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/index.go:0xc000426940 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/layout.go:0xc000426a40 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/manifest.go:0xc000426b40 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/v1/mediatype.go:0xc000426c40 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/version.go:0xc000427280 file:///home/jake/go/pkg/mod/github.com/opencontainers/image-spec@v1.0.1/specs-go/versioned.go:0xc000427380 file:///home/jake/go/pkg/mod/github.com/opencontainers/runc@v1.0.0-rc5/libcontainer/user/lookup.go:0xc00046b540 file:///home/jake/go/pkg/mod/github.com/opencontainers/runc@v1.0.0-rc5/libcontainer/user/lookup_unix.go:0xc00046b680 file:///home/jake/go/pkg/mod/github.com/opencontainers/runc@v1.0.0-rc5/libcontainer/user/user.go:0xc00046b780 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/auth.go:0xc000369dc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/change.go:0xc000369f00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/client.go:0xc0003b8000 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/client_unix.go:0xc0003b8100 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/container.go:0xc0003b8200 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/distribution.go:0xc0003b8300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/env.go:0xc0003b8400 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/event.go:0xc0003b8500 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/exec.go:0xc0003b8600 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/image.go:0xc0003b8700 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/misc.go:0xc0003b8800 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/network.go:0xc0003b8900 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/env.go:0xc0003b9280 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/hosts.go:0xc0003b93c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/hosts_unix.go:0xc0003b94c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/ip.go:0xc0003b95c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/opts.go:0xc0003b96c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/opts_unix.go:0xc0003b97c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/quotedstring.go:0xc0003b98c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/runtime.go:0xc0003b99c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/opts/ulimit.go:0xc0003b9ac0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/archive.go:0xc0004275c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/archive_linux.go:0xc0004276c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/archive_unix.go:0xc0004277c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/changes.go:0xc0004278c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/changes_linux.go:0xc0004279c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/changes_unix.go:0xc000427ac0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/copy.go:0xc000427bc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/copy_unix.go:0xc000427cc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/diff.go:0xc000427dc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/time_linux.go:0xc000427ec0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/whiteouts.go:0xc000427fc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/archive/wrap.go:0xc00046a0c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/fileutils/fileutils.go:0xc00046ad80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/fileutils/fileutils_unix.go:0xc00046ae80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/homedir/homedir_linux.go:0xc0004fe4c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/homedir/homedir_unix.go:0xc0004fe5c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/idtools.go:0xc00046b140 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/idtools_unix.go:0xc00046b240 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/usergroupadd_linux.go:0xc00046b340 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/idtools/utils_unix.go:0xc00046b440 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/buffer.go:0xc0004c1880 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/bytespipe.go:0xc0004c1980 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/fswriters.go:0xc0004c1a80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/readers.go:0xc0004c1b80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/temp_unix.go:0xc0004c1c80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/writeflusher.go:0xc0004c1d80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/ioutils/writers.go:0xc0004c1e80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/jsonmessage/jsonmessage.go:0xc0004fe700 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/flags.go:0xc0004c10c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/flags_linux.go:0xc0004c11c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mount.go:0xc0004c12c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mounter_linux.go:0xc0004c13c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mountinfo.go:0xc0004c14c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/mountinfo_linux.go:0xc0004c15c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/mount/sharedsubtree_linux.go:0xc0004c16c0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/pools/pools.go:0xc0004fe300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/stdcopy/stdcopy.go:0xc0004ff300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/chtimes.go:0xc00046b900 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/chtimes_unix.go:0xc00046ba00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/errors.go:0xc00046bb00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/exitcode.go:0xc00046bc00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/filesys.go:0xc00046bd00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/init.go:0xc00046be00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/init_unix.go:0xc00046bf00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/lcow.go:0xc0004c0000 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/lcow_unix.go:0xc0004c0100 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/lstat_unix.go:0xc0004c0200 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/meminfo.go:0xc0004c0300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/meminfo_linux.go:0xc0004c0400 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/mknod.go:0xc0004c0500 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/path.go:0xc0004c0600 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/process_unix.go:0xc0004c0700 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/rm.go:0xc0004c0800 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/stat_linux.go:0xc0004c0900 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/stat_unix.go:0xc0004c0a00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/syscall_unix.go:0xc0004c0b40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/umask.go:0xc0004c0c80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/utimes_linux.go:0xc0004c0d80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/system/xattrs_linux.go:0xc0004c0e80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/ascii.go:0xc0004fec80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/proxy.go:0xc0004fed80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/tc.go:0xc0004fee80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/term.go:0xc0004fef80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/termios_linux.go:0xc0004ff080 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/pkg/term/winsize.go:0xc0004ff180 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/plugin.go:0xc0003b8a00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/signal.go:0xc0003b8b00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/tar.go:0xc0003b8c40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/tls.go:0xc0003b8d40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/auth.go:0xc0003b9bc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/blkiodev/blkio.go:0xc000401c80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/client.go:0xc0003b9cc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/configs.go:0xc0003b9e00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/config.go:0xc000401380 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_changes.go:0xc000401480 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_create.go:0xc000401580 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_top.go:0xc000401680 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_update.go:0xc000401780 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/container_wait.go:0xc000401880 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/host_config.go:0xc000401980 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/hostconfig_unix.go:0xc000401a80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/container/waitcondition.go:0xc000401b80 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/error_response.go:0xc0003b9f00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/filters/parse.go:0xc000426080 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/graph_driver_data.go:0xc000400000 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/id_response.go:0xc000400100 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/image_delete_response_item.go:0xc000400200 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/image_summary.go:0xc000400300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/mount/mount.go:0xc000401dc0 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/network/network.go:0xc000426300 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin.go:0xc000400400 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_device.go:0xc000400540 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_env.go:0xc000400640 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_interface_type.go:0xc000400740 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_mount.go:0xc000400840 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/plugin_responses.go:0xc000400940 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/port.go:0xc000400a40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/registry/authenticate.go:0xc000426440 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/registry/registry.go:0xc000426540 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/seccomp.go:0xc000400b40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/service_update_response.go:0xc000400c40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/stats.go:0xc000400d40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/strslice/strslice.go:0xc000401f00 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/types.go:0xc000400e40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/versions/compare.go:0xc000426180 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/types/volume.go:0xc000400f40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/docker/volume.go:0xc0003b8e40 file:///home/jake/go/pkg/mod/github.com/ory/dockertest/v3@v3.5.2/dockertest.go:0xc000369640 file:///home/jake/go/pkg/mod/github.com/patrickmn/go-cache@v2.1.0+incompatible/cache.go:0xc0003cf700 file:///home/jake/go/pkg/mod/github.com/patrickmn/go-cache@v2.1.0+incompatible/sharded.go:0xc0003cf800 file:///home/jake/go/pkg/mod/github.com/pkg/errors@v0.8.1/errors.go:0xc0002c3300 file:///home/jake/go/pkg/mod/github.com/pkg/errors@v0.8.1/stack.go:0xc0002c3400 file:///home/jake/go/pkg/mod/github.com/pmylund/go-cache@v2.1.0+incompatible/cache.go:0xc0003ce7c0 file:///home/jake/go/pkg/mod/github.com/pmylund/go-cache@v2.1.0+incompatible/sharded.go:0xc0003ce8c0 file:///home/jake/go/pkg/mod/github.com/posener/ctxutil@v1.0.0/doc.go:0xc00040ad00 file:///home/jake/go/pkg/mod/github.com/posener/ctxutil@v1.0.0/signal.go:0xc00040ae00 file:///home/jake/go/pkg/mod/github.com/posener/ctxutil@v1.0.0/values.go:0xc00040af00 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/chain.go:0xc000583bc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/constantdelay.go:0xc000583cc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/cron.go:0xc000583dc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/doc.go:0xc000583ec0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/logger.go:0xc000583fc0 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/option.go:0xc0005f8100 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/parser.go:0xc000638000 file:///home/jake/go/pkg/mod/github.com/robfig/cron/v3@v3.0.0/spec.go:0xc000638140 file:///home/jake/go/pkg/mod/github.com/rs/xid@v1.2.1/hostid_linux.go:0xc00075ac40 file:///home/jake/go/pkg/mod/github.com/rs/xid@v1.2.1/id.go:0xc00075ad40 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/format.go:0xc0003cff80 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/format_list.go:0xc000506080 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/signature.go:0xc000506180 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/thumbnail.go:0xc000506280 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/utils.go:0xc000506380 file:///home/jake/go/pkg/mod/github.com/rylio/ytdl@v0.5.2-0.20190315183053-1f14ef2e151a/video_info.go:0xc000506480 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/alt_exit.go:0xc000528000 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/doc.go:0xc000528100 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/entry.go:0xc000528200 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/exported.go:0xc000528300 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/formatter.go:0xc000528400 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/hooks.go:0xc000528500 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/json_formatter.go:0xc000528600 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/logger.go:0xc000528700 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/logrus.go:0xc000528800 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/terminal_check_notappengine.go:0xc000528900 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/terminal_check_unix.go:0xc000528a00 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/text_formatter.go:0xc000528b00 file:///home/jake/go/pkg/mod/github.com/sirupsen/logrus@v1.4.2/writer.go:0xc000528c00 file:///home/jake/go/pkg/mod/github.com/spf13/cast@v1.3.0/cast.go:0xc0009be540 file:///home/jake/go/pkg/mod/github.com/spf13/cast@v1.3.0/caste.go:0xc0009be640 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/agent/agent.go:0xc0000e6f80 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/agent/constants.go:0xc0000e7080 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/agent/ttypes.go:0xc0000e7180 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/jaeger/agent.go:0xc0000e7280 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/jaeger/constants.go:0xc0000e73c0 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/jaeger/ttypes.go:0xc0000e7500 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/zipkincore/constants.go:0xc0000e7640 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/zipkincore/ttypes.go:0xc0000e7740 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift-gen/zipkincore/zipkincollector.go:0xc0000e7880 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/application_exception.go:0xc00075bd40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/binary_protocol.go:0xc00075be40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/compact_protocol.go:0xc00075bf40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/exception.go:0xc0000e6040 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/memory_buffer.go:0xc0000e6140 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/messagetype.go:0xc0000e6240 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/numeric.go:0xc0000e6340 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/processor.go:0xc0000e6440 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/protocol.go:0xc0000e6540 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/protocol_exception.go:0xc0000e6640 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/protocol_factory.go:0xc0000e6740 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/rich_transport.go:0xc0000e6840 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/serializer.go:0xc0000e6940 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/simple_json_protocol.go:0xc0000e6a40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/transport.go:0xc0000e6b40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/transport_exception.go:0xc0000e6c40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/transport_factory.go:0xc0000e6d40 file:///home/jake/go/pkg/mod/github.com/uber/jaeger-client-go@v2.15.0+incompatible/thrift/type.go:0xc0000e6e40 file:///home/jake/go/pkg/mod/github.com/valyala/bytebufferpool@v1.0.0/bytebuffer.go:0xc0007c5640 file:///home/jake/go/pkg/mod/github.com/valyala/bytebufferpool@v1.0.0/doc.go:0xc0007c5740 file:///home/jake/go/pkg/mod/github.com/valyala/bytebufferpool@v1.0.0/pool.go:0xc0007c5840 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/bytebuffer.go:0xc0007c4e40 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/doc.go:0xc0007c4f40 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/htmlescapewriter.go:0xc0007c5040 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/jsonstring.go:0xc0007c5140 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/urlencode.go:0xc0007c5240 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/util.go:0xc0007c5340 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/util_noappengine.go:0xc0007c5440 file:///home/jake/go/pkg/mod/github.com/valyala/quicktemplate@v1.4.1/writer.go:0xc0007c5540 file:///home/jake/go/pkg/mod/github.com/volatiletech/inflect@v0.0.0-20170731032912-e7201282ae8d/inflect.go:0xc0008b1200 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/bool.go:0xc0004d5200 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/byte.go:0xc0004d5300 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/bytes.go:0xc0004d5400 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/convert/convert.go:0xc0008b0140 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/float32.go:0xc0004d5500 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/float64.go:0xc0004d5600 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int.go:0xc0004d5700 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int16.go:0xc0004d5800 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int32.go:0xc0004d5900 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int64.go:0xc0004d5a00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/int8.go:0xc0004d5b00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/json.go:0xc0004d5c00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/string.go:0xc0004d5d00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/time.go:0xc0004d5e00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint.go:0xc0004d5f00 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint16.go:0xc00050c000 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint32.go:0xc00050c2c0 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint64.go:0xc00050c640 file:///home/jake/go/pkg/mod/github.com/volatiletech/null@v8.0.0+incompatible/uint8.go:0xc0008b0000 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/columns.go:0xc0008b1400 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/context_keys.go:0xc0008b1500 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/db.go:0xc0008b1600 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/debug.go:0xc0008b1700 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/errors.go:0xc0008b1800 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/global.go:0xc0008b1900 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/boil/hooks.go:0xc0008b1a00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/binary_driver.go:0xc0008b1b40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/column.go:0xc0008b1c40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/config.go:0xc0008b1d40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/driver_main.go:0xc0008b1e40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/interface.go:0xc0008b1f40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/keys.go:0xc0009be040 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/registration.go:0xc0009be140 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/relationships.go:0xc0009be240 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/drivers/table.go:0xc0009be340 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/importers/imports.go:0xc0009be440 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/eager_load.go:0xc0003b0a40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/helpers.go:0xc0003b0b40 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/qm/query_mods.go:0xc0003b1040 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/qmhelper/qmhelper.go:0xc0003b1180 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/query.go:0xc0003b0d00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/query_builders.go:0xc0003b0e00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/queries/reflect.go:0xc0003b0f00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/randomize/random.go:0xc0008b02c0 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/randomize/randomize.go:0xc0008b0480 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/buf_pool.go:0xc0008b0e00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/inflect.go:0xc0008b0f00 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/sets.go:0xc0008b1000 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/strmangle/strmangle.go:0xc0008b1100 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/array.go:0xc0003b1340 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/byte.go:0xc0003b1440 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/decimal.go:0xc0003b1580 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/hstore.go:0xc0003b16c0 file:///home/jake/go/pkg/mod/github.com/volatiletech/sqlboiler@v3.6.1+incompatible/types/json.go:0xc0003b17c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/alloc.go:0xc0008716c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/ast.go:0xc000888f00 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/expr.go:0xc000889000 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/misc.go:0xc000889100 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/stmt.go:0xc000889200 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/ast/token.go:0xc000889300 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/auxlib.go:0xc0008717c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/baselib.go:0xc0008718c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/channellib.go:0xc0008719c0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/compile.go:0xc000871ac0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/config.go:0xc000871bc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/coroutinelib.go:0xc000871cc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/debuglib.go:0xc000871dc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/function.go:0xc000871ec0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/iolib.go:0xc000871fc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/linit.go:0xc000888180 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/loadlib.go:0xc000888280 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/mathlib.go:0xc000888380 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/opcode.go:0xc000888480 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/oslib.go:0xc000888580 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/package.go:0xc000888680 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/parse/lexer.go:0xc000889440 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/parse/parser.go:0xc000889540 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/pm/pm.go:0xc000889680 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/state.go:0xc000888780 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/stringlib.go:0xc000888880 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/table.go:0xc000888980 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/tablelib.go:0xc000888ac0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/utils.go:0xc000888bc0 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/value.go:0xc000888d00 file:///home/jake/go/pkg/mod/github.com/yuin/gopher-lua@v0.0.0-20190206043414-8bfc7677f583/vm.go:0xc000888e00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/internal.go:0xc000ca99c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/sanitize.go:0xc000ca9ac0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/tagencoding/tagencoding.go:0xc0001f8d40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/internal/traceinternals.go:0xc000b36000 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/doc.go:0xc000152800 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/exemplar.go:0xc000152900 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/label.go:0xc000152a00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/metric.go:0xc000152b00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/point.go:0xc000152c00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/type_string.go:0xc000152d00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricdata/unit.go:0xc000152e00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricproducer/manager.go:0xc0001f8e80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/metric/metricproducer/producer.go:0xc0001f8f80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/opencensus.go:0xc000b36600 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/client.go:0xc0005c8e80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/client_stats.go:0xc0005c8f80 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/doc.go:0xc0005c9080 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/propagation/b3/b3.go:0xc0005c9780 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/route.go:0xc0005c9180 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/server.go:0xc0005c9280 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/span_annotating_client_trace.go:0xc0005c9380 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/stats.go:0xc0005c9480 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/trace.go:0xc0005c9580 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/plugin/ochttp/wrapped_body.go:0xc0005c9680 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/resource/resource.go:0xc000152f00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/doc.go:0xc000152200 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/internal/record.go:0xc000153080 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/measure.go:0xc000152300 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/measure_float64.go:0xc000152400 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/measure_int64.go:0xc000152500 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/record.go:0xc000152600 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/units.go:0xc000152700 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/aggregation.go:0xc0001f8440 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/aggregation_data.go:0xc0001f8540 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/collector.go:0xc0001f8640 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/doc.go:0xc0001f8740 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/export.go:0xc0001f8840 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/view.go:0xc0001f8940 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/view_to_metric.go:0xc0001f8a40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/worker.go:0xc0001f8b40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/stats/view/worker_commands.go:0xc0001f8c40 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/context.go:0xc000153180 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/doc.go:0xc000153280 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/key.go:0xc000153380 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/map.go:0xc000153480 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/map_codec.go:0xc0001535c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/metadata.go:0xc0001536c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/profile_19.go:0xc0001537c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/tag/validate.go:0xc0001538c0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/basetypes.go:0xc000ca8bc0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/config.go:0xc000ca8cc0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/doc.go:0xc000ca8e00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/evictedqueue.go:0xc000ca8f00 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/export.go:0xc000ca9000 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/internal/internal.go:0xc000b36900 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/lrumap.go:0xc000ca9100 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/propagation/propagation.go:0xc000b1ccc0 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/sampling.go:0xc000ca9200 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/spanbucket.go:0xc000ca9300 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/spanstore.go:0xc000ca9400 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/status_codes.go:0xc000ca9500 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/trace.go:0xc000ca9600 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/trace_go11.go:0xc000ca9780 file:///home/jake/go/pkg/mod/go.opencensus.io@v0.22.2/trace/tracestate/tracestate.go:0xc000b36d40 file:///home/jake/go/pkg/mod/go.uber.org/atomic@v1.5.0/atomic.go:0xc00048dc00 file:///home/jake/go/pkg/mod/go.uber.org/atomic@v1.5.0/error.go:0xc00048dd00 file:///home/jake/go/pkg/mod/go.uber.org/atomic@v1.5.0/string.go:0xc00048de00 file:///home/jake/go/pkg/mod/go.uber.org/multierr@v1.3.0/error.go:0xc00048df40 file:///home/jake/go/pkg/mod/go.uber.org/multierr@v1.3.0/go113.go:0xc0003e8080 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/array.go:0xc000cbb480 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/buffer/buffer.go:0xc0003e8400 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/buffer/pool.go:0xc0003e8540 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/config.go:0xc000cbb580 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/doc.go:0xc000cbb680 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/encoder.go:0xc000cbb7c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/error.go:0xc000cbb8c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/field.go:0xc000cbb9c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/flag.go:0xc000cbbac0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/global.go:0xc000cbbbc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/global_go112.go:0xc000cbbcc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/http_handler.go:0xc000cbbdc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/internal/bufferpool/bufferpool.go:0xc0003e81c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/internal/color/color.go:0xc0003e9b40 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/internal/exit/exit.go:0xc0003e9d00 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/level.go:0xc000cbbec0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/logger.go:0xc000cbbfc0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/options.go:0xc000ce20c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/sink.go:0xc000ce21c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/stacktrace.go:0xc000ce22c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/sugar.go:0xc000ce23c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/time.go:0xc000ce24c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/writer.go:0xc000ce2600 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/console_encoder.go:0xc0003e87c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/core.go:0xc0003e88c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/doc.go:0xc0003e8a00 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/encoder.go:0xc0003e8b40 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/entry.go:0xc0003e8c80 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/error.go:0xc0003e8d80 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/field.go:0xc0003e8ec0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/hook.go:0xc0003e9080 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/json_encoder.go:0xc0003e9200 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/level.go:0xc0003e9340 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/level_strings.go:0xc0003e9440 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/marshaler.go:0xc0003e9540 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/memory_encoder.go:0xc0003e9640 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/sampler.go:0xc0003e9740 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/tee.go:0xc0003e98c0 file:///home/jake/go/pkg/mod/go.uber.org/zap@v1.12.0/zapcore/write_syncer.go:0xc0003e99c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/context.go:0xc0004c1f80 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/ctxhttp/ctxhttp.go:0xc0002a8080 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/go17.go:0xc0004fe080 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/context/go19.go:0xc0004fe180 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/atom/atom.go:0xc000507d00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/atom/table.go:0xc000507e00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/const.go:0xc0005072c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/doc.go:0xc0005073c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/doctype.go:0xc0005074c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/entity.go:0xc0005075c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/escape.go:0xc0005076c0 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/foreign.go:0xc000507800 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/node.go:0xc000507900 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/parse.go:0xc000507a00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/render.go:0xc000507b00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/html/token.go:0xc000507c00 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/idna10.0.0.go:0xc00053cf80 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/punycode.go:0xc00053d080 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/tables11.0.0.go:0xc00053d180 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/trie.go:0xc00053d280 file:///home/jake/go/pkg/mod/golang.org/x/net@v0.0.0-20191109021931-daa7c04131f5/idna/trieval.go:0xc00053d3c0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/clientcredentials/clientcredentials.go:0xc0003cf940 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/doc.go:0xc0001f7c00 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/oauth2.go:0xc0001f7d00 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/token.go:0xc0001f7e00 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/internal/transport.go:0xc0001f7f40 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/oauth2.go:0xc0001f78c0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/token.go:0xc0001f79c0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/transport.go:0xc0001f7ac0 file:///home/jake/go/pkg/mod/golang.org/x/oauth2@v0.0.0-20190604053449-0f29369cfe45/twitch/twitch.go:0xc0003cfa80 file:///home/jake/go/pkg/mod/golang.org/x/sync@v0.0.0-20190911185100-cd5d95a43a6e/errgroup/errgroup.go:0xc0005838c0 file:///home/jake/go/pkg/mod/golang.org/x/sync@v0.0.0-20190911185100-cd5d95a43a6e/semaphore/semaphore.go:0xc0000e7b00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/affinity_linux.go:0xc000528d00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/aliases.go:0xc000528e00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/bluetooth_linux.go:0xc000528f00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/constants.go:0xc000529000 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/dev_linux.go:0xc000529100 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/dirent.go:0xc000529200 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/endian_little.go:0xc000529300 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/env_unix.go:0xc000529400 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/fcntl.go:0xc000529500 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/ioctl.go:0xc000529600 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/pagesize_unix.go:0xc000529700 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/race0.go:0xc000529800 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/readdirent_getdents.go:0xc000529900 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/sockcmsg_linux.go:0xc000529a00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/sockcmsg_unix.go:0xc000529b00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/str.go:0xc000529c00 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall.go:0xc000529d40 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux.go:0xc000529e40 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux_amd64.go:0xc000529f40 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux_amd64_gc.go:0xc00053c040 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_linux_gc.go:0xc00053c140 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_unix.go:0xc00053c240 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/syscall_unix_gc.go:0xc00053c340 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/timestruct.go:0xc00053c440 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zerrors_linux_amd64.go:0xc00053c540 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zptrace386_linux.go:0xc00053c640 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zsyscall_linux_amd64.go:0xc00053c740 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/zsysnum_linux_amd64.go:0xc00053c840 file:///home/jake/go/pkg/mod/golang.org/x/sys@v0.0.0-20191005200804-aed5e4c7ecf9/unix/ztypes_linux_amd64.go:0xc00053c940 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/secure/bidirule/bidirule.go:0xc00053d500 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/secure/bidirule/bidirule10.0.0.go:0xc00053d600 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/transform/transform.go:0xc00053d740 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/bidi.go:0xc00053d900 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/bracket.go:0xc00053da00 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/core.go:0xc00053db00 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/prop.go:0xc00053dc40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/tables11.0.0.go:0xc00053dd40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/bidi/trieval.go:0xc00053de40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/composition.go:0xc00053dfc0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/forminfo.go:0xc0005820c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/input.go:0xc0005821c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/iter.go:0xc0005822c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/normalize.go:0xc0005823c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/readwriter.go:0xc0005824c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/tables11.0.0.go:0xc0005825c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/transform.go:0xc0005826c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/unicode/norm/trie.go:0xc0005827c0 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/kind_string.go:0xc000582940 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/tables11.0.0.go:0xc000582a40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/transform.go:0xc000582b40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/trieval.go:0xc000582c40 file:///home/jake/go/pkg/mod/golang.org/x/text@v0.3.2/width/width.go:0xc000582d40 file:///home/jake/go/pkg/mod/google.golang.org/api@v0.4.0/support/bundler/bundler.go:0xc0000e7a00 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/assert.go:0xc0001b8b00 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/cmp/compare.go:0xc0001b9b80 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/cmp/result.go:0xc0001b9c80 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/assert/result.go:0xc0001b8c00 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/env/env.go:0xc0005926c0 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/difflib/difflib.go:0xc0001b9fc0 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/format/diff.go:0xc0001b9d80 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/format/format.go:0xc0001b9ec0 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/source/defers.go:0xc000296140 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/internal/source/source.go:0xc000296240 file:///home/jake/go/pkg/mod/gotest.tools/v3@v3.0.1-0.20191108185010-2a4992ec05b5/x/subtest/context.go:0xc000592800 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/schemes.go:0xc000582f40 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/tlds.go:0xc000583040 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/tlds_pseudo.go:0xc000583140 file:///home/jake/go/pkg/mod/mvdan.cc/xurls/v2@v2.1.0/xurls.go:0xc000583240 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/birc.go:0xc0004ffe00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq.go:0xc0004ffc00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/breq/breq_test.go:0xc000374d80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/config.go:0xc0004fff00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/config_test.go:0xc0003741c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/connection_test.go:0xc0003742c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/connecton.go:0xc0005c8000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer.go:0xc0005c8100 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/dialer_test.go:0xc0003743c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool.go:0xc0005c8200 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/pool_test.go:0xc0003744c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/birc/shared_test.go:0xc0003745c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/export_test.go:0xc0003752c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/helpers.go:0xc00053a280 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming.go:0xc00053a540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/incoming_test.go:0xc000375400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/message.go:0xc00053ae40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify.go:0xc00053af40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/notify_test.go:0xc000375500 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/publisher.go:0xc00053b040 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message.go:0xc00053b140 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/send_message_test.go:0xc000375600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bnsq/subscriber.go:0xc00053b240 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level.go:0xc00075a080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/access_level_test.go:0xc000430640 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/accesslevel_string.go:0xc0005f82c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/actions.go:0xc0005f83c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/autoreplies.go:0xc0005f84c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/bench_test.go:0xc000430880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot.go:0xc0005f85c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/bot_test.go:0xc000430980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_notifier.go:0xc000823540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_rand.go:0xc000823640 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/botfakes/fake_sender.go:0xc000823740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/apis.go:0xc0000e4900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/clock.go:0xc0000e4a00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/db.go:0xc0000e4b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/fakes.go:0xc0000e4c40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/irc.go:0xc0000e4d40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/script_tester.go:0xc0000e4e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/btest/twitch.go:0xc0000e4f80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/builtin_commands.go:0xc0005f86c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_admin.go:0xc0005f87c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_autoreplies.go:0xc0005f88c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_command.go:0xc0005f89c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_filters.go:0xc0005f8ac0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_fun.go:0xc0005f8bc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_lastfm.go:0xc0005f8cc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_levels.go:0xc0005f8dc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_list.go:0xc0005f8ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_management.go:0xc0005f8fc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_moderation.go:0xc0005f90c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_quote.go:0xc0005f91c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_raffle.go:0xc0005f92c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_random.go:0xc0005f93c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_repeat.go:0xc0005f94c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_schedule.go:0xc0005f95c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_settings.go:0xc0005f96c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_steam.go:0xc0005f97c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_twitch.go:0xc0005f98c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_var.go:0xc0005f99c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/cmd_website.go:0xc0005f9ac0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/correlation.go:0xc0005f9bc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/custom_command.go:0xc0005f9cc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/deps.go:0xc0005f9dc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/export_test.go:0xc000430740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/filters.go:0xc0005f9ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/handle.go:0xc0005f9fc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/helpers.go:0xc000229500 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/interfaces.go:0xc000b94c00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/main_test.go:0xc000430a80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/rdb.go:0xc000638240 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/repeat.go:0xc000638340 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/script_test.go:0xc000430b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/session.go:0xc000638440 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/sessiontype_string.go:0xc000638540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/testcmd_test.go:0xc000430c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/testing.go:0xc000638640 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/user_state.go:0xc000638740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/bot/var.go:0xc000638840 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp.go:0xc00040b540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cbp/cbp_test.go:0xc000431ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/cli.go:0xc000b1d900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/botflags/botargs.go:0xc00075aec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/ircflags/ircargs.go:0xc0005c8540 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/jaegerflags/jaegerargs.go:0xc00075ba40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/nsqflags/nsqargs.go:0xc0001f9180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/redisflags/redisargs.go:0xc0001f94c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/sqlflags/sqlargs.go:0xc0002c2a00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/twitchflags/twitchargs.go:0xc0002c2bc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/flags/webflags/webargs.go:0xc000822a00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go:0xc0002c2d00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/helpers.go:0xc0002c3600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/main.go:0xc0002c3700 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/site_db.go:0xc0002c3800 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confconvert/twitch.go:0xc0002c3900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/confimport/confimport.go:0xc0004ff980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/irc/main.go:0xc0005c8880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/singleproc/singleproc.go:0xc000822c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/web/main.go:0xc000822e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/confimport/confimport.go:0xc0002c3200 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/bindata.go:0xc0001f9600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/esc/esc.go:0xc0001f9700 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations.go:0xc0001f9840 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/migrations/migrations_test.go:0xc0004a21c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/autoreplies.go:0xc00040b6c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/blocked_users.go:0xc00040b880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_queries.go:0xc00040b980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_table_names.go:0xc00040ba80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/boil_types.go:0xc00040bbc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/channels.go:0xc00040bd00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_infos.go:0xc00040be40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/command_lists.go:0xc00040bfc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/custom_commands.go:0xc0004d40c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/psql_upsert.go:0xc0004d41c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/quotes.go:0xc0004d4300 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/repeated_commands.go:0xc0004d4440 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/scheduled_commands.go:0xc0004d4580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/twitch_tokens.go:0xc0004d4780 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/models/variables.go:0xc0004d4880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/channel.go:0xc0001f72c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/modelsx/modelsx.go:0xc0001f73c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot.go:0xc0002a8280 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/bot_test.go:0xc0004a2b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe.go:0xc0002a8380 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/dedupe_test.go:0xc0004a2c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc.go:0xc0002a8480 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/irc_test.go:0xc0004a2d80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys.go:0xc0002a8580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/keys_test.go:0xc0004a2740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool.go:0xc0002a8680 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_bool_test.go:0xc0004a2840 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate.go:0xc0002a8780 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_rate_test.go:0xc0004a2940 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set.go:0xc0002a8880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/op_set_test.go:0xc0004a2a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join.go:0xc0002a8980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/public_join_test.go:0xc0004a2e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/redis.go:0xc0002a8a80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web.go:0xc0002a8b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/db/redis/web_test.go:0xc0004a2f80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife.go:0xc000359000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralife_test.go:0xc0004a3740 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/extralife/extralifefakes/fake_api.go:0xc000823880 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm.go:0xc000359140 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfm_test.go:0xc0004a3ec0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/lastfm/lastfmfakes/fake_api.go:0xc0008239c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam.go:0xc0003cea80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steam_test.go:0xc0005041c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/steam/steamfakes/fake_api.go:0xc000823b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl.go:0xc0003cebc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurl_test.go:0xc0005044c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/tinyurl/tinyurlfakes/fake_api.go:0xc000823c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache.go:0xc0003cee40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/cache_test.go:0xc000504b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel.go:0xc0003cef80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/channel_test.go:0xc000504c00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters.go:0xc0003cf080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/chatters_test.go:0xc000504d00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/fake_twitch_test.go:0xc000504e00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers.go:0xc0003cf180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/helpers_test.go:0xc0005049c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/http.go:0xc0003cf280 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams.go:0xc0003cf380 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/streams_test.go:0xc000504f00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch.go:0xc0003cf480 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitch_test.go:0xc000505000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/twitchfakes/fake_api.go:0xc000823dc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users.go:0xc0003cf580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/twitch/users_test.go:0xc000505100 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban.go:0xc0003cfc00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urban_test.go:0xc000505800 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/urban/urbanfakes/fake_api.go:0xc000823f40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd.go:0xc0003cfd40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcd_test.go:0xc000505b00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/xkcd/xkcdfakes/fake_api.go:0xc000870080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtube.go:0xc0003cfe80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/apis/youtube/youtubefakes/fake_api.go:0xc000888040 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack.go:0xc0002972c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxhack/ctxhack_test.go:0xc000505e40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ctxlog/ctxlog.go:0xc000b956c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx.go:0xc0005837c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/errgroupx/errgroupx_test.go:0xc0005921c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper.go:0xc000297400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/helper_test.go:0xc0005925c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server.go:0xc000297500 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/server_test.go:0xc0005929c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/fakeirc/tls.go:0xc000297600 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks.go:0xc00053cb40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/findlinks/findlinks_test.go:0xc000592e40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx.go:0xc0004ffac0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/ircx/ircx_test.go:0xc000593180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch.go:0xc0005833c0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/linkmatch/linkmatch_test.go:0xc000593580 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x.go:0xc0003ced00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2x_test.go:0xc000593900 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/oauth2x/oauth2xfakes/fake_token_source.go:0xc000297cc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache.go:0xc000583680 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/recache/recache_test.go:0xc000593c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/cron_test.go:0xc000658000 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat.go:0xc000583a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/repeat/repeat_test.go:0xc000658100 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/miniredistest/miniredistest.go:0xc0004fe400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/nsqtest/nsqtest.go:0xc000297e00 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/pgtest/pgtest.go:0xc000297f40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/redistest/redistest.go:0xc000374080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/testutil/testutil.go:0xc000350680 file:///home/jake/zikaeroh/hortbot/hortbot/internal/pkg/twitchx/twitchx.go:0xc0005c8400 file:///home/jake/zikaeroh/hortbot/hortbot/internal/version/version.go:0xc000b1cfc0 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/mid/mid.go:0xc0005c8a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/middleware.go:0xc0007c5a40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/session.go:0xc0007c5b40 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/about.qtpl.go:0xc0005c9980 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/base.qtpl.go:0xc0005c9a80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channel.qtpl.go:0xc0005c9b80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/channels.qtpl.go:0xc0005c9c80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/docs.qtpl.go:0xc0005c9d80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/gen.go:0xc0005c9e80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/index.qtpl.go:0xc0005c9f80 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/login.qtpl.go:0xc0007c4080 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/templates/sidebar_scripts.qtpl.go:0xc0007c4180 file:///home/jake/zikaeroh/hortbot/hortbot/internal/web/web.go:0xc0007c5c40 file:///home/jake/zikaeroh/hortbot/hortbot/main.go:0xc000823000 file:///usr/lib/go/src/archive/tar/common.go:0xc00046a1c0 file:///usr/lib/go/src/archive/tar/format.go:0xc00046a2c0 file:///usr/lib/go/src/archive/tar/reader.go:0xc00046a3c0 file:///usr/lib/go/src/archive/tar/stat_actime1.go:0xc00046a4c0 file:///usr/lib/go/src/archive/tar/stat_unix.go:0xc00046a5c0 file:///usr/lib/go/src/archive/tar/strconv.go:0xc00046a6c0 file:///usr/lib/go/src/archive/tar/writer.go:0xc00046a7c0 file:///usr/lib/go/src/bufio/bufio.go:0xc000351bc0 file:///usr/lib/go/src/bufio/scan.go:0xc000351cc0 file:///usr/lib/go/src/bytes/buffer.go:0xc000ce2700 file:///usr/lib/go/src/bytes/bytes.go:0xc000ce2800 file:///usr/lib/go/src/bytes/reader.go:0xc000ce2900 file:///usr/lib/go/src/compress/bzip2/bit_reader.go:0xc00046a940 file:///usr/lib/go/src/compress/bzip2/bzip2.go:0xc00046aa40 file:///usr/lib/go/src/compress/bzip2/huffman.go:0xc00046ab40 file:///usr/lib/go/src/compress/bzip2/move_to_front.go:0xc00046ac40 file:///usr/lib/go/src/compress/flate/deflate.go:0xc000318040 file:///usr/lib/go/src/compress/flate/deflatefast.go:0xc000318140 file:///usr/lib/go/src/compress/flate/dict_decoder.go:0xc000318240 file:///usr/lib/go/src/compress/flate/huffman_bit_writer.go:0xc000318340 file:///usr/lib/go/src/compress/flate/huffman_code.go:0xc000318440 file:///usr/lib/go/src/compress/flate/inflate.go:0xc000318540 file:///usr/lib/go/src/compress/flate/token.go:0xc000318640 file:///usr/lib/go/src/compress/gzip/gunzip.go:0xc000351e40 file:///usr/lib/go/src/compress/gzip/gzip.go:0xc000351f40 file:///usr/lib/go/src/container/list/list.go:0xc000318d40 file:///usr/lib/go/src/context/context.go:0xc000b957c0 file:///usr/lib/go/src/crypto/aes/aes_gcm.go:0xc000319b00 file:///usr/lib/go/src/crypto/aes/block.go:0xc000319c00 file:///usr/lib/go/src/crypto/aes/cipher.go:0xc000319dc0 file:///usr/lib/go/src/crypto/aes/cipher_asm.go:0xc000319ec0 file:///usr/lib/go/src/crypto/aes/const.go:0xc000266000 file:///usr/lib/go/src/crypto/aes/modes.go:0xc000266240 file:///usr/lib/go/src/crypto/cipher/cbc.go:0xc0002663c0 file:///usr/lib/go/src/crypto/cipher/cfb.go:0xc000266540 file:///usr/lib/go/src/crypto/cipher/cipher.go:0xc000266740 file:///usr/lib/go/src/crypto/cipher/ctr.go:0xc000266a00 file:///usr/lib/go/src/crypto/cipher/gcm.go:0xc000266bc0 file:///usr/lib/go/src/crypto/cipher/io.go:0xc000266d80 file:///usr/lib/go/src/crypto/cipher/ofb.go:0xc000266f80 file:///usr/lib/go/src/crypto/cipher/xor_amd64.go:0xc0002670c0 file:///usr/lib/go/src/crypto/crypto.go:0xc000229100 file:///usr/lib/go/src/crypto/des/block.go:0xc000229240 file:///usr/lib/go/src/crypto/des/cipher.go:0xc000229340 file:///usr/lib/go/src/crypto/des/const.go:0xc000229480 file:///usr/lib/go/src/crypto/dsa/dsa.go:0xc000272840 file:///usr/lib/go/src/crypto/ecdsa/ecdsa.go:0xc000229600 file:///usr/lib/go/src/crypto/ed25519/ed25519.go:0xc0002e8440 file:///usr/lib/go/src/crypto/ed25519/internal/edwards25519/const.go:0xc0002e86c0 file:///usr/lib/go/src/crypto/ed25519/internal/edwards25519/edwards25519.go:0xc0002e87c0 file:///usr/lib/go/src/crypto/elliptic/elliptic.go:0xc000229700 file:///usr/lib/go/src/crypto/elliptic/p224.go:0xc000229800 file:///usr/lib/go/src/crypto/elliptic/p256_asm.go:0xc000229900 file:///usr/lib/go/src/crypto/hmac/hmac.go:0xc0002e8940 file:///usr/lib/go/src/crypto/internal/randutil/randutil.go:0xc000229a40 file:///usr/lib/go/src/crypto/internal/subtle/aliasing.go:0xc000267380 file:///usr/lib/go/src/crypto/md5/md5.go:0xc0002e8a80 file:///usr/lib/go/src/crypto/md5/md5block.go:0xc0002e8b80 file:///usr/lib/go/src/crypto/md5/md5block_decl.go:0xc0002e8c80 file:///usr/lib/go/src/crypto/rand/eagain.go:0xc000318f40 file:///usr/lib/go/src/crypto/rand/rand.go:0xc0003191c0 file:///usr/lib/go/src/crypto/rand/rand_batched.go:0xc000319400 file:///usr/lib/go/src/crypto/rand/rand_linux.go:0xc0003195c0 file:///usr/lib/go/src/crypto/rand/rand_unix.go:0xc000319700 file:///usr/lib/go/src/crypto/rand/util.go:0xc000319880 file:///usr/lib/go/src/crypto/rc4/rc4.go:0xc0002e8dc0 file:///usr/lib/go/src/crypto/rsa/pkcs1v15.go:0xc0002e8f00 file:///usr/lib/go/src/crypto/rsa/pss.go:0xc0002e9000 file:///usr/lib/go/src/crypto/rsa/rsa.go:0xc0002e9100 file:///usr/lib/go/src/crypto/sha1/sha1.go:0xc0002e9240 file:///usr/lib/go/src/crypto/sha1/sha1block.go:0xc0002e9340 file:///usr/lib/go/src/crypto/sha1/sha1block_amd64.go:0xc0002e9440 file:///usr/lib/go/src/crypto/sha256/sha256.go:0xc0002e95c0 file:///usr/lib/go/src/crypto/sha256/sha256block.go:0xc0002e96c0 file:///usr/lib/go/src/crypto/sha256/sha256block_amd64.go:0xc0002e97c0 file:///usr/lib/go/src/crypto/sha256/sha256block_decl.go:0xc0002e98c0 file:///usr/lib/go/src/crypto/sha512/sha512.go:0xc000229b80 file:///usr/lib/go/src/crypto/sha512/sha512block.go:0xc000229c80 file:///usr/lib/go/src/crypto/sha512/sha512block_amd64.go:0xc000229d80 file:///usr/lib/go/src/crypto/subtle/constant_time.go:0xc0002674c0 file:///usr/lib/go/src/crypto/tls/alert.go:0xc00044ff80 file:///usr/lib/go/src/crypto/tls/auth.go:0xc0002280c0 file:///usr/lib/go/src/crypto/tls/cipher_suites.go:0xc000228280 file:///usr/lib/go/src/crypto/tls/common.go:0xc000228440 file:///usr/lib/go/src/crypto/tls/conn.go:0xc0002285c0 file:///usr/lib/go/src/crypto/tls/handshake_client.go:0xc0002286c0 file:///usr/lib/go/src/crypto/tls/handshake_client_tls13.go:0xc0002287c0 file:///usr/lib/go/src/crypto/tls/handshake_messages.go:0xc000228900 file:///usr/lib/go/src/crypto/tls/handshake_server.go:0xc000228a00 file:///usr/lib/go/src/crypto/tls/handshake_server_tls13.go:0xc000228b00 file:///usr/lib/go/src/crypto/tls/key_agreement.go:0xc000228c00 file:///usr/lib/go/src/crypto/tls/key_schedule.go:0xc000228d00 file:///usr/lib/go/src/crypto/tls/prf.go:0xc000228e00 file:///usr/lib/go/src/crypto/tls/ticket.go:0xc000228f00 file:///usr/lib/go/src/crypto/tls/tls.go:0xc000229000 file:///usr/lib/go/src/crypto/x509/cert_pool.go:0xc0002e9a00 file:///usr/lib/go/src/crypto/x509/pem_decrypt.go:0xc0002e9b00 file:///usr/lib/go/src/crypto/x509/pkcs1.go:0xc0002e9c00 file:///usr/lib/go/src/crypto/x509/pkcs8.go:0xc0002e9d00 file:///usr/lib/go/src/crypto/x509/pkix/pkix.go:0xc000272a40 file:///usr/lib/go/src/crypto/x509/root.go:0xc0002e9e00 file:///usr/lib/go/src/crypto/x509/root_linux.go:0xc0002e9f00 file:///usr/lib/go/src/crypto/x509/root_unix.go:0xc000272000 file:///usr/lib/go/src/crypto/x509/sec1.go:0xc000272100 file:///usr/lib/go/src/crypto/x509/verify.go:0xc000272340 file:///usr/lib/go/src/crypto/x509/x509.go:0xc000272480 file:///usr/lib/go/src/database/sql/convert.go:0xc0004d4980 file:///usr/lib/go/src/database/sql/ctxutil.go:0xc0004d4a80 file:///usr/lib/go/src/database/sql/driver/driver.go:0xc0004d4d40 file:///usr/lib/go/src/database/sql/driver/types.go:0xc0004d4e40 file:///usr/lib/go/src/database/sql/sql.go:0xc0004d4bc0 file:///usr/lib/go/src/encoding/asn1/asn1.go:0xc000229ec0 file:///usr/lib/go/src/encoding/asn1/common.go:0xc000229fc0 file:///usr/lib/go/src/encoding/asn1/marshal.go:0xc0002e8180 file:///usr/lib/go/src/encoding/base32/base32.go:0xc0008222c0 file:///usr/lib/go/src/encoding/base64/base64.go:0xc000d26280 file:///usr/lib/go/src/encoding/binary/binary.go:0xc000ca9b00 file:///usr/lib/go/src/encoding/binary/varint.go:0xc000ca9c00 file:///usr/lib/go/src/encoding/encoding.go:0xc000d26140 file:///usr/lib/go/src/encoding/gob/dec_helpers.go:0xc000359980 file:///usr/lib/go/src/encoding/gob/decode.go:0xc000359a80 file:///usr/lib/go/src/encoding/gob/decoder.go:0xc000359bc0 file:///usr/lib/go/src/encoding/gob/doc.go:0xc000359cc0 file:///usr/lib/go/src/encoding/gob/enc_helpers.go:0xc000359dc0 file:///usr/lib/go/src/encoding/gob/encode.go:0xc000359ec0 file:///usr/lib/go/src/encoding/gob/encoder.go:0xc000359fc0 file:///usr/lib/go/src/encoding/gob/error.go:0xc0003ce100 file:///usr/lib/go/src/encoding/gob/type.go:0xc0003ce200 file:///usr/lib/go/src/encoding/hex/hex.go:0xc000272b40 file:///usr/lib/go/src/encoding/json/decode.go:0xc000ce3940 file:///usr/lib/go/src/encoding/json/encode.go:0xc000ce3a40 file:///usr/lib/go/src/encoding/json/fold.go:0xc000ce3b40 file:///usr/lib/go/src/encoding/json/indent.go:0xc000ce3c40 file:///usr/lib/go/src/encoding/json/scanner.go:0xc000ce3d40 file:///usr/lib/go/src/encoding/json/stream.go:0xc000ce3e40 file:///usr/lib/go/src/encoding/json/tables.go:0xc000ce3f40 file:///usr/lib/go/src/encoding/json/tags.go:0xc000d26040 file:///usr/lib/go/src/encoding/pem/pem.go:0xc000272d40 file:///usr/lib/go/src/encoding/xml/marshal.go:0xc0003ce380 file:///usr/lib/go/src/encoding/xml/read.go:0xc0003ce480 file:///usr/lib/go/src/encoding/xml/typeinfo.go:0xc0003ce580 file:///usr/lib/go/src/encoding/xml/xml.go:0xc0003ce680 file:///usr/lib/go/src/errors/errors.go:0xc000b95900 file:///usr/lib/go/src/errors/wrap.go:0xc000b95a00 file:///usr/lib/go/src/expvar/expvar.go:0xc0007e5580 file:///usr/lib/go/src/flag/flag.go:0xc00048dac0 file:///usr/lib/go/src/fmt/doc.go:0xc00050d440 file:///usr/lib/go/src/fmt/errors.go:0xc00050d540 file:///usr/lib/go/src/fmt/format.go:0xc00050d780 file:///usr/lib/go/src/fmt/print.go:0xc00050d8c0 file:///usr/lib/go/src/fmt/scan.go:0xc00050da00 file:///usr/lib/go/src/go/ast/ast.go:0xc0001b8d40 file:///usr/lib/go/src/go/ast/commentmap.go:0xc0001b8e40 file:///usr/lib/go/src/go/ast/filter.go:0xc0001b8f40 file:///usr/lib/go/src/go/ast/import.go:0xc0001b9040 file:///usr/lib/go/src/go/ast/print.go:0xc0001b9140 file:///usr/lib/go/src/go/ast/resolve.go:0xc0001b9280 file:///usr/lib/go/src/go/ast/scope.go:0xc0001b9380 file:///usr/lib/go/src/go/ast/walk.go:0xc0001b9480 file:///usr/lib/go/src/go/format/format.go:0xc000296340 file:///usr/lib/go/src/go/format/internal.go:0xc000296440 file:///usr/lib/go/src/go/parser/interface.go:0xc000296540 file:///usr/lib/go/src/go/parser/parser.go:0xc000296680 file:///usr/lib/go/src/go/printer/nodes.go:0xc0002967c0 file:///usr/lib/go/src/go/printer/printer.go:0xc0002968c0 file:///usr/lib/go/src/go/scanner/errors.go:0xc0001b9580 file:///usr/lib/go/src/go/scanner/scanner.go:0xc0001b9680 file:///usr/lib/go/src/go/token/position.go:0xc0001b97c0 file:///usr/lib/go/src/go/token/serialize.go:0xc0001b98c0 file:///usr/lib/go/src/go/token/token.go:0xc0001b99c0 file:///usr/lib/go/src/hash/crc32/crc32.go:0xc000318780 file:///usr/lib/go/src/hash/crc32/crc32_amd64.go:0xc000318880 file:///usr/lib/go/src/hash/crc32/crc32_generic.go:0xc000318980 file:///usr/lib/go/src/hash/hash.go:0xc000318ac0 file:///usr/lib/go/src/html/entity.go:0xc0009a52c0 file:///usr/lib/go/src/html/escape.go:0xc0009a5440 file:///usr/lib/go/src/html/template/attr.go:0xc0009be740 file:///usr/lib/go/src/html/template/attr_string.go:0xc0009be840 file:///usr/lib/go/src/html/template/content.go:0xc0009be940 file:///usr/lib/go/src/html/template/context.go:0xc0009bea40 file:///usr/lib/go/src/html/template/css.go:0xc0009beb40 file:///usr/lib/go/src/html/template/delim_string.go:0xc0009bec40 file:///usr/lib/go/src/html/template/doc.go:0xc0009bf000 file:///usr/lib/go/src/html/template/element_string.go:0xc0009bf100 file:///usr/lib/go/src/html/template/error.go:0xc0009bf240 file:///usr/lib/go/src/html/template/escape.go:0xc0009bf3c0 file:///usr/lib/go/src/html/template/html.go:0xc0009bf500 file:///usr/lib/go/src/html/template/js.go:0xc0009bf600 file:///usr/lib/go/src/html/template/jsctx_string.go:0xc0009bf700 file:///usr/lib/go/src/html/template/state_string.go:0xc0009bf980 file:///usr/lib/go/src/html/template/template.go:0xc0009bfb40 file:///usr/lib/go/src/html/template/transition.go:0xc0009bfd40 file:///usr/lib/go/src/html/template/url.go:0xc0009bff40 file:///usr/lib/go/src/html/template/urlpart_string.go:0xc0009a50c0 file:///usr/lib/go/src/internal/bytealg/bytealg.go:0xc000c4ad00 file:///usr/lib/go/src/internal/bytealg/compare_native.go:0xc000c4ae00 file:///usr/lib/go/src/internal/bytealg/count_native.go:0xc000c4af00 file:///usr/lib/go/src/internal/bytealg/equal_generic.go:0xc000c4b000 file:///usr/lib/go/src/internal/bytealg/equal_native.go:0xc000c4b100 file:///usr/lib/go/src/internal/bytealg/index_amd64.go:0xc000c4b200 file:///usr/lib/go/src/internal/bytealg/index_native.go:0xc000c4b300 file:///usr/lib/go/src/internal/bytealg/indexbyte_native.go:0xc000c4b400 file:///usr/lib/go/src/internal/cpu/cpu.go:0xc000c4b500 file:///usr/lib/go/src/internal/cpu/cpu_amd64.go:0xc000c4b600 file:///usr/lib/go/src/internal/cpu/cpu_x86.go:0xc000c4b700 file:///usr/lib/go/src/internal/fmtsort/sort.go:0xc00050db00 file:///usr/lib/go/src/internal/nettrace/nettrace.go:0xc0000822c0 file:///usr/lib/go/src/internal/oserror/errors.go:0xc000cbb280 file:///usr/lib/go/src/internal/poll/errno_unix.go:0xc000874e00 file:///usr/lib/go/src/internal/poll/fd.go:0xc000874f00 file:///usr/lib/go/src/internal/poll/fd_fsync_posix.go:0xc000875040 file:///usr/lib/go/src/internal/poll/fd_mutex.go:0xc0008751c0 file:///usr/lib/go/src/internal/poll/fd_poll_runtime.go:0xc000875380 file:///usr/lib/go/src/internal/poll/fd_posix.go:0xc000875540 file:///usr/lib/go/src/internal/poll/fd_unix.go:0xc000875680 file:///usr/lib/go/src/internal/poll/fd_writev_unix.go:0xc0008757c0 file:///usr/lib/go/src/internal/poll/hook_cloexec.go:0xc0008758c0 file:///usr/lib/go/src/internal/poll/hook_unix.go:0xc000875a40 file:///usr/lib/go/src/internal/poll/sendfile_linux.go:0xc000875b40 file:///usr/lib/go/src/internal/poll/sock_cloexec.go:0xc000875cc0 file:///usr/lib/go/src/internal/poll/sockopt.go:0xc000875e40 file:///usr/lib/go/src/internal/poll/sockopt_linux.go:0xc000875f40 file:///usr/lib/go/src/internal/poll/sockopt_unix.go:0xc00048c040 file:///usr/lib/go/src/internal/poll/sockoptip.go:0xc00048c180 file:///usr/lib/go/src/internal/poll/splice_linux.go:0xc00048c2c0 file:///usr/lib/go/src/internal/poll/writev.go:0xc00048c3c0 file:///usr/lib/go/src/internal/race/doc.go:0xc000c68ec0 file:///usr/lib/go/src/internal/race/norace.go:0xc000c68fc0 file:///usr/lib/go/src/internal/reflectlite/swapper.go:0xc000b95b00 file:///usr/lib/go/src/internal/reflectlite/type.go:0xc000b95c00 file:///usr/lib/go/src/internal/reflectlite/value.go:0xc000b95d00 file:///usr/lib/go/src/internal/singleflight/singleflight.go:0xc000082780 file:///usr/lib/go/src/internal/syscall/unix/at.go:0xc00048c540 file:///usr/lib/go/src/internal/syscall/unix/at_sysnum_linux.go:0xc00048c740 file:///usr/lib/go/src/internal/syscall/unix/at_sysnum_newfstatat_linux.go:0xc00048c840 file:///usr/lib/go/src/internal/syscall/unix/getrandom_linux.go:0xc00048c980 file:///usr/lib/go/src/internal/syscall/unix/getrandom_linux_amd64.go:0xc00048ca80 file:///usr/lib/go/src/internal/syscall/unix/nonblocking.go:0xc00048cc00 file:///usr/lib/go/src/internal/testlog/log.go:0xc00048cd40 file:///usr/lib/go/src/io/io.go:0xc000ce2a00 file:///usr/lib/go/src/io/ioutil/ioutil.go:0xc0003e9e80 file:///usr/lib/go/src/io/ioutil/tempfile.go:0xc0003e9f80 file:///usr/lib/go/src/io/multi.go:0xc000ce2b00 file:///usr/lib/go/src/io/pipe.go:0xc000ce2c00 file:///usr/lib/go/src/log/log.go:0xc000350600 file:///usr/lib/go/src/math/abs.go:0xc000ca9d40 file:///usr/lib/go/src/math/acosh.go:0xc000ca9e40 file:///usr/lib/go/src/math/asin.go:0xc000ca9f40 file:///usr/lib/go/src/math/asinh.go:0xc000d36040 file:///usr/lib/go/src/math/atan.go:0xc000d36140 file:///usr/lib/go/src/math/atan2.go:0xc000d36240 file:///usr/lib/go/src/math/atanh.go:0xc000d36340 file:///usr/lib/go/src/math/big/accuracy_string.go:0xc000267680 file:///usr/lib/go/src/math/big/arith.go:0xc000267800 file:///usr/lib/go/src/math/big/arith_amd64.go:0xc000267940 file:///usr/lib/go/src/math/big/arith_decl.go:0xc000267b80 file:///usr/lib/go/src/math/big/decimal.go:0xc000267c80 file:///usr/lib/go/src/math/big/doc.go:0xc000267d80 file:///usr/lib/go/src/math/big/float.go:0xc000267e80 file:///usr/lib/go/src/math/big/floatconv.go:0xc000267f80 file:///usr/lib/go/src/math/big/floatmarsh.go:0xc00044e5c0 file:///usr/lib/go/src/math/big/ftoa.go:0xc00044ecc0 file:///usr/lib/go/src/math/big/int.go:0xc00044edc0 file:///usr/lib/go/src/math/big/intconv.go:0xc00044eec0 file:///usr/lib/go/src/math/big/intmarsh.go:0xc00044efc0 file:///usr/lib/go/src/math/big/nat.go:0xc00044f0c0 file:///usr/lib/go/src/math/big/natconv.go:0xc00044f1c0 file:///usr/lib/go/src/math/big/prime.go:0xc00044f2c0 file:///usr/lib/go/src/math/big/rat.go:0xc00044f400 file:///usr/lib/go/src/math/big/ratconv.go:0xc00044f500 file:///usr/lib/go/src/math/big/ratmarsh.go:0xc00044f600 file:///usr/lib/go/src/math/big/roundingmode_string.go:0xc00044f740 file:///usr/lib/go/src/math/big/sqrt.go:0xc00044f840 file:///usr/lib/go/src/math/bits.go:0xc000d36440 file:///usr/lib/go/src/math/bits/bits.go:0xc000d27b80 file:///usr/lib/go/src/math/bits/bits_errors.go:0xc000d27c80 file:///usr/lib/go/src/math/bits/bits_tables.go:0xc000d27d80 file:///usr/lib/go/src/math/cbrt.go:0xc000d36540 file:///usr/lib/go/src/math/const.go:0xc000d36640 file:///usr/lib/go/src/math/copysign.go:0xc000d36740 file:///usr/lib/go/src/math/dim.go:0xc000d36840 file:///usr/lib/go/src/math/erf.go:0xc000d36940 file:///usr/lib/go/src/math/erfinv.go:0xc000d36a40 file:///usr/lib/go/src/math/exp.go:0xc000d36b40 file:///usr/lib/go/src/math/exp_asm.go:0xc000d36c40 file:///usr/lib/go/src/math/expm1.go:0xc000d36d40 file:///usr/lib/go/src/math/floor.go:0xc000d36e40 file:///usr/lib/go/src/math/frexp.go:0xc000d36f40 file:///usr/lib/go/src/math/gamma.go:0xc000d37040 file:///usr/lib/go/src/math/hypot.go:0xc000d37140 file:///usr/lib/go/src/math/j0.go:0xc000d37240 file:///usr/lib/go/src/math/j1.go:0xc000d37340 file:///usr/lib/go/src/math/jn.go:0xc000d37440 file:///usr/lib/go/src/math/ldexp.go:0xc000d37540 file:///usr/lib/go/src/math/lgamma.go:0xc000d37640 file:///usr/lib/go/src/math/log.go:0xc000d37740 file:///usr/lib/go/src/math/log10.go:0xc000d37840 file:///usr/lib/go/src/math/log1p.go:0xc000d37940 file:///usr/lib/go/src/math/logb.go:0xc000d37a40 file:///usr/lib/go/src/math/mod.go:0xc000d37b40 file:///usr/lib/go/src/math/modf.go:0xc000d37c40 file:///usr/lib/go/src/math/nextafter.go:0xc000d37d40 file:///usr/lib/go/src/math/pow.go:0xc000d26f80 file:///usr/lib/go/src/math/pow10.go:0xc000d27080 file:///usr/lib/go/src/math/rand/exp.go:0xc00044f980 file:///usr/lib/go/src/math/rand/normal.go:0xc00044fa80 file:///usr/lib/go/src/math/rand/rand.go:0xc00044fb80 file:///usr/lib/go/src/math/rand/rng.go:0xc00044fcc0 file:///usr/lib/go/src/math/rand/zipf.go:0xc00044fdc0 file:///usr/lib/go/src/math/remainder.go:0xc000d27180 file:///usr/lib/go/src/math/signbit.go:0xc000d27280 file:///usr/lib/go/src/math/sin.go:0xc000d27380 file:///usr/lib/go/src/math/sincos.go:0xc000d27480 file:///usr/lib/go/src/math/sinh.go:0xc000d27580 file:///usr/lib/go/src/math/sqrt.go:0xc000d27680 file:///usr/lib/go/src/math/tan.go:0xc000d27780 file:///usr/lib/go/src/math/tanh.go:0xc000d27880 file:///usr/lib/go/src/math/trig_reduce.go:0xc000d27980 file:///usr/lib/go/src/math/unsafe.go:0xc000d27a80 file:///usr/lib/go/src/mime/encodedword.go:0xc000b37d40 file:///usr/lib/go/src/mime/grammar.go:0xc000b37e40 file:///usr/lib/go/src/mime/mediatype.go:0xc000b37fc0 file:///usr/lib/go/src/mime/multipart/formdata.go:0xc000b94400 file:///usr/lib/go/src/mime/multipart/multipart.go:0xc000b94540 file:///usr/lib/go/src/mime/multipart/writer.go:0xc000b94740 file:///usr/lib/go/src/mime/quotedprintable/reader.go:0xc000b94840 file:///usr/lib/go/src/mime/quotedprintable/writer.go:0xc000b94a00 file:///usr/lib/go/src/mime/type.go:0xc000b940c0 file:///usr/lib/go/src/mime/type_unix.go:0xc000b941c0 file:///usr/lib/go/src/net/addrselect.go:0xc000272ec0 file:///usr/lib/go/src/net/conf.go:0xc000272fc0 file:///usr/lib/go/src/net/dial.go:0xc000273140 file:///usr/lib/go/src/net/dnsclient.go:0xc000273340 file:///usr/lib/go/src/net/dnsclient_unix.go:0xc000273500 file:///usr/lib/go/src/net/dnsconfig_unix.go:0xc000273600 file:///usr/lib/go/src/net/error_posix.go:0xc000273840 file:///usr/lib/go/src/net/error_unix.go:0xc000273940 file:///usr/lib/go/src/net/fd_unix.go:0xc000273c80 file:///usr/lib/go/src/net/file.go:0xc000200980 file:///usr/lib/go/src/net/file_unix.go:0xc000200b80 file:///usr/lib/go/src/net/hook.go:0xc000200d00 file:///usr/lib/go/src/net/hook_unix.go:0xc000200f40 file:///usr/lib/go/src/net/hosts.go:0xc000201080 file:///usr/lib/go/src/net/http/client.go:0xc000350780 file:///usr/lib/go/src/net/http/clone.go:0xc000350880 file:///usr/lib/go/src/net/http/cookie.go:0xc000350980 file:///usr/lib/go/src/net/http/doc.go:0xc000350a80 file:///usr/lib/go/src/net/http/filetransport.go:0xc000350bc0 file:///usr/lib/go/src/net/http/fs.go:0xc000350cc0 file:///usr/lib/go/src/net/http/h2_bundle.go:0xc000350dc0 file:///usr/lib/go/src/net/http/header.go:0xc000350ec0 file:///usr/lib/go/src/net/http/http.go:0xc000350fc0 file:///usr/lib/go/src/net/http/httptrace/trace.go:0xc0009022c0 file:///usr/lib/go/src/net/http/httputil/dump.go:0xc0004ff480 file:///usr/lib/go/src/net/http/httputil/httputil.go:0xc0004ff580 file:///usr/lib/go/src/net/http/httputil/persist.go:0xc0004ff680 file:///usr/lib/go/src/net/http/httputil/reverseproxy.go:0xc0004ff780 file:///usr/lib/go/src/net/http/internal/chunked.go:0xc000902400 file:///usr/lib/go/src/net/http/internal/testcert.go:0xc000902500 file:///usr/lib/go/src/net/http/jar.go:0xc0003510c0 file:///usr/lib/go/src/net/http/method.go:0xc0003511c0 file:///usr/lib/go/src/net/http/pprof/pprof.go:0xc0007e56c0 file:///usr/lib/go/src/net/http/request.go:0xc0003512c0 file:///usr/lib/go/src/net/http/response.go:0xc0003513c0 file:///usr/lib/go/src/net/http/roundtrip.go:0xc0003514c0 file:///usr/lib/go/src/net/http/server.go:0xc0003515c0 file:///usr/lib/go/src/net/http/sniff.go:0xc0003516c0 file:///usr/lib/go/src/net/http/socks_bundle.go:0xc0003517c0 file:///usr/lib/go/src/net/http/status.go:0xc0003518c0 file:///usr/lib/go/src/net/http/transfer.go:0xc0003519c0 file:///usr/lib/go/src/net/http/transport.go:0xc000351ac0 file:///usr/lib/go/src/net/interface.go:0xc000201280 file:///usr/lib/go/src/net/interface_linux.go:0xc000201440 file:///usr/lib/go/src/net/ip.go:0xc0002015c0 file:///usr/lib/go/src/net/iprawsock.go:0xc000201700 file:///usr/lib/go/src/net/iprawsock_posix.go:0xc000201cc0 file:///usr/lib/go/src/net/ipsock.go:0xc000201dc0 file:///usr/lib/go/src/net/ipsock_posix.go:0xc000201ec0 file:///usr/lib/go/src/net/lookup.go:0xc0001a6500 file:///usr/lib/go/src/net/lookup_unix.go:0xc0001a6e80 file:///usr/lib/go/src/net/mac.go:0xc0001a71c0 file:///usr/lib/go/src/net/net.go:0xc000172200 file:///usr/lib/go/src/net/nss.go:0xc000172540 file:///usr/lib/go/src/net/parse.go:0xc000172640 file:///usr/lib/go/src/net/pipe.go:0xc0001727c0 file:///usr/lib/go/src/net/port.go:0xc000172980 file:///usr/lib/go/src/net/port_unix.go:0xc000172b00 file:///usr/lib/go/src/net/rawconn.go:0xc000172d00 file:///usr/lib/go/src/net/sendfile_linux.go:0xc000172e40 file:///usr/lib/go/src/net/sock_cloexec.go:0xc000173100 file:///usr/lib/go/src/net/sock_linux.go:0xc0001732c0 file:///usr/lib/go/src/net/sock_posix.go:0xc000173480 file:///usr/lib/go/src/net/sockaddr_posix.go:0xc000173580 file:///usr/lib/go/src/net/sockopt_linux.go:0xc000173900 file:///usr/lib/go/src/net/sockopt_posix.go:0xc000173a80 file:///usr/lib/go/src/net/sockoptip_linux.go:0xc000173c00 file:///usr/lib/go/src/net/sockoptip_posix.go:0xc000173dc0 file:///usr/lib/go/src/net/splice_linux.go:0xc000173f80 file:///usr/lib/go/src/net/tcpsock.go:0xc000164180 file:///usr/lib/go/src/net/tcpsock_posix.go:0xc000164700 file:///usr/lib/go/src/net/tcpsockopt_posix.go:0xc000164940 file:///usr/lib/go/src/net/tcpsockopt_unix.go:0xc000164b00 file:///usr/lib/go/src/net/textproto/header.go:0xc000b94d80 file:///usr/lib/go/src/net/textproto/pipeline.go:0xc000b94f80 file:///usr/lib/go/src/net/textproto/reader.go:0xc000b95200 file:///usr/lib/go/src/net/textproto/textproto.go:0xc000902040 file:///usr/lib/go/src/net/textproto/writer.go:0xc000902140 file:///usr/lib/go/src/net/udpsock.go:0xc000164d40 file:///usr/lib/go/src/net/udpsock_posix.go:0xc000164e80 file:///usr/lib/go/src/net/unixsock.go:0xc000165180 file:///usr/lib/go/src/net/unixsock_posix.go:0xc0001653c0 file:///usr/lib/go/src/net/url/url.go:0xc000b1cc00 file:///usr/lib/go/src/net/writev_unix.go:0xc000165580 file:///usr/lib/go/src/os/dir.go:0xc0009a4280 file:///usr/lib/go/src/os/dir_unix.go:0xc0009a4380 file:///usr/lib/go/src/os/env.go:0xc0009a4480 file:///usr/lib/go/src/os/env_default.go:0xc0009a4580 file:///usr/lib/go/src/os/error.go:0xc0009a4680 file:///usr/lib/go/src/os/error_errno.go:0xc0009a47c0 file:///usr/lib/go/src/os/error_posix.go:0xc0009a48c0 file:///usr/lib/go/src/os/exec.go:0xc0009a49c0 file:///usr/lib/go/src/os/exec/exec.go:0xc00040a800 file:///usr/lib/go/src/os/exec/exec_unix.go:0xc00040aa00 file:///usr/lib/go/src/os/exec/lp_unix.go:0xc00040ab80 file:///usr/lib/go/src/os/exec_posix.go:0xc0009a4ac0 file:///usr/lib/go/src/os/exec_unix.go:0xc0009a4bc0 file:///usr/lib/go/src/os/executable.go:0xc0009a4cc0 file:///usr/lib/go/src/os/executable_procfs.go:0xc0009a4dc0 file:///usr/lib/go/src/os/file.go:0xc0009a4ec0 file:///usr/lib/go/src/os/file_posix.go:0xc0009a4fc0 file:///usr/lib/go/src/os/file_unix.go:0xc0009a51c0 file:///usr/lib/go/src/os/getwd.go:0xc0009a5380 file:///usr/lib/go/src/os/path.go:0xc0009a55c0 file:///usr/lib/go/src/os/path_unix.go:0xc0009a5840 file:///usr/lib/go/src/os/pipe_linux.go:0xc0009a59c0 file:///usr/lib/go/src/os/proc.go:0xc0009a5ac0 file:///usr/lib/go/src/os/rawconn.go:0xc0009a5d00 file:///usr/lib/go/src/os/removeall_at.go:0xc0009a5f00 file:///usr/lib/go/src/os/signal/doc.go:0xc00040b080 file:///usr/lib/go/src/os/signal/signal.go:0xc00040b180 file:///usr/lib/go/src/os/signal/signal_unix.go:0xc00040b380 file:///usr/lib/go/src/os/stat.go:0xc0008740c0 file:///usr/lib/go/src/os/stat_linux.go:0xc0008741c0 file:///usr/lib/go/src/os/stat_unix.go:0xc0008742c0 file:///usr/lib/go/src/os/sticky_notbsd.go:0xc000874480 file:///usr/lib/go/src/os/str.go:0xc000874580 file:///usr/lib/go/src/os/sys.go:0xc0008746c0 file:///usr/lib/go/src/os/sys_linux.go:0xc0008747c0 file:///usr/lib/go/src/os/sys_unix.go:0xc0008749c0 file:///usr/lib/go/src/os/types.go:0xc000874b00 file:///usr/lib/go/src/os/types_unix.go:0xc000874c00 file:///usr/lib/go/src/os/user/lookup.go:0xc0002c2000 file:///usr/lib/go/src/os/user/user.go:0xc0002c2100 file:///usr/lib/go/src/os/wait_waitid.go:0xc000874d00 file:///usr/lib/go/src/path/filepath/match.go:0xc000350080 file:///usr/lib/go/src/path/filepath/path.go:0xc000350180 file:///usr/lib/go/src/path/filepath/path_unix.go:0xc000350280 file:///usr/lib/go/src/path/filepath/symlink.go:0xc000350380 file:///usr/lib/go/src/path/filepath/symlink_unix.go:0xc000350480 file:///usr/lib/go/src/path/match.go:0xc000902640 file:///usr/lib/go/src/path/path.go:0xc000902740 file:///usr/lib/go/src/reflect/deepequal.go:0xc000d27f00 file:///usr/lib/go/src/reflect/makefunc.go:0xc00050c040 file:///usr/lib/go/src/reflect/swapper.go:0xc00050c180 file:///usr/lib/go/src/reflect/type.go:0xc00050c380 file:///usr/lib/go/src/reflect/value.go:0xc00050c500 file:///usr/lib/go/src/regexp/backtrack.go:0xc000ce3800 file:///usr/lib/go/src/regexp/exec.go:0xc000ca8000 file:///usr/lib/go/src/regexp/onepass.go:0xc000ca8100 file:///usr/lib/go/src/regexp/regexp.go:0xc000ca8200 file:///usr/lib/go/src/regexp/syntax/compile.go:0xc000ca8300 file:///usr/lib/go/src/regexp/syntax/doc.go:0xc000ca8400 file:///usr/lib/go/src/regexp/syntax/op_string.go:0xc000ca8500 file:///usr/lib/go/src/regexp/syntax/parse.go:0xc000ca8600 file:///usr/lib/go/src/regexp/syntax/perl_groups.go:0xc000ca8700 file:///usr/lib/go/src/regexp/syntax/prog.go:0xc000ca8800 file:///usr/lib/go/src/regexp/syntax/regexp.go:0xc000ca8900 file:///usr/lib/go/src/regexp/syntax/simplify.go:0xc000ca8a00 file:///usr/lib/go/src/runtime/alg.go:0xc000b95e00 file:///usr/lib/go/src/runtime/atomic_pointer.go:0xc000b95f00 file:///usr/lib/go/src/runtime/cgo.go:0xc000bfa000 file:///usr/lib/go/src/runtime/cgo/callbacks.go:0xc0000828c0 file:///usr/lib/go/src/runtime/cgo/callbacks_traceback.go:0xc000082a00 file:///usr/lib/go/src/runtime/cgo/iscgo.go:0xc000082b80 file:///usr/lib/go/src/runtime/cgo/mmap.go:0xc000082dc0 file:///usr/lib/go/src/runtime/cgo/setenv.go:0xc000083140 file:///usr/lib/go/src/runtime/cgo/sigaction.go:0xc000b1c080 file:///usr/lib/go/src/runtime/cgo_mmap.go:0xc000bfa100 file:///usr/lib/go/src/runtime/cgo_sigaction.go:0xc000bfa200 file:///usr/lib/go/src/runtime/cgocall.go:0xc000bfa300 file:///usr/lib/go/src/runtime/cgocallback.go:0xc000bfa400 file:///usr/lib/go/src/runtime/cgocheck.go:0xc000bfa500 file:///usr/lib/go/src/runtime/chan.go:0xc000bfa600 file:///usr/lib/go/src/runtime/compiler.go:0xc000bfa700 file:///usr/lib/go/src/runtime/complex.go:0xc000bfa800 file:///usr/lib/go/src/runtime/cpuflags.go:0xc000bfa900 file:///usr/lib/go/src/runtime/cpuflags_amd64.go:0xc000bfaa00 file:///usr/lib/go/src/runtime/cpuprof.go:0xc000bfab00 file:///usr/lib/go/src/runtime/cputicks.go:0xc000bfac00 file:///usr/lib/go/src/runtime/debug.go:0xc000bfad00 file:///usr/lib/go/src/runtime/debug/garbage.go:0xc0007e5840 file:///usr/lib/go/src/runtime/debug/mod.go:0xc0007e5940 file:///usr/lib/go/src/runtime/debug/stack.go:0xc0007e5a40 file:///usr/lib/go/src/runtime/debug/stubs.go:0xc0007e5b40 file:///usr/lib/go/src/runtime/debugcall.go:0xc000bfae00 file:///usr/lib/go/src/runtime/debuglog.go:0xc000bfaf00 file:///usr/lib/go/src/runtime/debuglog_off.go:0xc000bfb000 file:///usr/lib/go/src/runtime/defs_linux_amd64.go:0xc000bfb100 file:///usr/lib/go/src/runtime/env_posix.go:0xc000bfb200 file:///usr/lib/go/src/runtime/error.go:0xc000bfb300 file:///usr/lib/go/src/runtime/extern.go:0xc000bfb400 file:///usr/lib/go/src/runtime/fastlog2.go:0xc000bfb500 file:///usr/lib/go/src/runtime/fastlog2table.go:0xc000bfb600 file:///usr/lib/go/src/runtime/float.go:0xc000bfb700 file:///usr/lib/go/src/runtime/hash64.go:0xc000bfb800 file:///usr/lib/go/src/runtime/heapdump.go:0xc000bfb900 file:///usr/lib/go/src/runtime/iface.go:0xc000bfba00 file:///usr/lib/go/src/runtime/internal/atomic/atomic_amd64x.go:0xc000c4b8c0 file:///usr/lib/go/src/runtime/internal/atomic/stubs.go:0xc000c4b9c0 file:///usr/lib/go/src/runtime/internal/math/math.go:0xc000c4bb00 file:///usr/lib/go/src/runtime/internal/sys/arch.go:0xc000c4bc00 file:///usr/lib/go/src/runtime/internal/sys/arch_amd64.go:0xc000c4bd00 file:///usr/lib/go/src/runtime/internal/sys/intrinsics.go:0xc000c4be00 file:///usr/lib/go/src/runtime/internal/sys/stubs.go:0xc000c4bf00 file:///usr/lib/go/src/runtime/internal/sys/sys.go:0xc000c68040 file:///usr/lib/go/src/runtime/internal/sys/zgoarch_amd64.go:0xc000c68140 file:///usr/lib/go/src/runtime/internal/sys/zgoos_linux.go:0xc000c68240 file:///usr/lib/go/src/runtime/internal/sys/zversion.go:0xc000c68340 file:///usr/lib/go/src/runtime/lfstack.go:0xc000bfbb00 file:///usr/lib/go/src/runtime/lfstack_64bit.go:0xc000bfbc00 file:///usr/lib/go/src/runtime/lock_futex.go:0xc000bfbd00 file:///usr/lib/go/src/runtime/malloc.go:0xc000bfbe00 file:///usr/lib/go/src/runtime/map.go:0xc000bfbf00 file:///usr/lib/go/src/runtime/map_fast32.go:0xc000c10000 file:///usr/lib/go/src/runtime/map_fast64.go:0xc000c10100 file:///usr/lib/go/src/runtime/map_faststr.go:0xc000c10200 file:///usr/lib/go/src/runtime/mbarrier.go:0xc000c10300 file:///usr/lib/go/src/runtime/mbitmap.go:0xc000c10400 file:///usr/lib/go/src/runtime/mcache.go:0xc000c10500 file:///usr/lib/go/src/runtime/mcentral.go:0xc000c10600 file:///usr/lib/go/src/runtime/mem_linux.go:0xc000c10700 file:///usr/lib/go/src/runtime/mfinal.go:0xc000c10800 file:///usr/lib/go/src/runtime/mfixalloc.go:0xc000c10900 file:///usr/lib/go/src/runtime/mgc.go:0xc000c10a00 file:///usr/lib/go/src/runtime/mgclarge.go:0xc000c10b00 file:///usr/lib/go/src/runtime/mgcmark.go:0xc000c10c00 file:///usr/lib/go/src/runtime/mgcscavenge.go:0xc000c10d00 file:///usr/lib/go/src/runtime/mgcstack.go:0xc000c10e00 file:///usr/lib/go/src/runtime/mgcsweep.go:0xc000c10f00 file:///usr/lib/go/src/runtime/mgcsweepbuf.go:0xc000c11000 file:///usr/lib/go/src/runtime/mgcwork.go:0xc000c11100 file:///usr/lib/go/src/runtime/mheap.go:0xc000c11200 file:///usr/lib/go/src/runtime/mprof.go:0xc000c11300 file:///usr/lib/go/src/runtime/msan0.go:0xc000c11400 file:///usr/lib/go/src/runtime/msize.go:0xc000c11500 file:///usr/lib/go/src/runtime/mstats.go:0xc000c11600 file:///usr/lib/go/src/runtime/mwbbuf.go:0xc000c11700 file:///usr/lib/go/src/runtime/netpoll.go:0xc000c11800 file:///usr/lib/go/src/runtime/netpoll_epoll.go:0xc000c11900 file:///usr/lib/go/src/runtime/os_linux.go:0xc000c11a00 file:///usr/lib/go/src/runtime/os_linux_generic.go:0xc000c11b00 file:///usr/lib/go/src/runtime/os_linux_noauxv.go:0xc000c11c00 file:///usr/lib/go/src/runtime/os_nonopenbsd.go:0xc000c11d00 file:///usr/lib/go/src/runtime/panic.go:0xc000c11e00 file:///usr/lib/go/src/runtime/plugin.go:0xc000c11f00 file:///usr/lib/go/src/runtime/pprof/elf.go:0xc0001539c0 file:///usr/lib/go/src/runtime/pprof/label.go:0xc000153ac0 file:///usr/lib/go/src/runtime/pprof/map.go:0xc000153bc0 file:///usr/lib/go/src/runtime/pprof/pprof.go:0xc000153cc0 file:///usr/lib/go/src/runtime/pprof/proto.go:0xc000153dc0 file:///usr/lib/go/src/runtime/pprof/protobuf.go:0xc000153ec0 file:///usr/lib/go/src/runtime/pprof/protomem.go:0xc000153fc0 file:///usr/lib/go/src/runtime/pprof/runtime.go:0xc0001f80c0 file:///usr/lib/go/src/runtime/print.go:0xc000c26000 file:///usr/lib/go/src/runtime/proc.go:0xc000c26100 file:///usr/lib/go/src/runtime/profbuf.go:0xc000c26200 file:///usr/lib/go/src/runtime/proflabel.go:0xc000c26300 file:///usr/lib/go/src/runtime/race0.go:0xc000c26400 file:///usr/lib/go/src/runtime/rdebug.go:0xc000c26500 file:///usr/lib/go/src/runtime/relax_stub.go:0xc000c26600 file:///usr/lib/go/src/runtime/runtime.go:0xc000c26700 file:///usr/lib/go/src/runtime/runtime1.go:0xc000c26800 file:///usr/lib/go/src/runtime/runtime2.go:0xc000c26900 file:///usr/lib/go/src/runtime/rwmutex.go:0xc000c26a00 file:///usr/lib/go/src/runtime/select.go:0xc000c26b00 file:///usr/lib/go/src/runtime/sema.go:0xc000c26c00 file:///usr/lib/go/src/runtime/signal_amd64x.go:0xc000c26d00 file:///usr/lib/go/src/runtime/signal_linux_amd64.go:0xc000c26e00 file:///usr/lib/go/src/runtime/signal_sighandler.go:0xc000c26f00 file:///usr/lib/go/src/runtime/signal_unix.go:0xc000c27000 file:///usr/lib/go/src/runtime/sigqueue.go:0xc000c27100 file:///usr/lib/go/src/runtime/sigqueue_note.go:0xc000c27200 file:///usr/lib/go/src/runtime/sigtab_linux_generic.go:0xc000c27300 file:///usr/lib/go/src/runtime/sizeclasses.go:0xc000c27400 file:///usr/lib/go/src/runtime/slice.go:0xc000c27500 file:///usr/lib/go/src/runtime/softfloat64.go:0xc000c27600 file:///usr/lib/go/src/runtime/stack.go:0xc000c27700 file:///usr/lib/go/src/runtime/string.go:0xc000c27800 file:///usr/lib/go/src/runtime/stubs.go:0xc000c27900 file:///usr/lib/go/src/runtime/stubs2.go:0xc000c27a00 file:///usr/lib/go/src/runtime/stubs3.go:0xc000c27b00 file:///usr/lib/go/src/runtime/stubs_amd64x.go:0xc000c27c00 file:///usr/lib/go/src/runtime/stubs_linux.go:0xc000c27d00 file:///usr/lib/go/src/runtime/symtab.go:0xc000c27e00 file:///usr/lib/go/src/runtime/sys_nonppc64x.go:0xc000c27f00 file:///usr/lib/go/src/runtime/sys_x86.go:0xc000c4a000 file:///usr/lib/go/src/runtime/time.go:0xc000c4a100 file:///usr/lib/go/src/runtime/timestub.go:0xc000c4a200 file:///usr/lib/go/src/runtime/timestub2.go:0xc000c4a300 file:///usr/lib/go/src/runtime/trace.go:0xc000c4a400 file:///usr/lib/go/src/runtime/trace/annotation.go:0xc000b36ec0 file:///usr/lib/go/src/runtime/trace/trace.go:0xc000b1c9c0 file:///usr/lib/go/src/runtime/traceback.go:0xc000c4a500 file:///usr/lib/go/src/runtime/type.go:0xc000c4a600 file:///usr/lib/go/src/runtime/typekind.go:0xc000c4a700 file:///usr/lib/go/src/runtime/utf8.go:0xc000c4a800 file:///usr/lib/go/src/runtime/vdso_elf64.go:0xc000c4a900 file:///usr/lib/go/src/runtime/vdso_linux.go:0xc000c4aa00 file:///usr/lib/go/src/runtime/vdso_linux_amd64.go:0xc000c4ab00 file:///usr/lib/go/src/runtime/write_err.go:0xc000c4ac00 file:///usr/lib/go/src/sort/search.go:0xc00050dc40 file:///usr/lib/go/src/sort/slice.go:0xc00050ddc0 file:///usr/lib/go/src/sort/slice_go113.go:0xc00050df00 file:///usr/lib/go/src/sort/sort.go:0xc0009a4000 file:///usr/lib/go/src/sort/zfuncversion.go:0xc0009a4100 file:///usr/lib/go/src/strconv/atob.go:0xc00050c6c0 file:///usr/lib/go/src/strconv/atof.go:0xc00050c900 file:///usr/lib/go/src/strconv/atoi.go:0xc00050cac0 file:///usr/lib/go/src/strconv/decimal.go:0xc00050cc00 file:///usr/lib/go/src/strconv/doc.go:0xc00050cd40 file:///usr/lib/go/src/strconv/extfloat.go:0xc00050ce40 file:///usr/lib/go/src/strconv/ftoa.go:0xc00050cf40 file:///usr/lib/go/src/strconv/isprint.go:0xc00050d040 file:///usr/lib/go/src/strconv/itoa.go:0xc00050d140 file:///usr/lib/go/src/strconv/quote.go:0xc00050d240 file:///usr/lib/go/src/strings/builder.go:0xc00048cf00 file:///usr/lib/go/src/strings/compare.go:0xc00048d080 file:///usr/lib/go/src/strings/reader.go:0xc00048d240 file:///usr/lib/go/src/strings/replace.go:0xc00048d340 file:///usr/lib/go/src/strings/search.go:0xc00048d580 file:///usr/lib/go/src/strings/strings.go:0xc00048d7c0 file:///usr/lib/go/src/sync/atomic/doc.go:0xc000c69100 file:///usr/lib/go/src/sync/atomic/value.go:0xc000c69200 file:///usr/lib/go/src/sync/cond.go:0xc000c68580 file:///usr/lib/go/src/sync/map.go:0xc000c68680 file:///usr/lib/go/src/sync/mutex.go:0xc000c68780 file:///usr/lib/go/src/sync/once.go:0xc000c68880 file:///usr/lib/go/src/sync/pool.go:0xc000c68980 file:///usr/lib/go/src/sync/poolqueue.go:0xc000c68a80 file:///usr/lib/go/src/sync/runtime.go:0xc000c68b80 file:///usr/lib/go/src/sync/rwmutex.go:0xc000c68c80 file:///usr/lib/go/src/sync/waitgroup.go:0xc000c68d80 file:///usr/lib/go/src/syscall/dirent.go:0xc000c69b80 file:///usr/lib/go/src/syscall/endian_little.go:0xc000c69c80 file:///usr/lib/go/src/syscall/env_unix.go:0xc000c69d80 file:///usr/lib/go/src/syscall/exec_linux.go:0xc000c69e80 file:///usr/lib/go/src/syscall/exec_unix.go:0xc000c69f80 file:///usr/lib/go/src/syscall/flock.go:0xc000cba080 file:///usr/lib/go/src/syscall/lsf_linux.go:0xc000cba180 file:///usr/lib/go/src/syscall/msan0.go:0xc000cba280 file:///usr/lib/go/src/syscall/net.go:0xc000cba380 file:///usr/lib/go/src/syscall/netlink_linux.go:0xc000cba480 file:///usr/lib/go/src/syscall/setuidgid_linux.go:0xc000cba580 file:///usr/lib/go/src/syscall/sockcmsg_linux.go:0xc000cba680 file:///usr/lib/go/src/syscall/sockcmsg_unix.go:0xc000cba780 file:///usr/lib/go/src/syscall/str.go:0xc000cba880 file:///usr/lib/go/src/syscall/syscall.go:0xc000cba980 file:///usr/lib/go/src/syscall/syscall_linux.go:0xc000cbaa80 file:///usr/lib/go/src/syscall/syscall_linux_amd64.go:0xc000cbab80 file:///usr/lib/go/src/syscall/syscall_unix.go:0xc000cbac80 file:///usr/lib/go/src/syscall/timestruct.go:0xc000cbad80 file:///usr/lib/go/src/syscall/zerrors_linux_amd64.go:0xc000cbae80 file:///usr/lib/go/src/syscall/zsyscall_linux_amd64.go:0xc000cbaf80 file:///usr/lib/go/src/syscall/zsysnum_linux_amd64.go:0xc000cbb080 file:///usr/lib/go/src/syscall/ztypes_linux_amd64.go:0xc000cbb180 file:///usr/lib/go/src/testing/allocs.go:0xc000296b00 file:///usr/lib/go/src/testing/benchmark.go:0xc000296c00 file:///usr/lib/go/src/testing/cover.go:0xc000296d00 file:///usr/lib/go/src/testing/example.go:0xc000296e00 file:///usr/lib/go/src/testing/internal/testdeps/deps.go:0xc000374bc0 file:///usr/lib/go/src/testing/match.go:0xc000296f00 file:///usr/lib/go/src/testing/run_example.go:0xc000297040 file:///usr/lib/go/src/testing/testing.go:0xc000297140 file:///usr/lib/go/src/text/scanner/scanner.go:0xc00046af80 file:///usr/lib/go/src/text/tabwriter/tabwriter.go:0xc0001f8200 file:///usr/lib/go/src/text/template/doc.go:0xc0009a5680 file:///usr/lib/go/src/text/template/exec.go:0xc0009a5880 file:///usr/lib/go/src/text/template/funcs.go:0xc0009a5c00 file:///usr/lib/go/src/text/template/helper.go:0xc0003b0080 file:///usr/lib/go/src/text/template/option.go:0xc0003b0180 file:///usr/lib/go/src/text/template/parse/lex.go:0xc0003b0440 file:///usr/lib/go/src/text/template/parse/node.go:0xc0003b0540 file:///usr/lib/go/src/text/template/parse/parse.go:0xc0003b06c0 file:///usr/lib/go/src/text/template/template.go:0xc0003b0280 file:///usr/lib/go/src/time/format.go:0xc000c69380 file:///usr/lib/go/src/time/sleep.go:0xc000c69480 file:///usr/lib/go/src/time/sys_unix.go:0xc000c69580 file:///usr/lib/go/src/time/tick.go:0xc000c69680 file:///usr/lib/go/src/time/time.go:0xc000c69780 file:///usr/lib/go/src/time/zoneinfo.go:0xc000c69880 file:///usr/lib/go/src/time/zoneinfo_read.go:0xc000c69980 file:///usr/lib/go/src/time/zoneinfo_unix.go:0xc000c69a80 file:///usr/lib/go/src/unicode/casetables.go:0xc000ce2d40 file:///usr/lib/go/src/unicode/digit.go:0xc000ce2e40 file:///usr/lib/go/src/unicode/graphic.go:0xc000ce3240 file:///usr/lib/go/src/unicode/letter.go:0xc000ce3340 file:///usr/lib/go/src/unicode/tables.go:0xc000ce3440 file:///usr/lib/go/src/unicode/utf16/utf16.go:0xc00048d940 file:///usr/lib/go/src/unicode/utf8/utf8.go:0xc000ce3580 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go:0xc000b1dc80 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go:0xc000b36080 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go:0xc000b36240 file:///usr/lib/go/src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go:0xc000b36580 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/asn1.go:0xc000b1ce80 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go:0xc000b1d740 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/builder.go:0xc000b1d240 file:///usr/lib/go/src/vendor/golang.org/x/crypto/cryptobyte/string.go:0xc000b1d5c0 file:///usr/lib/go/src/vendor/golang.org/x/crypto/curve25519/doc.go:0xc000b37900 file:///usr/lib/go/src/vendor/golang.org/x/crypto/curve25519/mont25519_amd64.go:0xc000b37a00 file:///usr/lib/go/src/vendor/golang.org/x/crypto/hkdf/hkdf.go:0xc000b37b40 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/chacha20/chacha_generic.go:0xc000b36800 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/chacha20/chacha_noasm.go:0xc000b36940 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/chacha20/xor.go:0xc000b36c00 file:///usr/lib/go/src/vendor/golang.org/x/crypto/internal/subtle/aliasing.go:0xc000b36f00 file:///usr/lib/go/src/vendor/golang.org/x/crypto/poly1305/poly1305.go:0xc000b370c0 file:///usr/lib/go/src/vendor/golang.org/x/crypto/poly1305/sum_amd64.go:0xc000b371c0 file:///usr/lib/go/src/vendor/golang.org/x/crypto/poly1305/sum_generic.go:0xc000b372c0 file:///usr/lib/go/src/vendor/golang.org/x/net/dns/dnsmessage/message.go:0xc000b1c8c0 file:///usr/lib/go/src/vendor/golang.org/x/net/http/httpguts/guts.go:0xc000902a00 file:///usr/lib/go/src/vendor/golang.org/x/net/http/httpguts/httplex.go:0xc000902b00 file:///usr/lib/go/src/vendor/golang.org/x/net/http/httpproxy/proxy.go:0xc00053a880 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/encode.go:0xc00053aa00 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/hpack.go:0xc00053ab00 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/huffman.go:0xc00053ac00 file:///usr/lib/go/src/vendor/golang.org/x/net/http2/hpack/tables.go:0xc00053ad00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/idna10.0.0.go:0xc000902c00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/punycode.go:0xc000902d00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/tables11.0.0.go:0xc000902e00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/trie.go:0xc000902f00 file:///usr/lib/go/src/vendor/golang.org/x/net/idna/trieval.go:0xc000903000 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/byteorder.go:0xc000b37440 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/cpu.go:0xc000b37540 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go:0xc000b37640 file:///usr/lib/go/src/vendor/golang.org/x/sys/cpu/cpu_x86.go:0xc000b37780 file:///usr/lib/go/src/vendor/golang.org/x/text/secure/bidirule/bidirule.go:0xc000903100 file:///usr/lib/go/src/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go:0xc000903200 file:///usr/lib/go/src/vendor/golang.org/x/text/transform/transform.go:0xc000903380 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/bidi.go:0xc000903500 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/bracket.go:0xc000903600 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/core.go:0xc000903700 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/prop.go:0xc000903840 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go:0xc000903940 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/bidi/trieval.go:0xc000903a40 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/composition.go:0xc000903bc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/forminfo.go:0xc000903cc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/input.go:0xc000903dc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/iter.go:0xc000903ec0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/normalize.go:0xc000903fc0 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/readwriter.go:0xc00053a180 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go:0xc00053a300 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/transform.go:0xc00053a480 file:///usr/lib/go/src/vendor/golang.org/x/text/unicode/norm/trie.go:0xc00053a600] map[060a1917760e21f5242a0d055e230c6c3ea1aaa29909bbf1f962eba51505a493-d:[0xc000505940] 0811deb19de70704eba1b279cdb5f3522a0beaa5999045c1da8bdc3eaa43e1d1-d:[0xc000165e40] 0f535df00baf85a78d752286dc05a6045d11a518193316b476bd18cd0c19774f-d:[0xc000082000] 15f8dbf930cd33f7c8ed5a4bf4519d4379f2473e166bb9713bec1097f809a316-d:[0xc000658240] 1d2d016717473279731bacbf6cc41be99d10bc1e4d0068b92538b66dd002a6c6-d:[0xc000592300] 234880deda302e7a06442cd78b4a68ad7d31ee07b36157701430564e0fcaedb5-d:[0xc0002c2400] 2927d5ef7c163fbc2152a3a551527d1fc83feb2b41196b81292d7c7960bf02c0-d:[0xc0002c2300] 2a24b2da96f8c34b71811cbd8872b7cafd9ac21da00dbdccc2d75b5db90ade35-d:[0xc000505c40] 2b5c18117df0e3efc79d5d515546182622744de4735c10747ffea843f80f7ae2-d:[0xc000165c80] 2efd9496a7674857f1a8b23fd391bfb90838c10cdb70b744641f1b7ba5c10c7c-d:[0xc000504300] 32df16d3e210a510043f013176b3cacc4d1827b30e1c4020bb976108e5f7981b-d:[0xc000504000] 3fefbe12098cf98dfeb9a520c67a52cf351c96f807779059bb0547387396c20f-d:[0xc000593e00] 449e1a355fe51b9dfb7ef5c3f6feaa64c0226d927c3b2eb0ee9995a3fd7881ce-d:[0xc000374940] 4649e8947eb0d533542d956be7161f6f877ad72d7459d195feb34465bb2f510b-d:[0xc0005054c0] 479319ad1cc8f73778af99b9f17fc38d7303d652de7daf0a56b5bdf0c33f7e3b-d:[0xc000431c00] 4bc3b0a46c3ce3efd6e97c3f3018eddc25a82de370338db6d93fdfe0fab51785-d:[0xc000b1c680] 5ceeb704b7af3e61fa406f98ff2f6130a6e7afda5ab3f7d1dea6074794d1af47-d:[0xc0002c2200] 626d98d156da6b7537e76de846df9f00bab8e27106bf3cfb4cfe65e7a7ae7b24-d:[0xc000165ac0] 684f8fac0ae002d50a30fc6444e25b3fc30e6aec98bea779526680fb75f52e89-d:[0xc000b1c300] 68d348dd661af4c617f78d1806c73c86ae4bcb6e11d98705c5d016e808bd55f2-d:[0xc0002c2600] 729ecc894a1bf98486976c6e3b82f7ca6206ca3494be1b1b012a4175df9092d0-d:[0xc0004a2000] 844cd46d79b2edb56cad61822f5d5c8544d92aa299dc97d5a0db5807ae65615b-d:[0xc000593300] 92db4499692a421e5d3f96ddade72d83ea7748a044740d6ab66116059d70cf9d-d:[0xc0002c2500] 9942599c62884849cc08d6b67915ef27e1b0595282adf33009b62c840ae24f3c-d:[0xc0004a3480] 996a7ea007c669f5589857dbfcb7d2b9b20672b5f1bc179574e0835dd12b8597-d:[0xc000504600] 9986c41f947951d7d0d4a6633cf55b9df93c87e2c073ebd1309c772a480de689-d:[0xc000b1c4c0] 9e8846ac4cf1765248455e0ca27336d65a4cf5f7bc96a3db2b6a26998327f782-d:[0xc0004a2300] a80d214598d924d91af3a36ffcde1b47e2be0601d6086d903fcdb63031bd5212-d:[0xc000374ec0] about.qtpl.go:[0xc0005c9980] abs.go:[0xc000ca9d40 0xc0001f6800] access_level.go:[0xc00075a080] access_level_test.go:[0xc000430640] accesslevel_string.go:[0xc0005f82c0] accuracy_string.go:[0xc000267680] acosh.go:[0xc000ca9e40] acronyms.go:[0xc000638a80] actions.go:[0xc0005f83c0] addrselect.go:[0xc000272ec0] ae1b40cd21fcf3b25ab77bc19939a8f02c31b2d72e869418b9bfd0ea2e828c28-d:[0xc0004a3d00] ae7f518dca0f877b8264213f1d3e6c2173fa941e53c3314bf90bbb98240b2505-d:[0xc000592f80] aes_gcm.go:[0xc000319b00] affinity_linux.go:[0xc000528d00] agent.go:[0xc00075bb40 0xc0000e6f80 0xc0000e7280] aggregation.go:[0xc0001f8440] aggregation_data.go:[0xc0001f8540] alert.go:[0xc00044ff80] alg.go:[0xc000b95e00] algorithm.go:[0xc000426d40] aliases.go:[0xc000528e00] aliasing.go:[0xc000267380 0xc000b36f00] alloc.go:[0xc0008716c0] allocs.go:[0xc000296b00] alt_exit.go:[0xc000528000] annotation.go:[0xc000b36ec0] annotations.go:[0xc000426640] api_request.go:[0xc000902940] apis.go:[0xc0000e4900] append.go:[0xc00027c5c0] application_exception.go:[0xc00075bd40] arch.go:[0xc000c4bc00] arch_amd64.go:[0xc000c4bd00] archive.go:[0xc0004275c0] archive_linux.go:[0xc0004276c0] archive_unix.go:[0xc0004277c0] arg.go:[0xc000b1db80] arith.go:[0xc000267800 0xc0001f6900] arith_1_12.go:[0xc0001f6a00] arith_amd64.go:[0xc000267940] arith_decl.go:[0xc000267b80] array.go:[0xc000cbb480 0xc0003b1340 0xc000506580 0xc00027cec0] ascii.go:[0xc0004fec80] asin.go:[0xc000ca9f40] asinh.go:[0xc000d36040] asn1.go:[0xc000229ec0 0xc000b1ce80 0xc000b1d740] assert.go:[0xc0001b8b00] ast.go:[0xc000888f00 0xc0001b8d40] at.go:[0xc00048c540] at_sysnum_linux.go:[0xc00048c740] at_sysnum_newfstatat_linux.go:[0xc00048c840] atan.go:[0xc000d36140] atan2.go:[0xc000d36240] atanh.go:[0xc000d36340] atob.go:[0xc00050c6c0] atof.go:[0xc00050c900] atoi.go:[0xc00050cac0] atom.go:[0xc000507d00] atomic.go:[0xc00048dc00] atomic_amd64x.go:[0xc000c4b8c0] atomic_pointer.go:[0xc000b95f00] attr.go:[0xc0009be740] attr_string.go:[0xc0009be840] attributes.go:[0xc0004fe840] auth.go:[0xc0002280c0 0xc0002c3a40 0xc000369dc0 0xc0003b9bc0] authenticate.go:[0xc000426440] autoreplies.go:[0xc00040b6c0 0xc0005f84c0] auxlib.go:[0xc0008717c0] b3.go:[0xc0005c9780] backoff.go:[0xc000369740] backtrack.go:[0xc000ce3800] base.qtpl.go:[0xc0005c9a80] base32.go:[0xc0008222c0 0xc000889840] base64.go:[0xc000d26280] base_conn.go:[0xc00053b3c0] baselib.go:[0xc0008718c0] basetypes.go:[0xc000ca8bc0] bd0c611ffef50c2eb9710ace88ed62d6555c9ef3ad15f4da7a8bdb9418c12bc9-d:[0xc0001658c0] bench_test.go:[0xc000430880] benchmark.go:[0xc000296c00] bidi.go:[0xc000903500 0xc00053d900] bidirule.go:[0xc000903100 0xc00053d500] bidirule10.0.0.go:[0xc000903200 0xc00053d600] big.go:[0xc0003b1a00 0xc0007c4280] big_ctx.go:[0xc0003b1b40] bigbytes.go:[0xc0007c4380] binary.go:[0xc000ca9b00] binary_driver.go:[0xc0008b1b40] binary_protocol.go:[0xc00075be40] bind.go:[0xc000368d40] bindata.go:[0xc0001f9600] birc.go:[0xc0004ffe00] bit_reader.go:[0xc00046a940] bits.go:[0xc000d36440 0xc000d27b80] bits_errors.go:[0xc000d27c80] bits_tables.go:[0xc000d27d80] blkio.go:[0xc000401c80] block.go:[0xc000319c00 0xc000229240] blocked_users.go:[0xc00040b880] bluetooth_linux.go:[0xc000528f00] boil_queries.go:[0xc00040b980] boil_table_names.go:[0xc00040ba80] boil_types.go:[0xc00040bbc0] bool.go:[0xc0004d5200] bot.go:[0xc0002a8280 0xc0005f85c0 0xc0002c2d00] bot_test.go:[0xc000430980 0xc0004a2b80] botargs.go:[0xc00075aec0] bracket.go:[0xc000903600 0xc00053da00] breq.go:[0xc0004ffc00] breq_test.go:[0xc000374d80] buf.go:[0xc00027cfc0] buf_pool.go:[0xc0008b0e00] buffer.go:[0xc000ce2700 0xc0003e8400 0xc0002c3b40 0xc0004c1880] bufferpool.go:[0xc0003e81c0] bufio.go:[0xc000351bc0] builder.go:[0xc00048cf00 0xc000b1d240] builtin_commands.go:[0xc0005f86c0] bundler.go:[0xc0000e7a00] byte.go:[0xc0004d5300 0xc0003b1440] bytealg.go:[0xc000c4ad00] bytebuffer.go:[0xc0007c4e40 0xc0007c5640] byteorder.go:[0xc000b37440] bytes.go:[0xc000ce2800 0xc0004d5400 0xc0007c4480] bytespipe.go:[0xc0004c1980] bzip2.go:[0xc00046aa40] cache.go:[0xc000359240 0xc0003ce7c0 0xc0003cee40 0xc0003cf700] cache_test.go:[0xc000504b00] callbacks.go:[0xc0000828c0] callbacks_traceback.go:[0xc000082a00] camelize.go:[0xc000638b80] capitalize.go:[0xc000638c80] capture_metrics.go:[0xc0005c8b40] casetables.go:[0xc000ce2d40] cast.go:[0xc0009be540] caste.go:[0xc0009be640] cbc.go:[0xc0002663c0] cbp.go:[0xc00040b540] cbp_test.go:[0xc000431ec0] cbrt.go:[0xc000d36540] cert_pool.go:[0xc0002e9a00] cfb.go:[0xc000266540] cgo.go:[0xc000bfa000] cgo_mmap.go:[0xc000bfa100] cgo_sigaction.go:[0xc000bfa200] cgocall.go:[0xc000bfa300] cgocallback.go:[0xc000bfa400] cgocheck.go:[0xc000bfa500] chacha20poly1305.go:[0xc000b1dc80] chacha20poly1305_amd64.go:[0xc000b36080] chacha20poly1305_generic.go:[0xc000b36240] chacha_generic.go:[0xc000b36800] chacha_noasm.go:[0xc000b36940] chain.go:[0xc000583bc0 0xc0007c5d40] chan.go:[0xc000bfa600] change.go:[0xc000369f00] changes.go:[0xc0004278c0] changes_linux.go:[0xc0004279c0] changes_unix.go:[0xc000427ac0] channel.go:[0xc0001f72c0 0xc0003cef80] channel.qtpl.go:[0xc0005c9b80] channel_test.go:[0xc000504c00] channellib.go:[0xc0008719c0] channels.go:[0xc00040bd00] channels.qtpl.go:[0xc0005c9c80] chatters.go:[0xc0003cf080] chatters_test.go:[0xc000504d00] check.go:[0xc000ca8d40] chi.go:[0xc0007c5e40] chtimes.go:[0xc00046b900] chtimes_unix.go:[0xc00046ba00] chunked.go:[0xc000902400] cipher.go:[0xc000319dc0 0xc000266740 0xc000229340] cipher_asm.go:[0xc000319ec0] cipher_suites.go:[0xc000228280] cli.go:[0xc000b1d900] client.go:[0xc000350780 0xc0003b8000 0xc0003b9cc0 0xc0005c8e80] client_stats.go:[0xc0005c8f80] client_unix.go:[0xc0003b8100] clientcredentials.go:[0xc0003cf940] clock.go:[0xc00053bd40 0xc0000e4a00] clone.go:[0xc000350880] closest.go:[0xc000b1dd00] cluster.go:[0xc0002a8c80] cluster_commands.go:[0xc0002a8d80] cmd_admin.go:[0xc0005f87c0] cmd_autoreplies.go:[0xc0005f88c0] cmd_command.go:[0xc0005f89c0] cmd_connection.go:[0xc00053d440] cmd_filters.go:[0xc0005f8ac0] cmd_fun.go:[0xc0005f8bc0] cmd_generic.go:[0xc0005834c0] cmd_geo.go:[0xc0005c9880] cmd_hash.go:[0xc0008701c0] cmd_lastfm.go:[0xc0005f8cc0] cmd_levels.go:[0xc0005f8dc0] cmd_list.go:[0xc0005f8ec0 0xc0008702c0] cmd_management.go:[0xc0005f8fc0] cmd_moderation.go:[0xc0005f90c0] cmd_pubsub.go:[0xc0008703c0] cmd_quote.go:[0xc0005f91c0] cmd_raffle.go:[0xc0005f92c0] cmd_random.go:[0xc0005f93c0] cmd_repeat.go:[0xc0005f94c0] cmd_schedule.go:[0xc0005f95c0] cmd_scripting.go:[0xc0008704c0] cmd_server.go:[0xc0008705c0] cmd_set.go:[0xc0008706c0] cmd_settings.go:[0xc0005f96c0] cmd_sorted_set.go:[0xc0008707c0] cmd_steam.go:[0xc0005f97c0] cmd_string.go:[0xc0008708c0] cmd_transactions.go:[0xc0008709c0] cmd_twitch.go:[0xc0005f98c0] cmd_var.go:[0xc0005f99c0] cmd_website.go:[0xc0005f9ac0] codec.go:[0xc0008b0640] collations.go:[0xc0002c3c80] collector.go:[0xc0001f8640] color.go:[0xc0003e9b40] column.go:[0xc0008b1c40] columns.go:[0xc0008b1400] comm.go:[0xc000359340] comma.go:[0xc0007c45c0] commaf.go:[0xc0007c46c0] command.go:[0xc000d37e80 0xc000b1de80 0xc0002a8e80] command_infos.go:[0xc00040be40] command_lists.go:[0xc00040bfc0] commandinfo.go:[0xc000889d00] commands.go:[0xc0002a8fc0] commentmap.go:[0xc0001b8e40] common.go:[0xc000228440 0xc000229fc0 0xc000359440 0xc00046a1c0] compact_protocol.go:[0xc00075bf40] compare.go:[0xc00048d080 0xc000426180 0xc0000e5080 0xc0001b9b80] compare_native.go:[0xc000c4ae00] compile.go:[0xc000ca8300 0xc000871ac0] compiler.go:[0xc000bfa700] completion.go:[0xc000b1df80] complex.go:[0xc000bfa800] composition.go:[0xc000903bc0 0xc00053dfc0] compress.go:[0xc0007e4280] cond.go:[0xc000c68580] conf.go:[0xc000272fc0] config.go:[0xc000cbb580 0xc000d37f80 0xc000ca8cc0 0xc0008b1d40 0xc000401380 0xc000426740 0xc0004fff00 0xc000871bc0] config_flag.go:[0xc000d26400] config_test.go:[0xc0003741c0] configs.go:[0xc0003b9e00] confimport.go:[0xc0002c3200 0xc0004ff980] conn.go:[0xc0002285c0 0xc00053b4c0 0xc000d26500 0xc0003587c0 0xc00027d0c0 0xc000889e00] conn_go18.go:[0xc00027d1c0] connection.go:[0xc0002c3d80] connection_go18.go:[0xc0002c3e80] connection_test.go:[0xc0003742c0] connecton.go:[0xc0005c8000] connector.go:[0xc00027d2c0] consistenthash.go:[0xc000358500] console_encoder.go:[0xc0003e87c0] const.go:[0xc000d36640 0xc000266000 0xc000229480 0xc0002e86c0 0xc0001f6d00 0xc0005072c0 0xc0002c3f80] const64.go:[0xc0001f6e00] constant_time.go:[0xc0002674c0] constantdelay.go:[0xc000583cc0] constants.go:[0xc000529000 0xc0000e7080 0xc0000e73c0 0xc0000e7640] consumer.go:[0xc000d26640] container.go:[0xc0003b8200] container_changes.go:[0xc000401480] container_create.go:[0xc000401580] container_top.go:[0xc000401680] container_update.go:[0xc000401780] container_wait.go:[0xc000401880] content.go:[0xc0009be940] content_charset.go:[0xc0007e4380] content_type.go:[0xc0007e4480] context.go:[0xc000b957c0 0xc0009bea40 0xc0003b1c40 0xc000153180 0xc000369840 0xc0004c1f80 0xc0007c5f40 0xc000592800] context_keys.go:[0xc0008b1500] convert.go:[0xc0003189c0 0xc0004d4980 0xc0008b0140] cookie.go:[0xc000350980] cookie_go111.go:[0xc0007e5cc0] copy.go:[0xc00027d3c0 0xc000427bc0] copy_unix.go:[0xc000427cc0] copysign.go:[0xc000d36740] core.go:[0xc0003e88c0 0xc000903700 0xc00053db00] coroutinelib.go:[0xc000871cc0] correlation.go:[0xc0005f9bc0] count_native.go:[0xc000c4af00] cover.go:[0xc000296d00] cpu.go:[0xc000c4b500 0xc000b37540] cpu_amd64.go:[0xc000c4b600] cpu_gc_x86.go:[0xc000b37640] cpu_x86.go:[0xc000c4b700 0xc000b37780] cpuflags.go:[0xc000bfa900] cpuflags_amd64.go:[0xc000bfaa00] cpuprof.go:[0xc000bfab00] cputicks.go:[0xc000bfac00] crc32.go:[0xc000318780] crc32_amd64.go:[0xc000318880] crc32_generic.go:[0xc000318980] cron.go:[0xc000583dc0] cron_test.go:[0xc000658000] crypto.go:[0xc000229100] css.go:[0xc0009beb40] ctcp.go:[0xc00053b5c0] ctr.go:[0xc000266a00] ctxhack.go:[0xc0002972c0] ctxhack_test.go:[0xc000505e40] ctxhttp.go:[0xc0002a8080] ctxlog.go:[0xc000b956c0] ctxutil.go:[0xc0004d4a80] custom_command.go:[0xc0005f9cc0] custom_commands.go:[0xc0004d40c0] custom_data.go:[0xc000638d80] dasherize.go:[0xc000638e80] db.go:[0xc0008b1600 0xc000870ac0 0xc0000e4b00] dbstats_go1.11.go:[0xc0000e7cc0] debug.go:[0xc000bfad00 0xc0008b1700] debug_disable.go:[0xc0000e5ac0] debugcall.go:[0xc000bfae00] debuglib.go:[0xc000871dc0] debuglog.go:[0xc000bfaf00] debuglog_off.go:[0xc000bfb000] dec_helpers.go:[0xc000359980] decimal.go:[0xc00050cc00 0xc000267c80 0xc0003b1580] decode.go:[0xc000ce3940 0xc000d26e40 0xc000359a80] decode_amd64.go:[0xc000d26f40] decoder.go:[0xc000359bc0] decomposer.go:[0xc0003b1d80] dedupe.go:[0xc0002a8380] dedupe_test.go:[0xc0004a2c80] deepequal.go:[0xc000d27f00] defers.go:[0xc000296140] deflate.go:[0xc000318040] deflatefast.go:[0xc000318140] defs_linux_amd64.go:[0xc000bfb100] delegates.go:[0xc000d26740] delim_string.go:[0xc0009bec40] deps.go:[0xc0005f9dc0 0xc000374bc0] descriptor.go:[0xc000426840] dev_linux.go:[0xc000529100] dial.go:[0xc000273140] dialer.go:[0xc0005c8100] dialer_test.go:[0xc0003743c0] dict_decoder.go:[0xc000318240] diff.go:[0xc000427dc0 0xc0000e5bc0 0xc0001b9d80] difflib.go:[0xc0001b9fc0] digest.go:[0xc000426e40] digester.go:[0xc000426f40] digit.go:[0xc000ce2e40] dim.go:[0xc000d36840] dir.go:[0xc0009a4280] dir_unix.go:[0xc0009a4380] direct.go:[0xc000870bc0] dirent.go:[0xc000c69b80 0xc000529200] distribution.go:[0xc0003b8300] dnsclient.go:[0xc000273340] dnsclient_unix.go:[0xc000273500] dnsconfig_unix.go:[0xc000273600] doc.go:[0xc000c68ec0 0xc000c69100 0xc000cbb680 0xc00050cd40 0xc00050d440 0xc0003e8a00 0xc000350a80 0xc000267d80 0xc000b37900 0xc000ca8400 0xc000ca8e00 0xc00040ad00 0xc00040b080 0xc0009bf000 0xc0009a5680 0xc0003b1e80 0xc0001f6fc0 0xc0001f7c00 0xc0002a90c0 0xc000359580 0xc000359cc0 0xc0005066c0 0xc0005073c0 0xc000528100 0xc000583ec0 0xc000152200 0xc000152800 0xc000153280 0xc0001f8740 0xc00027d4c0 0xc000368e40 0xc000427040 0xc0005c9080 0xc0007c4f40 0xc0007c5740 0xc0007e5dc0 0xc000822440 0xc000871440 0xc000889f00 0xc0004a3880] dockertest.go:[0xc000369640] docs.go:[0xc0005c8c40] docs.qtpl.go:[0xc0005c9d80] doctype.go:[0xc0005074c0] doublestar.go:[0xc000583500] driver.go:[0xc0004d4d40 0xc0000e7dc0 0xc0001f9d80 0xc00027c280 0xc000368080] driver_go1.10.go:[0xc0000e7ec0] driver_main.go:[0xc0008b1e40] dsa.go:[0xc000272840] dsn.go:[0xc000368180] dump.go:[0xc0004ff480] durafmt.go:[0xc000639e00] duration.go:[0xc0003b8f40] e1f3241e79f270a8094a97e6bd572e093a0cb075c72482b5e8a692e6181c3e53-d:[0xc000593700] e5fa3bfd21a0bc296f3802dc776f1143db52cd157663ec5d747386cb363ce78c-d:[0xc000593ac0] e74659b1e3ced26c53bfbf3d2b73edb98d9c0eee1331ec7e43501c6a273b7b01-d:[0xc000592c80] eagain.go:[0xc000318f40] eager_load.go:[0xc0003b0a40] ecb76cb6c3068500c10f36ee03e8be1fb25c5d9d1479158e407ec218a4bce61a-d:[0xc000165700] ecdsa.go:[0xc000229600] ed25519.go:[0xc0002e8440] ed3164eec202a876f51e771279b45a177324dae4c4a1b80282fef8d07e5f86d0-d:[0xc000375a00] edwards25519.go:[0xc0002e87c0] element_string.go:[0xc0009bf100] elf.go:[0xc0001539c0] elliptic.go:[0xc000229700] enc_helpers.go:[0xc000359dc0] encode.go:[0xc000ce3a40 0xc00053aa00 0xc000ce2f80 0xc000359ec0 0xc00027d5c0] encode_amd64.go:[0xc000ce30c0] encodedword.go:[0xc000b37d40] encoder.go:[0xc000cbb7c0 0xc0003e8b40 0xc000359fc0] encoding.go:[0xc000d26140] endian_little.go:[0xc000c69c80 0xc000529300] entity.go:[0xc0009a52c0 0xc0005075c0] entry.go:[0xc0003e8c80 0xc000528200] env.go:[0xc0009a4480 0xc0003b8400 0xc0003b9280 0xc0004a3980 0xc0005926c0] env_default.go:[0xc0009a4580] env_posix.go:[0xc000bfb200] env_unix.go:[0xc000c69d80 0xc000529400] equal_generic.go:[0xc000c4b000] equal_native.go:[0xc000c4b100] equate.go:[0xc000297740] erf.go:[0xc000d36940] erfinv.go:[0xc000d36a40] errgroup.go:[0xc0005838c0] errgroupx.go:[0xc0005837c0] errgroupx_test.go:[0xc0005921c0] errno_unix.go:[0xc000874e00] error.go:[0xc000bfb300 0xc000cbb8c0 0xc0009a4680 0xc00048dd00 0xc00048df40 0xc0003e8d80 0xc000318dc0 0xc0009bf240 0xc0002a91c0 0xc0003ce100 0xc0001f9ec0 0xc00027d6c0] error_errno.go:[0xc0009a47c0] error_posix.go:[0xc0009a48c0 0xc000273840] error_response.go:[0xc0003b9f00] error_unix.go:[0xc000273940] errors.go:[0xc000b95900 0xc000cbb280 0xc00050d540 0xc000d26840 0xc0004d4fc0 0xc0008b1800 0xc0002c3300 0xc000368280 0xc00046bb00 0xc0001b9580] errwrap.go:[0xc00027cc00] esc.go:[0xc0001f9700] escape.go:[0xc0009bf3c0 0xc0009a5440 0xc0005076c0] event.go:[0xc0003b8500] evictedqueue.go:[0xc000ca8f00] example.go:[0xc000296e00] exception.go:[0xc0000e6040] exec.go:[0xc0009a49c0 0xc000ca8000 0xc00040a800 0xc0009a5880 0xc0003b8600] exec_linux.go:[0xc000c69e80] exec_posix.go:[0xc0009a4ac0] exec_unix.go:[0xc000c69f80 0xc0009a4bc0 0xc00040aa00] executable.go:[0xc0009a4cc0] executable_procfs.go:[0xc0009a4dc0] exemplar.go:[0xc000152900] exit.go:[0xc0003e9d00] exitcode.go:[0xc00046bc00] exp.go:[0xc000d36b40 0xc00044f980] exp_asm.go:[0xc000d36c40] expand.go:[0xc0005067c0] expm1.go:[0xc000d36d40] exponential.go:[0xc000369940] export.go:[0xc000ca9000 0xc0001f8840] export_test.go:[0xc0003752c0 0xc000430740] export_unsafe.go:[0xc0000e51c0] exported.go:[0xc000528300] expr.go:[0xc000889000] expvar.go:[0xc0007e5580] extern.go:[0xc000bfb400] extfloat.go:[0xc00050ce40] extralife.go:[0xc000359000] extralife_test.go:[0xc0004a3740] f7cb8f249ec2fa90c8b83d6429f1003d0da18267f018b99fc8ab98aaa4560093-d:[0xc000505f80] fake_api.go:[0xc000823880 0xc0008239c0 0xc000823b00 0xc000823c80 0xc000823dc0 0xc000823f40 0xc000870080 0xc000888040] fake_notifier.go:[0xc000823540] fake_rand.go:[0xc000823640] fake_sender.go:[0xc000823740] fake_token_source.go:[0xc000297cc0] fake_twitch_test.go:[0xc000504e00] fakes.go:[0xc0000e4c40] fastlog2.go:[0xc000bfb500] fastlog2table.go:[0xc000bfb600] fcntl.go:[0xc000529500] fd.go:[0xc000874f00] fd_fsync_posix.go:[0xc000875040] fd_mutex.go:[0xc0008751c0] fd_poll_runtime.go:[0xc000875380] fd_posix.go:[0xc000875540] fd_unix.go:[0xc000875680 0xc000273c80] fd_writev_unix.go:[0xc0008757c0] field.go:[0xc000cbb9c0 0xc0003e8ec0] fields.go:[0xc000368380] file.go:[0xc0009a4ec0 0xc000200980] file_posix.go:[0xc0009a4fc0] file_unix.go:[0xc0009a51c0 0xc000200b80] filesys.go:[0xc00046bd00] filetransport.go:[0xc000350bc0] fileutils.go:[0xc00046ad80] fileutils_unix.go:[0xc00046ae80] filter.go:[0xc0005068c0 0xc0001b8f40] filters.go:[0xc0005f9ec0] findlinks.go:[0xc00053cb40] findlinks_test.go:[0xc000592e40] flag.go:[0xc000cbbac0 0xc00048dac0] flags.go:[0xc000319000 0xc0004c10c0 0xc0000e5d00] flags_linux.go:[0xc0004c11c0] flatten.go:[0xc00027c6c0] flect.go:[0xc000638f80] float.go:[0xc000bfb700 0xc000267e80] float32.go:[0xc0004d5500] float64.go:[0xc0004d5600] floatconv.go:[0xc000267f80] floatmarsh.go:[0xc00044e5c0] flock.go:[0xc000cba080] floor.go:[0xc000d36e40] fold.go:[0xc000ce3b40] foreign.go:[0xc000507800] format.go:[0xc000c69380 0xc00050d780 0xc0003b1f80 0xc0003cff80 0xc00027c7c0 0xc00046a2c0 0xc0001b9ec0 0xc000296340] format_list.go:[0xc000506080] format_string.go:[0xc0001f60c0] formatter.go:[0xc000528400] formdata.go:[0xc000b94400] forminfo.go:[0xc000903cc0 0xc0005820c0] frexp.go:[0xc000d36f40] fs.go:[0xc000350cc0] fswriters.go:[0xc0004c1a80] ftoa.go:[0xc00050cf40 0xc00044ecc0 0xc0007c47c0] func.go:[0xc0000e5f80] funcs.go:[0xc0009a5c00] function.go:[0xc000871ec0] gamma.go:[0xc000d37040] garbage.go:[0xc0007e5840] gcm.go:[0xc000266bc0] gen.go:[0xc0005c9e80] generator.go:[0xc0008b0880] geo.go:[0xc000870cc0] geohash.go:[0xc000889940] get_head.go:[0xc0007e4580] getrandom_linux.go:[0xc00048c980] getrandom_linux_amd64.go:[0xc00048ca80] getwd.go:[0xc0009a5380] global.go:[0xc000cbbbc0 0xc0008b1900] global_go112.go:[0xc000cbbcc0] go-bindata.go:[0xc0002c27c0] go113.go:[0xc0003e8080] go17.go:[0xc0004fe080] go18.go:[0xc0000e4000] go19.go:[0xc0004fe180] godotenv.go:[0xc00040a700] gotty.go:[0xc0004fe940] grammar.go:[0xc000b37e40] graph_driver_data.go:[0xc000400000] graphic.go:[0xc000ce3240] group.go:[0xc000319180] gunzip.go:[0xc000351e40] guts.go:[0xc000902a00] gzip.go:[0xc000351f40] h2_bundle.go:[0xc000350dc0] handle.go:[0xc0005f9fc0] handshake_client.go:[0xc0002286c0] handshake_client_tls13.go:[0xc0002287c0] handshake_messages.go:[0xc000228900] handshake_server.go:[0xc000228a00] handshake_server_tls13.go:[0xc000228b00] hash.go:[0xc000318ac0] hash64.go:[0xc000bfb800] hashtag.go:[0xc000358640] header.go:[0xc000350ec0 0xc000b94d80] heapdump.go:[0xc000bfb900] heartbeat.go:[0xc0007e4680] help.go:[0xc000319300] helper.go:[0xc0003b0080 0xc000297400] helper_test.go:[0xc0005925c0] helpers.go:[0xc00053a280 0xc00053b6c0 0xc0003b0b40 0xc0003cf180 0xc000229500 0xc0002c3600] helpers_test.go:[0xc0005049c0] hex.go:[0xc000272b40] hkdf.go:[0xc000b37b40] hmac.go:[0xc0002e8940] homedir_linux.go:[0xc0004fe4c0] homedir_unix.go:[0xc0004fe5c0] hook.go:[0xc0003e9080 0xc000200d00] hook_cloexec.go:[0xc0008758c0] hook_unix.go:[0xc000875a40 0xc000200f40] hooks.go:[0xc0008b1a00 0xc000528500] host_config.go:[0xc000401980] hostconfig_unix.go:[0xc000401a80] hostid_linux.go:[0xc00075ac40] hosts.go:[0xc000201080 0xc0003b93c0] hosts_unix.go:[0xc0003b94c0] hpack.go:[0xc00053ab00] hstore.go:[0xc0003b16c0] html.go:[0xc0009bf500] htmlescapewriter.go:[0xc0007c5040] http.go:[0xc000350fc0 0xc0003cf280] http_handler.go:[0xc000cbbdc0] httplex.go:[0xc000902b00] httputil.go:[0xc0004ff580] huffman.go:[0xc00053ac00 0xc00046ab40] huffman_bit_writer.go:[0xc000318340] huffman_code.go:[0xc000318440] humanize.go:[0xc000639080 0xc0007c4900] hypot.go:[0xc000d37140] id.go:[0xc00075ad40] id_response.go:[0xc000400100] ident.go:[0xc000639180] idna10.0.0.go:[0xc000902c00 0xc00053cf80] idtools.go:[0xc00046b140] idtools_unix.go:[0xc00046b240] iface.go:[0xc000bfba00] ignore.go:[0xc000297840] image.go:[0xc0003b8700] image_delete_response_item.go:[0xc000400200] image_summary.go:[0xc000400300] import.go:[0xc0001b9040] imports.go:[0xc0009be440] incoming.go:[0xc00053a540] incoming_test.go:[0xc000375400] indent.go:[0xc000ce3c40] index.go:[0xc000426940] index.qtpl.go:[0xc0005c9f80] index_amd64.go:[0xc000c4b200] index_native.go:[0xc000c4b300] indexbyte_native.go:[0xc000c4b400] infile.go:[0xc000368480] inflate.go:[0xc000318540] inflect.go:[0xc0008b0f00 0xc0008b1200] ini.go:[0xc000319540] init.go:[0xc00046be00] init_unix.go:[0xc00046bf00] input.go:[0xc000903dc0 0xc0005821c0] int.go:[0xc00044edc0 0xc0004d5700] int16.go:[0xc0004d5800] int32.go:[0xc0004d5900] int64.go:[0xc0004d5a00] int8.go:[0xc0004d5b00] intconv.go:[0xc00044eec0] interface.go:[0xc000201280 0xc0008b1f40 0xc000296540] interface_linux.go:[0xc000201440] interfaces.go:[0xc000b94c00] internal.go:[0xc000ca99c0 0xc000b36900 0xc0002a9e00 0xc000296440] intlen.go:[0xc0001f6b00] intmarsh.go:[0xc00044efc0] intrinsics.go:[0xc000c4be00] io.go:[0xc000ce2a00 0xc000266d80] ioctl.go:[0xc000529600] iolib.go:[0xc000871fc0] ioutil.go:[0xc0003e9e80] ip.go:[0xc0002015c0 0xc0003b95c0] iprawsock.go:[0xc000201700] iprawsock_posix.go:[0xc000201cc0] ipsock.go:[0xc000201dc0] ipsock_posix.go:[0xc000201ec0] irc.go:[0xc00053b7c0 0xc0002a8480 0xc0000e4d40] irc_test.go:[0xc0004a2d80] ircargs.go:[0xc0005c8540] ircx.go:[0xc0004ffac0] ircx_test.go:[0xc000593180] iscgo.go:[0xc000082b80] isprint.go:[0xc00050d040] iter.go:[0xc000903ec0 0xc0005822c0] iteration.go:[0xc0005069c0] iterator.go:[0xc0002a92c0] itoa.go:[0xc00050d140] j0.go:[0xc000d37240] j1.go:[0xc000d37340] jaeger.go:[0xc00075bc40] jaegerargs.go:[0xc00075ba40] jar.go:[0xc0003510c0] jn.go:[0xc000d37440] js.go:[0xc0009bf600] jsctx_string.go:[0xc0009bf700] json.go:[0xc0004d5c00 0xc0003b17c0 0xc000871540] json_encoder.go:[0xc0003e9200] json_formatter.go:[0xc000528600] jsonmessage.go:[0xc0004fe700] jsonstring.go:[0xc0007c5140] key.go:[0xc000153380] key_agreement.go:[0xc000228c00] key_schedule.go:[0xc000228d00] keys.go:[0xc0009be040 0xc0002a8580 0xc000870dc0] keys_test.go:[0xc0004a2740] kind_string.go:[0xc000582940] label.go:[0xc000152a00 0xc000153ac0] lastfm.go:[0xc000359140] lastfm_test.go:[0xc0004a3ec0] layout.go:[0xc000426a40] lcow.go:[0xc0004c0000] lcow_unix.go:[0xc0004c0100] ldexp.go:[0xc000d37540] leaktest.go:[0xc0003746c0] letter.go:[0xc000ce3340] level.go:[0xc000cbbec0 0xc0003e9340] level_strings.go:[0xc0003e9440] lex.go:[0xc0003b0440 0xc0007e5ec0] lexer.go:[0xc000889440] lfstack.go:[0xc000bfbb00] lfstack_64bit.go:[0xc000bfbc00] lgamma.go:[0xc000d37640] linit.go:[0xc000888180] linkmatch.go:[0xc0005833c0] linkmatch_test.go:[0xc000593580] list.go:[0xc000318d40] loadlib.go:[0xc000888280] lock_futex.go:[0xc000bfbd00] log.go:[0xc000d37740 0xc00048cd40 0xc000350600 0xc0002a9f40 0xc0001f9980 0xc0000e4100] log10.go:[0xc000d37840] log1p.go:[0xc000d37940] logb.go:[0xc000d37a40] logger.go:[0xc000cbbfc0 0xc000528700 0xc000583fc0 0xc0007e4780] login.qtpl.go:[0xc0007c4080] logrus.go:[0xc000528800] lookup.go:[0xc0001a6500 0xc0002c2000 0xc00046b540] lookup_unix.go:[0xc0001a6e80 0xc00046b680] lower_upper.go:[0xc000639280] lp_unix.go:[0xc00040ab80] lru.go:[0xc000ca9880] lrumap.go:[0xc000ca9100] lsf_linux.go:[0xc000cba180] lstat_unix.go:[0xc0004c0200] lua.go:[0xc000870f00] mac.go:[0xc0001a71c0] main.go:[0xc0002c3700 0xc0005c8880 0xc000822e80 0xc000823000] main_test.go:[0xc000430a80] makefunc.go:[0xc00050c040] malloc.go:[0xc000bfbe00] man.go:[0xc0003198c0] manager.go:[0xc0001f8e80] manifest.go:[0xc000426b40] manipulation.go:[0xc000506ac0] map.go:[0xc000bfbf00 0xc000c68680 0xc000153480 0xc000153bc0] map_codec.go:[0xc0001535c0] map_fast32.go:[0xc000c10000] map_fast64.go:[0xc000c10100] map_faststr.go:[0xc000c10200] marshal.go:[0xc0002e8180 0xc0003ce380] marshaler.go:[0xc0003e9540] match.go:[0xc000350080 0xc000902640 0xc000296f00] math.go:[0xc000c4bb00] mathlib.go:[0xc000888380] mbarrier.go:[0xc000c10300] mbitmap.go:[0xc000c10400] mcache.go:[0xc000c10500] mcentral.go:[0xc000c10600] md5.go:[0xc0002e8a80] md5block.go:[0xc0002e8b80] md5block_decl.go:[0xc0002e8c80] measure.go:[0xc000152300] measure_float64.go:[0xc000152400] measure_int64.go:[0xc000152500] mediatype.go:[0xc000b37fc0 0xc000426c40] mem_linux.go:[0xc000c10700] meminfo.go:[0xc0004c0300] meminfo_linux.go:[0xc0004c0400] memory_buffer.go:[0xc0000e6140] memory_encoder.go:[0xc0003e9640] message.go:[0xc000b1c8c0 0xc00053ae40 0xc00053b8c0 0xc000d26940] message_encode.go:[0xc00053ba00] message_parse.go:[0xc00053bb00] messagetype.go:[0xc0000e6240] metadata.go:[0xc0001536c0] method.go:[0xc0003511c0] metric.go:[0xc000152b00] mfinal.go:[0xc000c10800] mfixalloc.go:[0xc000c10900] mgc.go:[0xc000c10a00] mgclarge.go:[0xc000c10b00] mgcmark.go:[0xc000c10c00] mgcscavenge.go:[0xc000c10d00] mgcstack.go:[0xc000c10e00] mgcsweep.go:[0xc000c10f00] mgcsweepbuf.go:[0xc000c11000] mgcwork.go:[0xc000c11100] mheap.go:[0xc000c11200] mid.go:[0xc0005c8a40] middleware.go:[0xc0007c5a40 0xc0007e4880] migrate.go:[0xc0001f9a80] migration.go:[0xc0001f9b80 0xc00027c380] migrations.go:[0xc0001f9840] migrations_test.go:[0xc0004a21c0] miniredis.go:[0xc000871000] miniredistest.go:[0xc0004fe400] misc.go:[0xc0003b8800 0xc000889100] mknod.go:[0xc0004c0500] mmap.go:[0xc000082dc0] mod.go:[0xc000d37b40 0xc0007e5940] modelsx.go:[0xc0001f73c0] modes.go:[0xc000266240] modf.go:[0xc000d37c40] mont25519_amd64.go:[0xc000b37a00] mount.go:[0xc000401dc0 0xc0004c12c0] mounter_linux.go:[0xc0004c13c0] mountinfo.go:[0xc0004c14c0] mountinfo_linux.go:[0xc0004c15c0] move_to_front.go:[0xc00046ac40] mprof.go:[0xc000c11300] msan0.go:[0xc000c11400 0xc000cba280] msize.go:[0xc000c11500] mstats.go:[0xc000c11600] multi.go:[0xc000ce2b00] multierror.go:[0xc00027c8c0] multipart.go:[0xc000b94540] multitag.go:[0xc000319a40] mutex.go:[0xc000c68780] mux.go:[0xc0007e4040] mwbbuf.go:[0xc000c11700] named.go:[0xc000368f40] named_context.go:[0xc000369040] nat.go:[0xc00044f0c0 0xc000401040] natconv.go:[0xc00044f1c0] net.go:[0xc000cba380 0xc000172200] netlink_linux.go:[0xc000cba480] netpoll.go:[0xc000c11800] netpoll_epoll.go:[0xc000c11900] nettrace.go:[0xc0000822c0] network.go:[0xc0003b8900 0xc000426300] nextafter.go:[0xc000d37d40] nocache.go:[0xc0007e4980] node.go:[0xc0003b0540 0xc000507900] nodes.go:[0xc0002967c0] nonblocking.go:[0xc00048cc00] norace.go:[0xc000c68fc0] normal.go:[0xc00044fa80] normalize.go:[0xc000903fc0 0xc0005823c0] notify.go:[0xc00053af40 0xc00027d7c0] notify_test.go:[0xc000375500] nsqargs.go:[0xc0001f9180] nsqtest.go:[0xc000297e00] nss.go:[0xc000172540] number.go:[0xc0007c4a00] numeric.go:[0xc0000e6340] oauth2.go:[0xc0001f78c0 0xc0001f7d00] oauth2x.go:[0xc0003ced00] oauth2x_test.go:[0xc000593900] observability.go:[0xc0000e7fc0] ofb.go:[0xc000266f80] once.go:[0xc000c68880 0xc000358040] onepass.go:[0xc000ca8100] op_bool.go:[0xc0002a8680] op_bool_test.go:[0xc0004a2840] op_rate.go:[0xc0002a8780] op_rate_test.go:[0xc0004a2940] op_set.go:[0xc0002a8880] op_set_test.go:[0xc0004a2a40] op_string.go:[0xc000ca8500] opcode.go:[0xc000888480] opencensus.go:[0xc000b36600] operatingmode_string.go:[0xc0001f61c0] option.go:[0xc000319d80 0xc0003b0180 0xc0005f8100] options.go:[0xc000ce20c0 0xc0002a93c0 0xc0001520c0 0xc0000e52c0] options_go111.go:[0xc0007e5fc0] opts.go:[0xc0003b96c0] opts_unix.go:[0xc0003b97c0] optstyle_other.go:[0xc00040a040] ordinalize.go:[0xc000639380] ordinals.go:[0xc0007c4b00] os_linux.go:[0xc000c11a00] os_linux_generic.go:[0xc000c11b00] os_linux_noauxv.go:[0xc000c11c00] os_nonopenbsd.go:[0xc000c11d00] oslib.go:[0xc000888580] p224.go:[0xc000229800] p256_asm.go:[0xc000229900] package.go:[0xc000888680] packets.go:[0xc000368580] pagesize_unix.go:[0xc000529700] panic.go:[0xc000c11e00] parse.go:[0xc000172640 0xc000ca8600 0xc0003b06c0 0xc000507a00 0xc00027c480 0xc000401140 0xc000426080] parse_error.go:[0xc00053bc00] parseany.go:[0xc000638940] parser.go:[0xc00040a1c0 0xc0005070c0 0xc000638000 0xc0004fea40 0xc000889540 0xc000296680] pascalize.go:[0xc000639480] path.go:[0xc0009a55c0 0xc000350180 0xc000902740 0xc0004c0600 0xc0000e53c0] path_driver.go:[0xc0004c0f80] path_unix.go:[0xc0009a5840 0xc000350280] payload_string.go:[0xc0001f62c0] pem.go:[0xc000272d40] pem_decrypt.go:[0xc0002e9b00] perl_groups.go:[0xc000ca8700] persist.go:[0xc0004ff680] pgtest.go:[0xc000297f40] pipe.go:[0xc000ce2c00 0xc0001727c0] pipe_linux.go:[0xc0009a59c0] pipeline.go:[0xc000b94f80 0xc0002a94c0] pkcs1.go:[0xc0002e9c00] pkcs1v15.go:[0xc0002e8f00] pkcs8.go:[0xc0002e9d00] pkix.go:[0xc000272a40] plugin.go:[0xc000c11f00 0xc0003b8a00 0xc000400400] plugin_device.go:[0xc000400540] plugin_env.go:[0xc000400640] plugin_interface_type.go:[0xc000400740] plugin_mount.go:[0xc000400840] plugin_responses.go:[0xc000400940] plural_rules.go:[0xc000639580] pluralize.go:[0xc000639680] pm.go:[0xc000889680] point.go:[0xc000152c00] pointer_unsafe.go:[0xc0001b8100] poly1305.go:[0xc000b370c0] pool.go:[0xc000c68980 0xc0003e8540 0xc0003588c0 0xc0005c8200 0xc0007c5840 0xc0000e4200] pool_single.go:[0xc000358a00] pool_sticky.go:[0xc000358b00] pool_test.go:[0xc0003744c0] poolqueue.go:[0xc000c68a80] pools.go:[0xc0004fe300] port.go:[0xc000172980 0xc000400a40] port_unix.go:[0xc000172b00] position.go:[0xc0001b97c0] postgres.go:[0xc00027cdc0] pow.go:[0xc000d26f80 0xc0001f6c00] pow10.go:[0xc000d27080] pprof.go:[0xc000153cc0 0xc0007e56c0] prefix.go:[0xc00027c9c0] prf.go:[0xc000228e00] prime.go:[0xc00044f2c0] print.go:[0xc000c26000 0xc00050d8c0 0xc0001b9140] printer.go:[0xc0002968c0] proc.go:[0xc000c26100 0xc0009a5ac0] process_unix.go:[0xc0004c0700] processor.go:[0xc0000e6440] producer.go:[0xc000d26a40 0xc0001f8f80] profbuf.go:[0xc000c26200] profile_19.go:[0xc0001537c0] profiler.go:[0xc0007e4a80] proflabel.go:[0xc000c26300] prog.go:[0xc000ca8800] prop.go:[0xc000903840 0xc00053dc40] propagation.go:[0xc000b1ccc0] property.go:[0xc000506bc0] proto.go:[0xc000153dc0 0xc000889a80] protobuf.go:[0xc000153ec0] protocol.go:[0xc000d26b40 0xc0000e6540] protocol_exception.go:[0xc0000e6640] protocol_factory.go:[0xc0000e6740] protomem.go:[0xc000153fc0] proxy.go:[0xc00053a880 0xc0004fed80] psql_upsert.go:[0xc0004d41c0] pss.go:[0xc0002e9000] public_join.go:[0xc0002a8980] public_join_test.go:[0xc0004a2e80] publisher.go:[0xc00053b040] pubsub.go:[0xc0002a95c0 0xc000871100 0xc0000e4300] punycode.go:[0xc000902d00 0xc00053d080] purell.go:[0xc00053cd40] qmhelper.go:[0xc0003b1180] query.go:[0xc0003b0d00 0xc000506cc0] query_builders.go:[0xc0003b0e00] query_mods.go:[0xc0003b1040] quote.go:[0xc00050d240] quotedstring.go:[0xc0003b98c0] quotes.go:[0xc0004d4300] race0.go:[0xc000c26400 0xc000529800] rand.go:[0xc0003191c0 0xc00044fb80] rand_batched.go:[0xc000319400] rand_linux.go:[0xc0003195c0] rand_unix.go:[0xc000319700] random.go:[0xc0008b02c0] randomize.go:[0xc0008b0480] randutil.go:[0xc000229a40] rat.go:[0xc00044f400] ratconv.go:[0xc00044f500] ratmarsh.go:[0xc00044f600] rawconn.go:[0xc0009a5d00 0xc000172d00] rc4.go:[0xc0002e8dc0] rdb.go:[0xc000638240] rdebug.go:[0xc000c26500] read.go:[0xc0003ce480] readdirent_getdents.go:[0xc000529900] reader.go:[0xc000ce2900 0xc00048d240 0xc000b94840 0xc000b95200 0xc000358c00 0xc00046a3c0] readers.go:[0xc0004c1b80] readwriter.go:[0xc00053a180 0xc0005824c0] realip.go:[0xc0007e4b80] recache.go:[0xc000583680] recache_test.go:[0xc000593c80] record.go:[0xc000152600 0xc000153080] recoverer.go:[0xc0007e4c80] redis.go:[0xc0002a8a80 0xc0002a96c0 0xc000871200 0xc0000e4440] redisargs.go:[0xc0001f94c0] redistest.go:[0xc000374080] reflect.go:[0xc0003b0f00 0xc000369340] regexp.go:[0xc000ca8200 0xc000ca8900] registration.go:[0xc0009be140] registry.go:[0xc000426540] relationships.go:[0xc0009be240] relax_stub.go:[0xc000c26600] remainder.go:[0xc000d27180] removeall_at.go:[0xc0009a5f00] render.go:[0xc000507b00] repeat.go:[0xc000583a40 0xc000638340] repeat_test.go:[0xc000658100] repeated_commands.go:[0xc0004d4440] replace.go:[0xc00048d340] reply.go:[0xc0000e4540] report.go:[0xc0000e54c0] report_compare.go:[0xc0000e55c0] report_reflect.go:[0xc0000e56c0] report_slices.go:[0xc0000e57c0] report_text.go:[0xc0000e58c0] report_value.go:[0xc0000e59c0] request.go:[0xc0003512c0] request_id.go:[0xc0007e4d80] resolve.go:[0xc0001b9280] resource.go:[0xc000152f00] response.go:[0xc0003513c0 0xc0004a3a80] result.go:[0xc0002a97c0 0xc000368680 0xc0001b8c00 0xc0001b9c80] retry.go:[0xc000369a40] reverseproxy.go:[0xc0004ff780] rich_transport.go:[0xc0000e6840] ring.go:[0xc0002a98c0] rm.go:[0xc0004c0800] rng.go:[0xc00044fcc0] root.go:[0xc0002e9e00] root_linux.go:[0xc0002e9f00] root_unix.go:[0xc000272000] roundingmode_string.go:[0xc00044f740 0xc0001f63c0] roundtrip.go:[0xc0003514c0] route.go:[0xc0005c9180] rows.go:[0xc00027d8c0 0xc000368780] rsa.go:[0xc0002e9100] rule.go:[0xc000639780] run_example.go:[0xc000297040] runtime.go:[0xc000c26700 0xc000c68b80 0xc0001f80c0 0xc0003b99c0] runtime1.go:[0xc000c26800] runtime2.go:[0xc000c26900] rwmutex.go:[0xc000c26a00 0xc000c68c80] sampler.go:[0xc0003e9740] sampling.go:[0xc000ca9200] sanitize.go:[0xc000ca9ac0] scan.go:[0xc00050da00 0xc000351cc0 0xc0001f64c0 0xc000358d00 0xc0000e4640] scanner.go:[0xc000ce3d40 0xc00046af80 0xc0001b9680] scheduled_commands.go:[0xc0004d4580] schemes.go:[0xc000582f40] scope.go:[0xc0001b9380] scram.go:[0xc00027dec0] script.go:[0xc0002a99c0 0xc0000e4740] script_test.go:[0xc000430b80] script_tester.go:[0xc0000e4e80] search.go:[0xc00050dc40 0xc00048d580] sec1.go:[0xc000272100] seccomp.go:[0xc000400b40] securecookie.go:[0xc000822540] select.go:[0xc000c26b00] selector.go:[0xc0005071c0] sema.go:[0xc000c26c00] semaphore.go:[0xc0000e7b00] send_message.go:[0xc00053b140] send_message_test.go:[0xc000375600] sendfile_linux.go:[0xc000875b40 0xc000172e40] sentinel.go:[0xc0002a9ac0] serialize.go:[0xc0001b98c0] serializer.go:[0xc0000e6940] server.go:[0xc0003515c0 0xc0005c9280 0xc000889b80 0xc000297500] server_test.go:[0xc0005929c0] service_update_response.go:[0xc000400c40] session.go:[0xc000638440 0xc0007c5b40] sessions.go:[0xc0008220c0] sessiontype_string.go:[0xc000638540] setenv.go:[0xc000083140] sets.go:[0xc0008b1000] setuidgid_linux.go:[0xc000cba580] sha1.go:[0xc0002e9240] sha1block.go:[0xc0002e9340] sha1block_amd64.go:[0xc0002e9440] sha256.go:[0xc0002e95c0] sha256block.go:[0xc0002e96c0] sha256block_amd64.go:[0xc0002e97c0] sha256block_decl.go:[0xc0002e98c0] sha512.go:[0xc000229b80] sha512block.go:[0xc000229c80] sha512block_amd64.go:[0xc000229d80] sharded.go:[0xc0003ce8c0 0xc0003cf800] shared_test.go:[0xc0003745c0] sharedsubtree_linux.go:[0xc0004c16c0] si.go:[0xc0007c4c00] sidebar_scripts.qtpl.go:[0xc0007c4180] sigaction.go:[0xc000b1c080] signal.go:[0xc00040ae00 0xc00040b180 0xc0003b8b00] signal_amd64x.go:[0xc000c26d00] signal_linux_amd64.go:[0xc000c26e00] signal_sighandler.go:[0xc000c26f00] signal_unix.go:[0xc000c27000 0xc00040b380] signature.go:[0xc000506180] signbit.go:[0xc000d27280] sigqueue.go:[0xc000c27100] sigqueue_note.go:[0xc000c27200] sigtab_linux_generic.go:[0xc000c27300] simple_json_protocol.go:[0xc0000e6a40] simplify.go:[0xc000ca8a00] sin.go:[0xc000d27380] sincos.go:[0xc000d27480] singleflight.go:[0xc000082780] singleproc.go:[0xc000822c80] singular_rules.go:[0xc000639880] singularize.go:[0xc000639980] sinh.go:[0xc000d27580] sink.go:[0xc000ce21c0] site_db.go:[0xc0002c3800] size.go:[0xc0003b9040] sizeclasses.go:[0xc000c27400] sleep.go:[0xc000c69480] slice.go:[0xc000c27500 0xc00050ddc0] slice_go113.go:[0xc00050df00] snappy.go:[0xc000ce3640] sniff.go:[0xc0003516c0] sock_cloexec.go:[0xc000875cc0 0xc000173100] sock_linux.go:[0xc0001732c0] sock_posix.go:[0xc000173480] sockaddr_posix.go:[0xc000173580] sockcmsg_linux.go:[0xc000cba680 0xc000529a00] sockcmsg_unix.go:[0xc000cba780 0xc000529b00] sockopt.go:[0xc000875e40] sockopt_linux.go:[0xc000875f40 0xc000173900] sockopt_posix.go:[0xc000173a80] sockopt_unix.go:[0xc00048c040] sockoptip.go:[0xc00048c180] sockoptip_linux.go:[0xc000173c00] sockoptip_posix.go:[0xc000173dc0] socks_bundle.go:[0xc0003517c0] softfloat64.go:[0xc000c27600] sort.go:[0xc00050db00 0xc0009a4000 0xc00027cac0 0xc000401240 0xc0001b8200 0xc000297940] sorted_set.go:[0xc000871340] source.go:[0xc000296240] span_annotating_client_trace.go:[0xc0005c9380] spanbucket.go:[0xc000ca9300] spanstore.go:[0xc000ca9400] spec.go:[0xc000638140] splice_linux.go:[0xc00048c2c0 0xc000173f80] sql.go:[0xc0004d4bc0 0xc0008b0a80] sqlargs.go:[0xc0002c2a00] sqlx.go:[0xc000369140] sqlx_context.go:[0xc000369240] sqrt.go:[0xc000d27680 0xc00044f840] ssl.go:[0xc00027d9c0] ssl_permissions.go:[0xc00027dac0] stack.go:[0xc000c27700 0xc0004d50c0 0xc0002c3400 0xc0007e5a40] stacktrace.go:[0xc000ce22c0] stat.go:[0xc0008740c0] stat_actime1.go:[0xc00046a4c0] stat_linux.go:[0xc0008741c0 0xc0004c0900] stat_unix.go:[0xc0008742c0 0xc00046a5c0 0xc0004c0a00] state.go:[0xc000888780] state_string.go:[0xc0009bf980] statement.go:[0xc000368880] states.go:[0xc000d26c40] stats.go:[0xc000400d40 0xc0005c9480] status.go:[0xc0003518c0] status_codes.go:[0xc000ca9500] stdcopy.go:[0xc0004ff300] steam.go:[0xc0003cea80] steam_test.go:[0xc0005041c0] sticky_notbsd.go:[0xc000874480] stmt.go:[0xc000889200] store.go:[0xc0008221c0] str.go:[0xc000cba880 0xc000874580 0xc000529c00] strconv.go:[0xc000358280 0xc00046a6c0] stream.go:[0xc000ce3e40] streams.go:[0xc0003cf380] streams_test.go:[0xc000504f00] string.go:[0xc000c27800 0xc00048de00 0xc000b1d5c0 0xc0004d5d00] stringlib.go:[0xc000888880] strings.go:[0xc00048d7c0] strip.go:[0xc0007e4e80] strmangle.go:[0xc0008b1100] strslice.go:[0xc000401f00] struct_filter.go:[0xc000297a40] stubs.go:[0xc000c27900 0xc000c4b9c0 0xc000c4bf00 0xc0007e5b40] stubs2.go:[0xc000c27a00] stubs3.go:[0xc000c27b00] stubs_amd64x.go:[0xc000c27c00] stubs_linux.go:[0xc000c27d00] subscriber.go:[0xc00053b240] sugar.go:[0xc000ce23c0] sum_amd64.go:[0xc000b371c0] sum_generic.go:[0xc000b372c0] swapper.go:[0xc000b95b00 0xc00050c180] symlink.go:[0xc000350380] symlink_unix.go:[0xc000350480] symtab.go:[0xc000c27e00] sys.go:[0xc000c68040 0xc0008746c0] sys_linux.go:[0xc0008747c0] sys_nonppc64x.go:[0xc000c27f00] sys_unix.go:[0xc000c69580 0xc0008749c0] sys_x86.go:[0xc000c4a000] syscall.go:[0xc000cba980 0xc000529d40] syscall_linux.go:[0xc000cbaa80 0xc000529e40] syscall_linux_amd64.go:[0xc000cbab80 0xc000529f40] syscall_linux_amd64_gc.go:[0xc00053c040] syscall_linux_gc.go:[0xc00053c140] syscall_unix.go:[0xc000cbac80 0xc00053c240 0xc0004c0b40] syscall_unix_gc.go:[0xc00053c340] table.go:[0xc0009be340 0xc000507e00 0xc000888980] tablelib.go:[0xc000888ac0] tables.go:[0xc000ce3440 0xc000ce3f40 0xc00053ad00] tables11.0.0.go:[0xc000902e00 0xc000903940 0xc00053a300 0xc00053d180 0xc00053dd40 0xc0005825c0 0xc000582a40] tabwriter.go:[0xc0001f8200] tag.go:[0xc000359680] tagencoding.go:[0xc0001f8d40] tags.go:[0xc000d26040] tan.go:[0xc000d27780] tanh.go:[0xc000d27880] tar.go:[0xc0003b8c40] tc.go:[0xc0004fee80] tcpsock.go:[0xc000164180] tcpsock_posix.go:[0xc000164700] tcpsockopt_posix.go:[0xc000164940] tcpsockopt_unix.go:[0xc000164b00] tee.go:[0xc0003e98c0] temp_unix.go:[0xc0004c1c80] tempfile.go:[0xc0003e9f80] template.go:[0xc0009bfb40 0xc0003b0280] term.go:[0xc0004fef80] terminal.go:[0xc0007e4f80] terminal_check_notappengine.go:[0xc000528900] terminal_check_unix.go:[0xc000528a00] termios_linux.go:[0xc0004ff080] termsize.go:[0xc00040a2c0] testcert.go:[0xc000902500] testcmd_test.go:[0xc000430c80] testing.go:[0xc000638640 0xc000297140] testutil.go:[0xc000350680] text_formatter.go:[0xc000528b00] textproto.go:[0xc000902040] throttle.go:[0xc0007e5080] thumbnail.go:[0xc000506280] tick.go:[0xc000c69680] ticker.go:[0xc00053be40 0xc000369b40] ticket.go:[0xc000228f00] time.go:[0xc000c4a100 0xc000c69780 0xc000ce24c0 0xc0004d5e00] time_linux.go:[0xc000427ec0] timeout.go:[0xc0007e5180] timer.go:[0xc00053bf40] times.go:[0xc0007c4d00] timestruct.go:[0xc000cbad80 0xc00053c440] timestub.go:[0xc000c4a200] timestub2.go:[0xc000c4a300] tinyurl.go:[0xc0003cebc0] tinyurl_test.go:[0xc0005044c0] tiocgwinsz_linux.go:[0xc00040a4c0] titleize.go:[0xc000639a80] tlds.go:[0xc000583040] tlds_pseudo.go:[0xc000583140] tls.go:[0xc000229000 0xc0003b8d40 0xc000297600] token.go:[0xc000318640 0xc0001f79c0 0xc0001f7e00 0xc000507c00 0xc000889300 0xc0001b99c0] toolchain_recent.go:[0xc0000e5e40] trace.go:[0xc000c4a400 0xc0009022c0 0xc000ca9600 0xc000b1c9c0 0xc0005c9580] trace_go11.go:[0xc000ca9780] traceback.go:[0xc000c4a500] traceinternals.go:[0xc000b36000] tracestate.go:[0xc000b36d40] track.go:[0xc000359780] transaction.go:[0xc000368980] transfer.go:[0xc0003519c0] transform.go:[0xc000903380 0xc00053a480 0xc00053d740 0xc0005826c0 0xc000582b40] transition.go:[0xc0009bfd40] transport.go:[0xc000351ac0 0xc0001f7ac0 0xc0001f7f40 0xc0000e6b40 0xc0004a3b80] transport_exception.go:[0xc0000e6c40] transport_factory.go:[0xc0000e6d40] traversal.go:[0xc000506dc0] tree.go:[0xc0007e4140] trie.go:[0xc000902f00 0xc00053a600 0xc00053d280 0xc0005827c0] tries.go:[0xc000369c40] trieval.go:[0xc000903000 0xc000903a40 0xc00053d3c0 0xc00053de40 0xc000582c40] trig_reduce.go:[0xc000d27980] ttypes.go:[0xc0000e7180 0xc0000e7500 0xc0000e7740] twitch.go:[0xc0003cf480 0xc0003cfa80 0xc0002c3900 0xc0000e4f80] twitch_test.go:[0xc000505000] twitch_tokens.go:[0xc0004d4780] twitchargs.go:[0xc0002c2bc0] twitchx.go:[0xc0005c8400] tx.go:[0xc0002a9bc0] type.go:[0xc000b95c00 0xc000c4a600 0xc00050c380 0xc000b940c0 0xc0003ce200 0xc000506ec0 0xc0000e6e40] type_string.go:[0xc000152d00] type_unix.go:[0xc000b941c0] typeinfo.go:[0xc0003ce580] typekind.go:[0xc000c4a700] types.go:[0xc000874b00 0xc0004d4e40 0xc0001f70c0 0xc000369500 0xc000400e40 0xc0004feb40] types_unix.go:[0xc000874c00] udpsock.go:[0xc000164d40] udpsock_posix.go:[0xc000164e80] uint.go:[0xc0004d5f00] uint16.go:[0xc00050c000] uint32.go:[0xc00050c2c0] uint64.go:[0xc00050c640] uint8.go:[0xc0008b0000] ulimit.go:[0xc0003b9140 0xc0003b9ac0] umask.go:[0xc0004c0c80] underscore.go:[0xc000639b80] unit.go:[0xc000152e00] units.go:[0xc000152700] universal.go:[0xc0002a9cc0] unixsock.go:[0xc000165180] unixsock_posix.go:[0xc0001653c0] unsafe.go:[0xc000d27a80 0xc000358380] urban.go:[0xc0003cfc00] urban_test.go:[0xc000505800] url.go:[0xc000b1cc00 0xc0009bff40 0xc00027c0c0 0xc00027dbc0] url_format.go:[0xc0007e5280] urlencode.go:[0xc0007c5240] urlesc.go:[0xc00053ce40] urlpart_string.go:[0xc0009a50c0] urlx.go:[0xc00053cc40] user.go:[0xc000359880 0xc0002c2100 0xc00046b780] user_posix.go:[0xc00027dcc0] user_state.go:[0xc000638740] usergroupadd_linux.go:[0xc00046b340] users.go:[0xc0003cf580] users_test.go:[0xc000505100] utf16.go:[0xc00048d940] utf8.go:[0xc000c4a800 0xc000ce3580] util.go:[0xc000319880 0xc0001f6600 0xc000358140 0xc0001f9c80 0xc0001f9fc0 0xc0007c5340] util_noappengine.go:[0xc0007c5440] utilities.go:[0xc000506fc0] utils.go:[0xc000506380 0xc000368a80 0xc000888bc0] utils_go18.go:[0xc000368b80] utils_unix.go:[0xc00046b440] utimes_linux.go:[0xc0004c0d80] uuid.go:[0xc0008b0c00 0xc00027ddc0] validate.go:[0xc0001538c0] value.go:[0xc000b95d00 0xc000c69200 0xc00050c500 0xc0007e5380 0xc000888d00] values.go:[0xc00040af00] var.go:[0xc000638840] variables.go:[0xc0004d4880] varint.go:[0xc000ca9c00] vdso_elf64.go:[0xc000c4a900] vdso_linux.go:[0xc000c4aa00] vdso_linux_amd64.go:[0xc000c4ab00] verifiers.go:[0xc000427140] verify.go:[0xc000272340] version.go:[0xc000d26d40 0xc000b1cfc0 0xc000639c80 0xc000427280] versioned.go:[0xc000427380] video_info.go:[0xc000506480] view.go:[0xc0001f8940] view_to_metric.go:[0xc0001f8a40] vm.go:[0xc000888e00] volume.go:[0xc0003b8e40 0xc000400f40] wait_waitid.go:[0xc000874d00] waitcondition.go:[0xc000401b80] waitgroup.go:[0xc000c68d80] walk.go:[0xc0001b9480] web.go:[0xc0002a8b80 0xc0007c5c40] web_test.go:[0xc0004a2f80] webargs.go:[0xc000822a00] whiteouts.go:[0xc000427fc0] width.go:[0xc000582d40] winsize.go:[0xc0004ff180] worker.go:[0xc0001f8b40] worker_commands.go:[0xc0001f8c40] wrap.go:[0xc000b95a00 0xc00046a0c0] wrap_generated_gteq_1.8.go:[0xc0005c8d40] wrap_writer.go:[0xc0007e5480] wrapped_body.go:[0xc0005c9680] write_err.go:[0xc000c4ac00] write_syncer.go:[0xc0003e99c0] writeflusher.go:[0xc0004c1d80] writer.go:[0xc000ce2600 0xc000b94740 0xc000b94a00 0xc000902140 0xc000358e00 0xc000528c00 0xc00046a7c0 0xc0007c5540] writers.go:[0xc0004c1e80] writev.go:[0xc00048c3c0] writev_unix.go:[0xc000165580] x509.go:[0xc000272480] xattrs_linux.go:[0xc0004c0e80] xchacha20poly1305.go:[0xc000b36580] xform.go:[0xc000297b40] xkcd.go:[0xc0003cfd40] xkcd_test.go:[0xc000505b00] xml.go:[0xc0003ce680] xor.go:[0xc000b36c00] xor_amd64.go:[0xc0002670c0] xurls.go:[0xc000583240] youtube.go:[0xc0003cfe80] zdebug0.go:[0xc0001f6700] zero.go:[0xc0001b8300] zerrors_linux_amd64.go:[0xc000cbae80 0xc00053c540] zfuncversion.go:[0xc0009a4100] zgoarch_amd64.go:[0xc000c68140] zgoos_linux.go:[0xc000c68240] zipf.go:[0xc00044fdc0] zipkincollector.go:[0xc0000e7880] zoneinfo.go:[0xc000c69880] zoneinfo_read.go:[0xc000c69980] zoneinfo_unix.go:[0xc000c69a80] zptrace386_linux.go:[0xc00053c640] zsyscall_linux_amd64.go:[0xc000cbaf80 0xc00053c740] zsysnum_linux_amd64.go:[0xc000cbb080 0xc00053c840] ztypes_linux_amd64.go:[0xc000cbb180 0xc00053c940] zversion.go:[0xc000c68340]] {0 0} 0xc007df1cc0 0xc00035e1a0 {0 0} map[file:///usr/lib/go/src/builtin/builtin.go:{}]})}
[Trace - 17:45:48.318 PM] Sending request 'textDocument/codeAction - (49)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:48.973 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:48 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:48.973 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:48 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:48.975 PM] Received response 'textDocument/codeAction - (49)' in 656ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":18,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":17,"character":4},"end":{"line":17,"character":4}},"newText":".uber.org/zap\"\n\t\"go"},{"range":{"start":{"line":17,"character":29},"end":{"line":18,"character":17}},"newText":""}]}]}}]
[Trace - 17:45:49.808 PM] Sending request 'textDocument/codeAction - (50)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:45:50.490 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:50 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:50.491 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:50 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:50.493 PM] Received response 'textDocument/codeAction - (50)' in 685ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":18,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":17,"character":4},"end":{"line":17,"character":4}},"newText":".uber.org/zap\"\n\t\"go"},{"range":{"start":{"line":17,"character":29},"end":{"line":18,"character":17}},"newText":""}]}]}}]
[Trace - 17:45:50.497 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":22},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":18,"character":17}},"rangeLength":18,"text":""},{"range":{"start":{"line":17,"character":4},"end":{"line":17,"character":4}},"rangeLength":0,"text":".uber.org/zap\"\n\t\"go"}]}
[Trace - 17:45:50.498 PM] Sending request 'textDocument/formatting - (51)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:45:50.698 PM] Sending request 'textDocument/foldingRange - (52)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:50.750 PM] Sending request 'textDocument/codeAction - (53)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:51.248 PM] Sending notification '$/cancelRequest'.
Params: {"id":51}
[Error - 17:45:51.251 PM] Received #51 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:45:51.252 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:51 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:51.252 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 : context canceled"}
[Trace - 17:45:51.252 PM] Received response 'textDocument/foldingRange - (52)' in 554ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":85,"endCharacter":1,"kind":"imports"}]
[Trace - 17:45:51.317 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":22}}
[Trace - 17:45:51.497 PM] Sending request 'textDocument/documentLink - (54)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:51.512 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:51 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:51.512 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:51 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:51.513 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 no dep handle: no metadata for go.ang.org/x/sync/sema\n\tpackage = go.ang.org/x/sync/sema"}
[Trace - 17:45:51.513 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 no dep handle: no metadata for go.uber.org/zapphore\n\tpackage = go.uber.org/zapphore"}
[Trace - 17:45:51.534 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"severity":1,"source":"syntax","message":"expected ';', found nc"}]}
[Trace - 17:45:51.788 PM] Sending request 'textDocument/codeAction - (55)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"context":{"diagnostics":[{"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"message":"expected ';', found nc","severity":1,"source":"syntax"}]}}
[Trace - 17:45:51.789 PM] Sending notification '$/cancelRequest'.
Params: {"id":53}
[Trace - 17:45:51.793 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:51 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:51.794 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:51 go/packages.Load\n\tpackage = /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Error - 17:45:51.794 PM] Received #53 no package for command-line-arguments
[Trace - 17:45:51.794 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 : context canceled"}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received response 'textDocument/documentLink - (54)' in 297ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":17}},"target":"https://godoc.org/go.uber.org/zap"}]
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Trace - 17:45:51.795 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:45:51 cannot unquote import path: invalid syntax\n\tPath = "}
[Error - 17:45:52.198 PM] Received #55 no packages found for query
[Trace - 17:45:52.198 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:52 go/packages.Load\n\tpackages = 0"}
[Trace - 17:45:54.093 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":23},"contentChanges":[{"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"rangeLength":0,"text":"\n\t\"golang.org/x/sy"},{"range":{"start":{"line":17,"character":4},"end":{"line":18,"character":4}},"rangeLength":19,"text":""}]}
[Trace - 17:45:54.289 PM] Sending request 'textDocument/foldingRange - (56)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:54.290 PM] Received response 'textDocument/foldingRange - (56)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:45:54.347 PM] Sending request 'textDocument/codeAction - (57)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:55.080 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:55 go/packages.Load\n\tpackage = command-line-arguments\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:55.080 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:55 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:55.082 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:45:55.099 PM] Sending request 'textDocument/documentLink - (58)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:45:55.293 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:55 go/packages.Load\n\tpackages = 1"}
[Trace - 17:45:55.293 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:45:55 go/packages.Load\n\tpackage = command-line-arguments\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:45:55.296 PM] Received response 'textDocument/codeAction - (57)' in 948ms.
Result: {}
[Trace - 17:45:55.296 PM] Received response 'textDocument/documentLink - (58)' in 196ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:45:55.336 PM] Sending request 'textDocument/codeAction - (59)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:45:55.339 PM] Received response 'textDocument/codeAction - (59)' in 2ms.
Result: {}
[Trace - 17:45:56.479 PM] Sending request 'textDocument/codeAction - (60)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:45:56.488 PM] Received response 'textDocument/codeAction - (60)' in 8ms.
Result: {}
[Trace - 17:45:56.492 PM] Sending request 'textDocument/formatting - (61)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:45:56.499 PM] Received response 'textDocument/formatting - (61)' in 6ms.
Result: []
[Trace - 17:45:56.525 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":23}}
[Trace - 17:46:00.451 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":24},"contentChanges":[{"range":{"start":{"line":17,"character":18},"end":{"line":18,"character":30}},"rangeLength":31,"text":""},{"range":{"start":{"line":17,"character":0},"end":{"line":17,"character":0}},"rangeLength":0,"text":"\t\"golang.org/x/sync/semaphore\"\n"}]}
[Trace - 17:46:00.647 PM] Sending request 'textDocument/foldingRange - (62)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:00.647 PM] Received response 'textDocument/foldingRange - (62)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":18,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:00.697 PM] Sending request 'textDocument/codeAction - (63)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:46:00.764 PM] Sending request 'textDocument/codeAction - (64)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:46:01.037 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:01 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:01.039 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:01 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:01.041 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:46:01.239 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:01 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:01.240 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:01 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:01.245 PM] Received response 'textDocument/codeAction - (64)' in 481ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":24,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":17,"character":4},"end":{"line":17,"character":4}},"newText":".uber.org/zap\"\n\t\"go"},{"range":{"start":{"line":17,"character":29},"end":{"line":18,"character":17}},"newText":""}]}]}}]
[Trace - 17:46:01.245 PM] Received response 'textDocument/codeAction - (63)' in 547ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":24,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":17,"character":4},"end":{"line":17,"character":4}},"newText":".uber.org/zap\"\n\t\"go"},{"range":{"start":{"line":17,"character":29},"end":{"line":18,"character":17}},"newText":""}]}]}}]
[Trace - 17:46:01.249 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":25},"contentChanges":[{"range":{"start":{"line":17,"character":29},"end":{"line":18,"character":17}},"rangeLength":19,"text":""},{"range":{"start":{"line":17,"character":4},"end":{"line":17,"character":4}},"rangeLength":0,"text":".uber.org/zap\"\n\t\"go"}]}
[Trace - 17:46:01.249 PM] Sending request 'textDocument/formatting - (65)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:46:01.448 PM] Sending request 'textDocument/documentLink - (66)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:01.449 PM] Sending request 'textDocument/foldingRange - (67)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:01.499 PM] Sending request 'textDocument/codeAction - (68)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":18,"character":30},"end":{"line":18,"character":30}},"context":{"diagnostics":[]}}
[Trace - 17:46:01.979 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:01 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:01.979 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:01 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:01.981 PM] Received response 'textDocument/formatting - (65)' in 732ms.
Result: []
[Trace - 17:46:01.982 PM] Received response 'textDocument/documentLink - (66)' in 533ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:01.982 PM] Received response 'textDocument/foldingRange - (67)' in 533ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:01.985 PM] Received response 'textDocument/codeAction - (68)' in 486ms.
Result: {}
[Trace - 17:46:02.018 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":25}}
[Trace - 17:46:02.035 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:02 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:02.035 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:02 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:02.038 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:46:03.848 PM] Sending request 'textDocument/codeAction - (69)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":10,"character":57},"end":{"line":10,"character":57}},"context":{"diagnostics":[]}}
[Trace - 17:46:03.855 PM] Received response 'textDocument/codeAction - (69)' in 7ms.
Result: {}
[Trace - 17:46:04.230 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":26},"contentChanges":[{"range":{"start":{"line":10,"character":57},"end":{"line":10,"character":57}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\""},{"range":{"start":{"line":9,"character":0},"end":{"line":10,"character":0}},"rangeLength":61,"text":""}]}
[Trace - 17:46:04.378 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":27},"contentChanges":[{"range":{"start":{"line":9,"character":57},"end":{"line":9,"character":57}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/botflags\""},{"range":{"start":{"line":8,"character":0},"end":{"line":9,"character":0}},"rangeLength":58,"text":""}]}
[Trace - 17:46:04.395 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:04 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:04.541 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":28},"contentChanges":[{"range":{"start":{"line":8,"character":57},"end":{"line":8,"character":57}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/cli\""},{"range":{"start":{"line":7,"character":0},"end":{"line":8,"character":0}},"rangeLength":43,"text":""}]}
[Trace - 17:46:04.548 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:04 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:04.727 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":29},"contentChanges":[{"range":{"start":{"line":7,"character":57},"end":{"line":7,"character":57}},"rangeLength":0,"text":"\n\t\"github.com/hortbot/hortbot/internal/bnsq\""},{"range":{"start":{"line":6,"character":0},"end":{"line":7,"character":0}},"rangeLength":44,"text":""}]}
[Trace - 17:46:04.740 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:04 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:04.923 PM] Sending request 'textDocument/foldingRange - (70)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:04.924 PM] Received response 'textDocument/foldingRange - (70)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:04.973 PM] Sending request 'textDocument/codeAction - (71)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":6,"character":57},"end":{"line":6,"character":57}},"context":{"diagnostics":[]}}
[Trace - 17:46:05.216 PM] Sending request 'textDocument/documentLink - (72)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:05.252 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:05 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:05.252 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:05 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:05.256 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:46:05.294 PM] Sending request 'textDocument/codeAction - (73)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:46:05.473 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:05 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:05.473 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:05 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:05.476 PM] Received response 'textDocument/codeAction - (71)' in 502ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":26,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":9,"character":48},"end":{"line":9,"character":51}},"newText":""},{"range":{"start":{"line":9,"character":51},"end":{"line":9,"character":51}},"newText":"jaeger"},{"range":{"start":{"line":10,"character":48},"end":{"line":10,"character":54}},"newText":""},{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"newText":"nsq"}]}]}}]
[Trace - 17:46:05.476 PM] Received response 'textDocument/documentLink - (72)' in 260ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:05.478 PM] Received response 'textDocument/codeAction - (73)' in 184ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":26,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":9,"character":48},"end":{"line":9,"character":51}},"newText":""},{"range":{"start":{"line":9,"character":51},"end":{"line":9,"character":51}},"newText":"jaeger"},{"range":{"start":{"line":10,"character":48},"end":{"line":10,"character":54}},"newText":""},{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"newText":"nsq"}]}]}}]
[Trace - 17:46:05.482 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":30},"contentChanges":[{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"rangeLength":0,"text":"nsq"},{"range":{"start":{"line":10,"character":48},"end":{"line":10,"character":54}},"rangeLength":6,"text":""},{"range":{"start":{"line":9,"character":51},"end":{"line":9,"character":51}},"rangeLength":0,"text":"jaeger"},{"range":{"start":{"line":9,"character":48},"end":{"line":9,"character":51}},"rangeLength":3,"text":""}]}
[Trace - 17:46:05.483 PM] Sending request 'textDocument/formatting - (74)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:46:05.683 PM] Sending request 'textDocument/foldingRange - (75)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:06.233 PM] Sending notification '$/cancelRequest'.
Params: {"id":74}
[Trace - 17:46:06.242 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:06 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:06.242 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Error - 17:46:06.244 PM] Received #74 no package for github.com/hortbot/hortbot/internal/cli/subcommands/bot
[Trace - 17:46:06.244 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:06 : context canceled"}
[Trace - 17:46:06.246 PM] Received response 'textDocument/foldingRange - (75)' in 562ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:06.257 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:06 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:06.258 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:06 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:06.261 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":57}},"severity":1,"source":"compiler","message":"nsqflags redeclared in this block"},{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":57}},"severity":1,"source":"compiler","message":"other declaration of nsqflags"},{"range":{"start":{"line":26,"character":8},"end":{"line":26,"character":20}},"severity":1,"source":"compiler","message":"undeclared name: botflags"},{"range":{"start":{"line":37,"character":10},"end":{"line":37,"character":29}},"severity":1,"source":"compiler","message":"undeclared name: botflags"}]}
[Trace - 17:46:06.263 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":30}}
[Trace - 17:46:06.482 PM] Sending request 'textDocument/documentLink - (76)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:06.482 PM] Received response 'textDocument/documentLink - (76)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:06.518 PM] Sending request 'textDocument/codeAction - (77)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":6,"character":57},"end":{"line":6,"character":57}},"context":{"diagnostics":[{"range":{"start":{"line":6,"character":1},"end":{"line":6,"character":57}},"message":"other declaration of nsqflags","severity":1,"source":"compiler"}]}}
[Trace - 17:46:07.787 PM] Received response 'textDocument/codeAction - (77)' in 1268ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":30,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":6,"character":38},"end":{"line":6,"character":48}},"newText":""},{"range":{"start":{"line":6,"character":48},"end":{"line":6,"character":48}},"newText":"b"},{"range":{"start":{"line":6,"character":51},"end":{"line":6,"character":56}},"newText":""},{"range":{"start":{"line":7,"character":38},"end":{"line":7,"character":42}},"newText":""},{"range":{"start":{"line":7,"character":42},"end":{"line":7,"character":42}},"newText":"cli"},{"range":{"start":{"line":8,"character":41},"end":{"line":8,"character":41}},"newText":"/flags/botflags"}]}]}}]
[Trace - 17:46:09.092 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":31},"contentChanges":[{"range":{"start":{"line":10,"character":48},"end":{"line":10,"character":51}},"rangeLength":3,"text":""},{"range":{"start":{"line":10,"character":48},"end":{"line":10,"character":48}},"rangeLength":0,"text":"jaeger"},{"range":{"start":{"line":9,"character":48},"end":{"line":9,"character":54}},"rangeLength":6,"text":""},{"range":{"start":{"line":9,"character":48},"end":{"line":9,"character":48}},"rangeLength":0,"text":"bot"}]}
[Trace - 17:46:09.289 PM] Sending request 'textDocument/foldingRange - (78)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:09.290 PM] Received response 'textDocument/foldingRange - (78)' in 1ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:09.361 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":32},"contentChanges":[{"range":{"start":{"line":6,"character":57},"end":{"line":7,"character":43}},"rangeLength":44,"text":""},{"range":{"start":{"line":6,"character":0},"end":{"line":6,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/bnsq\"\n"}]}
[Trace - 17:46:09.363 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:09 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:09.558 PM] Sending request 'textDocument/foldingRange - (79)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:09.559 PM] Received response 'textDocument/foldingRange - (79)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:09.563 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":33},"contentChanges":[{"range":{"start":{"line":7,"character":57},"end":{"line":8,"character":42}},"rangeLength":43,"text":""},{"range":{"start":{"line":7,"character":0},"end":{"line":7,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli\"\n"}]}
[Trace - 17:46:09.572 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:09 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:09.762 PM] Sending request 'textDocument/foldingRange - (80)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:09.762 PM] Received response 'textDocument/foldingRange - (80)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:09.782 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":34},"contentChanges":[{"range":{"start":{"line":8,"character":57},"end":{"line":9,"character":57}},"rangeLength":58,"text":""},{"range":{"start":{"line":8,"character":0},"end":{"line":8,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/botflags\"\n"}]}
[Trace - 17:46:09.787 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:09 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:09.957 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":35},"contentChanges":[{"range":{"start":{"line":9,"character":57},"end":{"line":10,"character":60}},"rangeLength":61,"text":""},{"range":{"start":{"line":9,"character":0},"end":{"line":9,"character":0}},"rangeLength":0,"text":"\t\"github.com/hortbot/hortbot/internal/cli/flags/jaegerflags\"\n"}]}
[Trace - 17:46:09.962 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:09 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:10.087 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":36},"contentChanges":[{"range":{"start":{"line":18,"character":29},"end":{"line":18,"character":29}},"rangeLength":0,"text":"\"\n\t\"go.uber.org/zap"},{"range":{"start":{"line":17,"character":4},"end":{"line":18,"character":4}},"rangeLength":19,"text":""}]}
[Trace - 17:46:10.089 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:10 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:10.105 PM] Sending request 'textDocument/documentLink - (81)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:10.106 PM] Received response 'textDocument/documentLink - (81)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:10.257 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":37},"contentChanges":[{"range":{"start":{"line":18,"character":18},"end":{"line":18,"character":18}},"rangeLength":0,"text":"\n\t\"golang.org/x/sync/semaphore\""},{"range":{"start":{"line":17,"character":0},"end":{"line":18,"character":0}},"rangeLength":31,"text":""}]}
[Trace - 17:46:10.265 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:10 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:10.456 PM] Sending request 'textDocument/foldingRange - (82)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:10.457 PM] Received response 'textDocument/foldingRange - (82)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:10.508 PM] Sending request 'textDocument/codeAction - (83)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:46:11.081 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:11 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:11.081 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:11 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:11.085 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:46:11.257 PM] Sending request 'textDocument/documentLink - (84)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:11.296 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:11 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:11.296 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:11 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:11.299 PM] Received response 'textDocument/codeAction - (83)' in 790ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":31,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":6,"character":38},"end":{"line":7,"character":38}},"newText":""},{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"newText":"flags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsq"}]}]}}]
[Trace - 17:46:11.299 PM] Received response 'textDocument/documentLink - (84)' in 42ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:11.338 PM] Sending request 'textDocument/codeAction - (85)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:46:11.341 PM] Received response 'textDocument/codeAction - (85)' in 2ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":31,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":6,"character":38},"end":{"line":7,"character":38}},"newText":""},{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"newText":"flags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsq"}]}]}}]
[Trace - 17:46:11.358 PM] Sending request 'textDocument/codeAction - (86)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:46:11.361 PM] Received response 'textDocument/codeAction - (86)' in 2ms.
Result: [{"title":"Organize Imports","kind":"source.organizeImports","edit":{"documentChanges":[{"textDocument":{"version":31,"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"edits":[{"range":{"start":{"line":6,"character":38},"end":{"line":7,"character":38}},"newText":""},{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"newText":"flags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsq"}]}]}}]
[Trace - 17:46:11.364 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":38},"contentChanges":[{"range":{"start":{"line":10,"character":54},"end":{"line":10,"character":54}},"rangeLength":0,"text":"flags\"\n\t\"github.com/hortbot/hortbot/internal/cli/flags/nsq"},{"range":{"start":{"line":6,"character":38},"end":{"line":7,"character":38}},"rangeLength":44,"text":""}]}
[Trace - 17:46:11.364 PM] Sending request 'textDocument/formatting - (87)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:46:11.565 PM] Sending request 'textDocument/foldingRange - (88)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:12.115 PM] Sending notification '$/cancelRequest'.
Params: {"id":87}
[Error - 17:46:12.117 PM] Received #87 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -mod=readonly -- github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags github.com/hortbot/hortbot/internal/cli/flags/botflags github.com/hortbot/hortbot/internal/cli/flags/nsqgs]: signal: killed:
[Trace - 17:46:12.117 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:12 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:12.117 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:12 : context canceled"}
[Trace - 17:46:12.118 PM] Received response 'textDocument/foldingRange - (88)' in 552ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:12.147 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":38}}
[Trace - 17:46:12.364 PM] Sending request 'textDocument/documentLink - (89)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:12.364 PM] Received response 'textDocument/documentLink - (89)' in 0ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":53}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqgs"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:12.375 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:12 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:12.375 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:12 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:12.375 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:12 no dep handle: no metadata for github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags"}
[Trace - 17:46:12.376 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:12 no dep handle: no metadata for github.com/hortbot/hortbot/internal/cli/flags/nsqgs\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/nsqgs"}
[Trace - 17:46:12.385 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"severity":1,"source":"compiler","message":"could not import github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags (no package for import github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags)"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":54}},"severity":1,"source":"compiler","message":"could not import github.com/hortbot/hortbot/internal/cli/flags/nsqgs (no package for import github.com/hortbot/hortbot/internal/cli/flags/nsqgs)"},{"range":{"start":{"line":27,"character":8},"end":{"line":27,"character":20}},"severity":1,"source":"compiler","message":"undeclared name: nsqflags"},{"range":{"start":{"line":61,"character":73},"end":{"line":61,"character":86}},"severity":1,"source":"compiler","message":"undeclared name: bnsq"},{"range":{"start":{"line":61,"character":98},"end":{"line":61,"character":111}},"severity":1,"source":"compiler","message":"undeclared name: bnsq"},{"range":{"start":{"line":38,"character":10},"end":{"line":38,"character":29}},"severity":1,"source":"compiler","message":"undeclared name: nsqflags"},{"range":{"start":{"line":9,"character":1},"end":{"line":9,"character":60}},"severity":1,"source":"compiler","message":"\"github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags\" imported but not used"},{"range":{"start":{"line":10,"character":1},"end":{"line":10,"character":54}},"severity":1,"source":"compiler","message":"\"github.com/hortbot/hortbot/internal/cli/flags/nsqgs\" imported but not used"}]}
[Trace - 17:46:12.648 PM] Sending request 'textDocument/codeAction - (90)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:46:13.080 PM] Sending notification 'textDocument/didChange'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":39},"contentChanges":[{"range":{"start":{"line":9,"character":54},"end":{"line":10,"character":51}},"rangeLength":58,"text":""},{"range":{"start":{"line":6,"character":38},"end":{"line":6,"character":38}},"rangeLength":0,"text":"bnsq\"\n\t\"github.com/hortbot/hortbot/internal/"}]}
[Trace - 17:46:13.080 PM] Sending notification '$/cancelRequest'.
Params: {"id":90}
[Error - 17:46:13.085 PM] Received #90 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed:
[Trace - 17:46:13.086 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:13 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:13.086 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:13 : context canceled"}
[Trace - 17:46:13.275 PM] Sending request 'textDocument/foldingRange - (91)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:13.275 PM] Received response 'textDocument/foldingRange - (91)' in 0ms.
Result: [{"startLine":2,"startCharacter":8,"endLine":18,"endCharacter":30,"kind":"imports"},{"startLine":21,"startCharacter":20,"endLine":28,"endCharacter":26},{"startLine":31,"startCharacter":25,"endLine":40,"endCharacter":3},{"startLine":43,"startCharacter":61,"endLine":87,"endCharacter":2},{"startLine":61,"startCharacter":120,"endLine":78,"endCharacter":12},{"startLine":65,"startCharacter":45,"endLine":66,"endCharacter":13},{"startLine":69,"startCharacter":40,"endLine":75,"endCharacter":19},{"startLine":85,"startCharacter":43,"endLine":86,"endCharacter":45}]
[Trace - 17:46:14.081 PM] Sending request 'textDocument/documentLink - (92)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}}
[Trace - 17:46:14.082 PM] Received response 'textDocument/documentLink - (92)' in 1ms.
Result: [{"range":{"start":{"line":3,"character":2},"end":{"line":3,"character":9}},"target":"https://godoc.org/context"},{"range":{"start":{"line":4,"character":2},"end":{"line":4,"character":6}},"target":"https://godoc.org/time"},{"range":{"start":{"line":6,"character":2},"end":{"line":6,"character":42}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/bnsq"},{"range":{"start":{"line":7,"character":2},"end":{"line":7,"character":41}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli"},{"range":{"start":{"line":8,"character":2},"end":{"line":8,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/botflags"},{"range":{"start":{"line":9,"character":2},"end":{"line":9,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/jaegerflags"},{"range":{"start":{"line":10,"character":2},"end":{"line":10,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/nsqflags"},{"range":{"start":{"line":11,"character":2},"end":{"line":11,"character":58}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/redisflags"},{"range":{"start":{"line":12,"character":2},"end":{"line":12,"character":56}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/sqlflags"},{"range":{"start":{"line":13,"character":2},"end":{"line":13,"character":59}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/cli/flags/twitchflags"},{"range":{"start":{"line":14,"character":2},"end":{"line":14,"character":48}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/ctxlog"},{"range":{"start":{"line":15,"character":2},"end":{"line":15,"character":51}},"target":"https://godoc.org/github.com/hortbot/hortbot/internal/pkg/errgroupx"},{"range":{"start":{"line":16,"character":2},"end":{"line":16,"character":24}},"target":"https://godoc.org/go.opencensus.io/trace"},{"range":{"start":{"line":17,"character":2},"end":{"line":17,"character":17}},"target":"https://godoc.org/go.uber.org/zap"},{"range":{"start":{"line":18,"character":2},"end":{"line":18,"character":29}},"target":"https://godoc.org/golang.org/x/sync/semaphore"}]
[Trace - 17:46:16.304 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:16 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:16.305 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:16 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:16.306 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:16 no dep handle: no metadata for github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags"}
[Trace - 17:46:16.307 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:16 no dep handle: no metadata for github.com/hortbot/hortbot/internal/cli/flags/nsqgs\n\tpackage = github.com/hortbot/hortbot/internal/cli/flags/nsqgs"}
[Trace - 17:46:16.322 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","diagnostics":[]}
[Trace - 17:46:16.323 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:16 failed to run analyses: no CheckPackageHandle for github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags:true\n\tfile = file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"}
[Trace - 17:46:16.583 PM] Sending request 'textDocument/codeAction - (93)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":17,"character":18},"end":{"line":17,"character":18}},"context":{"diagnostics":[]}}
[Trace - 17:46:17.031 PM] Sending request 'textDocument/codeAction - (94)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:46:17.687 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:17 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:17.687 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:17 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:17.690 PM] Received response 'textDocument/codeAction - (93)' in 1107ms.
Result: {}
[Trace - 17:46:18.871 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:18 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:18.872 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:18 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:18.875 PM] Received response 'textDocument/codeAction - (94)' in 1843ms.
Result: {}
[Trace - 17:46:18.877 PM] Sending request 'textDocument/formatting - (95)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:46:19.627 PM] Sending notification '$/cancelRequest'.
Params: {"id":95}
[Error - 17:46:19.630 PM] Received #95 go [list -e -json -compiled=true -test=true -export=false -deps=true -find=false -- /home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot]: signal: killed: go: finding github.com/hortbot/hortbot/internal/cli/flags latest
go: finding github.com/hortbot/hortbot/internal/cli/flags/nsqflaflags latest
go: finding github.com/hortbot/hortbot/internal/cli/flags/nsqgs latest
go: finding github.com/hortbot/hortbot/internal latest
go: finding github.com/hortbot/hortbot/internal/cli latest
[Trace - 17:46:19.630 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:19 go/packages.Load\n\tpackages = 0"}
[Trace - 17:46:19.631 PM] Received notification 'window/logMessage'.
Params: {"type":1,"message":"2019/11/14 17:46:19 : context canceled"}
[Trace - 17:46:19.698 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":39}}
[Trace - 17:46:22.069 PM] Sending request 'textDocument/codeAction - (96)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":0,"character":0},"end":{"line":89,"character":0}},"context":{"diagnostics":[]}}
[Trace - 17:46:22.472 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:22 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:22.473 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:22 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:22.476 PM] Received response 'textDocument/codeAction - (96)' in 406ms.
Result: {}
[Trace - 17:46:22.477 PM] Sending request 'textDocument/formatting - (97)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"options":{"tabSize":4,"insertSpaces":false}}
[Trace - 17:46:22.891 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:22 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:22.891 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:22 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:22.893 PM] Received response 'textDocument/formatting - (97)' in 415ms.
Result: []
[Trace - 17:46:22.959 PM] Sending notification 'textDocument/didSave'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go","version":39}}
[Trace - 17:46:27.799 PM] Sending request 'textDocument/codeAction - (98)'.
Params: {"textDocument":{"uri":"file:///home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go"},"range":{"start":{"line":6,"character":43},"end":{"line":6,"character":43}},"context":{"diagnostics":[]}}
[Trace - 17:46:28.139 PM] Sending request 'shutdown - (99)'.
Params: {}
[Trace - 17:46:28.181 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:28 go/packages.Load\n\tpackages = 1"}
[Trace - 17:46:28.182 PM] Received notification 'window/logMessage'.
Params: {"type":3,"message":"2019/11/14 17:46:28 go/packages.Load\n\tpackage = github.com/hortbot/hortbot/internal/cli/subcommands/bot\n\tfiles = [/home/jake/zikaeroh/hortbot/hortbot/internal/cli/subcommands/bot/bot.go]"}
[Trace - 17:46:28.187 PM] Received response 'textDocument/codeAction - (98)' in 388ms.
Result: {}
[Trace - 17:46:28.188 PM] Received response 'shutdown - (99)' in 48ms.
Result: {}
[Trace - 17:46:28.195 PM] Sending notification 'exit'.
Params: null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment