Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Segfault when creating + deserializing snapshot on 0.6.1 #229

Open
nightpool opened this issue Jan 12, 2022 · 14 comments
Open

Segfault when creating + deserializing snapshot on 0.6.1 #229

nightpool opened this issue Jan 12, 2022 · 14 comments

Comments

@nightpool
Copy link
Contributor

Hi all! Long time no see. I'm trying to upgrade to 0.6.1 to reduce the potential for deadlocks in MiniRacer / V8 (we already use MiniRacer::Platform.set_flags! :single_threaded on 0.4.0 / libv8-node 15.14.0.1, but not SingleThreadedDefaultPlatform). However, after upgrading to 0.6.1, I'm seeing some new segfaults when I attempt to deserialize snapshots.

I can pretty reliable reproduce these issues in the console using:

MiniRacer::Platform.set_flags! :single_threaded

webpack_js = File.read("tmp/assets/javascripts/compiled/server.js")

snapshot = MiniRacer::Snapshot.new(webpack_js) # note: ~1.8 MB
ObjectSpace.each_object(MiniRacer::Context).to_a
snapshot2 = MiniRacer::Snapshot.new(webpack_js)
ObjectSpace.each_object(MiniRacer::Context).to_a

fork { puts MiniRacer::Context.new(snapshot: snapshot2).eval("1 + 1") }

However, we don't see these errors 100% of the time. It seems like after running the above code (which is a very stripped down version of starting up our Unicorn-based React app), the fork call on the last line has about an 85% chance of failing. I've attached the segfault below, the crash appears to happen in v8::internal::Deserializer::PostProcessNewObject(v8::internal::Handle<v8::internal::Map>, v8::internal::Handle<v8::internal::HeapObject>, v8::internal::SnapshotSpace)

We're using Ruby 2.6.8.

/app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer.rb:178: [BUG] Segmentation fault at 0x0000000000000011
ruby 2.6.8p205 (2021-07-07 revision 67951) [x86_64-linux]

-- Control frame information -----------------------------------------------
c:0029 p:---- s:0149 e:000148 CFUNC  :init_unsafe
c:0028 p:0143 s:0143 e:000142 METHOD /app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer.rb:178 [FINISH]
c:0027 p:---- s:0131 e:000130 CFUNC  :new
c:0026 p:0023 s:0126 e:000125 BLOCK  /app/lib/react_ssr.rb:52
c:0025 p:0071 s:0123 e:000122 METHOD /app/config/initializers/metrics.rb:12
c:0024 p:0027 s:0114 e:000113 METHOD /app/lib/react_ssr.rb:50
c:0023 p:0021 s:0110 e:000108 BLOCK  (irb):14 [FINISH]
c:0022 p:---- s:0106 e:000105 CFUNC  :fork
c:0021 p:0005 s:0102 e:000101 EVAL   (irb):14 [FINISH]
c:0020 p:---- s:0099 e:000098 CFUNC  :eval
c:0019 p:0021 s:0091 e:000090 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/workspace.rb:85
c:0018 p:0056 s:0083 e:000081 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/context.rb:385
c:0017 p:0020 s:0074 e:000073 BLOCK  /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:493
c:0016 p:0025 s:0071 e:000070 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:647
c:0015 p:0008 s:0065 e:000064 BLOCK  /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:490
c:0014 p:0100 s:0060 e:000059 BLOCK  /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:246 [FINISH]
c:0013 p:---- s:0056 e:000055 CFUNC  :loop
c:0012 p:0006 s:0052 e:000051 BLOCK  /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:232 [FINISH]
c:0011 p:---- s:0049 e:000048 CFUNC  :catch
c:0010 p:0012 s:0044 e:000043 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:231
c:0009 p:0034 s:0040 E:0016c8 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:489
c:0008 p:0005 s:0035 e:000034 BLOCK  /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:428 [FINISH]
c:0007 p:---- s:0032 e:000031 CFUNC  :catch
c:0006 p:0064 s:0027 E:000b18 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:427
c:0005 p:0102 s:0022 e:000021 METHOD /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:383
c:0004 p:0019 s:0016 e:000015 TOP    /app/vendor/ruby-2.6.8/lib/ruby/gems/2.6.0/gems/irb-1.0.0/exe/irb:11 [FINISH]
c:0003 p:---- s:0013 e:000012 CFUNC  :load
c:0002 p:0109 s:0008 E:000940 EVAL   /app/vendor/bundle/ruby/2.6.0/bin/irb:23 [FINISH]
c:0001 p:0000 s:0003 E:000940 (none) [FINISH]

-- Ruby level backtrace information ----------------------------------------
/app/vendor/bundle/ruby/2.6.0/bin/irb:23:in `<main>'
/app/vendor/bundle/ruby/2.6.0/bin/irb:23:in `load'
/app/vendor/ruby-2.6.8/lib/ruby/gems/2.6.0/gems/irb-1.0.0/exe/irb:11:in `<top (required)>'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:383:in `start'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:427:in `run'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:427:in `catch'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:428:in `block in run'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:489:in `eval_input'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:231:in `each_top_level_statement'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:231:in `catch'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:232:in `block in each_top_level_statement'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:232:in `loop'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/ruby-lex.rb:246:in `block (2 levels) in each_top_level_statement'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:490:in `block in eval_input'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:647:in `signal_status'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb.rb:493:in `block (2 levels) in eval_input'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/context.rb:385:in `evaluate'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/workspace.rb:85:in `evaluate'
/app/vendor/ruby-2.6.8/lib/ruby/2.6.0/irb/workspace.rb:85:in `eval'
(irb):14:in `irb_binding'
(irb):14:in `fork'
(irb):14:in `block in irb_binding'
/app/lib/react_ssr.rb:50:in `context'
/app/config/initializers/metrics.rb:12:in `log'
/app/lib/react_ssr.rb:52:in `block in context'
/app/lib/react_ssr.rb:52:in `new'
/app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer.rb:178:in `initialize'
/app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer.rb:178:in `init_unsafe'

-- Machine register context ------------------------------------------------
 RIP: 0x00007f012a2e0eb9 RBP: 0x00007fffccff9300 RSP: 0x00007fffccff9290
 RAX: 0x0000562b8dcf9540 RBX: 0x0000000000000009 RCX: 0x0000000000000000
 RDX: 0x0000562b95c6a1e8 RDI: 0x00007fffccff92b0 RSI: 0x000000000000ffff
  R8: 0x000000000000005d  R9: 0x0000000000000050 R10: 0x0000562b88c1e010
 R11: 0x0000000000000001 R12: 0x00007f013b9d9070 R13: 0x000008d2b30a3eb9
 R14: 0x0000000000000000 R15: 0x000008d2b30a3ef8 EFL: 0x0000000000010202

-- C level backtrace information -------------------------------------------
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_bugreport+0x769) [0x7f013c472979] vm_dump.c:715
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_bug_context+0xe7) [0x7f013c2b4e27] error.c:609
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(sigsegv+0x42) [0x7f013c3d9e22] signal.c:998
/lib/x86_64-linux-gnu/libc.so.6(0x7f013be45040) [0x7f013be45040]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(_ZN2v88internal12Deserializer20PostProcessNewObjectENS0_6HandleINS0_3MapEEENS2_INS0_10HeapObjectEEENS0_13SnapshotSpaceE+0x609) [0x7f012a2e0eb9]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20d0) [0x7f012a2e20d0]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e1a73) [0x7f012a2e1a73]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e201b) [0x7f012a2e201b]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e1a73) [0x7f012a2e1a73]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e201b) [0x7f012a2e201b]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e1a73) [0x7f012a2e1a73]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e201b) [0x7f012a2e201b]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e1a73) [0x7f012a2e1a73]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e201b) [0x7f012a2e201b]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e1a73) [0x7f012a2e1a73]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e201b) [0x7f012a2e201b]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e2ccf) [0x7f012a2e2ccf]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e30d1) [0x7f012a2e30d1]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e20be) [0x7f012a2e20be]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2e1a73) [0x7f012a2e1a73]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012afd55b8) [0x7f012afd55b8]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012afd5744) [0x7f012afd5744]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a2feb3c) [0x7f012a2feb3c]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a0ea4b6) [0x7f012a0ea4b6]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f012a0eb058) [0x7f012a0eb058]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f0129f39159) [0x7f0129f39159]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(0x7f0129f394d4) [0x7f0129f394d4]
/app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so(rb_context_init_unsafe+0x17b) [0x7f0129f25b6b] mini_racer_extension.cc:1016
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x17a) [0x7f013c45bada] insns.def:765
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call0_body+0x128) [0x7f013c467b48] vm_eval.c:127
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_call0) vm_eval.c:60
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_class_s_new+0x6d) [0x7f013c34fdbd] object.c:2214
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_method+0xe3) [0x7f013c466363] vm_insnhelper.c:2400
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x17a) [0x7f013c45bada] insns.def:765
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_iseq_block_from_c+0x8c) [0x7f013c4630b9] vm.c:1092
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_block_from_c_bh) vm.c:1110
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_yield) vm.c:1155
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_yield_0) vm_eval.c:978
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_yield_1) vm_eval.c:984
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_yield) vm_eval.c:994
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_protect+0x1e4) [0x7f013c2bf544] eval.c:1046
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_f_fork+0x6b) [0x7f013c38a8db] process.c:4139
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_method+0xe3) [0x7f013c466363] vm_insnhelper.c:2400
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x244) [0x7f013c45bba4] insns.def:750
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_f_eval+0x164) [0x7f013c467454] vm_eval.c:1352
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x17a) [0x7f013c45bada] insns.def:765
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_block+0x159) [0x7f013c46a1df] vm.c:1021
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_iseq_block_from_c) vm.c:1092
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_block_from_c_bh) vm.c:1110
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_yield) vm.c:1155
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_yield_0) vm_eval.c:978
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(loop_i) vm_eval.c:1057
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vrescue2+0xd1) [0x7f013c2bc741] eval.c:917
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_rescue2+0x8a) [0x7f013c2bf31a] eval.c:987
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_method+0xe3) [0x7f013c466363] vm_insnhelper.c:2400
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x244) [0x7f013c45bba4] insns.def:750
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_iseq_block_from_c+0x99) [0x7f013c46516a] vm.c:1092
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_block_from_c_bh) vm.c:1110
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_yield) vm.c:1155
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_yield_0) vm_eval.c:978
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(catch_i) vm_eval.c:1900
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_catch_protect+0xb1) [0x7f013c455f41] vm_eval.c:1982
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_catch_obj+0x2c) [0x7f013c45608c] vm_eval.c:2008
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_method+0xe3) [0x7f013c466363] vm_insnhelper.c:2400
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x244) [0x7f013c45bba4] insns.def:750
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_iseq_block_from_c+0x99) [0x7f013c46516a] vm.c:1092
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(invoke_block_from_c_bh) vm.c:1110
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_yield) vm.c:1155
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_yield_0) vm_eval.c:978
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(catch_i) vm_eval.c:1900
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_catch_protect+0xb1) [0x7f013c455f41] vm_eval.c:1982
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_catch_obj+0x2c) [0x7f013c45608c] vm_eval.c:2008
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_method+0xe3) [0x7f013c466363] vm_insnhelper.c:2400
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x244) [0x7f013c45bba4] insns.def:750
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0x6cf) [0x7f013c462abf] vm.c:1894
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_load_internal0+0x107) [0x7f013c30f957] load.c:612
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_f_load+0x8b) [0x7f013c30fc2b] load.c:643
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_cfp_consistent_p+0x0) [0x7f013c45206a] vm_insnhelper.c:1908
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc_with_frame) vm_insnhelper.c:1910
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_cfunc) vm_insnhelper.c:1924
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_call_method+0xe3) [0x7f013c466363] vm_insnhelper.c:2400
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(vm_exec_core+0x17a) [0x7f013c45bada] insns.def:765
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(rb_vm_exec+0xaf) [0x7f013c46249f] vm.c:1885
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(ruby_exec_internal+0xd6) [0x7f013c2bbbc6] eval.c:262
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(ruby_exec_node+0x1d) [0x7f013c2be28d] eval.c:326
/app/vendor/ruby-2.6.8/bin/../lib/libruby.so.2.6(ruby_run_node+0x2e) [0x7f013c2c184e] eval.c:318
/app/vendor/ruby-2.6.8/bin/ruby(main+0x5b) [0x562b87d4394b] ./main.c:42

-- Other runtime information -----------------------------------------------

* Loaded script: irb

* Process memory map:

1a2f7500000-1a2f7540000 rw-p 00000000 00:00 0 
1d3295c0000-1d329600000 rw-p 00000000 00:00 0 
48543e40000-48543e80000 rw-p 00000000 00:00 0 
797281c0000-79728200000 rw-p 00000000 00:00 0 
8d2b3080000-8d2b30c0000 rw-p 00000000 00:00 0 
a5a9a600000-a5a9a640000 rw-p 00000000 00:00 0 
e912d400000-e912d440000 rw-p 00000000 00:00 0 
ed1c4a00000-ed1c4a05000 rw-p 00000000 00:00 0 
12f8eeb00000-12f8eeb40000 rw-p 00000000 00:00 0 
13b469b80000-13b469bc2000 rw-p 00000000 00:00 0 
159035d80000-159036131000 rw-p 00000000 00:00 0 
1c2788c80000-1c2788cc0000 rw-p 00000000 00:00 0 
215cec840000-215cec880000 rw-p 00000000 00:00 0 
21efa5680000-21efa56c0000 rw-p 00000000 00:00 0 
27fc43240000-27fc43280000 rw-p 00000000 00:00 0 
29dbfd940000-29dbfd980000 rw-p 00000000 00:00 0 
2ae446380000-2ae4463ab000 r--p 00000000 00:00 0 
323b1f500000-323b1f502000 rw-p 00000000 00:00 0 
385901680000-3859016c0000 rw-p 00000000 00:00 0 
3875c0780000-3875c07c0000 rw-p 00000000 00:00 0 
562b87d43000-562b87d44000 r-xp 00000000 fc:01 14562637                   /app/vendor/ruby-2.6.8/bin/ruby
562b87f43000-562b87f44000 r--p 00000000 fc:01 14562637                   /app/vendor/ruby-2.6.8/bin/ruby
562b87f44000-562b87f45000 rw-p 00001000 fc:01 14562637                   /app/vendor/ruby-2.6.8/bin/ruby
562b88c1e000-562ba031c000 rw-p 00000000 00:00 0                          [heap]
562ba031c000-562ba0fa2000 rw-p 00000000 00:00 0                          [heap]
7f0118000000-7f0118002000 rw-p 00000000 00:00 0 
7f0118002000-7f0118003000 ---p 00000000 00:00 0 
7f0118003000-7f0118019000 r-xp 00000000 00:00 0 
7f0118019000-7f011803f000 ---p 00000000 00:00 0 
7f011803f000-7f0120000000 ---p 00000000 00:00 0 
7f0120000000-7f0120021000 rw-p 00000000 00:00 0 
7f0120021000-7f0124000000 ---p 00000000 00:00 0 
7f012521d000-7f01259c9000 r--s 00000000 fc:01 14562639                   /app/vendor/ruby-2.6.8/lib/libruby.so.2.6.8
7f01259c9000-7f01262cb000 rw-p 00000000 00:00 0 
7f01262cb000-7f01262e2000 r-xp 00000000 07:02 8253                       /lib/x86_64-linux-gnu/libnsl-2.27.so
7f01262e2000-7f01264e1000 ---p 00017000 07:02 8253                       /lib/x86_64-linux-gnu/libnsl-2.27.so
7f01264e1000-7f01264e2000 r--p 00016000 07:02 8253                       /lib/x86_64-linux-gnu/libnsl-2.27.so
7f01264e2000-7f01264e3000 rw-p 00017000 07:02 8253                       /lib/x86_64-linux-gnu/libnsl-2.27.so
7f01264e3000-7f01264e5000 rw-p 00000000 00:00 0 
7f01264e5000-7f01264f0000 r-xp 00000000 07:02 8263                       /lib/x86_64-linux-gnu/libnss_nis-2.27.so
7f01264f0000-7f01266ef000 ---p 0000b000 07:02 8263                       /lib/x86_64-linux-gnu/libnss_nis-2.27.so
7f01266ef000-7f01266f0000 r--p 0000a000 07:02 8263                       /lib/x86_64-linux-gnu/libnss_nis-2.27.so
7f01266f0000-7f01266f1000 rw-p 0000b000 07:02 8263                       /lib/x86_64-linux-gnu/libnss_nis-2.27.so
7f01266f1000-7f01266f9000 r-xp 00000000 07:02 8255                       /lib/x86_64-linux-gnu/libnss_compat-2.27.so
7f01266f9000-7f01268f9000 ---p 00008000 07:02 8255                       /lib/x86_64-linux-gnu/libnss_compat-2.27.so
7f01268f9000-7f01268fa000 r--p 00008000 07:02 8255                       /lib/x86_64-linux-gnu/libnss_compat-2.27.so
7f01268fa000-7f01268fb000 rw-p 00009000 07:02 8255                       /lib/x86_64-linux-gnu/libnss_compat-2.27.so
7f01268fb000-7f0126900000 r-xp 00000000 07:02 8257                       /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7f0126900000-7f0126b00000 ---p 00005000 07:02 8257                       /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7f0126b00000-7f0126b01000 r--p 00005000 07:02 8257                       /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7f0126b01000-7f0126b02000 rw-p 00006000 07:02 8257                       /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7f0126b02000-7f0126b0d000 r-xp 00000000 07:02 8259                       /lib/x86_64-linux-gnu/libnss_files-2.27.so
7f0126b0d000-7f0126d0c000 ---p 0000b000 07:02 8259                       /lib/x86_64-linux-gnu/libnss_files-2.27.so
7f0126d0c000-7f0126d0d000 r--p 0000a000 07:02 8259                       /lib/x86_64-linux-gnu/libnss_files-2.27.so
7f0126d0d000-7f0126d0e000 rw-p 0000b000 07:02 8259                       /lib/x86_64-linux-gnu/libnss_files-2.27.so
7f0126d0e000-7f0126d14000 rw-p 00000000 00:00 0 
7f0126d14000-7f0126d19000 r-xp 00000000 fc:01 18088103                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f0126d19000-7f0126f18000 ---p 00005000 fc:01 18088103                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f0126f18000-7f0126f19000 r--p 00004000 fc:01 18088103                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f0126f19000-7f0126f1a000 rw-p 00005000 fc:01 18088103                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f0126f1a000-7f012721b000 rw-p 00000000 00:00 0 
7f012721b000-7f0127258000 r-xp 00000000 fc:01 23079883                   /app/vendor/gsl/lib/libgslcblas.so.0.0.0
7f0127258000-7f0127457000 ---p 0003d000 fc:01 23079883                   /app/vendor/gsl/lib/libgslcblas.so.0.0.0
7f0127457000-7f0127458000 r--p 0003c000 fc:01 23079883                   /app/vendor/gsl/lib/libgslcblas.so.0.0.0
7f0127458000-7f0127459000 rw-p 0003d000 fc:01 23079883                   /app/vendor/gsl/lib/libgslcblas.so.0.0.0
7f0127459000-7f012766b000 r-xp 00000000 fc:01 23079875                   /app/vendor/gsl/lib/libgsl.so.0.17.0
7f012766b000-7f012786a000 ---p 00212000 fc:01 23079875                   /app/vendor/gsl/lib/libgsl.so.0.17.0
7f012786a000-7f012786d000 r--p 00211000 fc:01 23079875                   /app/vendor/gsl/lib/libgsl.so.0.17.0
7f012786d000-7f012787d000 rw-p 00214000 fc:01 23079875                   /app/vendor/gsl/lib/libgsl.so.0.17.0
7f012787d000-7f012787e000 rw-p 00000000 00:00 0 
7f012787e000-7f01279e7000 r-xp 00000000 fc:01 22285417                   /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f01279e7000-7f0127be7000 ---p 00169000 fc:01 22285417                   /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f0127be7000-7f0127be9000 r--p 00169000 fc:01 22285417                   /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f0127be9000-7f0127bec000 rw-p 0016b000 fc:01 22285417                   /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f0127bec000-7f0127bed000 rw-p 00000000 00:00 0 
7f0127bed000-7f0127bfa000 r-xp 00000000 fc:01 22550279                   /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f0127bfa000-7f0127df9000 ---p 0000d000 fc:01 22550279                   /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f0127df9000-7f0127dfa000 r--p 0000c000 fc:01 22550279                   /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f0127dfa000-7f0127dfb000 rw-p 0000d000 fc:01 22550279                   /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f0127dfb000-7f0127e01000 r-xp 00000000 fc:01 22551499                   /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f0127e01000-7f0128000000 ---p 00006000 fc:01 22551499                   /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f0128000000-7f0128001000 r--p 00005000 fc:01 22551499                   /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f0128001000-7f0128002000 rw-p 00006000 fc:01 22551499                   /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f0128002000-7f0128013000 r-xp 00000000 fc:01 22430504                   /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f0128013000-7f0128212000 ---p 00011000 fc:01 22430504                   /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f0128212000-7f0128213000 r--p 00010000 fc:01 22430504                   /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f0128213000-7f0128214000 rw-p 00011000 fc:01 22430504                   /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f0128214000-7f012821a000 r-xp 00000000 fc:01 22283173                   /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f012821a000-7f0128419000 ---p 00006000 fc:01 22283173                   /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f0128419000-7f012841a000 r--p 00005000 fc:01 22283173                   /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f012841a000-7f012841b000 rw-p 00006000 fc:01 22283173                   /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f012841b000-7f0128445000 r-xp 00000000 fc:01 23074954                   /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f0128445000-7f0128645000 ---p 0002a000 fc:01 23074954                   /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f0128645000-7f0128646000 r--p 0002a000 fc:01 23074954                   /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f0128646000-7f0128648000 rw-p 0002b000 fc:01 23074954                   /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f0128648000-7f012864d000 r-xp 00000000 fc:01 23072946                   /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f012864d000-7f012884c000 ---p 00005000 fc:01 23072946                   /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f012884c000-7f012884d000 r--p 00004000 fc:01 23072946                   /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f012884d000-7f012884e000 rw-p 00005000 fc:01 23072946                   /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f012884e000-7f0128854000 rw-p 00000000 00:00 0 
7f0128854000-7f0128855000 r-xp 00000000 fc:01 18088119                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f0128855000-7f0128a54000 ---p 00001000 fc:01 18088119                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f0128a54000-7f0128a55000 r--p 00000000 fc:01 18088119                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f0128a55000-7f0128a56000 rw-p 00001000 fc:01 18088119                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f0128a56000-7f0128a6a000 r-xp 00000000 fc:01 22307943                   /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f0128a6a000-7f0128c6a000 ---p 00014000 fc:01 22307943                   /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f0128c6a000-7f0128c6b000 r--p 00014000 fc:01 22307943                   /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f0128c6b000-7f0128c6c000 rw-p 00015000 fc:01 22307943                   /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f0128c6c000-7f0128c77000 r-xp 00000000 fc:01 18088123                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f0128c77000-7f0128e76000 ---p 0000b000 fc:01 18088123                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f0128e76000-7f0128e77000 r--p 0000a000 fc:01 18088123                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f0128e77000-7f0128e78000 rw-p 0000b000 fc:01 18088123                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f0128e88000-7f0129078000 r--s 00000000 07:02 8201                       /lib/x86_64-linux-gnu/libc-2.27.so
7f0129078000-7f0129079000 ---p 00000000 00:00 0 
7f0129079000-7f0129179000 rw-p 00000000 00:00 0 
7f0129179000-7f0129190000 r-xp 00000000 07:02 8225                       /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0129190000-7f012938f000 ---p 00017000 07:02 8225                       /lib/x86_64-linux-gnu/libgcc_s.so.1
7f012938f000-7f0129390000 r--p 00016000 07:02 8225                       /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0129390000-7f0129391000 rw-p 00017000 07:02 8225                       /lib/x86_64-linux-gnu/libgcc_s.so.1
7f0129391000-7f012950a000 r-xp 00000000 07:02 50123                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f012950a000-7f012970a000 ---p 00179000 07:02 50123                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f012970a000-7f0129714000 r--p 00179000 07:02 50123                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f0129714000-7f0129716000 rw-p 00183000 07:02 50123                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f0129716000-7f012971a000 rw-p 00000000 00:00 0 
7f012971a000-7f012d419000 r-xp 00000000 fc:01 23079438                   /app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so
7f012d419000-7f012d618000 ---p 03cff000 fc:01 23079438                   /app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so
7f012d618000-7f012d680000 r--p 03cfe000 fc:01 23079438                   /app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so
7f012d680000-7f012d6c8000 rw-p 03d66000 fc:01 23079438                   /app/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/mini_racer-0.6.1/mini_racer_extension.so
7f012d6c8000-7f012d6e3000 rw-p 00000000 00:00 0 
7f012d6e3000-7f012d6e4000 r-xp 00000000 fc:01 22310702                   /app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer_loader.so
7f012d6e4000-7f012d8e4000 ---p 00001000 fc:01 22310702                   /app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer_loader.so
7f012d8e4000-7f012d8e5000 r--p 00001000 fc:01 22310702                   /app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer_loader.so
7f012d8e5000-7f012d8e6000 rw-p 00002000 fc:01 22310702                   /app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer_loader.so
7f012d8e6000-7f012d8fd000 r-xp 00000000 07:02 49364                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f012d8fd000-7f012dafc000 ---p 00017000 07:02 49364                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f012dafc000-7f012dafd000 r--p 00016000 07:02 49364                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f012dafd000-7f012dafe000 rw-p 00017000 07:02 49364                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f012dafe000-7f012db39000 r--p 00000000 fc:01 22425921                   /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f012db39000-7f012dc60000 r-xp 0003b000 fc:01 22425921                   /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f012dc60000-7f012dcc0000 r--p 00162000 fc:01 22425921                   /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f012dcc0000-7f012dcc1000 ---p 001c2000 fc:01 22425921                   /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f012dcc1000-7f012dcca000 r--p 001c2000 fc:01 22425921                   /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f012dcca000-7f012dcce000 rw-p 001cb000 fc:01 22425921                   /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f012dcce000-7f012dcd0000 rw-p 00000000 00:00 0 
7f012dcd0000-7f012dcd1000 r-xp 00000000 fc:01 22282741                   /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f012dcd1000-7f012ded1000 ---p 00001000 fc:01 22282741                   /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f012ded1000-7f012ded2000 r--p 00001000 fc:01 22282741                   /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f012ded2000-7f012ded3000 rw-p 00002000 fc:01 22282741                   /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f012ded3000-7f012deec000 r-xp 00000000 fc:01 22566609                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f012deec000-7f012e0eb000 ---p 00019000 fc:01 22566609                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f012e0eb000-7f012e0ec000 r--p 00018000 fc:01 22566609                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f012e0ec000-7f012e0ed000 rw-p 00019000 fc:01 22566609                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f012e0ed000-7f012e0f6000 r-xp 00000000 fc:01 23074350                   /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f012e0f6000-7f012e2f5000 ---p 00009000 fc:01 23074350                   /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f012e2f5000-7f012e2f6000 r--p 00008000 fc:01 23074350                   /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f012e2f6000-7f012e2f7000 rw-p 00009000 fc:01 23074350                   /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f012e2f7000-7f012e304000 r-xp 00000000 07:02 50093                      /usr/lib/x86_64-linux-gnu/libpsl.so.5.2.0
7f012e304000-7f012e503000 ---p 0000d000 07:02 50093                      /usr/lib/x86_64-linux-gnu/libpsl.so.5.2.0
7f012e503000-7f012e504000 r--p 0000c000 07:02 50093                      /usr/lib/x86_64-linux-gnu/libpsl.so.5.2.0
7f012e504000-7f012e505000 rw-p 0000d000 07:02 50093                      /usr/lib/x86_64-linux-gnu/libpsl.so.5.2.0
7f012e505000-7f012e520000 r-xp 00000000 07:02 50110                      /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f012e520000-7f012e71f000 ---p 0001b000 07:02 50110                      /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f012e71f000-7f012e720000 r--p 0001a000 07:02 50110                      /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f012e720000-7f012e721000 rw-p 0001b000 07:02 50110                      /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f012e721000-7f012e744000 r-xp 00000000 07:02 50052                      /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.15.2
7f012e744000-7f012e943000 ---p 00023000 07:02 50052                      /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.15.2
7f012e943000-7f012e944000 r--p 00022000 07:02 50052                      /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.15.2
7f012e944000-7f012e946000 rw-p 00023000 07:02 50052                      /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.15.2
7f012e946000-7f012e9c4000 r-xp 00000000 07:02 49857                      /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f012e9c4000-7f012ebc4000 ---p 0007e000 07:02 49857                      /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f012ebc4000-7f012ebc7000 r--p 0007e000 07:02 49857                      /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f012ebc7000-7f012ebc8000 rw-p 00081000 07:02 49857                      /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f012ebc8000-7f012ebeb000 r-xp 00000000 fc:01 22310487                   /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f012ebeb000-7f012edeb000 ---p 00023000 fc:01 22310487                   /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f012edeb000-7f012edec000 r--p 00023000 fc:01 22310487                   /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f012edec000-7f012eded000 rw-p 00024000 fc:01 22310487                   /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f012eded000-7f012edee000 r-xp 00000000 fc:01 18088019                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f012edee000-7f012efed000 ---p 00001000 fc:01 18088019                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f012efed000-7f012efee000 r--p 00000000 fc:01 18088019                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f012efee000-7f012efef000 rw-p 00001000 fc:01 18088019                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f012f06f000-7f012f070000 ---p 00000000 00:00 0 
7f012f070000-7f012f170000 rw-p 00000000 00:00 0 
7f012f170000-7f012f171000 r-xp 00000000 fc:01 18088022                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f012f171000-7f012f370000 ---p 00001000 fc:01 18088022                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f012f370000-7f012f371000 r--p 00000000 fc:01 18088022                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f012f371000-7f012f372000 rw-p 00001000 fc:01 18088022                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f012f372000-7f012f37e000 r-xp 00000000 fc:01 22570889                   /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f012f37e000-7f012f57d000 ---p 0000c000 fc:01 22570889                   /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f012f57d000-7f012f57e000 r--p 0000b000 fc:01 22570889                   /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f012f57e000-7f012f57f000 rw-p 0000c000 fc:01 22570889                   /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f012f57f000-7f012f580000 r-xp 00000000 fc:01 18088101                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f012f580000-7f012f77f000 ---p 00001000 fc:01 18088101                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f012f77f000-7f012f780000 r--p 00000000 fc:01 18088101                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f012f780000-7f012f781000 rw-p 00001000 fc:01 18088101                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f012f781000-7f012f7d8000 r-xp 00000000 fc:01 18088034                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f012f7d8000-7f012f9d7000 ---p 00057000 fc:01 18088034                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f012f9d7000-7f012f9d9000 r--p 00056000 fc:01 18088034                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f012f9d9000-7f012f9db000 rw-p 00058000 fc:01 18088034                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f012f9db000-7f012f9dc000 rw-p 00000000 00:00 0 
7f012f9dc000-7f012f9de000 r-xp 00000000 fc:01 18088093                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f012f9de000-7f012fbde000 ---p 00002000 fc:01 18088093                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f012fbde000-7f012fbdf000 r--p 00002000 fc:01 18088093                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f012fbdf000-7f012fbe0000 rw-p 00003000 fc:01 18088093                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f012fbe0000-7f012fbe6000 r-xp 00000000 fc:01 22284289                   /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f012fbe6000-7f012fde5000 ---p 00006000 fc:01 22284289                   /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f012fde5000-7f012fde6000 r--p 00005000 fc:01 22284289                   /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f012fde6000-7f012fde7000 rw-p 00006000 fc:01 22284289                   /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f012fde7000-7f012fdeb000 r-xp 00000000 fc:01 22282886                   /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f012fdeb000-7f012ffea000 ---p 00004000 fc:01 22282886                   /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f012ffea000-7f012ffeb000 r--p 00003000 fc:01 22282886                   /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f012ffeb000-7f012ffec000 rw-p 00004000 fc:01 22282886                   /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f012ffec000-7f012fff3000 r-xp 00000000 07:02 49894                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f012fff3000-7f01301f2000 ---p 00007000 07:02 49894                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f01301f2000-7f01301f3000 r--p 00006000 07:02 49894                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f01301f3000-7f01301f4000 rw-p 00007000 07:02 49894                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f01301f4000-7f01302f8000 r-xp 00000000 07:02 50119                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f01302f8000-7f01304f7000 ---p 00104000 07:02 50119                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f01304f7000-7f01304fa000 r--p 00103000 07:02 50119                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f01304fa000-7f01304fc000 rw-p 00106000 07:02 50119                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7f01304fc000-7f01304fd000 rw-p 00000000 00:00 0 
7f01304fd000-7f0130543000 r-xp 00000000 07:02 49960                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f0130543000-7f0130742000 ---p 00046000 07:02 49960                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f0130742000-7f0130745000 r--p 00045000 07:02 49960                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f0130745000-7f0130746000 rw-p 00048000 07:02 49960                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7f0130746000-7f0130747000 rw-p 00000000 00:00 0 
7f0130747000-7f0130755000 r-xp 00000000 07:02 49954                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f0130755000-7f0130954000 ---p 0000e000 07:02 49954                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f0130954000-7f0130955000 r--p 0000d000 07:02 49954                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f0130955000-7f0130956000 rw-p 0000e000 07:02 49954                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7f0130956000-7f013097e000 r-xp 00000000 07:02 50151                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f013097e000-7f0130b7d000 ---p 00028000 07:02 50151                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f0130b7d000-7f0130b7e000 r--p 00027000 07:02 50151                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f0130b7e000-7f0130b7f000 rw-p 00028000 07:02 50151                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7f0130b7f000-7f0130bb3000 r-xp 00000000 07:02 49958                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f0130bb3000-7f0130db3000 ---p 00034000 07:02 49958                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f0130db3000-7f0130db4000 r--p 00034000 07:02 49958                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f0130db4000-7f0130db5000 rw-p 00035000 07:02 49958                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f0130db5000-7f0130de9000 r-xp 00000000 07:02 50050                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f0130de9000-7f0130fe8000 ---p 00034000 07:02 50050                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f0130fe8000-7f0130fea000 r--p 00033000 07:02 50050                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f0130fea000-7f0130feb000 rw-p 00035000 07:02 50050                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f0130feb000-7f0130ffc000 r-xp 00000000 07:02 50125                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f0130ffc000-7f01311fc000 ---p 00011000 07:02 50125                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f01311fc000-7f01311fd000 r--p 00011000 07:02 50125                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f01311fd000-7f01311fe000 rw-p 00012000 07:02 50125                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f01311fe000-7f0131378000 r-xp 00000000 07:02 50139                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f0131378000-7f0131578000 ---p 0017a000 07:02 50139                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f0131578000-7f013157b000 r--p 0017a000 07:02 50139                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f013157b000-7f013157c000 rw-p 0017d000 07:02 50139                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f013157c000-7f0131598000 r-xp 00000000 07:02 49974                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7f0131598000-7f0131797000 ---p 0001c000 07:02 49974                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7f0131797000-7f0131798000 r--p 0001b000 07:02 49974                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7f0131798000-7f0131799000 rw-p 0001c000 07:02 49974                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7f0131799000-7f01318b3000 r-xp 00000000 07:02 50067                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f01318b3000-7f0131ab3000 ---p 0011a000 07:02 50067                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f0131ab3000-7f0131abd000 r--p 0011a000 07:02 50067                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f0131abd000-7f0131ac7000 rw-p 00124000 07:02 50067                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f0131ac7000-7f0131ac8000 rw-p 00000000 00:00 0 
7f0131ac8000-7f0131add000 r-xp 00000000 07:02 50104                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f0131add000-7f0131cdc000 ---p 00015000 07:02 50104                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f0131cdc000-7f0131cdd000 r--p 00014000 07:02 50104                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f0131cdd000-7f0131cde000 rw-p 00015000 07:02 50104                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7f0131cde000-7f0131d11000 r-xp 00000000 07:02 49952                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f0131d11000-7f0131f10000 ---p 00033000 07:02 49952                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f0131f10000-7f0131f12000 r--p 00032000 07:02 49952                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f0131f12000-7f0131f13000 rw-p 00034000 07:02 49952                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7f0131f13000-7f0131f14000 rw-p 00000000 00:00 0 
7f0131f14000-7f0131fb2000 r-xp 00000000 07:02 49823                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f0131fb2000-7f01321b2000 ---p 0009e000 07:02 49823                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f01321b2000-7f01321b3000 r--p 0009e000 07:02 49823                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f01321b3000-7f01321b6000 rw-p 0009f000 07:02 49823                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7f01321b6000-7f013223d000 r-xp 00000000 07:02 49998                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f013223d000-7f013243c000 ---p 00087000 07:02 49998                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f013243c000-7f0132440000 r--p 00086000 07:02 49998                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f0132440000-7f0132442000 rw-p 0008a000 07:02 49998                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7f0132442000-7f0132443000 rw-p 00000000 00:00 0 
7f0132443000-7f013244b000 r-xp 00000000 07:02 49956                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f013244b000-7f013264a000 ---p 00008000 07:02 49956                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f013264a000-7f013264b000 r--p 00007000 07:02 49956                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f013264b000-7f013264c000 rw-p 00008000 07:02 49956                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7f013264c000-7f013264f000 r-xp 00000000 07:02 8237                       /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7f013264f000-7f013284e000 ---p 00003000 07:02 8237                       /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7f013284e000-7f013284f000 r--p 00002000 07:02 8237                       /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7f013284f000-7f0132850000 rw-p 00003000 07:02 8237                       /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7f0132850000-7f01329a8000 r-xp 00000000 07:02 49931                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7f01329a8000-7f0132ba8000 ---p 00158000 07:02 49931                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7f0132ba8000-7f0132bb4000 r--p 00158000 07:02 49931                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7f0132bb4000-7f0132bb5000 rw-p 00164000 07:02 49931                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7f0132bb5000-7f0132bb6000 rw-p 00000000 00:00 0 
7f0132bb6000-7f0132bf3000 r-xp 00000000 07:02 49944                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f0132bf3000-7f0132df3000 ---p 0003d000 07:02 49944                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f0132df3000-7f0132df5000 r--p 0003d000 07:02 49944                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f0132df5000-7f0132df7000 rw-p 0003f000 07:02 49944                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7f0132df7000-7f0132e10000 r-xp 00000000 07:02 50114                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f0132e10000-7f0133010000 ---p 00019000 07:02 50114                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f0133010000-7f0133011000 r--p 00019000 07:02 50114                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f0133011000-7f0133012000 rw-p 0001a000 07:02 50114                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f0133012000-7f0133029000 r-xp 00000000 07:02 8282                       /lib/x86_64-linux-gnu/libresolv-2.27.so
7f0133029000-7f0133228000 ---p 00017000 07:02 8282                       /lib/x86_64-linux-gnu/libresolv-2.27.so
7f0133228000-7f0133229000 r--p 00016000 07:02 8282                       /lib/x86_64-linux-gnu/libresolv-2.27.so
7f0133229000-7f013322a000 rw-p 00017000 07:02 8282                       /lib/x86_64-linux-gnu/libresolv-2.27.so
7f013322a000-7f013322c000 rw-p 00000000 00:00 0 
7f013322c000-7f0133239000 r-xp 00000000 07:02 50006                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7f0133239000-7f0133438000 ---p 0000d000 07:02 50006                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7f0133438000-7f0133439000 r--p 0000c000 07:02 50006                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7f0133439000-7f013343a000 rw-p 0000d000 07:02 50006                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7f013343a000-7f0133444000 r-xp 00000000 07:02 50002                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f0133444000-7f0133643000 ---p 0000a000 07:02 50002                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f0133643000-7f0133644000 r--p 00009000 07:02 50002                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f0133644000-7f0133645000 rw-p 0000a000 07:02 50002                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f0133645000-7f0133648000 r-xp 00000000 07:02 8210                       /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f0133648000-7f0133847000 ---p 00003000 07:02 8210                       /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f0133847000-7f0133848000 r--p 00002000 07:02 8210                       /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f0133848000-7f0133849000 rw-p 00003000 07:02 8210                       /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f0133849000-7f0133877000 r-xp 00000000 07:02 49996                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f0133877000-7f0133a77000 ---p 0002e000 07:02 49996                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f0133a77000-7f0133a79000 r--p 0002e000 07:02 49996                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f0133a79000-7f0133a7a000 rw-p 00030000 07:02 49996                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f0133a7a000-7f0133a7b000 rw-p 00000000 00:00 0 
7f0133a7b000-7f0133b41000 r-xp 00000000 07:02 50000                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f0133b41000-7f0133d41000 ---p 000c6000 07:02 50000                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f0133d41000-7f0133d4f000 r--p 000c6000 07:02 50000                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f0133d4f000-7f0133d51000 rw-p 000d4000 07:02 50000                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f0133d51000-7f0133d9f000 r-xp 00000000 07:02 50011                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7f0133d9f000-7f0133f9e000 ---p 0004e000 07:02 50011                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7f0133f9e000-7f0133fa0000 r--p 0004d000 07:02 50011                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7f0133fa0000-7f0133fa1000 rw-p 0004f000 07:02 50011                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7f0133fa1000-7f0133fa3000 rw-p 00000000 00:00 0 
7f0133fa3000-7f0133feb000 r-xp 00000000 07:02 49946                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f0133feb000-7f01341ea000 ---p 00048000 07:02 49946                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f01341ea000-7f01341ec000 r--p 00047000 07:02 49946                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f01341ec000-7f01341ee000 rw-p 00049000 07:02 49946                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f01341ee000-7f013426f000 r-xp 00000000 07:02 50121                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f013426f000-7f013446e000 ---p 00081000 07:02 50121                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f013446e000-7f0134477000 r--p 00080000 07:02 50121                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f0134477000-7f013447b000 rw-p 00089000 07:02 50121                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f013447b000-7f01344c8000 r-xp 00000000 07:02 50091                      /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f01344c8000-7f01346c8000 ---p 0004d000 07:02 50091                      /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f01346c8000-7f01346cb000 r--p 0004d000 07:02 50091                      /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f01346cb000-7f01346cc000 rw-p 00050000 07:02 50091                      /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f01346cc000-7f01346f6000 r-xp 00000000 fc:01 22570791                   /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f01346f6000-7f01348f5000 ---p 0002a000 fc:01 22570791                   /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f01348f5000-7f01348f6000 r--p 00029000 fc:01 22570791                   /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f01348f6000-7f01348f7000 rw-p 0002a000 fc:01 22570791                   /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f01348f7000-7f01348f8000 r-xp 00000000 fc:01 18088122                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f01348f8000-7f0134af7000 ---p 00001000 fc:01 18088122                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f0134af7000-7f0134af8000 r--p 00000000 fc:01 18088122                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f0134af8000-7f0134af9000 rw-p 00001000 fc:01 18088122                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f0134af9000-7f0134b0c000 r-xp 00000000 fc:01 18088037                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f0134b0c000-7f0134d0c000 ---p 00013000 fc:01 18088037                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f0134d0c000-7f0134d0d000 r--p 00013000 fc:01 18088037                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f0134d0d000-7f0134d0e000 rw-p 00014000 fc:01 18088037                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f0134d0e000-7f0134d10000 r-xp 00000000 fc:01 18088102                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f0134d10000-7f0134f0f000 ---p 00002000 fc:01 18088102                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f0134f0f000-7f0134f10000 r--p 00001000 fc:01 18088102                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f0134f10000-7f0134f11000 rw-p 00002000 fc:01 18088102                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f0134f11000-7f0134f3f000 r-xp 00000000 fc:01 18088120                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/socket.so
7f0134f3f000-7f013513e000 ---p 0002e000 fc:01 18088120                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/socket.so
7f013513e000-7f013513f000 r--p 0002d000 fc:01 18088120                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/socket.so
7f013513f000-7f0135140000 rw-p 0002e000 fc:01 18088120                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/socket.so
7f0135140000-7f013514a000 r-xp 00000000 fc:01 22282457                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f013514a000-7f0135349000 ---p 0000a000 fc:01 22282457                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f0135349000-7f013534a000 r--p 00009000 fc:01 22282457                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f013534a000-7f013534b000 rw-p 0000a000 fc:01 22282457                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f013534b000-7f0135351000 r-xp 00000000 fc:01 22282456                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f0135351000-7f0135550000 ---p 00006000 fc:01 22282456                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f0135550000-7f0135551000 r--p 00005000 fc:01 22282456                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f0135551000-7f0135552000 rw-p 00006000 fc:01 22282456                   /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f0135552000-7f0135554000 r-xp 00000000 fc:01 22566190                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f0135554000-7f0135753000 ---p 00002000 fc:01 22566190                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f0135753000-7f0135754000 r--p 00001000 fc:01 22566190                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f0135754000-7f0135755000 rw-p 00002000 fc:01 22566190                   /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f0135755000-7f0135756000 r-xp 00000000 fc:01 18088041                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f0135756000-7f0135955000 ---p 00001000 fc:01 18088041                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f0135955000-7f0135956000 r--p 00000000 fc:01 18088041                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f0135956000-7f0135957000 rw-p 00001000 fc:01 18088041                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f0135957000-7f0135958000 r-xp 00000000 fc:01 18088092                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f0135958000-7f0135b58000 ---p 00001000 fc:01 18088092                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f0135b58000-7f0135b59000 r--p 00001000 fc:01 18088092                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f0135b59000-7f0135b5a000 rw-p 00002000 fc:01 18088092                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f0135b5a000-7f0135b5c000 r-xp 00000000 fc:01 18088065                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f0135b5c000-7f0135d5c000 ---p 00002000 fc:01 18088065                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f0135d5c000-7f0135d5d000 r--p 00002000 fc:01 18088065                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f0135d5d000-7f0135d5e000 rw-p 00003000 fc:01 18088065                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f0135d5e000-7f0135d61000 r-xp 00000000 fc:01 18088074                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f0135d61000-7f0135f60000 ---p 00003000 fc:01 18088074                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f0135f60000-7f0135f61000 r--p 00002000 fc:01 18088074                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f0135f61000-7f0135f62000 rw-p 00003000 fc:01 18088074                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f0135f62000-7f0135faa000 r-xp 00000000 fc:01 18088109                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f0135faa000-7f01361a9000 ---p 00048000 fc:01 18088109                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f01361a9000-7f01361b0000 r--p 00047000 fc:01 18088109                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f01361b0000-7f01361b1000 rw-p 0004e000 fc:01 18088109                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f01361b1000-7f01361b4000 rw-p 00000000 00:00 0 
7f01361b4000-7f01361c9000 r-xp 00000000 fc:01 18088035                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f01361c9000-7f01363c8000 ---p 00015000 fc:01 18088035                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f01363c8000-7f01363c9000 r--p 00014000 fc:01 18088035                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f01363c9000-7f01363ca000 rw-p 00015000 fc:01 18088035                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f01363ca000-7f01363cd000 r-xp 00000000 fc:01 18088024                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f01363cd000-7f01365cc000 ---p 00003000 fc:01 18088024                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f01365cc000-7f01365cd000 r--p 00002000 fc:01 18088024                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f01365cd000-7f01365ce000 rw-p 00003000 fc:01 18088024                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f01365ce000-7f0136602000 r-xp 00000000 fc:01 18088104                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f0136602000-7f0136801000 ---p 00034000 fc:01 18088104                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f0136801000-7f0136802000 r--p 00033000 fc:01 18088104                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f0136802000-7f0136803000 rw-p 00034000 fc:01 18088104                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f0136803000-7f0136804000 rw-p 00000000 00:00 0 
7f0136804000-7f0136822000 r-xp 00000000 fc:01 22307810                   /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f0136822000-7f0136a21000 ---p 0001e000 fc:01 22307810                   /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f0136a21000-7f0136a22000 r--p 0001d000 fc:01 22307810                   /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f0136a22000-7f0136a23000 rw-p 0001e000 fc:01 22307810                   /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f0136a23000-7f0136a2a000 r-xp 00000000 fc:01 18088108                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f0136a2a000-7f0136c29000 ---p 00007000 fc:01 18088108                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f0136c29000-7f0136c2a000 r--p 00006000 fc:01 18088108                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f0136c2a000-7f0136c2b000 rw-p 00007000 fc:01 18088108                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f0136c2b000-7f0136c48000 r-xp 00000000 07:02 50167                      /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f0136c48000-7f0136e47000 ---p 0001d000 07:02 50167                      /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f0136e47000-7f0136e48000 r--p 0001c000 07:02 50167                      /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f0136e48000-7f0136e49000 rw-p 0001d000 07:02 50167                      /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f0136e49000-7f0136e4f000 r-xp 00000000 fc:01 18088033                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/psych.so
7f0136e4f000-7f013704e000 ---p 00006000 fc:01 18088033                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/psych.so
7f013704e000-7f013704f000 r--p 00005000 fc:01 18088033                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/psych.so
7f013704f000-7f0137050000 rw-p 00006000 fc:01 18088033                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/psych.so
7f0137111000-7f0137136000 r-xp 00000000 07:02 8299                       /lib/x86_64-linux-gnu/libtinfo.so.5.9
7f0137136000-7f0137336000 ---p 00025000 07:02 8299                       /lib/x86_64-linux-gnu/libtinfo.so.5.9
7f0137336000-7f013733a000 r--p 00025000 07:02 8299                       /lib/x86_64-linux-gnu/libtinfo.so.5.9
7f013733a000-7f013733b000 rw-p 00029000 07:02 8299                       /lib/x86_64-linux-gnu/libtinfo.so.5.9
7f013733b000-7f013737c000 r-xp 00000000 07:02 8281                       /lib/x86_64-linux-gnu/libreadline.so.7.0
7f013737c000-7f013757b000 ---p 00041000 07:02 8281                       /lib/x86_64-linux-gnu/libreadline.so.7.0
7f013757b000-7f013757d000 r--p 00040000 07:02 8281                       /lib/x86_64-linux-gnu/libreadline.so.7.0
7f013757d000-7f0137583000 rw-p 00042000 07:02 8281                       /lib/x86_64-linux-gnu/libreadline.so.7.0
7f0137583000-7f0137584000 rw-p 00000000 00:00 0 
7f0137584000-7f013758c000 r-xp 00000000 fc:01 18088025                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/readline.so
7f013758c000-7f013778b000 ---p 00008000 fc:01 18088025                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/readline.so
7f013778b000-7f013778c000 r--p 00007000 fc:01 18088025                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/readline.so
7f013778c000-7f013778d000 rw-p 00008000 fc:01 18088025                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/readline.so
7f013778d000-7f0137a28000 r-xp 00000000 07:02 49850                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f0137a28000-7f0137c27000 ---p 0029b000 07:02 49850                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f0137c27000-7f0137c53000 r--p 0029a000 07:02 49850                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f0137c53000-7f0137c55000 rw-p 002c6000 07:02 49850                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f0137c55000-7f0137c58000 rw-p 00000000 00:00 0 
7f0137c58000-7f0137c59000 r-xp 00000000 fc:01 18088018                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f0137c59000-7f0137e58000 ---p 00001000 fc:01 18088018                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f0137e58000-7f0137e59000 r--p 00000000 fc:01 18088018                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f0137e59000-7f0137e5a000 rw-p 00001000 fc:01 18088018                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f0137e5a000-7f0137e5e000 r-xp 00000000 fc:01 18088026                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest.so
7f0137e5e000-7f013805d000 ---p 00004000 fc:01 18088026                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest.so
7f013805d000-7f013805e000 r--p 00003000 fc:01 18088026                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest.so
7f013805e000-7f013805f000 rw-p 00004000 fc:01 18088026                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/digest.so
7f013805f000-7f0138065000 r-xp 00000000 fc:01 18088111                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/etc.so
7f0138065000-7f0138264000 ---p 00006000 fc:01 18088111                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/etc.so
7f0138264000-7f0138265000 r--p 00005000 fc:01 18088111                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/etc.so
7f0138265000-7f0138266000 rw-p 00006000 fc:01 18088111                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/etc.so
7f0138266000-7f013826e000 r-xp 00000000 fc:01 18088110                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f013826e000-7f013846d000 ---p 00008000 fc:01 18088110                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f013846d000-7f013846e000 r--p 00007000 fc:01 18088110                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f013846e000-7f013846f000 rw-p 00008000 fc:01 18088110                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f013846f000-7f0138478000 r-xp 00000000 fc:01 18088116                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f0138478000-7f0138677000 ---p 00009000 fc:01 18088116                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f0138677000-7f0138678000 r--p 00008000 fc:01 18088116                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f0138678000-7f0138679000 rw-p 00009000 fc:01 18088116                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f0138679000-7f013867b000 r-xp 00000000 fc:01 18088061                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f013867b000-7f013887b000 ---p 00002000 fc:01 18088061                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f013887b000-7f013887c000 r--p 00002000 fc:01 18088061                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f013887c000-7f013887d000 rw-p 00003000 fc:01 18088061                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f013887d000-7f013887f000 r-xp 00000000 fc:01 18088086                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f013887f000-7f0138a7e000 ---p 00002000 fc:01 18088086                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f0138a7e000-7f0138a7f000 r--p 00001000 fc:01 18088086                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f0138a7f000-7f0138a80000 rw-p 00002000 fc:01 18088086                   /app/vendor/ruby-2.6.8/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f0138a80000-7f013aa89000 rw-p 00000000 00:00 0 
7f013aa89000-7f013ad67000 r--p 00000000 07:02 40533                      /usr/lib/locale/locale-archive
7f013ad67000-7f013af04000 r-xp 00000000 07:02 8240                       /lib/x86_64-linux-gnu/libm-2.27.so
7f013af04000-7f013b103000 ---p 0019d000 07:02 8240                       /lib/x86_64-linux-gnu/libm-2.27.so
7f013b103000-7f013b104000 r--p 0019c000 07:02 8240                       /lib/x86_64-linux-gnu/libm-2.27.so
7f013b104000-7f013b105000 rw-p 0019d000 07:02 8240                       /lib/x86_64-linux-gnu/libm-2.27.so
7f013b105000-7f013b10e000 r-xp 00000000 07:02 8211                       /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f013b10e000-7f013b30d000 ---p 00009000 07:02 8211                       /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f013b30d000-7f013b30e000 r--p 00008000 07:02 8211                       /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f013b30e000-7f013b30f000 rw-p 00009000 07:02 8211                       /lib/x86_64-linux-gnu/libcrypt-2.27.so
7f013b30f000-7f013b33d000 rw-p 00000000 00:00 0 
7f013b33d000-7f013b340000 r-xp 00000000 07:02 8215                       /lib/x86_64-linux-gnu/libdl-2.27.so
7f013b340000-7f013b53f000 ---p 00003000 07:02 8215                       /lib/x86_64-linux-gnu/libdl-2.27.so
7f013b53f000-7f013b540000 r--p 00002000 07:02 8215                       /lib/x86_64-linux-gnu/libdl-2.27.so
7f013b540000-7f013b541000 rw-p 00003000 07:02 8215                       /lib/x86_64-linux-gnu/libdl-2.27.so
7f013b541000-7f013b5c0000 r-xp 00000000 07:02 49927                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f013b5c0000-7f013b7c0000 ---p 0007f000 07:02 49927                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f013b7c0000-7f013b7c1000 r--p 0007f000 07:02 49927                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f013b7c1000-7f013b7c2000 rw-p 00080000 07:02 49927                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f013b7c2000-7f013b7c9000 r-xp 00000000 07:02 8284                       /lib/x86_64-linux-gnu/librt-2.27.so
7f013b7c9000-7f013b9c8000 ---p 00007000 07:02 8284                       /lib/x86_64-linux-gnu/librt-2.27.so
7f013b9c8000-7f013b9c9000 r--p 00006000 07:02 8284                       /lib/x86_64-linux-gnu/librt-2.27.so
7f013b9c9000-7f013b9ca000 rw-p 00007000 07:02 8284                       /lib/x86_64-linux-gnu/librt-2.27.so
7f013b9ca000-7f013b9e4000 r-xp 00000000 07:02 8278                       /lib/x86_64-linux-gnu/libpthread-2.27.so
7f013b9e4000-7f013bbe3000 ---p 0001a000 07:02 8278                       /lib/x86_64-linux-gnu/libpthread-2.27.so
7f013bbe3000-7f013bbe4000 r--p 00019000 07:02 8278                       /lib/x86_64-linux-gnu/libpthread-2.27.so
7f013bbe4000-7f013bbe5000 rw-p 0001a000 07:02 8278                       /lib/x86_64-linux-gnu/libpthread-2.27.so
7f013bbe5000-7f013bbe9000 rw-p 00000000 00:00 0 
7f013bbe9000-7f013bc05000 r-xp 00000000 07:02 8309                       /lib/x86_64-linux-gnu/libz.so.1.2.11
7f013bc05000-7f013be04000 ---p 0001c000 07:02 8309                       /lib/x86_64-linux-gnu/libz.so.1.2.11
7f013be04000-7f013be05000 r--p 0001b000 07:02 8309                       /lib/x86_64-linux-gnu/libz.so.1.2.11
7f013be05000-7f013be06000 rw-p 0001c000 07:02 8309                       /lib/x86_64-linux-gnu/libz.so.1.2.11
7f013be06000-7f013bfed000 r-xp 00000000 07:02 8201                       /lib/x86_64-linux-gnu/libc-2.27.so
7f013bfed000-7f013c1ed000 ---p 001e7000 07:02 8201                       /lib/x86_64-linux-gnu/libc-2.27.so
7f013c1ed000-7f013c1f1000 r--p 001e7000 07:02 8201                       /lib/x86_64-linux-gnu/libc-2.27.so
7f013c1f1000-7f013c1f3000 rw-p 001eb000 07:02 8201                       /lib/x86_64-linux-gnu/libc-2.27.so
7f013c1f3000-7f013c1f7000 rw-p 00000000 00:00 0 
7f013c1f7000-7f013c565000 r-xp 00000000 fc:01 14562639                   /app/vendor/ruby-2.6.8/lib/libruby.so.2.6.8
7f013c565000-7f013c764000 ---p 0036e000 fc:01 14562639                   /app/vendor/ruby-2.6.8/lib/libruby.so.2.6.8
7f013c764000-7f013c76a000 r--p 0036d000 fc:01 14562639                   /app/vendor/ruby-2.6.8/lib/libruby.so.2.6.8
7f013c76a000-7f013c76d000 rw-p 00373000 fc:01 14562639                   /app/vendor/ruby-2.6.8/lib/libruby.so.2.6.8
7f013c76d000-7f013c77e000 rw-p 00000000 00:00 0 
7f013c77e000-7f013c7a7000 r-xp 00000000 07:02 8181                       /lib/x86_64-linux-gnu/ld-2.27.so
7f013c817000-7f013c818000 r-xp 00000000 00:00 0 
7f013c895000-7f013c899000 r--s 00000000 fc:01 14562637                   /app/vendor/ruby-2.6.8/bin/ruby
7f013c899000-7f013c99e000 rw-p 00000000 00:00 0 
7f013c99e000-7f013c9a5000 r--s 00000000 07:02 49588                      /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f013c9a5000-7f013c9a7000 rw-p 00000000 00:00 0 
7f013c9a7000-7f013c9a8000 r--p 00029000 07:02 8181                       /lib/x86_64-linux-gnu/ld-2.27.so
7f013c9a8000-7f013c9a9000 rw-p 0002a000 07:02 8181                       /lib/x86_64-linux-gnu/ld-2.27.so
7f013c9a9000-7f013c9aa000 rw-p 00000000 00:00 0 
7fffcc00b000-7fffcd00a000 rw-p 00000000 00:00 0                          [stack]
7fffcd1f5000-7fffcd1f7000 r--p 00000000 00:00 0                          [vvar]
7fffcd1f7000-7fffcd1f9000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]


[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.html
@nightpool
Copy link
Contributor Author

nightpool commented Jan 12, 2022

The fact that this only happens the second time we create a snapshot makes me suspect some sort of GC related issue, but not sure..... EDIT: see below, this happens with GC.disable as well.

@nightpool
Copy link
Contributor Author

Pretty stuck with this one, I have a dump of the snapshot if anyone feels like they'd be qualified to look at it and figure out what could have possibly gone wrong

@nightpool
Copy link
Contributor Author

nightpool commented Jan 13, 2022

The other thing I noticed that makes me think this is GC related is that the first snapshot doesn't seem to leave behind any MiniRacer::Context at all, while the second snapshot definitely does (That's why I put in the ObjectSpace.to_a in the first place):

>> snapshot = MiniRacer::Snapshot.new(setup_code + webpack_js); nil
nil
>> ObjectSpace.each_object(MiniRacer::Context).to_a
=> []
>> snapshot2 = MiniRacer::Snapshot.new(setup_code + webpack_js); nil
nil
>> ObjectSpace.each_object(MiniRacer::Context).to_a
=> [#<MiniRacer::Context:0x000055a10e3028c0 @functions={}, @timeout=nil, @max_memory=nil, @current_exception=nil, @marshal_stack_depth=nil, @isolate=false, @ensure_gc_after_idle=nil, @disposed=false, @callback_mutex=#<Thread::Mutex:0x000055a10e3022a8>, @callback_running=false, @thread_raise_called=false, @eval_thread=nil>]
>> 
>> fork { puts MiniRacer::Context.new(snapshot: snapshot2).eval("1 + 1") }
=> 54
/app/vendor/bundle/ruby/2.6.0/gems/mini_racer-0.6.1/lib/mini_racer.rb:178: [BUG] Segmentation fault at 0x0000000000000000

EDIT: Looks like I was wrong about this, running the snippet with GC.disable still causes a crash. Back to the drawing board!

@SamSaffron
Copy link
Collaborator

SamSaffron commented Jan 14, 2022 via email

@nightpool
Copy link
Contributor Author

Hi Sam, thanks for the reply. Since I've been reproducing the issue in our local app environment, I haven't been able to try on more recent Ruby versions. (The keyword args backwards incompatibility changes in 2.7 are really chafing). Getting a reproducible test case that works outside of our rails app is next on my list.

WRT libv8 versions, our current version is node 16.10.0, with v8 version 9.3.345.19. I've tested on node 16 latest (v8 9.4.146.24) and was able to reproduce the same issue. I've tested on node 17 latest (v8 9.6.180.15) and wasn't able to compile MiniRacer. I'm going to try node 17.1.0 next, which is the previous minor release of v8 (9.5.172.25), to see if that resolves the compilation error. Here's the compilation error I get on 9.6, if you have any idea what could be causing it:

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    current directory: /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-30fd20745c56/ext/mini_racer_extension
/usr/local/bin/ruby -I /usr/local/lib/ruby/2.6.0 -r ./siteconf20220115-10087-bwtods.rb extconf.rb
checking for -lpthread... yes
creating Makefile

current directory: /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-30fd20745c56/ext/mini_racer_extension
make "DESTDIR=" clean

current directory: /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-30fd20745c56/ext/mini_racer_extension
make "DESTDIR="
compiling mini_racer_extension.cc
cc1plus: warning: command line option ‘-Wimplicit-int’ is valid for C/ObjC but not for C++
mini_racer_extension.cc: In function ‘VALUE convert_v8_to_ruby(v8::Isolate*, v8::Local<v8::Context>, v8::Local<v8::Value>)’:
mini_racer_extension.cc:656:34: error: invalid use of ‘v8::Name::Name’
      Local<Symbol>::Cast(value)->Name());
                                  ^~~~
mini_racer_extension.cc: In function ‘void* gvl_ruby_callback(void*)’:
mini_racer_extension.cc:1288:25: warning: invalid conversion from ‘VALUE (*)(VALUE)’ {aka ‘long unsigned int (*)(long unsigned int)’} to ‘VALUE (*)(...)’ {aka ‘long unsigned int (*)(...)’} [-fpermissive]
     result = rb_rescue2(protected_callback, callback_data_value,
                         ^~~~~~~~~~~~~~~~~~
In file included from /usr/local/include/ruby-2.6.0/ruby.h:33,
                 from mini_racer_extension.cc:2:
/usr/local/include/ruby-2.6.0/ruby/ruby.h:1953:18: note:   initializing argument 1 of ‘VALUE rb_rescue2(VALUE (*)(...), VALUE, VALUE (*)(...), VALUE, ...)’
 VALUE rb_rescue2(VALUE(*)(ANYARGS),VALUE,VALUE(*)(ANYARGS),VALUE,...);
                  ^~~~~~~~~~~~~~~~~
mini_racer_extension.cc:1289:13: warning: invalid conversion from ‘VALUE (*)(VALUE, VALUE)’ {aka ‘long unsigned int (*)(long unsigned int, long unsigned int)’} to ‘VALUE (*)(...)’ {aka ‘long unsigned int (*)(...)’} [-fpermissive]
             rescue_callback, callback_data_value, rb_eException, (VALUE)0);
             ^~~~~~~~~~~~~~~
In file included from /usr/local/include/ruby-2.6.0/ruby.h:33,
                 from mini_racer_extension.cc:2:
/usr/local/include/ruby-2.6.0/ruby/ruby.h:1953:42: note:   initializing argument 3 of ‘VALUE rb_rescue2(VALUE (*)(...), VALUE, VALUE (*)(...), VALUE, ...)’
 VALUE rb_rescue2(VALUE(*)(ANYARGS),VALUE,VALUE(*)(ANYARGS),VALUE,...);
                                          ^~~~~~~~~~~~~~~~~
At global scope:
cc1plus: warning: unrecognized command line option ‘-Wno-self-assign’
cc1plus: warning: unrecognized command line option ‘-Wno-parentheses-equality’
cc1plus: warning: unrecognized command line option ‘-Wno-constant-logical-operand’
make: *** [Makefile:213: mini_racer_extension.o] Error 1

make failed, exit code 2

@nightpool
Copy link
Contributor Author

I'll be honest, the rb_rescue2 errors really confuse me, since none of that code should have changed when updating the libv8 version.........

@nightpool
Copy link
Contributor Author

Looks like the rb_rescue2 errors went away after I fixed the ->Name deprecation removal, so i'm able to try with node 17 now!

@nightpool
Copy link
Contributor Author

Unfortunately, I'm running into the same segfault on node v17-latest:

Segfault below the cut
/app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer.rb:178: [BUG] Segmentation fault at 0x0000000000000023
ruby 2.6.9p207 (2021-11-24 revision 67954) [x86_64-linux]

-- Control frame information -----------------------------------------------
c:0024 p:---- s:0149 e:000148 CFUNC  :init_unsafe
c:0023 p:0143 s:0143 e:000142 METHOD /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer.rb:178 [FINISH]
c:0022 p:---- s:0131 e:000130 CFUNC  :new
c:0021 p:0325 s:0126 e:000124 EVAL   test case.rb:19 [FINISH]
c:0020 p:---- s:0117 e:000116 CFUNC  :eval
c:0019 p:0197 s:0110 E:001220 TOP    /app/vendor/bundle/ruby/2.6.0/bundler/gems/rails2-e784c6cb47f5/railties/lib/commands/runner.rb:46 [FINISH]
c:0018 p:---- s:0105 e:000104 CFUNC  :require
c:0017 p:0025 s:0100 e:000099 TOP    script/runner:3 [FINISH]
c:0016 p:---- s:0097 e:000096 CFUNC  :load
c:0015 p:0129 s:0092 e:000091 METHOD /usr/local/lib/ruby/2.6.0/bundler/cli/exec.rb:74
c:0014 p:0075 s:0083 e:000082 METHOD /usr/local/lib/ruby/2.6.0/bundler/cli/exec.rb:28
c:0013 p:0026 s:0078 e:000077 METHOD /usr/local/lib/ruby/2.6.0/bundler/cli.rb:463
c:0012 p:0064 s:0073 e:000072 METHOD /usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/command.rb:27
c:0011 p:0047 s:0065 e:000064 METHOD /usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/invocation.rb:126
c:0010 p:0261 s:0058 e:000057 METHOD /usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor.rb:387
c:0009 p:0009 s:0045 e:000044 METHOD /usr/local/lib/ruby/2.6.0/bundler/cli.rb:27
c:0008 p:0064 s:0040 e:000039 METHOD /usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/base.rb:466
c:0007 p:0009 s:0033 e:000032 METHOD /usr/local/lib/ruby/2.6.0/bundler/cli.rb:18
c:0006 p:0076 s:0027 e:000026 BLOCK  /usr/local/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe/bundle:30
c:0005 p:0002 s:0021 e:000020 METHOD /usr/local/lib/ruby/2.6.0/bundler/friendly_errors.rb:124
c:0004 p:0048 s:0016 E:001340 TOP    /usr/local/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe/bundle:22 [FINISH]
c:0003 p:---- s:0013 e:000012 CFUNC  :load
c:0002 p:0109 s:0008 E:001f60 EVAL   /usr/local/bin/bundle:23 [FINISH]
c:0001 p:0000 s:0003 E:0005b0 (none) [FINISH]

-- Ruby level backtrace information ----------------------------------------
/usr/local/bin/bundle:23:in `<main>'
/usr/local/bin/bundle:23:in `load'
/usr/local/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe/bundle:22:in `<top (required)>'
/usr/local/lib/ruby/2.6.0/bundler/friendly_errors.rb:124:in `with_friendly_errors'
/usr/local/lib/ruby/gems/2.6.0/gems/bundler-1.17.2/exe/bundle:30:in `block in <top (required)>'
/usr/local/lib/ruby/2.6.0/bundler/cli.rb:18:in `start'
/usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/base.rb:466:in `start'
/usr/local/lib/ruby/2.6.0/bundler/cli.rb:27:in `dispatch'
/usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'
/usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
/usr/local/lib/ruby/2.6.0/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
/usr/local/lib/ruby/2.6.0/bundler/cli.rb:463:in `exec'
/usr/local/lib/ruby/2.6.0/bundler/cli/exec.rb:28:in `run'
/usr/local/lib/ruby/2.6.0/bundler/cli/exec.rb:74:in `kernel_load'
/usr/local/lib/ruby/2.6.0/bundler/cli/exec.rb:74:in `load'
script/runner:3:in `<top (required)>'
script/runner:3:in `require'
/app/vendor/bundle/ruby/2.6.0/bundler/gems/rails2-e784c6cb47f5/railties/lib/commands/runner.rb:46:in `<top (required)>'
/app/vendor/bundle/ruby/2.6.0/bundler/gems/rails2-e784c6cb47f5/railties/lib/commands/runner.rb:46:in `eval'
test case.rb:19:in `<top (required)>'
test case.rb:19:in `new'
/app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer.rb:178:in `initialize'
/app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer.rb:178:in `init_unsafe'

-- Machine register context ------------------------------------------------
 RIP: 0x00007f627e52c9dd RBP: 0x00007fffe6011a30 RSP: 0x00007fffe60119c0
 RAX: 0x0000000000000013 RBX: 0x000055b1e69e08d0 RCX: 0x000055b1e69e08a0
 RDX: 0x000000fafcb49290 RDI: 0x000055b1e69e08d0 RSI: 0x000000fafcb49288
  R8: 0x000000000000005d  R9: 0x0000000000000050 R10: 0x000055b1d96a1010
 R11: 0x00007f62856eb2f0 R12: 0x00007f6285950260 R13: 0x00000000000000f0
 R14: 0x0000000000000000 R15: 0x000000fafcb49290 EFL: 0x0000000000010246

-- C level backtrace information -------------------------------------------
/usr/local/lib/libruby.so.2.6(rb_vm_bugreport+0x50d) [0x7f6285ddef4d] vm_dump.c:715
[0x7f6285c4356b]
/usr/local/lib/libruby.so.2.6(sigsegv+0x42) [0x7f6285d4f9d2] signal.c:998
/lib/x86_64-linux-gnu/libpthread.so.0(__restore_rt+0x0) [0x7f6285953730]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(_ZN2v88internal12DeserializerINS0_7IsolateEE20PostProcessNewObjectENS0_6HandleINS0_3MapEEENS4_INS0_10HeapObjectEEENS0_13SnapshotSpaceE+0x51d) [0x7f627e52c9dd]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee20) [0x7f627e52ee20]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52d7f3) [0x7f627e52d7f3]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ed6b) [0x7f627e52ed6b]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52d7f3) [0x7f627e52d7f3]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ed6b) [0x7f627e52ed6b]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52d7f3) [0x7f627e52d7f3]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ed6b) [0x7f627e52ed6b]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52d7f3) [0x7f627e52d7f3]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ed6b) [0x7f627e52ed6b]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52d7f3) [0x7f627e52d7f3]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ed6b) [0x7f627e52ed6b]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52e42f) [0x7f627e52e42f]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ecb1) [0x7f627e52ecb1]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52ee0e) [0x7f627e52ee0e]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e52d7f3) [0x7f627e52d7f3]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627f2baee8) [0x7f627f2baee8]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627f2bb074) [0x7f627f2bb074]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e54d67c) [0x7f627e54d67c]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e32d256) [0x7f627e32d256]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e32ddd8) [0x7f627e32ddd8]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e16eac8) [0x7f627e16eac8]
/app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so(0x7f627e16ee24) [0x7f627e16ee24]
[0x7f627e15c9b8]
[0x7f6285dc0dab]
[0x7f6285dca643]
[0x7f6285dd0028]
[0x7f6285dd2cfa]
/usr/local/lib/libruby.so.2.6(rb_call+0x24) [0x7f6285dd400e] vm_eval.c:601
/usr/local/lib/libruby.so.2.6(rb_funcallv) vm_eval.c:823
/usr/local/lib/libruby.so.2.6(rb_class_s_new+0x47) [0x7f6285cce137] object.c:2214
[0x7f6285dc0dab]
[0x7f6285dd121c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f6285dd1915] vm_insnhelper.c:2372
[0x7f6285dca643]
[0x7f6285dd081d]
[0x7f6285dd241f]
/usr/local/lib/libruby.so.2.6(rb_f_eval+0x1f3) [0x7f6285dd2813] vm_eval.c:1393
[0x7f6285dc0dab]
[0x7f6285dd121c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f6285dd1915] vm_insnhelper.c:2372
[0x7f6285dca643]
[0x7f6285dd081d]
[0x7f6285c95477]
/usr/local/lib/libruby.so.2.6(rb_require_internal+0x371) [0x7f6285c97231] load.c:1029
/usr/local/lib/libruby.so.2.6(rb_require_safe+0x9) [0x7f6285c97399] load.c:1075
[0x7f6285dc0dab]
[0x7f6285dd121c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f6285dd1915] vm_insnhelper.c:2372
[0x7f6285dca643]
[0x7f6285dd0028]
[0x7f6285c95477]
/usr/local/lib/libruby.so.2.6(rb_f_load+0x8b) [0x7f6285c9573b] load.c:643
[0x7f6285dc0dab]
[0x7f6285dd121c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f6285dd1915] vm_insnhelper.c:2372
[0x7f6285dca643]
[0x7f6285dd081d]
[0x7f6285c95477]
/usr/local/lib/libruby.so.2.6(rb_f_load+0x8b) [0x7f6285c9573b] load.c:643
[0x7f6285dc0dab]
[0x7f6285dd121c]
/usr/local/lib/libruby.so.2.6(vm_call_method+0x55) [0x7f6285dd1915] vm_insnhelper.c:2372
[0x7f6285dca643]
[0x7f6285dd081d]
/usr/local/lib/libruby.so.2.6(ruby_exec_internal+0xd6) [0x7f6285c47e06] eval.c:262
/usr/local/lib/libruby.so.2.6(ruby_exec_node+0x1d) [0x7f6285c4a08d] eval.c:326
/usr/local/lib/libruby.so.2.6(ruby_run_node+0x2e) [0x7f6285c4cdae] eval.c:318
/usr/local/bin/ruby(main+0x5b) [0x55b1d829810b] ./main.c:42

-- Other runtime information -----------------------------------------------

* Loaded script: script/runner

* Process memory map:

688cc0000-688d00000 rw-p 00000000 00:00 0 
1a51740000-1a51780000 rw-p 00000000 00:00 0 
42c7cc0000-42c7d00000 rw-p 00000000 00:00 0 
d0d5400000-d0d5440000 rw-p 00000000 00:00 0 
fafcb40000-fafcb80000 rw-p 00000000 00:00 0 
11cc5680000-11cc56c0000 rw-p 00000000 00:00 0 
135388c0000-13538900000 rw-p 00000000 00:00 0 
1c911ec0000-1c911f00000 rw-p 00000000 00:00 0 
2455c800000-2455c840000 rw-p 00000000 00:00 0 
2a15c580000-2a15c5c0000 rw-p 00000000 00:00 0 
2c74e5c0000-2c74e600000 rw-p 00000000 00:00 0 
301c1b00000-301c1b40000 rw-p 00000000 00:00 0 
30240780000-302407c0000 rw-p 00000000 00:00 0 
31699840000-31699880000 rw-p 00000000 00:00 0 
3213a200000-3213a240000 rw-p 00000000 00:00 0 
32ff5580000-32ff55c0000 rw-p 00000000 00:00 0 
3497a280000-3497a2c0000 rw-p 00000000 00:00 0 
37073d00000-37073d40000 rw-p 00000000 00:00 0 
370935c0000-37093600000 rw-p 00000000 00:00 0 
37658d40000-37658d80000 rw-p 00000000 00:00 0 
3fb6dac0000-3fb6db00000 rw-p 00000000 00:00 0 
41b2aa80000-41b2aac0000 rw-p 00000000 00:00 0 
559e2440000-559e2480000 rw-p 00000000 00:00 0 
5c3b1a80000-5c3b1ac0000 rw-p 00000000 00:00 0 
651e47c0000-651e4800000 rw-p 00000000 00:00 0 
6b54cf40000-6b54cf80000 rw-p 00000000 00:00 0 
6b9fa700000-6b9fb330000 rw-p 00000000 00:00 0 
708fd580000-708fd5c0000 rw-p 00000000 00:00 0 
70a287c0000-70a28800000 rw-p 00000000 00:00 0 
7588bf00000-7588bf40000 rw-p 00000000 00:00 0 
77660f00000-77660f40000 rw-p 00000000 00:00 0 
77cbc200000-77cbc240000 rw-p 00000000 00:00 0 
7abbb480000-7abbb4c0000 rw-p 00000000 00:00 0 
827ace40000-827ace80000 rw-p 00000000 00:00 0 
82a321c0000-82a32200000 rw-p 00000000 00:00 0 
857d2600000-857d2640000 rw-p 00000000 00:00 0 
8fcdfd40000-8fcdfd7c000 r--p 00000000 00:00 0 
95a81600000-95a81640000 rw-p 00000000 00:00 0 
98bcbc40000-98bcbc80000 rw-p 00000000 00:00 0 
9becdc00000-9becdc42000 rw-p 00000000 00:00 0 
9ccaea00000-9ccaea40000 rw-p 00000000 00:00 0 
a2c218c0000-a2c21900000 rw-p 00000000 00:00 0 
a7d7a440000-a7d7a480000 rw-p 00000000 00:00 0 
aabdc0c0000-aabdc100000 rw-p 00000000 00:00 0 
af858600000-af858640000 rw-p 00000000 00:00 0 
b8c3b200000-b8c3b240000 rw-p 00000000 00:00 0 
bd9e5f00000-bd9e5f40000 rw-p 00000000 00:00 0 
be5d01c0000-be5d0200000 rw-p 00000000 00:00 0 
c447b580000-c447b5c0000 rw-p 00000000 00:00 0 
c8747a00000-c8748630000 rw-p 00000000 00:00 0 
c8b86b00000-c8b86b40000 rw-p 00000000 00:00 0 
d76602c0000-d76602d1000 rw-p 00000000 00:00 0 
d84d3740000-d84d3780000 rw-p 00000000 00:00 0 
dc8b8380000-dc8b83c0000 rw-p 00000000 00:00 0 
ddbe9840000-ddbe9880000 rw-p 00000000 00:00 0 
e14fcc40000-e14fcc80000 rw-p 00000000 00:00 0 
e5a3e480000-e5a3e482000 rw-p 00000000 00:00 0 
eb3b7640000-eb3b7680000 rw-p 00000000 00:00 0 
ede84f40000-ede84f80000 rw-p 00000000 00:00 0 
eea929c0000-eea92a00000 rw-p 00000000 00:00 0 
eec9de80000-eec9dec0000 rw-p 00000000 00:00 0 
f91bb380000-f91bb3c0000 rw-p 00000000 00:00 0 
101abf180000-101abf1c0000 rw-p 00000000 00:00 0 
103cf10c0000-103cf1100000 rw-p 00000000 00:00 0 
108257d80000-108257dc0000 rw-p 00000000 00:00 0 
10b89e300000-10b89e340000 rw-p 00000000 00:00 0 
10c709b80000-10c709bc0000 rw-p 00000000 00:00 0 
10ee4de00000-10ee4de40000 rw-p 00000000 00:00 0 
11112eec0000-11112ef00000 rw-p 00000000 00:00 0 
1181be8c0000-1181be900000 rw-p 00000000 00:00 0 
127f8dbc0000-127f8dc00000 rw-p 00000000 00:00 0 
12804f780000-12804f7c0000 rw-p 00000000 00:00 0 
12bf3cb00000-12bf3cb40000 rw-p 00000000 00:00 0 
134b6e6c0000-134b6e700000 rw-p 00000000 00:00 0 
134bd0840000-134bd084b000 rw-p 00000000 00:00 0 
13c00e480000-13c00e4c0000 rw-p 00000000 00:00 0 
140aca100000-140aca140000 rw-p 00000000 00:00 0 
142818200000-142818240000 rw-p 00000000 00:00 0 
157517f00000-157517f40000 rw-p 00000000 00:00 0 
159fe7100000-159fe7d30000 rw-p 00000000 00:00 0 
15d08f600000-15d08f640000 rw-p 00000000 00:00 0 
161d4c640000-161d4c642000 rw-p 00000000 00:00 0 
16c03c880000-16c03c8c0000 rw-p 00000000 00:00 0 
174bd7140000-174bd7180000 rw-p 00000000 00:00 0 
181951540000-181951580000 rw-p 00000000 00:00 0 
18286a6c0000-18286a700000 rw-p 00000000 00:00 0 
18b186ec0000-18b186f00000 rw-p 00000000 00:00 0 
18b8f36c0000-18b8f36cb000 rw-p 00000000 00:00 0 
18c66d640000-18c66d680000 rw-p 00000000 00:00 0 
18f989a00000-18f989a02000 rw-p 00000000 00:00 0 
1951014c0000-195101500000 rw-p 00000000 00:00 0 
1958b8ac0000-1958b8b00000 rw-p 00000000 00:00 0 
197db0c00000-197db0c40000 rw-p 00000000 00:00 0 
19a121440000-19a121451000 rw-p 00000000 00:00 0 
19d551400000-19d551440000 rw-p 00000000 00:00 0 
19e93c0c0000-19e93c100000 rw-p 00000000 00:00 0 
1a0ac6180000-1a0ac61c0000 rw-p 00000000 00:00 0 
1a2387a40000-1a2387a80000 rw-p 00000000 00:00 0 
1a4d58ec0000-1a4d58f00000 rw-p 00000000 00:00 0 
1a5e8d5c0000-1a5e8d5fc000 r--p 00000000 00:00 0 
1a9c57b00000-1a9c57b40000 rw-p 00000000 00:00 0 
1abc07f80000-1abc07fc0000 rw-p 00000000 00:00 0 
1b1707a00000-1b1707a40000 rw-p 00000000 00:00 0 
1bdeb89c0000-1bdeb8a00000 rw-p 00000000 00:00 0 
1c5a35880000-1c5a358c0000 rw-p 00000000 00:00 0 
1cb524b80000-1cb524bc0000 rw-p 00000000 00:00 0 
1ccf0ba80000-1ccf0bac0000 rw-p 00000000 00:00 0 
1cef5c040000-1cef5c080000 rw-p 00000000 00:00 0 
1d1763a40000-1d1763a80000 rw-p 00000000 00:00 0 
1d51d0a80000-1d51d0ac0000 rw-p 00000000 00:00 0 
1dba40dc0000-1dba40e00000 rw-p 00000000 00:00 0 
1e11a7540000-1e11a7580000 rw-p 00000000 00:00 0 
1e3902a40000-1e3902a80000 rw-p 00000000 00:00 0 
1eaf7d500000-1eaf7d540000 rw-p 00000000 00:00 0 
1ee98df40000-1ee98df80000 rw-p 00000000 00:00 0 
206ec9880000-206ec9882000 rw-p 00000000 00:00 0 
207ec5780000-207ec57c0000 rw-p 00000000 00:00 0 
2089e1540000-2089e1580000 rw-p 00000000 00:00 0 
20bdf3900000-20bdf3940000 rw-p 00000000 00:00 0 
21a849cc0000-21a849d00000 rw-p 00000000 00:00 0 
21c220240000-21c220280000 rw-p 00000000 00:00 0 
21d11ebc0000-21d11ec00000 rw-p 00000000 00:00 0 
220b375c0000-220b37600000 rw-p 00000000 00:00 0 
22c9a8200000-22c9a8240000 rw-p 00000000 00:00 0 
22f9c7240000-22f9c7280000 rw-p 00000000 00:00 0 
2396a3840000-2396a3880000 rw-p 00000000 00:00 0 
24aa4f640000-24aa4f680000 rw-p 00000000 00:00 0 
24dc3ce80000-24dc3cec0000 rw-p 00000000 00:00 0 
24f91e180000-24f91e1c0000 rw-p 00000000 00:00 0 
251920a80000-251920ac0000 rw-p 00000000 00:00 0 
25936edc0000-25936ee00000 rw-p 00000000 00:00 0 
25ba5d680000-25ba5d6c0000 rw-p 00000000 00:00 0 
25c133280000-25c1332c0000 rw-p 00000000 00:00 0 
2618bc500000-2618bc540000 rw-p 00000000 00:00 0 
268498800000-268498840000 rw-p 00000000 00:00 0 
26ac40c40000-26ac40c80000 rw-p 00000000 00:00 0 
27856fa40000-27856fa80000 rw-p 00000000 00:00 0 
2786749c0000-278674a00000 rw-p 00000000 00:00 0 
27b11f600000-27b11f640000 rw-p 00000000 00:00 0 
27b5c4600000-27b5c4640000 rw-p 00000000 00:00 0 
2822ac180000-2822ac1c0000 rw-p 00000000 00:00 0 
2876e3e80000-2876e3ec0000 rw-p 00000000 00:00 0 
28f4b9300000-28f4b9340000 rw-p 00000000 00:00 0 
28f5f7680000-28f5f76c0000 rw-p 00000000 00:00 0 
2919e5580000-2919e55c0000 rw-p 00000000 00:00 0 
29356fd80000-29356fdc0000 rw-p 00000000 00:00 0 
295933d40000-295933d80000 rw-p 00000000 00:00 0 
298009b40000-298009b80000 rw-p 00000000 00:00 0 
2a2484380000-2a24843c0000 rw-p 00000000 00:00 0 
2a2f9c000000-2a2f9c040000 rw-p 00000000 00:00 0 
2ab6f33c0000-2ab6f3400000 rw-p 00000000 00:00 0 
2b261b3c0000-2b261b400000 rw-p 00000000 00:00 0 
2b31909c0000-2b31909fc000 r--p 00000000 00:00 0 
2b9c35140000-2b9c35180000 rw-p 00000000 00:00 0 
2bd24f440000-2bd24f480000 rw-p 00000000 00:00 0 
2bffb0180000-2bffb01c0000 rw-p 00000000 00:00 0 
2c3e82380000-2c3e82fb0000 rw-p 00000000 00:00 0 
2cb9e40c0000-2cb9e4100000 rw-p 00000000 00:00 0 
2d0f80640000-2d0f8067c000 r--p 00000000 00:00 0 
2df490900000-2df490940000 rw-p 00000000 00:00 0 
2e721b2c0000-2e721b300000 rw-p 00000000 00:00 0 
2efb5b6c0000-2efb5b700000 rw-p 00000000 00:00 0 
2f5fa0dc0000-2f5fa0e00000 rw-p 00000000 00:00 0 
300d5a380000-300d5a3c0000 rw-p 00000000 00:00 0 
30679a200000-30679a240000 rw-p 00000000 00:00 0 
30a776a80000-30a776ac0000 rw-p 00000000 00:00 0 
30c958780000-30c9587c0000 rw-p 00000000 00:00 0 
30da0c5c0000-30da0c600000 rw-p 00000000 00:00 0 
30f172c00000-30f172c40000 rw-p 00000000 00:00 0 
314788b80000-314788bc0000 rw-p 00000000 00:00 0 
31e20eb40000-31e20eb80000 rw-p 00000000 00:00 0 
33012f0c0000-33012f100000 rw-p 00000000 00:00 0 
33aa6e340000-33aa6e380000 rw-p 00000000 00:00 0 
33b4e9340000-33b4e9380000 rw-p 00000000 00:00 0 
348992ac0000-348992b00000 rw-p 00000000 00:00 0 
3504b5740000-3504b5780000 rw-p 00000000 00:00 0 
35268a140000-35268a180000 rw-p 00000000 00:00 0 
35366dd00000-35366dd40000 rw-p 00000000 00:00 0 
357acbc80000-357acbcc0000 rw-p 00000000 00:00 0 
361efc600000-361efc642000 rw-p 00000000 00:00 0 
363dfcfc0000-363dfd000000 rw-p 00000000 00:00 0 
364da1900000-364da1940000 rw-p 00000000 00:00 0 
374a04b00000-374a04b40000 rw-p 00000000 00:00 0 
375cf0140000-375cf0180000 rw-p 00000000 00:00 0 
375e7d380000-375e7d3c0000 rw-p 00000000 00:00 0 
377ca6280000-377ca62c0000 rw-p 00000000 00:00 0 
379c6c500000-379c6c540000 rw-p 00000000 00:00 0 
37dd206c0000-37dd20700000 rw-p 00000000 00:00 0 
387789c80000-387789cc0000 rw-p 00000000 00:00 0 
38901c080000-38901c0c2000 rw-p 00000000 00:00 0 
38a523380000-38a5233c0000 rw-p 00000000 00:00 0 
38d9685c0000-38d968600000 rw-p 00000000 00:00 0 
38e8f8a00000-38e8f8a40000 rw-p 00000000 00:00 0 
39db86a00000-39db86a40000 rw-p 00000000 00:00 0 
39dd9be40000-39dd9be82000 rw-p 00000000 00:00 0 
3b06f2200000-3b06f2240000 rw-p 00000000 00:00 0 
3ba55d9c0000-3ba55da00000 rw-p 00000000 00:00 0 
3c55a6f80000-3c55a6fc0000 rw-p 00000000 00:00 0 
3c5d9fd80000-3c5d9fdc0000 rw-p 00000000 00:00 0 
3cee54700000-3cee54740000 rw-p 00000000 00:00 0 
3dae33280000-3dae332c0000 rw-p 00000000 00:00 0 
3ea835940000-3ea835980000 rw-p 00000000 00:00 0 
3ec677a80000-3ec677ac0000 rw-p 00000000 00:00 0 
3fe9428c0000-3fe942900000 rw-p 00000000 00:00 0 
55b1d8297000-55b1d8298000 r--p 00000000 fe:01 3664287                    /usr/local/bin/ruby
55b1d8298000-55b1d8299000 r-xp 00001000 fe:01 3664287                    /usr/local/bin/ruby
55b1d8299000-55b1d829a000 r--p 00002000 fe:01 3664287                    /usr/local/bin/ruby
55b1d829a000-55b1d829b000 r--p 00002000 fe:01 3664287                    /usr/local/bin/ruby
55b1d829b000-55b1d829c000 rw-p 00003000 fe:01 3664287                    /usr/local/bin/ruby
55b1d96a1000-55b1e7aba000 rw-p 00000000 00:00 0                          [heap]
7f62517c0000-7f6254000000 r--s 00000000 fe:01 4081343                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so
7f6254000000-7f6254002000 rw-p 00000000 00:00 0 
7f6254002000-7f6254003000 ---p 00000000 00:00 0 
7f6254003000-7f6254023000 r-xp 00000000 00:00 0 
7f6254023000-7f625403f000 ---p 00000000 00:00 0 
7f625403f000-7f625c000000 ---p 00000000 00:00 0 
7f625c000000-7f625c002000 rw-p 00000000 00:00 0 
7f625c002000-7f625c003000 ---p 00000000 00:00 0 
7f625c003000-7f625c023000 r-xp 00000000 00:00 0 
7f625c023000-7f625c03f000 ---p 00000000 00:00 0 
7f625c03f000-7f6264000000 ---p 00000000 00:00 0 
7f6264000000-7f6264002000 rw-p 00000000 00:00 0 
7f6264002000-7f6264003000 ---p 00000000 00:00 0 
7f6264003000-7f6264023000 r-xp 00000000 00:00 0 
7f6264023000-7f626403f000 ---p 00000000 00:00 0 
7f626403f000-7f6264040000 ---p 00000000 00:00 0 
7f6264040000-7f6264042000 rw-p 00000000 00:00 0 
7f6264042000-7f6264043000 ---p 00000000 00:00 0 
7f6264043000-7f626407f000 r-xp 00000000 00:00 0 
7f626407f000-7f626c000000 ---p 00000000 00:00 0 
7f626c000000-7f626c002000 rw-p 00000000 00:00 0 
7f626c002000-7f626c003000 ---p 00000000 00:00 0 
7f626c003000-7f626c023000 r-xp 00000000 00:00 0 
7f626c023000-7f626c03f000 ---p 00000000 00:00 0 
7f626c03f000-7f626c040000 ---p 00000000 00:00 0 
7f626c040000-7f626c042000 rw-p 00000000 00:00 0 
7f626c042000-7f626c043000 ---p 00000000 00:00 0 
7f626c043000-7f626c07f000 r-xp 00000000 00:00 0 
7f626c07f000-7f6274000000 ---p 00000000 00:00 0 
7f6274000000-7f6274021000 rw-p 00000000 00:00 0 
7f6274021000-7f6278000000 ---p 00000000 00:00 0 
7f6279eb1000-7f627a775000 r--s 00000000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f627a775000-7f627b376000 rw-p 00000000 00:00 0 
7f627b4a2000-7f627b660000 r--s 00000000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f627b660000-7f627bc78000 rw-p 00000000 00:00 0 
7f627bc78000-7f627bc79000 ---p 00000000 00:00 0 
7f627bc79000-7f627bd79000 rw-p 00000000 00:00 0 
7f627bd79000-7f627bd82000 r-xp 00000000 fe:01 2593313                    /app/vendor/bundle/ruby/2.6.0/gems/byebug-8.2.2/lib/byebug/byebug.so
7f627bd82000-7f627bf81000 ---p 00009000 fe:01 2593313                    /app/vendor/bundle/ruby/2.6.0/gems/byebug-8.2.2/lib/byebug/byebug.so
7f627bf81000-7f627bf82000 r--p 00008000 fe:01 2593313                    /app/vendor/bundle/ruby/2.6.0/gems/byebug-8.2.2/lib/byebug/byebug.so
7f627bf82000-7f627bf83000 rw-p 00009000 fe:01 2593313                    /app/vendor/bundle/ruby/2.6.0/gems/byebug-8.2.2/lib/byebug/byebug.so
7f627bf83000-7f627bf86000 r-xp 00000000 fe:01 2595922                    /app/vendor/bundle/ruby/2.6.0/gems/posix-spawn-0.3.8/lib/posix_spawn_ext.so
7f627bf86000-7f627c185000 ---p 00003000 fe:01 2595922                    /app/vendor/bundle/ruby/2.6.0/gems/posix-spawn-0.3.8/lib/posix_spawn_ext.so
7f627c185000-7f627c186000 r--p 00002000 fe:01 2595922                    /app/vendor/bundle/ruby/2.6.0/gems/posix-spawn-0.3.8/lib/posix_spawn_ext.so
7f627c186000-7f627c187000 rw-p 00003000 fe:01 2595922                    /app/vendor/bundle/ruby/2.6.0/gems/posix-spawn-0.3.8/lib/posix_spawn_ext.so
7f627c187000-7f627c488000 rw-p 00000000 00:00 0 
7f627c488000-7f627c4e1000 r--p 00000000 fe:01 283427                     /usr/lib/x86_64-linux-gnu/libgsl.so.23.1.0
7f627c4e1000-7f627c68f000 r-xp 00059000 fe:01 283427                     /usr/lib/x86_64-linux-gnu/libgsl.so.23.1.0
7f627c68f000-7f627c6fc000 r--p 00207000 fe:01 283427                     /usr/lib/x86_64-linux-gnu/libgsl.so.23.1.0
7f627c6fc000-7f627c700000 r--p 00273000 fe:01 283427                     /usr/lib/x86_64-linux-gnu/libgsl.so.23.1.0
7f627c700000-7f627c711000 rw-p 00277000 fe:01 283427                     /usr/lib/x86_64-linux-gnu/libgsl.so.23.1.0
7f627c711000-7f627c73c000 r--p 00000000 fe:01 3945765                    /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f627c73c000-7f627c81f000 r-xp 0002b000 fe:01 3945765                    /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f627c81f000-7f627c85a000 r--p 0010e000 fe:01 3945765                    /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f627c85a000-7f627c85d000 r--p 00148000 fe:01 3945765                    /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f627c85d000-7f627c860000 rw-p 0014b000 fe:01 3945765                    /app/vendor/bundle/ruby/2.6.0/gems/gsl-2.1.0.3/lib/gsl_native.so
7f627c860000-7f627c861000 rw-p 00000000 00:00 0 
7f627c861000-7f627c86e000 r-xp 00000000 fe:01 2599184                    /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f627c86e000-7f627ca6d000 ---p 0000d000 fe:01 2599184                    /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f627ca6d000-7f627ca6e000 r--p 0000c000 fe:01 2599184                    /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f627ca6e000-7f627ca6f000 rw-p 0000d000 fe:01 2599184                    /app/vendor/bundle/ruby/2.6.0/gems/yajl-ruby-1.3.1/lib/yajl/yajl.so
7f627ca6f000-7f627ca75000 r-xp 00000000 fe:01 2597996                    /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f627ca75000-7f627cc74000 ---p 00006000 fe:01 2597996                    /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f627cc74000-7f627cc75000 r--p 00005000 fe:01 2597996                    /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f627cc75000-7f627cc76000 rw-p 00006000 fe:01 2597996                    /app/vendor/bundle/ruby/2.6.0/gems/raindrops-0.13.0/lib/raindrops_ext.so
7f627cc76000-7f627cc87000 r-xp 00000000 fe:01 2605949                    /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f627cc87000-7f627ce86000 ---p 00011000 fe:01 2605949                    /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f627ce86000-7f627ce87000 r--p 00010000 fe:01 2605949                    /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f627ce87000-7f627ce88000 rw-p 00011000 fe:01 2605949                    /app/vendor/bundle/ruby/2.6.0/gems/unicorn-4.8.2/lib/unicorn_http.so
7f627ce88000-7f627ce8e000 r-xp 00000000 fe:01 2601037                    /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f627ce8e000-7f627d08d000 ---p 00006000 fe:01 2601037                    /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f627d08d000-7f627d08e000 r--p 00005000 fe:01 2601037                    /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f627d08e000-7f627d08f000 rw-p 00006000 fe:01 2601037                    /app/vendor/bundle/ruby/2.6.0/gems/thin-1.7.2/lib/thin_parser.so
7f627d08f000-7f627d0b8000 r-xp 00000000 fe:01 2594755                    /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f627d0b8000-7f627d2b8000 ---p 00029000 fe:01 2594755                    /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f627d2b8000-7f627d2b9000 r--p 00029000 fe:01 2594755                    /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f627d2b9000-7f627d2bb000 rw-p 0002a000 fe:01 2594755                    /app/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/lib/rubyeventmachine.so
7f627d2bb000-7f627d2c0000 r-xp 00000000 fe:01 2600202                    /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f627d2c0000-7f627d4bf000 ---p 00005000 fe:01 2600202                    /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f627d4bf000-7f627d4c0000 r--p 00004000 fe:01 2600202                    /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f627d4c0000-7f627d4c1000 rw-p 00005000 fe:01 2600202                    /app/vendor/bundle/ruby/2.6.0/gems/stackprof-0.2.15/lib/stackprof/stackprof.so
7f627d4c1000-7f627d7c8000 rw-p 00000000 00:00 0 
7f627d7c8000-7f627d851000 r--p 00000000 fe:01 3659195                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f627d851000-7f627d8fd000 r-xp 00089000 fe:01 3659195                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f627d8fd000-7f627d93b000 r--p 00135000 fe:01 3659195                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f627d93b000-7f627d93c000 ---p 00173000 fe:01 3659195                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f627d93c000-7f627d946000 r--p 00173000 fe:01 3659195                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f627d946000-7f627d948000 rw-p 0017d000 fe:01 3659195                    /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7f627d948000-7f627d94c000 rw-p 00000000 00:00 0 
7f627d94c000-7f627e0e1000 r--p 00000000 fe:01 4081343                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so
7f627e0e1000-7f627f79d000 r-xp 00795000 fe:01 4081343                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so
7f627f79d000-7f627fb18000 r--p 01e51000 fe:01 4081343                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so
7f627fb18000-7f627fb80000 r--p 021cb000 fe:01 4081343                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so
7f627fb80000-7f627fbc8000 rw-p 02233000 fe:01 4081343                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/extensions/x86_64-linux/2.6.0/mini_racer-69f0c0d2fc86/mini_racer_extension.so
7f627fbc8000-7f627fbe2000 rw-p 00000000 00:00 0 
7f627fbe2000-7f627fc1d000 r--p 00000000 fe:01 2602321                    /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f627fc1d000-7f627fd44000 r-xp 0003b000 fe:01 2602321                    /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f627fd44000-7f627fda4000 r--p 00162000 fe:01 2602321                    /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f627fda4000-7f627fda5000 ---p 001c2000 fe:01 2602321                    /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f627fda5000-7f627fdae000 r--p 001c2000 fe:01 2602321                    /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f627fdae000-7f627fdb2000 rw-p 001cb000 fe:01 2602321                    /app/vendor/bundle/ruby/2.6.0/gems/nokogiri-1.11.7-x86_64-linux/lib/nokogiri/2.6/nokogiri.so
7f627fdb2000-7f627fdb4000 rw-p 00000000 00:00 0 
7f627fdb4000-7f627fdb5000 r-xp 00000000 fe:01 2595345                    /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f627fdb5000-7f627ffb5000 ---p 00001000 fe:01 2595345                    /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f627ffb5000-7f627ffb6000 r--p 00001000 fe:01 2595345                    /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f627ffb6000-7f627ffb7000 rw-p 00002000 fe:01 2595345                    /app/vendor/bundle/ruby/2.6.0/gems/levenshtein-0.2.2/lib/levenshtein/levenshtein_fast.so
7f627ffb7000-7f627ffd0000 r-xp 00000000 fe:01 2594824                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f627ffd0000-7f62801cf000 ---p 00019000 fe:01 2594824                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f62801cf000-7f62801d0000 r--p 00018000 fe:01 2594824                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f62801d0000-7f62801d1000 rw-p 00019000 fe:01 2594824                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/hpricot_scan.so
7f62801d1000-7f62801da000 r-xp 00000000 fe:01 2593375                    /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f62801da000-7f62803d9000 ---p 00009000 fe:01 2593375                    /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f62803d9000-7f62803da000 r--p 00008000 fe:01 2593375                    /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f62803da000-7f62803db000 rw-p 00009000 fe:01 2593375                    /app/vendor/bundle/ruby/2.6.0/gems/http_parser.rb-0.6.0/lib/ruby_http_parser.so
7f62803db000-7f62803df000 r--p 00000000 fe:01 3883760                    /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1
7f62803df000-7f62803f2000 r-xp 00004000 fe:01 3883760                    /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1
7f62803f2000-7f62803fb000 r--p 00017000 fe:01 3883760                    /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1
7f62803fb000-7f62803fc000 ---p 00020000 fe:01 3883760                    /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1
7f62803fc000-7f62803fd000 r--p 00020000 fe:01 3883760                    /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1
7f62803fd000-7f62803fe000 rw-p 00021000 fe:01 3883760                    /lib/x86_64-linux-gnu/libgpg-error.so.0.26.1
7f62803fe000-7f628040a000 r--p 00000000 fe:01 3883758                    /lib/x86_64-linux-gnu/libgcrypt.so.20.2.4
7f628040a000-7f62804d8000 r-xp 0000c000 fe:01 3883758                    /lib/x86_64-linux-gnu/libgcrypt.so.20.2.4
7f62804d8000-7f6280515000 r--p 000da000 fe:01 3883758                    /lib/x86_64-linux-gnu/libgcrypt.so.20.2.4
7f6280515000-7f6280517000 r--p 00116000 fe:01 3883758                    /lib/x86_64-linux-gnu/libgcrypt.so.20.2.4
7f6280517000-7f628051c000 rw-p 00118000 fe:01 3883758                    /lib/x86_64-linux-gnu/libgcrypt.so.20.2.4
7f628051c000-7f6280521000 r--p 00000000 fe:01 3663362                    /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7f6280521000-7f628053f000 r-xp 00005000 fe:01 3663362                    /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7f628053f000-7f6280548000 r--p 00023000 fe:01 3663362                    /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7f6280548000-7f6280549000 r--p 0002c000 fe:01 3663362                    /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7f6280549000-7f628054a000 rw-p 0002d000 fe:01 3663362                    /usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1
7f628054a000-7f6280565000 r-xp 00000000 fe:01 3663358                    /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f6280565000-7f6280765000 ---p 0001b000 fe:01 3663358                    /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f6280765000-7f6280766000 r--p 0001b000 fe:01 3663358                    /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f6280766000-7f6280767000 rw-p 0001c000 fe:01 3663358                    /usr/lib/x86_64-linux-gnu/librtmp.so.1
7f6280767000-7f628076c000 r--p 00000000 fe:01 3663353                    /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1
7f628076c000-7f628077f000 r-xp 00005000 fe:01 3663353                    /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1
7f628077f000-7f628078b000 r--p 00018000 fe:01 3663353                    /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1
7f628078b000-7f628078e000 r--p 00023000 fe:01 3663353                    /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1
7f628078e000-7f628078f000 rw-p 00026000 fe:01 3663353                    /usr/lib/x86_64-linux-gnu/libnghttp2.so.14.17.1
7f628078f000-7f62807b1000 r-xp 00000000 fe:01 2594585                    /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f62807b1000-7f62809b1000 ---p 00022000 fe:01 2594585                    /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f62809b1000-7f62809b2000 r--p 00022000 fe:01 2594585                    /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f62809b2000-7f62809b3000 rw-p 00023000 fe:01 2594585                    /app/vendor/bundle/ruby/2.6.0/gems/ffi-1.9.25/lib/ffi_c.so
7f6280a2c000-7f6280a41000 r-xp 00000000 fe:01 2598029                    /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f6280a41000-7f6280c40000 ---p 00015000 fe:01 2598029                    /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f6280c40000-7f6280c41000 r--p 00014000 fe:01 2598029                    /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f6280c41000-7f6280c42000 rw-p 00015000 fe:01 2598029                    /app/vendor/bundle/ruby/2.6.0/gems/rdiscount-2.1.8/lib/rdiscount.so
7f6280c42000-7f6280c45000 r--p 00000000 fe:01 3883756                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f6280c45000-7f6280c56000 r-xp 00003000 fe:01 3883756                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f6280c56000-7f6280c59000 r--p 00014000 fe:01 3883756                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f6280c59000-7f6280c5a000 ---p 00017000 fe:01 3883756                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f6280c5a000-7f6280c5b000 r--p 00017000 fe:01 3883756                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f6280c5b000-7f6280c5c000 rw-p 00018000 fe:01 3883756                    /lib/x86_64-linux-gnu/libgcc_s.so.1
7f6280c5c000-7f6280c5d000 r--p 00000000 fe:01 3658923                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f6280c5d000-7f6280c5f000 r-xp 00001000 fe:01 3658923                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f6280c5f000-7f6280c74000 r--p 00003000 fe:01 3658923                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f6280c74000-7f6280c75000 r--p 00017000 fe:01 3658923                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f6280c75000-7f6280c76000 rw-p 00018000 fe:01 3658923                    /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7f6280c76000-7f6280c9a000 r--s 00000000 fe:01 3883797                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f6280c9a000-7f6280cc3000 r--s 00000000 fe:01 3664287                    /usr/local/bin/ruby
7f6280cc3000-7f6280cc4000 r--p 00000000 fe:01 3883778                    /lib/x86_64-linux-gnu/libnss_dns-2.28.so
7f6280cc4000-7f6280cc8000 r-xp 00001000 fe:01 3883778                    /lib/x86_64-linux-gnu/libnss_dns-2.28.so
7f6280cc8000-7f6280cc9000 r--p 00005000 fe:01 3883778                    /lib/x86_64-linux-gnu/libnss_dns-2.28.so
7f6280cc9000-7f6280cca000 r--p 00005000 fe:01 3883778                    /lib/x86_64-linux-gnu/libnss_dns-2.28.so
7f6280cca000-7f6280ccb000 rw-p 00006000 fe:01 3883778                    /lib/x86_64-linux-gnu/libnss_dns-2.28.so
7f6280ccb000-7f6280cce000 r--p 00000000 fe:01 3883780                    /lib/x86_64-linux-gnu/libnss_files-2.28.so
7f6280cce000-7f6280cd5000 r-xp 00003000 fe:01 3883780                    /lib/x86_64-linux-gnu/libnss_files-2.28.so
7f6280cd5000-7f6280cd7000 r--p 0000a000 fe:01 3883780                    /lib/x86_64-linux-gnu/libnss_files-2.28.so
7f6280cd7000-7f6280cd8000 ---p 0000c000 fe:01 3883780                    /lib/x86_64-linux-gnu/libnss_files-2.28.so
7f6280cd8000-7f6280cd9000 r--p 0000c000 fe:01 3883780                    /lib/x86_64-linux-gnu/libnss_files-2.28.so
7f6280cd9000-7f6280cda000 rw-p 0000d000 fe:01 3883780                    /lib/x86_64-linux-gnu/libnss_files-2.28.so
7f6280cda000-7f6280ce0000 rw-p 00000000 00:00 0 
7f6280ceb000-7f6280ced000 r--p 00000000 fe:01 283415                     /usr/lib/x86_64-linux-gnu/libgslcblas.so.0.0.0
7f6280ced000-7f6280d25000 r-xp 00002000 fe:01 283415                     /usr/lib/x86_64-linux-gnu/libgslcblas.so.0.0.0
7f6280d25000-7f6280d29000 r--p 0003a000 fe:01 283415                     /usr/lib/x86_64-linux-gnu/libgslcblas.so.0.0.0
7f6280d29000-7f6280d2a000 ---p 0003e000 fe:01 283415                     /usr/lib/x86_64-linux-gnu/libgslcblas.so.0.0.0
7f6280d2a000-7f6280d2b000 r--p 0003e000 fe:01 283415                     /usr/lib/x86_64-linux-gnu/libgslcblas.so.0.0.0
7f6280d2b000-7f6280d2c000 rw-p 0003f000 fe:01 283415                     /usr/lib/x86_64-linux-gnu/libgslcblas.so.0.0.0
7f6280d2f000-7f6280d31000 r--p 00000000 fe:01 3776833                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f6280d31000-7f6280d34000 r-xp 00002000 fe:01 3776833                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f6280d34000-7f6280d35000 r--p 00005000 fe:01 3776833                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f6280d35000-7f6280d36000 r--p 00005000 fe:01 3776833                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f6280d36000-7f6280d37000 rw-p 00006000 fe:01 3776833                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/console.so
7f6280d37000-7f6280d38000 r--p 00000000 fe:01 3665358                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f6280d38000-7f6280d39000 r-xp 00001000 fe:01 3665358                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f6280d39000-7f6280d3a000 r--p 00002000 fe:01 3665358                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f6280d3a000-7f6280d3b000 r--p 00002000 fe:01 3665358                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f6280d3b000-7f6280d3c000 rw-p 00003000 fe:01 3665358                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/md5.so
7f6280d3c000-7f6280d47000 r-xp 00000000 fe:01 2594998                    /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f6280d47000-7f6280f46000 ---p 0000b000 fe:01 2594998                    /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f6280f46000-7f6280f47000 r--p 0000a000 fe:01 2594998                    /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f6280f47000-7f6280f48000 rw-p 0000b000 fe:01 2594998                    /app/vendor/bundle/ruby/2.6.0/gems/kgio-2.9.2/lib/kgio_ext.so
7f6280f48000-7f6280f5c000 r--p 00000000 fe:01 3665435                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f6280f5c000-7f6280f8c000 r-xp 00014000 fe:01 3665435                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f6280f8c000-7f6280f9c000 r--p 00044000 fe:01 3665435                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f6280f9c000-7f6280f9e000 r--p 00053000 fe:01 3665435                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f6280f9e000-7f6280fa0000 rw-p 00055000 fe:01 3665435                    /usr/local/lib/ruby/2.6.0/x86_64-linux/openssl.so
7f6280fa0000-7f6280fa1000 rw-p 00000000 00:00 0 
7f6280fa1000-7f6280fa7000 r-xp 00000000 fe:01 2587571                    /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f6280fa7000-7f62811a6000 ---p 00006000 fe:01 2587571                    /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f62811a6000-7f62811a7000 r--p 00005000 fe:01 2587571                    /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f62811a7000-7f62811a8000 rw-p 00006000 fe:01 2587571                    /app/vendor/bundle/ruby/2.6.0/gems/iconv-1.0.8/lib/iconv/iconv.so
7f62811a8000-7f62811ac000 r-xp 00000000 fe:01 2592034                    /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f62811ac000-7f62813ab000 ---p 00004000 fe:01 2592034                    /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f62813ab000-7f62813ac000 r--p 00003000 fe:01 2592034                    /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f62813ac000-7f62813ad000 rw-p 00004000 fe:01 2592034                    /app/vendor/bundle/ruby/2.6.0/gems/racc-1.5.2/lib/racc/cparse.so
7f62813ad000-7f62813af000 r--p 00000000 fe:01 3659168                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f62813af000-7f62813b4000 r-xp 00002000 fe:01 3659168                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f62813b4000-7f62813b5000 r--p 00007000 fe:01 3659168                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f62813b5000-7f62813b6000 r--p 00007000 fe:01 3659168                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f62813b6000-7f62813b7000 rw-p 00008000 fe:01 3659168                    /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7f62813b7000-7f62813bf000 r--p 00000000 fe:01 3659176                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f62813bf000-7f62813cf000 r-xp 00008000 fe:01 3659176                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f62813cf000-7f62813ed000 r--p 00018000 fe:01 3659176                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f62813ed000-7f62813ee000 ---p 00036000 fe:01 3659176                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f62813ee000-7f62813ef000 r--p 00036000 fe:01 3659176                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f62813ef000-7f62813f0000 rw-p 00037000 fe:01 3659176                    /usr/lib/x86_64-linux-gnu/libhogweed.so.4.5
7f62813f0000-7f62813f9000 r--p 00000000 fe:01 3659184                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f62813f9000-7f6281416000 r-xp 00009000 fe:01 3659184                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f6281416000-7f6281425000 r--p 00026000 fe:01 3659184                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f6281425000-7f6281427000 r--p 00034000 fe:01 3659184                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f6281427000-7f6281428000 rw-p 00036000 fe:01 3659184                    /usr/lib/x86_64-linux-gnu/libnettle.so.6.5
7f6281428000-7f6281439000 r-xp 00000000 fe:01 3659197                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f6281439000-7f6281639000 ---p 00011000 fe:01 3659197                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f6281639000-7f628163a000 r--p 00011000 fe:01 3659197                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f628163a000-7f628163b000 rw-p 00012000 fe:01 3659197                    /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7f628163b000-7f628164c000 r--p 00000000 fe:01 3659201                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f628164c000-7f6281683000 r-xp 00011000 fe:01 3659201                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f6281683000-7f62817ba000 r--p 00048000 fe:01 3659201                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f62817ba000-7f62817be000 r--p 0017e000 fe:01 3659201                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f62817be000-7f62817bf000 rw-p 00182000 fe:01 3659201                    /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7f62817bf000-7f62817c1000 r--p 00000000 fe:01 3659178                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f62817c1000-7f62817c5000 r-xp 00002000 fe:01 3659178                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f62817c5000-7f62817dc000 r--p 00006000 fe:01 3659178                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f62817dc000-7f62817dd000 r--p 0001c000 fe:01 3659178                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f62817dd000-7f62817de000 rw-p 0001d000 fe:01 3659178                    /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.4
7f62817de000-7f6281809000 r--p 00000000 fe:01 3659186                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f6281809000-7f628189d000 r-xp 0002b000 fe:01 3659186                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f628189d000-7f62818f8000 r--p 000bf000 fe:01 3659186                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f62818f8000-7f6281903000 r--p 00119000 fe:01 3659186                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f6281903000-7f628190d000 rw-p 00124000 fe:01 3659186                    /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7f628190d000-7f628193d000 r--p 00000000 fe:01 3659174                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f628193d000-7f6281a42000 r-xp 00030000 fe:01 3659174                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f6281a42000-7f6281aa8000 r--p 00135000 fe:01 3659174                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f6281aa8000-7f6281ab8000 r--p 0019a000 fe:01 3659174                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f6281ab8000-7f6281ab9000 rw-p 001aa000 fe:01 3659174                    /usr/lib/x86_64-linux-gnu/libgnutls.so.30.23.2
7f6281ab9000-7f6281aba000 rw-p 00000000 00:00 0 
7f6281aba000-7f6281abd000 r--p 00000000 fe:01 3663360                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f6281abd000-7f6281acf000 r-xp 00003000 fe:01 3663360                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f6281acf000-7f6281ad5000 r--p 00015000 fe:01 3663360                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f6281ad5000-7f6281ad6000 r--p 0001a000 fe:01 3663360                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f6281ad6000-7f6281ad7000 rw-p 0001b000 fe:01 3663360                    /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7f6281ad7000-7f6281ada000 r--p 00000000 fe:01 3663348                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f6281ada000-7f6281ae2000 r-xp 00003000 fe:01 3663348                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f6281ae2000-7f6281ae5000 r--p 0000b000 fe:01 3663348                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f6281ae5000-7f6281ae6000 ---p 0000e000 fe:01 3663348                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f6281ae6000-7f6281ae7000 r--p 0000e000 fe:01 3663348                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f6281ae7000-7f6281ae8000 rw-p 0000f000 fe:01 3663348                    /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.10
7f6281ae8000-7f6281aec000 r--p 00000000 fe:01 3883799                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f6281aec000-7f6281af9000 r-xp 00004000 fe:01 3883799                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f6281af9000-7f6281afd000 r--p 00011000 fe:01 3883799                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f6281afd000-7f6281afe000 ---p 00015000 fe:01 3883799                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f6281afe000-7f6281aff000 r--p 00015000 fe:01 3883799                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f6281aff000-7f6281b00000 rw-p 00016000 fe:01 3883799                    /lib/x86_64-linux-gnu/libresolv-2.28.so
7f6281b00000-7f6281b02000 rw-p 00000000 00:00 0 
7f6281b02000-7f6281b04000 r--p 00000000 fe:01 3663308                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f6281b04000-7f6281b06000 r-xp 00002000 fe:01 3663308                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f6281b06000-7f6281b07000 r--p 00004000 fe:01 3663308                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f6281b07000-7f6281b08000 r--p 00004000 fe:01 3663308                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f6281b08000-7f6281b09000 rw-p 00005000 fe:01 3663308                    /lib/x86_64-linux-gnu/libkeyutils.so.1.8
7f6281b09000-7f6281b0c000 r--p 00000000 fe:01 3663346                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f6281b0c000-7f6281b13000 r-xp 00003000 fe:01 3663346                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f6281b13000-7f6281b16000 r--p 0000a000 fe:01 3663346                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f6281b16000-7f6281b17000 r--p 0000c000 fe:01 3663346                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f6281b17000-7f6281b18000 rw-p 0000d000 fe:01 3663346                    /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7f6281b18000-7f6281b1a000 r--p 00000000 fe:01 3883745                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f6281b1a000-7f6281b1b000 r-xp 00002000 fe:01 3883745                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f6281b1b000-7f6281b1c000 r--p 00003000 fe:01 3883745                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f6281b1c000-7f6281b1d000 r--p 00003000 fe:01 3883745                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f6281b1d000-7f6281b1e000 rw-p 00004000 fe:01 3883745                    /lib/x86_64-linux-gnu/libcom_err.so.2.1
7f6281b1e000-7f6281b23000 r--p 00000000 fe:01 3663342                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f6281b23000-7f6281b40000 r-xp 00005000 fe:01 3663342                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f6281b40000-7f6281b4e000 r--p 00022000 fe:01 3663342                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f6281b4e000-7f6281b50000 r--p 0002f000 fe:01 3663342                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f6281b50000-7f6281b51000 rw-p 00031000 fe:01 3663342                    /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7f6281b51000-7f6281b52000 rw-p 00000000 00:00 0 
7f6281b52000-7f6281b76000 r--p 00000000 fe:01 3663344                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f6281b76000-7f6281bd7000 r-xp 00024000 fe:01 3663344                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f6281bd7000-7f6281c20000 r--p 00085000 fe:01 3663344                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f6281c20000-7f6281c21000 ---p 000ce000 fe:01 3663344                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f6281c21000-7f6281c2f000 r--p 000ce000 fe:01 3663344                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f6281c2f000-7f6281c32000 rw-p 000dc000 fe:01 3663344                    /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7f6281c32000-7f6281c40000 r--p 00000000 fe:01 3663351                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f6281c40000-7f6281c72000 r-xp 0000e000 fe:01 3663351                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f6281c72000-7f6281c80000 r--p 00040000 fe:01 3663351                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f6281c80000-7f6281c81000 ---p 0004e000 fe:01 3663351                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f6281c81000-7f6281c83000 r--p 0004e000 fe:01 3663351                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f6281c83000-7f6281c84000 rw-p 00050000 fe:01 3663351                    /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.10
7f6281c84000-7f6281c86000 rw-p 00000000 00:00 0 
7f6281c86000-7f6281c91000 r--p 00000000 fe:01 3663340                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f6281c91000-7f6281cc3000 r-xp 0000b000 fe:01 3663340                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f6281cc3000-7f6281ccf000 r--p 0003d000 fe:01 3663340                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f6281ccf000-7f6281cd1000 r--p 00048000 fe:01 3663340                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f6281cd1000-7f6281cd3000 rw-p 0004a000 fe:01 3663340                    /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7f6281cd3000-7f6281cd4000 r--p 00000000 fe:01 3776834                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f6281cd4000-7f6281cd5000 r-xp 00001000 fe:01 3776834                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f6281cd5000-7f6281cd6000 r--p 00002000 fe:01 3776834                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f6281cd6000-7f6281cd7000 r--p 00002000 fe:01 3776834                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f6281cd7000-7f6281cd8000 rw-p 00003000 fe:01 3776834                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/nonblock.so
7f6281cd8000-7f6281cd9000 r--p 00000000 fe:01 3665423                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f6281cd9000-7f6281cda000 r-xp 00001000 fe:01 3665423                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f6281cda000-7f6281cdb000 r--p 00002000 fe:01 3665423                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f6281cdb000-7f6281cdc000 ---p 00003000 fe:01 3665423                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f6281cdc000-7f6281cdd000 r--p 00003000 fe:01 3665423                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f6281cdd000-7f6281cde000 rw-p 00004000 fe:01 3665423                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/windows_31j.so
7f6281cde000-7f6281d2b000 r-xp 00000000 fe:01 284175                     /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f6281d2b000-7f6281f2a000 ---p 0004d000 fe:01 284175                     /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f6281f2a000-7f6281f2e000 r--p 0004c000 fe:01 284175                     /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f6281f2e000-7f6281f2f000 rw-p 00050000 fe:01 284175                     /usr/lib/x86_64-linux-gnu/libpq.so.5.14
7f6281f2f000-7f6281f58000 r-xp 00000000 fe:01 2595805                    /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f6281f58000-7f6282157000 ---p 00029000 fe:01 2595805                    /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f6282157000-7f6282158000 r--p 00028000 fe:01 2595805                    /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f6282158000-7f6282159000 rw-p 00029000 fe:01 2595805                    /app/vendor/bundle/ruby/2.6.0/gems/pg-0.21.0/lib/pg_ext.so
7f6282159000-7f628215a000 r--p 00000000 fe:01 3665348                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f628215a000-7f628215b000 r-xp 00001000 fe:01 3665348                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f628215b000-7f628215c000 r--p 00002000 fe:01 3665348                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f628215c000-7f628215d000 r--p 00002000 fe:01 3665348                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f628215d000-7f628215e000 rw-p 00003000 fe:01 3665348                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal/util.so
7f628215e000-7f6282161000 r--p 00000000 fe:01 3665451                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f6282161000-7f628216b000 r-xp 00003000 fe:01 3665451                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f628216b000-7f628216e000 r--p 0000d000 fe:01 3665451                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f628216e000-7f628216f000 r--p 0000f000 fe:01 3665451                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f628216f000-7f6282170000 rw-p 00010000 fe:01 3665451                    /usr/local/lib/ruby/2.6.0/x86_64-linux/zlib.so
7f6282170000-7f6282171000 r--p 00000000 fe:01 3776835                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f6282171000-7f6282172000 r-xp 00001000 fe:01 3776835                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f6282172000-7f6282173000 r--p 00002000 fe:01 3776835                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f6282173000-7f6282174000 r--p 00002000 fe:01 3776835                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f6282174000-7f6282175000 rw-p 00003000 fe:01 3776835                    /usr/local/lib/ruby/2.6.0/x86_64-linux/io/wait.so
7f6282175000-7f628217e000 r-xp 00000000 fe:01 2591591                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f628217e000-7f628237e000 ---p 00009000 fe:01 2591591                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f628237e000-7f628237f000 r--p 00009000 fe:01 2591591                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f628237f000-7f6282380000 rw-p 0000a000 fe:01 2591591                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/generator.so
7f6282380000-7f6282386000 r-xp 00000000 fe:01 2594765                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f6282386000-7f6282585000 ---p 00006000 fe:01 2594765                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f6282585000-7f6282586000 r--p 00005000 fe:01 2594765                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f6282586000-7f6282587000 rw-p 00006000 fe:01 2594765                    /app/vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/ext/parser.so
7f6282587000-7f6282589000 r-xp 00000000 fe:01 2594770                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f6282589000-7f6282788000 ---p 00002000 fe:01 2594770                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f6282788000-7f6282789000 r--p 00001000 fe:01 2594770                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f6282789000-7f628278a000 rw-p 00002000 fe:01 2594770                    /app/vendor/bundle/ruby/2.6.0/gems/hpricot-0.8.6/lib/fast_xs.so
7f628278a000-7f6282797000 r--p 00000000 fe:01 3665433                    /usr/local/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f6282797000-7f62827a4000 r-xp 0000d000 fe:01 3665433                    /usr/local/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f62827a4000-7f62827d2000 r--p 0001a000 fe:01 3665433                    /usr/local/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f62827d2000-7f62827d9000 r--p 00047000 fe:01 3665433                    /usr/local/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f62827d9000-7f62827da000 rw-p 0004e000 fe:01 3665433                    /usr/local/lib/ruby/2.6.0/x86_64-linux/nkf.so
7f62827da000-7f62827dd000 rw-p 00000000 00:00 0 
7f62827dd000-7f62827e0000 r--p 00000000 fe:01 3665434                    /usr/local/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f62827e0000-7f62827e6000 r-xp 00003000 fe:01 3665434                    /usr/local/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f62827e6000-7f62827e8000 r--p 00009000 fe:01 3665434                    /usr/local/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f62827e8000-7f62827e9000 r--p 0000a000 fe:01 3665434                    /usr/local/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f62827e9000-7f62827ea000 rw-p 0000b000 fe:01 3665434                    /usr/local/lib/ruby/2.6.0/x86_64-linux/objspace.so
7f62827ea000-7f62827ec000 r--p 00000000 fe:01 3663357                    /usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1
7f62827ec000-7f62827ee000 r-xp 00002000 fe:01 3663357                    /usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1
7f62827ee000-7f62827fb000 r--p 00004000 fe:01 3663357                    /usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1
7f62827fb000-7f62827fc000 r--p 00010000 fe:01 3663357                    /usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1
7f62827fc000-7f62827fd000 rw-p 00011000 fe:01 3663357                    /usr/lib/x86_64-linux-gnu/libpsl.so.5.3.1
7f62827fd000-7f628280a000 r--p 00000000 fe:01 3663338                    /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f628280a000-7f628286d000 r-xp 0000d000 fe:01 3663338                    /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f628286d000-7f6282889000 r--p 00070000 fe:01 3663338                    /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f6282889000-7f628288d000 r--p 0008b000 fe:01 3663338                    /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f628288d000-7f628288e000 rw-p 0008f000 fe:01 3663338                    /usr/lib/x86_64-linux-gnu/libcurl.so.4.5.0
7f628288f000-7f6282890000 r--p 00000000 fe:01 3665425                    /usr/local/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f6282890000-7f6282891000 r-xp 00001000 fe:01 3665425                    /usr/local/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f6282891000-7f6282892000 r--p 00002000 fe:01 3665425                    /usr/local/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f6282892000-7f6282893000 r--p 00002000 fe:01 3665425                    /usr/local/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f6282893000-7f6282894000 rw-p 00003000 fe:01 3665425                    /usr/local/lib/ruby/2.6.0/x86_64-linux/fcntl.so
7f6282894000-7f6282895000 r--p 00000000 fe:01 4081337                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer_loader.so
7f6282895000-7f6282896000 r-xp 00001000 fe:01 4081337                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer_loader.so
7f6282896000-7f6282897000 r--p 00002000 fe:01 4081337                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer_loader.so
7f6282897000-7f6282898000 r--p 00002000 fe:01 4081337                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer_loader.so
7f6282898000-7f6282899000 rw-p 00003000 fe:01 4081337                    /app/vendor/bundle/ruby/2.6.0/bundler/gems/mini_racer-69f0c0d2fc86/lib/mini_racer_loader.so
7f6282899000-7f628289a000 r--p 00000000 fe:01 3665361                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f628289a000-7f628289b000 r-xp 00001000 fe:01 3665361                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f628289b000-7f628289c000 r--p 00002000 fe:01 3665361                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f628289c000-7f628289d000 r--p 00002000 fe:01 3665361                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f628289d000-7f628289e000 rw-p 00003000 fe:01 3665361                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha2.so
7f628289e000-7f62828a1000 r--p 00000000 fe:01 3665354                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f62828a1000-7f62828cc000 r-xp 00003000 fe:01 3665354                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f62828cc000-7f62828d4000 r--p 0002e000 fe:01 3665354                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f62828d4000-7f62828d5000 r--p 00035000 fe:01 3665354                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f62828d5000-7f62828d6000 rw-p 00036000 fe:01 3665354                    /usr/local/lib/ruby/2.6.0/x86_64-linux/date_core.so
7f62828d6000-7f62828d7000 rw-p 00000000 00:00 0 
7f62828d7000-7f62828f5000 r-xp 00000000 fe:01 2590749                    /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f62828f5000-7f6282af4000 ---p 0001e000 fe:01 2590749                    /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f6282af4000-7f6282af5000 r--p 0001d000 fe:01 2590749                    /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f6282af5000-7f6282af6000 rw-p 0001e000 fe:01 2590749                    /app/vendor/bundle/ruby/2.6.0/gems/syck-1.4.0/lib/syck.so
7f6282af6000-7f6282b13000 r-xp 00000000 fe:01 3891795                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f6282b13000-7f6282d12000 ---p 0001d000 fe:01 3891795                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f6282d12000-7f6282d13000 r--p 0001c000 fe:01 3891795                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f6282d13000-7f6282d14000 rw-p 0001d000 fe:01 3891795                    /usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.5
7f6282d15000-7f6282d17000 r--p 00000000 fe:01 3665449                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f6282d17000-7f6282d1b000 r-xp 00002000 fe:01 3665449                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f6282d1b000-7f6282d1d000 r--p 00006000 fe:01 3665449                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f6282d1d000-7f6282d1e000 r--p 00007000 fe:01 3665449                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f6282d1e000-7f6282d1f000 rw-p 00008000 fe:01 3665449                    /usr/local/lib/ruby/2.6.0/x86_64-linux/strscan.so
7f6282d1f000-7f6282da4000 r--p 00000000 fe:01 3663336                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f6282da4000-7f6282f42000 r-xp 00085000 fe:01 3663336                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f6282f42000-7f6282fd1000 r--p 00223000 fe:01 3663336                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f6282fd1000-7f6282fd2000 ---p 002b2000 fe:01 3663336                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f6282fd2000-7f6283002000 r--p 002b2000 fe:01 3663336                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f6283002000-7f6283004000 rw-p 002e2000 fe:01 3663336                    /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7f6283004000-7f6283008000 rw-p 00000000 00:00 0 
7f6283008000-7f6283025000 r--p 00000000 fe:01 3663363                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f6283025000-7f6283072000 r-xp 0001d000 fe:01 3663363                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f6283072000-7f628308c000 r--p 0006a000 fe:01 3663363                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f628308c000-7f628308d000 ---p 00084000 fe:01 3663363                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f628308d000-7f6283096000 r--p 00084000 fe:01 3663363                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f6283096000-7f628309a000 rw-p 0008d000 fe:01 3663363                    /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7f628309c000-7f628309f000 r--p 00000000 fe:01 3665437                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f628309f000-7f62830a2000 r-xp 00003000 fe:01 3665437                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f62830a2000-7f62830a3000 r--p 00006000 fe:01 3665437                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f62830a3000-7f62830a4000 r--p 00006000 fe:01 3665437                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f62830a4000-7f62830a5000 rw-p 00007000 fe:01 3665437                    /usr/local/lib/ruby/2.6.0/x86_64-linux/psych.so
7f62830a5000-7f62830b3000 r--p 00000000 fe:01 3883814                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f62830b3000-7f62830c1000 r-xp 0000e000 fe:01 3883814                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f62830c1000-7f62830ce000 r--p 0001c000 fe:01 3883814                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f62830ce000-7f62830d2000 r--p 00028000 fe:01 3883814                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f62830d2000-7f62830d3000 rw-p 0002c000 fe:01 3883814                    /lib/x86_64-linux-gnu/libtinfo.so.6.1
7f62830d3000-7f62830db000 r--p 00000000 fe:01 2186681                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f62830db000-7f62830f4000 r-xp 00008000 fe:01 2186681                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f62830f4000-7f62830fa000 r--p 00021000 fe:01 2186681                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f62830fa000-7f62830fb000 ---p 00027000 fe:01 2186681                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f62830fb000-7f62830fc000 r--p 00027000 fe:01 2186681                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f62830fc000-7f62830fd000 rw-p 00028000 fe:01 2186681                    /lib/x86_64-linux-gnu/libncurses.so.6.1
7f62830fd000-7f6283141000 r-xp 00000000 fe:01 3663907                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f6283141000-7f6283340000 ---p 00044000 fe:01 3663907                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f6283340000-7f6283342000 r--p 00043000 fe:01 3663907                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f6283342000-7f6283348000 rw-p 00045000 fe:01 3663907                    /lib/x86_64-linux-gnu/libreadline.so.7.0
7f6283348000-7f628334a000 rw-p 00000000 00:00 0 
7f628334a000-7f628334b000 r--p 00000000 fe:01 3665360                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f628334b000-7f628334c000 r-xp 00001000 fe:01 3665360                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f628334c000-7f628334d000 r--p 00002000 fe:01 3665360                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f628334d000-7f628334e000 r--p 00002000 fe:01 3665360                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f628334e000-7f628334f000 rw-p 00003000 fe:01 3665360                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest/sha1.so
7f628334f000-7f6283350000 r--p 00000000 fe:01 3665362                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f6283350000-7f6283352000 r-xp 00001000 fe:01 3665362                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f6283352000-7f6283353000 r--p 00003000 fe:01 3665362                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f6283353000-7f6283354000 r--p 00003000 fe:01 3665362                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f6283354000-7f6283355000 rw-p 00004000 fe:01 3665362                    /usr/local/lib/ruby/2.6.0/x86_64-linux/digest.so
7f6283355000-7f6283358000 r--p 00000000 fe:01 3665444                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f6283358000-7f628335c000 r-xp 00003000 fe:01 3665444                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f628335c000-7f628335e000 r--p 00007000 fe:01 3665444                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f628335e000-7f628335f000 r--p 00008000 fe:01 3665444                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f628335f000-7f6283360000 rw-p 00009000 fe:01 3665444                    /usr/local/lib/ruby/2.6.0/x86_64-linux/readline.so
7f6283360000-7f6283361000 r--p 00000000 fe:01 3665351                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f6283361000-7f6283363000 r-xp 00001000 fe:01 3665351                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f6283363000-7f6283364000 r--p 00003000 fe:01 3665351                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f6283364000-7f6283365000 r--p 00003000 fe:01 3665351                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f6283365000-7f6283366000 rw-p 00004000 fe:01 3665351                    /usr/local/lib/ruby/2.6.0/x86_64-linux/cgi/escape.so
7f6283366000-7f6283368000 r--p 00000000 fe:01 3665436                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f6283368000-7f628336d000 r-xp 00002000 fe:01 3665436                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f628336d000-7f628336f000 r--p 00007000 fe:01 3665436                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f628336f000-7f6283370000 r--p 00008000 fe:01 3665436                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f6283370000-7f6283371000 rw-p 00009000 fe:01 3665436                    /usr/local/lib/ruby/2.6.0/x86_64-linux/pathname.so
7f6283371000-7f6283373000 r--p 00000000 fe:01 3665424                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f6283373000-7f6283376000 r-xp 00002000 fe:01 3665424                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f6283376000-7f6283378000 r--p 00005000 fe:01 3665424                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f6283378000-7f6283379000 r--p 00006000 fe:01 3665424                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f6283379000-7f628337a000 rw-p 00007000 fe:01 3665424                    /usr/local/lib/ruby/2.6.0/x86_64-linux/etc.so
7f628337e000-7f6283384000 r--p 00000000 fe:01 3665447                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f6283384000-7f62833a3000 r-xp 00006000 fe:01 3665447                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f62833a3000-7f62833aa000 r--p 00025000 fe:01 3665447                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f62833aa000-7f62833ab000 ---p 0002c000 fe:01 3665447                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f62833ab000-7f62833ac000 r--p 0002c000 fe:01 3665447                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f62833ac000-7f62833ad000 rw-p 0002d000 fe:01 3665447                    /usr/local/lib/ruby/2.6.0/x86_64-linux/socket.so
7f62833ad000-7f62833ae000 r--p 00000000 fe:01 3665415                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f62833ae000-7f62833af000 r-xp 00001000 fe:01 3665415                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f62833af000-7f62833b0000 r--p 00002000 fe:01 3665415                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f62833b0000-7f62833b1000 r--p 00002000 fe:01 3665415                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f62833b1000-7f62833b2000 rw-p 00003000 fe:01 3665415                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_32be.so
7f62833b2000-7f62833b3000 r--p 00000000 fe:01 3665413                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f62833b3000-7f62833b4000 r-xp 00001000 fe:01 3665413                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f62833b4000-7f62833b5000 r--p 00002000 fe:01 3665413                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f62833b5000-7f62833b6000 r--p 00002000 fe:01 3665413                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f62833b6000-7f62833b7000 rw-p 00003000 fe:01 3665413                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/utf_16be.so
7f62833b7000-7f62833b8000 r--p 00000000 fe:01 3665391                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f62833b8000-7f62833b9000 r-xp 00001000 fe:01 3665391                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f62833b9000-7f62833ba000 r--p 00002000 fe:01 3665391                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f62833ba000-7f62833bb000 ---p 00003000 fe:01 3665391                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f62833bb000-7f62833bc000 r--p 00003000 fe:01 3665391                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f62833bc000-7f62833bd000 rw-p 00004000 fe:01 3665391                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/shift_jis.so
7f62833bd000-7f62833be000 r--p 00000000 fe:01 3665368                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f62833be000-7f62833bf000 r-xp 00001000 fe:01 3665368                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f62833bf000-7f62833c0000 r--p 00002000 fe:01 3665368                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f62833c0000-7f62833c1000 ---p 00003000 fe:01 3665368                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f62833c1000-7f62833c2000 r--p 00003000 fe:01 3665368                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f62833c2000-7f62833c3000 rw-p 00004000 fe:01 3665368                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/euc_jp.so
7f62833c3000-7f62833c5000 r--p 00000000 fe:01 3665349                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f62833c5000-7f62833d5000 r-xp 00002000 fe:01 3665349                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f62833d5000-7f62833d8000 r--p 00012000 fe:01 3665349                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f62833d8000-7f62833d9000 ---p 00015000 fe:01 3665349                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f62833d9000-7f62833da000 r--p 00015000 fe:01 3665349                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f62833da000-7f62833db000 rw-p 00016000 fe:01 3665349                    /usr/local/lib/ruby/2.6.0/x86_64-linux/bigdecimal.so
7f62833db000-7f62833dd000 r--p 00000000 fe:01 3665448                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f62833dd000-7f62833e2000 r-xp 00002000 fe:01 3665448                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f62833e2000-7f62833e4000 r--p 00007000 fe:01 3665448                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f62833e4000-7f62833e5000 r--p 00008000 fe:01 3665448                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f62833e5000-7f62833e6000 rw-p 00009000 fe:01 3665448                    /usr/local/lib/ruby/2.6.0/x86_64-linux/stringio.so
7f62833e6000-7f62833e7000 r--p 00000000 fe:01 3665410                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f62833e7000-7f62833e9000 r-xp 00001000 fe:01 3665410                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f62833e9000-7f62833ea000 r--p 00003000 fe:01 3665410                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f62833ea000-7f62833eb000 r--p 00003000 fe:01 3665410                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f62833eb000-7f62833ec000 rw-p 00004000 fe:01 3665410                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/trans/transdb.so
7f62833ec000-7f62833ed000 r--p 00000000 fe:01 3665367                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f62833ed000-7f62833ee000 r-xp 00001000 fe:01 3665367                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f62833ee000-7f62833ef000 r--p 00002000 fe:01 3665367                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f62833ef000-7f62833f0000 r--p 00002000 fe:01 3665367                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f62833f0000-7f62833f1000 rw-p 00003000 fe:01 3665367                    /usr/local/lib/ruby/2.6.0/x86_64-linux/enc/encdb.so
7f62833f1000-7f62854fb000 rw-p 00000000 00:00 0 
7f62854fb000-7f628552d000 r--p 00000000 fe:01 3658868                    /usr/lib/locale/C.UTF-8/LC_CTYPE
7f628552d000-7f628552f000 rw-p 00000000 00:00 0 
7f628552f000-7f6285551000 r--p 00000000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f6285551000-7f6285699000 r-xp 00022000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f6285699000-7f62856e5000 r--p 0016a000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f62856e5000-7f62856e6000 ---p 001b6000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f62856e6000-7f62856ea000 r--p 001b6000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f62856ea000-7f62856ec000 rw-p 001ba000 fe:01 3883737                    /lib/x86_64-linux-gnu/libc-2.28.so
7f62856ec000-7f62856f0000 rw-p 00000000 00:00 0 
7f62856f0000-7f62856fd000 r--p 00000000 fe:01 3883763                    /lib/x86_64-linux-gnu/libm-2.28.so
7f62856fd000-7f628579c000 r-xp 0000d000 fe:01 3883763                    /lib/x86_64-linux-gnu/libm-2.28.so
7f628579c000-7f6285871000 r--p 000ac000 fe:01 3883763                    /lib/x86_64-linux-gnu/libm-2.28.so
7f6285871000-7f6285872000 r--p 00180000 fe:01 3883763                    /lib/x86_64-linux-gnu/libm-2.28.so
7f6285872000-7f6285873000 rw-p 00181000 fe:01 3883763                    /lib/x86_64-linux-gnu/libm-2.28.so
7f6285873000-7f6285874000 r--p 00000000 fe:01 3883746                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f6285874000-7f628587a000 r-xp 00001000 fe:01 3883746                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f628587a000-7f628587c000 r--p 00007000 fe:01 3883746                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f628587c000-7f628587d000 ---p 00009000 fe:01 3883746                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f628587d000-7f628587e000 r--p 00009000 fe:01 3883746                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f628587e000-7f628587f000 rw-p 0000a000 fe:01 3883746                    /lib/x86_64-linux-gnu/libcrypt-2.28.so
7f628587f000-7f62858af000 rw-p 00000000 00:00 0 
7f62858af000-7f62858b0000 r--p 00000000 fe:01 3883748                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f62858b0000-7f62858b1000 r-xp 00001000 fe:01 3883748                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f62858b1000-7f62858b2000 r--p 00002000 fe:01 3883748                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f62858b2000-7f62858b3000 r--p 00002000 fe:01 3883748                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f62858b3000-7f62858b4000 rw-p 00003000 fe:01 3883748                    /lib/x86_64-linux-gnu/libdl-2.28.so
7f62858b4000-7f62858bf000 r--p 00000000 fe:01 3659172                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f62858bf000-7f628591d000 r-xp 0000b000 fe:01 3659172                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f628591d000-7f6285934000 r--p 00069000 fe:01 3659172                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f6285934000-7f6285935000 ---p 00080000 fe:01 3659172                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f6285935000-7f6285936000 r--p 00080000 fe:01 3659172                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f6285936000-7f6285937000 rw-p 00081000 fe:01 3659172                    /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7f6285937000-7f6285939000 r--p 00000000 fe:01 3883801                    /lib/x86_64-linux-gnu/librt-2.28.so
7f6285939000-7f628593d000 r-xp 00002000 fe:01 3883801                    /lib/x86_64-linux-gnu/librt-2.28.so
7f628593d000-7f628593f000 r--p 00006000 fe:01 3883801                    /lib/x86_64-linux-gnu/librt-2.28.so
7f628593f000-7f6285940000 r--p 00007000 fe:01 3883801                    /lib/x86_64-linux-gnu/librt-2.28.so
7f6285940000-7f6285941000 rw-p 00008000 fe:01 3883801                    /lib/x86_64-linux-gnu/librt-2.28.so
7f6285941000-7f6285947000 r--p 00000000 fe:01 3883797                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f6285947000-7f6285956000 r-xp 00006000 fe:01 3883797                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f6285956000-7f628595c000 r--p 00015000 fe:01 3883797                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f628595c000-7f628595d000 r--p 0001a000 fe:01 3883797                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f628595d000-7f628595e000 rw-p 0001b000 fe:01 3883797                    /lib/x86_64-linux-gnu/libpthread-2.28.so
7f628595e000-7f6285962000 rw-p 00000000 00:00 0 
7f6285962000-7f628597e000 r-xp 00000000 fe:01 3883822                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f628597e000-7f6285b7e000 ---p 0001c000 fe:01 3883822                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f6285b7e000-7f6285b7f000 r--p 0001c000 fe:01 3883822                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f6285b7f000-7f6285b80000 rw-p 0001d000 fe:01 3883822                    /lib/x86_64-linux-gnu/libz.so.1.2.11
7f6285b83000-7f6285b84000 r-xp 00000000 00:00 0 
7f6285b84000-7f6285b8b000 r--s 00000000 fe:01 3659147                    /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f6285b8b000-7f6285bb6000 r--p 00000000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f6285bb6000-7f6285deb000 r-xp 0002b000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f6285deb000-7f6285ed1000 r--p 00260000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f6285ed1000-7f6285ed2000 ---p 00346000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f6285ed2000-7f6285ed8000 r--p 00346000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f6285ed8000-7f6285edb000 rw-p 0034c000 fe:01 3664327                    /usr/local/lib/libruby.so.2.6.9
7f6285edb000-7f6285eee000 rw-p 00000000 00:00 0 
7f6285eee000-7f6285eef000 r--p 00000000 fe:01 3883723                    /lib/x86_64-linux-gnu/ld-2.28.so
7f6285eef000-7f6285f0d000 r-xp 00001000 fe:01 3883723                    /lib/x86_64-linux-gnu/ld-2.28.so
7f6285f0d000-7f6285f15000 r--p 0001f000 fe:01 3883723                    /lib/x86_64-linux-gnu/ld-2.28.so
7f6285f15000-7f6285f16000 r--p 00026000 fe:01 3883723                    /lib/x86_64-linux-gnu/ld-2.28.so
7f6285f16000-7f6285f17000 rw-p 00027000 fe:01 3883723                    /lib/x86_64-linux-gnu/ld-2.28.so
7f6285f17000-7f6285f18000 rw-p 00000000 00:00 0 
7fffe5819000-7fffe6018000 rw-p 00000000 00:00 0                          [stack]
7fffe6119000-7fffe611d000 r--p 00000000 00:00 0                          [vvar]
7fffe611d000-7fffe611f000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]


[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: https://www.ruby-lang.org/bugreport.html

Aborted

@SamSaffron
Copy link
Collaborator

I just added a patch recently to fix rb_rescue2, does this need to be applied more widely?

289587a

Segfaulting on init is concerning, is there any process forking involved? Perhaps try single threaded platform to see if this removes the issue?

@nightpool
Copy link
Contributor Author

nightpool commented Jan 19, 2022 via email

@SamSaffron
Copy link
Collaborator

SamSaffron commented Jan 19, 2022 via email

@nightpool
Copy link
Contributor Author

nightpool commented Jan 19, 2022

I'm not sure I understand what you mean by "the wrong time".... in my test case, I call single_threaded! before anything else, and I thought we already had the guards to prevent me from doing so here: https://github.com/rubyjs/mini_racer/blob/master/ext/mini_racer_extension/mini_racer_extension.cc#L357-L359 ?

So i'm pretty sure that i'm using SingleThreadedDefaultPlatform here......

@tisba
Copy link
Collaborator

tisba commented Feb 13, 2022

@nightpool Do you have a stripped down version of your example? Happy to help it running through different Ruby versions and platforms.

@tisba
Copy link
Collaborator

tisba commented May 30, 2023

Hey @nightpool. Are you still dealing with this issue? A couple of mini_racer versions have been released newer V8 versions as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants