GithubHelp home page GithubHelp logo

psli / ropencc Goto Github PK

View Code? Open in Web Editor NEW
74.0 4.0 11.0 126 KB

ropencc is a project for conversion between Traditional and Simplified Chinese, wrapper in ruby.

License: BSD 3-Clause "New" or "Revised" License

Ruby 100.00%

ropencc's Introduction

ropencc

ropencc is a project for conversion between Traditional and Simplified Chinese, wrapper in ruby.

繁简转换的程序,看似简单,但一研究起来,却真的不简单。其中一个难点是繁简汉字之间往往不能一一对应

例如:瞭解 -> 了解 瞭望 -> 瞭望;“標準”繁換簡是“标准”,但“标准”簡換繁卻是“標准”

还有若干语言习惯的问题,例如同一个地名的称呼就不一样,就不一一列举了

而 Open Chinese Convert(OpenCC)「开放中文转换」,是一个致力于中 文简繁转换的项目,由清华大学的 BYVoid 提供高质量词库和函数库(libopencc)。更多介紹

Install

  1. 先安装 libopencc

    Ubuntu

    如果你正在使用Ubuntu 10.10 (Maverick) 以上的版本,opencc已經被加入到了官方源中,使用

     sudo apt-get install opencc
     sudo apt-get install libopencc-dev
    

    如果你更願意體驗最新的版本,請使用ppa:

     sudo add-apt-repository ppa:byvoid-kcp/ppa
     sudo apt-get update
     sudo apt-get install opencc
     sudo apt-get install libopencc-dev
    

    Mac OS X

    使用 brew 安装

     brew install opencc
    

    更多 libopencc 安装介绍请查看: https://github.com/BYVoid/OpenCC

  2. 安装 ropencc

     gem install ropencc
    

预设配置文件

  • s2t.json Simplified Chinese to Traditional Chinese 簡體到繁體
  • t2s.json Traditional Chinese to Simplified Chinese 繁體到簡體
  • s2tw.json Simplified Chinese to Traditional Chinese (Taiwan Standard) 簡體到臺灣正體
  • tw2s.json Traditional Chinese (Taiwan Standard) to Simplified Chinese 臺灣正體到簡體
  • s2hk.json Simplified Chinese to Traditional Chinese (Hong Kong Standard) 簡體到香港繁體(香港小學學習字詞表標準)
  • hk2s.json Traditional Chinese (Hong Kong Standard) to Simplified Chinese 香港繁體(香港小學學習字詞表標準)到簡體
  • s2twp.json Simplified Chinese to Traditional Chinese (Taiwan Standard) with Taiwanese idiom 簡體到繁體(臺灣正體標準)並轉換爲臺灣常用詞彙
  • tw2sp.json Traditional Chinese (Taiwan Standard) to Simplified Chinese with Mainland Chinese idiom 繁體(臺灣正體標準)到簡體並轉換爲中國大陸常用詞彙

Usage

简转繁 (Simple Interface)

Ropencc.conv('s2t.json', str)

繁转简 (Simple Interface)

Ropencc.conv('t2s.json', str)

简转繁 (File-Class like Interface)

Ropencc.open 's2t.json' do |cc|
    rs = cc.convert '新年快乐'
    assert_equal '新年快樂', rs
end

繁转简 (File-Class like Interface)

Ropencc.open 't2s.json' do |cc|
    rs = cc.convert '新年快樂'
    assert_equal '新年快乐', rs
end

附:libopencc 作者简介

BYVoid,清華大學計算機系二零一零級本科生,清華大學學生網絡管理委員會副會長,現於微軟亞洲研究院系統組實習。

出生於1991年末,年十九歲,河南安陽人。熱愛計算機科學、語言學、漢語音韻學。能說有入聲的老派安陽話,會用簡繁體流暢地閱讀書寫,能夠辨析漢字簡繁正異用法。認爲「正體字」不等於「臺灣正體字」,支持傳統正體字回歸主流,主張廢除簡體字, 希望陸、港、澳、臺、日、韓、越早日實現漢字統一。

ropencc's People

Contributors

lulalala avatar psli avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

ropencc's Issues

Debian 9 / 10: Could not open library 'opencc': opencc: cannot open shared object file: No such file or directory

Steps to reproduce

On Debian 9 (Stretch) or 10 (Buster):

apt install libopencc2
gem install ropencc

Expected

require 'ropencc' should work.

Actual

LoadError: Could not open library 'opencc': opencc: cannot open shared object file: No such file or directory.
Could not open library 'libopencc.so': libopencc.so: cannot open shared object file: No such file or directory
/var/lib/gems/2.5.0/gems/ffi-1.9.25/lib/ffi/library.rb:145:in `block in ffi_lib'
/var/lib/gems/2.5.0/gems/ffi-1.9.25/lib/ffi/library.rb:99:in `map'
/var/lib/gems/2.5.0/gems/ffi-1.9.25/lib/ffi/library.rb:99:in `ffi_lib'
/var/lib/gems/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:8:in `<module:LibOpenCC>'
/var/lib/gems/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:6:in `<class:Ropencc>'
/var/lib/gems/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:5:in `<top (required)>'

Workaround

ln -s /usr/lib/x86_64-linux-gnu/{libopencc.so.2,libopencc.so}

This issue is just FYI for future reference.

Could not open library 'libopencc.so': libopencc.so: cannot open shared object file: No such file or directory

# rails c
/usr/local/rvm/gems/ruby-2.2.2/gems/ffi-1.9.10/lib/ffi/library.rb:133:in `block in ffi_lib': Could not open library 'opencc': opencc: cannot open shared object file: No such file or directory. (LoadError)
Could not open library 'libopencc.so': libopencc.so: cannot open shared object file: No such file or directory
    from /usr/local/rvm/gems/ruby-2.2.2/gems/ffi-1.9.10/lib/ffi/library.rb:100:in `map'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/ffi-1.9.10/lib/ffi/library.rb:100:in `ffi_lib'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/ropencc-0.0.6/lib/ropencc.rb:8:in `<module:LibOpenCC>'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/ropencc-0.0.6/lib/ropencc.rb:6:in `<class:Ropencc>'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/ropencc-0.0.6/lib/ropencc.rb:5:in `<top (required)>'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler/runtime.rb:76:in `require'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler/runtime.rb:76:in `block (2 levels) in require'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler/runtime.rb:72:in `each'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler/runtime.rb:72:in `block in require'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler/runtime.rb:61:in `each'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler/runtime.rb:61:in `require'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/bundler-1.10.5/lib/bundler.rb:134:in `require'
    from /opt/otaku/config/application.rb:7:in `<top (required)>'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/railties-4.2.2/lib/rails/commands/commands_tasks.rb:141:in `require'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/railties-4.2.2/lib/rails/commands/commands_tasks.rb:141:in `require_application_and_environment!'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/railties-4.2.2/lib/rails/commands/commands_tasks.rb:67:in `console'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/railties-4.2.2/lib/rails/commands/commands_tasks.rb:39:in `run_command!'
    from /usr/local/rvm/gems/ruby-2.2.2/gems/railties-4.2.2/lib/rails/commands.rb:17:in `<top (required)>'
    from bin/rails:4:in `require'
    from bin/rails:4:in `<main>'
# opencc --version

Open Chinese Convert (OpenCC) Command Line Tool
Version: 1.0.3
# bundle list ropencc
/usr/local/rvm/gems/ruby-2.2.2/gems/ropencc-0.0.6
# ls /usr/lib/libopencc.so*
/usr/lib/libopencc.so    /usr/lib/libopencc.so.1.0.0
/usr/lib/libopencc.so.1  /usr/lib/libopencc.so.2

Segmentation fault at 0xffffffffffffffff

Trying to use Ropencc in my heroku dyno and getting a crash I have no idea how to debug.

I don't think it is the reason, but it may be worth mentioning I built the opencc library in another ubuntu system and copied the library over to the heroku ubuntu dyno. Also, I'm not having any problems locally in development.

Loading production environment (Rails 5.1.6)
irb(main):001:0> require 'ropencc'
=> true

irb(main):002:0> s = 'test'
=> "test"

irb(main):003:0> Ropencc.conv('s2t.json', s)
/app/vendor/bundle/ruby/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:44: [BUG] Segmentation fault at 0xffffffffffffffff
ruby 2.5.0p0 (2017-12-25 revision 61468) [x86_64-linux]

-- Control frame information -----------------------------------------------
c:0031 p:---- s:0182 e:000181 CFUNC  :opencc_convert_utf8
c:0030 p:0033 s:0175 e:000174 METHOD /app/vendor/bundle/ruby/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:44
c:0029 p:0014 s:0166 e:000165 EVAL   (irb):3 [FINISH]
c:0028 p:---- s:0163 e:000162 CFUNC  :eval
c:0027 p:0021 s:0155 e:000154 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/workspace.rb:85
c:0026 p:0021 s:0147 e:000145 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/context.rb:380
c:0025 p:0017 s:0140 e:000139 BLOCK  /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:491
c:0024 p:0025 s:0130 e:000129 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:621
c:0023 p:0008 s:0124 e:000123 BLOCK  /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:488
c:0022 p:0102 s:0119 e:000118 BLOCK  /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:246 [FINISH]
c:0021 p:---- s:0115 e:000114 CFUNC  :loop
c:0020 p:0006 s:0111 e:000110 BLOCK  /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:232 [FINISH]
c:0019 p:---- s:0108 e:000107 CFUNC  :catch
c:0018 p:0012 s:0103 e:000102 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:231
c:0017 p:0029 s:0099 E:000a60 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:487
c:0016 p:0005 s:0095 e:000094 BLOCK  /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:428 [FINISH]
c:0015 p:---- s:0092 e:000091 CFUNC  :catch
c:0014 p:0063 s:0087 E:0010c8 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:427
c:0013 p:0102 s:0082 e:000081 METHOD /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:383
c:0012 p:0174 s:0076 e:000075 METHOD /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands/console/console_command.rb:62
c:0011 p:0011 s:0072 e:000071 METHOD /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands/console/console_command.rb:17
c:0010 p:0057 s:0067 e:000066 METHOD /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands/console/console_command.rb:97
c:0009 p:0064 s:0063 e:000062 METHOD /app/vendor/bundle/ruby/2.5.0/gems/thor-0.20.0/lib/thor/command.rb:27
c:0008 p:0047 s:0055 e:000054 METHOD /app/vendor/bundle/ruby/2.5.0/gems/thor-0.20.0/lib/thor/invocation.rb:126
c:0007 p:0259 s:0048 e:000047 METHOD /app/vendor/bundle/ruby/2.5.0/gems/thor-0.20.0/lib/thor.rb:387
c:0006 p:0043 s:0035 e:000034 METHOD /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/command/base.rb:63
c:0005 p:0134 s:0028 e:000027 METHOD /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/command.rb:44
c:0004 p:0087 s:0017 e:000016 TOP    /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands.rb:16 [FINISH]
c:0003 p:---- s:0012 e:000011 CFUNC  :require
c:0002 p:0053 s:0007 E:001228 EVAL   /app/bin/rails:9 [FINISH]
c:0001 p:0000 s:0003 E:0005d0 (none) [FINISH]

-- Ruby level backtrace information ----------------------------------------
/app/bin/rails:9:in `<main>'
/app/bin/rails:9:in `require'
/app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands.rb:16:in `<top (required)>'
/app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/command.rb:44:in `invoke'
/app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/command/base.rb:63:in `perform'
/app/vendor/bundle/ruby/2.5.0/gems/thor-0.20.0/lib/thor.rb:387:in `dispatch'
/app/vendor/bundle/ruby/2.5.0/gems/thor-0.20.0/lib/thor/invocation.rb:126:in `invoke_command'
/app/vendor/bundle/ruby/2.5.0/gems/thor-0.20.0/lib/thor/command.rb:27:in `run'
/app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands/console/console_command.rb:97:in `perform'
/app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands/console/console_command.rb:17:in `start'
/app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/commands/console/console_command.rb:62:in `start'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:383:in `start'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:427:in `run'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:427:in `catch'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:428:in `block in run'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:487:in `eval_input'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:231:in `each_top_level_statement'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:231:in `catch'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:232:in `block in each_top_level_statement'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:232:in `loop'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/ruby-lex.rb:246:in `block (2 levels) in each_top_level_statement'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:488:in `block in eval_input'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:621:in `signal_status'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb.rb:491:in `block (2 levels) in eval_input'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/context.rb:380:in `evaluate'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/workspace.rb:85:in `evaluate'
/app/vendor/ruby-2.5.0/lib/ruby/2.5.0/irb/workspace.rb:85:in `eval'
(irb):3:in `irb_binding'
/app/vendor/bundle/ruby/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:44:in `conv'
/app/vendor/bundle/ruby/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb:44:in `opencc_convert_utf8'

-- Machine register context ------------------------------------------------
 RIP: 0x00007fbc643644b9 RBP: 0x0000000000000001 RSP: 0x00007ffd1c133ee0
 RAX: 0x0000000000000000 RBX: 0x00007ffd1c133f90 RCX: 0x00007fbc72624570
 RDX: 0x00007ffd1c133f20 RDI: 0x00007ffd1c133f90 RSI: 0xffffffffffffffff
  R8: 0x0000000000000001  R9: 0x0000000000000000 R10: 0x0000000000000006
 R11: 0x00007fbc643644a0 R12: 0x00007ffd1c133f90 R13: 0x0000560abc1cbcd8
 R14: 0xffffffffffffffff R15: 0x00007ffd1c133ff0 EFL: 0x0000000000010246

-- C level backtrace information -------------------------------------------
/app/vendor/ruby-2.5.0/bin/ruby(rb_vm_bugreport+0x7d3) [0x560ab6043383] vm_dump.c:703
/app/vendor/ruby-2.5.0/bin/ruby(rb_bug_context+0xd1) [0x560ab6036cc1] error.c:580
/app/vendor/ruby-2.5.0/bin/ruby(sigsegv+0x42) [0x560ab5f22362] signal.c:928
/lib/x86_64-linux-gnu/libpthread.so.0(0x7fbc733cb890) [0x7fbc733cb890]
/app/vendor/opencc/lib/libopencc.so(_ZNK6opencc15SimpleConverter7ConvertERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE+0x19) [0x7fbc643644b9]
/app/vendor/opencc/lib/libopencc.so(_ZNK6opencc15SimpleConverter7ConvertB5cxx11EPKcm+0x7b) [0x7fbc6436471b]
/app/vendor/opencc/lib/libopencc.so(opencc_convert_utf8+0x2e) [0x7fbc64364a6e]
/usr/lib/x86_64-linux-gnu/libffi.so.6(ffi_call_unix64+0x4c) [0x7fbc65ac3dae]
/usr/lib/x86_64-linux-gnu/libffi.so.6(ffi_call+0x22f) [0x7fbc65ac371f]
/app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so(rbffi_CallFunction+0xe7) [0x7fbc645836f7]
/app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so(0x141b4) [0x7fbc645871b4]
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_cfunc+0xe1) [0x560ab5f93991] vm_insnhelper.c:1918
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_method+0xd3) [0x560ab5fa2e63] vm_insnhelper.c:2381
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec_core+0x3126) [0x560ab5f9ca96] insns.def:915
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec+0x7d) [0x560ab5fa126d] vm.c:1778
/app/vendor/ruby-2.5.0/bin/ruby(eval_string_with_cref+0x137) [0x560ab5fa39e7] vm_eval.c:1349
/app/vendor/ruby-2.5.0/bin/ruby(rb_f_eval+0xde) [0x560ab5fa3f3e] vm_eval.c:1370
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_cfunc+0xe1) [0x560ab5f93991] vm_insnhelper.c:1918
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec_core+0x3126) [0x560ab5f9ca96] insns.def:915
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec+0x7d) [0x560ab5fa126d] vm.c:1778
/app/vendor/ruby-2.5.0/bin/ruby(loop_i+0x539) [0x560ab5fa9a29] vm.c:979
/app/vendor/ruby-2.5.0/bin/ruby(rb_rescue2+0xcf) [0x560ab5e24e7f] eval.c:896
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_cfunc+0xe1) [0x560ab5f93991] vm_insnhelper.c:1918
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_method+0xd3) [0x560ab5fa2e63] vm_insnhelper.c:2381
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec_core+0x255b) [0x560ab5f9becb] insns.def:850
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec+0x7d) [0x560ab5fa126d] vm.c:1778
/app/vendor/ruby-2.5.0/bin/ruby(invoke_iseq_block_from_c+0x4ac) [0x560ab5fa210c] vm.c:979
/app/vendor/ruby-2.5.0/bin/ruby(catch_i+0xd3) [0x560ab5faa0b3] vm.c:1049
/app/vendor/ruby-2.5.0/bin/ruby(vm_catch_protect+0x9e) [0x560ab5f9607e] vm_eval.c:1997
/app/vendor/ruby-2.5.0/bin/ruby(rb_f_catch+0x2e) [0x560ab5f9625e] vm_eval.c:2023
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_cfunc+0xe1) [0x560ab5f93991] vm_insnhelper.c:1918
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_method+0xd3) [0x560ab5fa2e63] vm_insnhelper.c:2381
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec_core+0x255b) [0x560ab5f9becb] insns.def:850
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec+0x7d) [0x560ab5fa126d] vm.c:1778
/app/vendor/ruby-2.5.0/bin/ruby(invoke_iseq_block_from_c+0x4ac) [0x560ab5fa210c] vm.c:979
/app/vendor/ruby-2.5.0/bin/ruby(catch_i+0xd3) [0x560ab5faa0b3] vm.c:1049
/app/vendor/ruby-2.5.0/bin/ruby(vm_catch_protect+0x9e) [0x560ab5f9607e] vm_eval.c:1997
/app/vendor/ruby-2.5.0/bin/ruby(rb_f_catch+0x2e) [0x560ab5f9625e] vm_eval.c:2023
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_cfunc+0xe1) [0x560ab5f93991] vm_insnhelper.c:1918
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_method+0xd3) [0x560ab5fa2e63] vm_insnhelper.c:2381
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec_core+0x255b) [0x560ab5f9becb] insns.def:850
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec+0x7d) [0x560ab5fa126d] vm.c:1778
/app/vendor/ruby-2.5.0/bin/ruby(rb_load_internal0+0xc1) [0x560ab5e6ea91] load.c:611
/app/vendor/ruby-2.5.0/bin/ruby(rb_require_internal+0x861) [0x560ab5e718c1] load.c:994
/app/vendor/ruby-2.5.0/bin/ruby(rb_f_require+0x13) [0x560ab5e71943] load.c:1040
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_cfunc+0xe1) [0x560ab5f93991] vm_insnhelper.c:1918
/app/vendor/ruby-2.5.0/bin/ruby(vm_call_method+0xd3) [0x560ab5fa2e63] vm_insnhelper.c:2381
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec_core+0x3126) [0x560ab5f9ca96] insns.def:915
/app/vendor/ruby-2.5.0/bin/ruby(vm_exec+0x7d) [0x560ab5fa126d] vm.c:1778
/app/vendor/ruby-2.5.0/bin/ruby(ruby_exec_internal+0xc1) [0x560ab5e1faa1] eval.c:246
/app/vendor/ruby-2.5.0/bin/ruby(ruby_run_node+0x2f) [0x560ab5e244cf] eval.c:310
/app/vendor/ruby-2.5.0/bin/ruby(main+0x4b) [0x560ab5e1f7cb] ./include/ruby/intern.h:295

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

* Loaded script: /app/bin/rails

* Loaded features:

    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/encdb.so
    5 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/transdb.so
    6 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/rbconfig.rb
    7 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/compatibility.rb
    8 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/defaults.rb
    9 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/deprecate.rb
   10 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/errors.rb
   11 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/version.rb
   12 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/requirement.rb
   13 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/platform.rb
   14 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/basic_specification.rb
   15 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/stub_specification.rb
   16 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/util/list.rb
   17 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/stringio.so
   18 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/rfc2396_parser.rb
   19 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/rfc3986_parser.rb
   20 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/common.rb
   21 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/generic.rb
   22 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/ftp.rb
   23 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/http.rb
   24 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/https.rb
   25 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/ldap.rb
   26 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/ldaps.rb
   27 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri/mailto.rb
   28 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/uri.rb
   29 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/specification.rb
   30 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/exceptions.rb
   31 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/dependency.rb
   32 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/core_ext/kernel_gem.rb
   33 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/monitor.rb
   34 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/core_ext/kernel_require.rb
   35 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems.rb
   36 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/path_support.rb
   37 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/version.rb
   38 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/core_ext/name_error.rb
   39 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/levenshtein.rb
   40 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/jaro_winkler.rb
   41 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checker.rb
   42 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/delegate.rb
   43 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
   44 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
   45 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checkers/name_error_checkers.rb
   46 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checkers/method_name_checker.rb
   47 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checkers/key_error_checker.rb
   48 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/spell_checkers/null_checker.rb
   49 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean/formatters/plain_formatter.rb
   50 /app/vendor/ruby-2.5.0/lib/ruby/gems/2.5.0/gems/did_you_mean-1.2.0/lib/did_you_mean.rb
   51 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/bundler_version_finder.rb
   52 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/util.rb
   53 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/etc.so
   54 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/fileutils.rb
   55 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/pathname.so
   56 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/pathname.rb
   57 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/tmpdir.rb
   58 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/errors.rb
   59 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/environment_preserver.rb
   60 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/plugin/api.rb
   61 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/plugin.rb
   62 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source/git.rb
   63 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source/installed.rb
   64 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source/specific_file.rb
   65 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source/local.rb
   66 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source/lock.rb
   67 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source/vendor.rb
   68 /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/rubygems/source.rb
   69 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/gem_helpers.rb
   70 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/match_platform.rb
   71 /app/vendor/bundle/ruby/2.5.0/gems/bundler-1.15.2/lib/bundler/rubygems_ext.rb
 ...
 2621 /app/app/jobs/translate_job.rb
 2622 /app/app/mailers/application_mailer.rb
 2623 /app/app/models/account.rb
 2624 /app/vendor/bundle/ruby/2.5.0/gems/activerecord-5.1.6/lib/active_record/associations/builder/singular_association.rb
 2625 /app/vendor/bundle/ruby/2.5.0/gems/activerecord-5.1.6/lib/active_record/associations/builder/belongs_to.rb
 2626 /app/app/models/ahoy/event.rb
 2627 /app/vendor/bundle/ruby/2.5.0/gems/activerecord-5.1.6/lib/active_record/associations/builder/collection_association.rb
 2628 /app/vendor/bundle/ruby/2.5.0/gems/activerecord-5.1.6/lib/active_record/associations/builder/has_many.rb
 2629 /app/app/models/ahoy/visit.rb
 2630 /app/vendor/bundle/ruby/2.5.0/gems/shrine-2.13.0/lib/shrine/plugins/determine_mime_type.rb
 2631 /app/vendor/bundle/ruby/2.5.0/gems/shrine-2.13.0/lib/shrine/plugins/processing.rb
 2632 /app/vendor/bundle/ruby/2.5.0/gems/shrine-2.13.0/lib/shrine/plugins/versions.rb
 2633 /app/vendor/bundle/ruby/2.5.0/gems/shrine-2.13.0/lib/shrine/plugins/default_url.rb
 2634 /app/vendor/bundle/ruby/2.5.0/gems/shrine-2.13.0/lib/shrine/plugins/pretty_location.rb
 2635 /app/app/uploaders/document_uploader.rb
 2636 /app/app/models/document.rb
 2637 /app/app/models/language.rb
 2638 /app/app/models/model.rb
 2639 /app/app/models/payment.rb
 2640 /app/app/models/stripeacct.rb
 2641 /app/app/models/translate_log.rb
 2642 /app/app/policies/user_policy.rb
 2643 /app/app/services/create_admin_service.rb
 2644 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server.rb
 2645 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/broadcasting.rb
 2646 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/connections.rb
 2647 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/configuration.rb
 2648 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/worker/active_record_connection_management.rb
 2649 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/worker.rb
 2650 /app/vendor/bundle/ruby/2.5.0/gems/actioncable-5.1.6/lib/action_cable/server/base.rb
 2651 /app/config/environment.rb
 2652 /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/console/app.rb
 2653 /app/vendor/bundle/ruby/2.5.0/gems/railties-5.1.6/lib/rails/console/helpers.rb
 2654 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so
 2655 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/platform.rb
 2656 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/types.rb
 2657 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/library.rb
 2658 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/errno.rb
 2659 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/pointer.rb
 2660 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/memorypointer.rb
 2661 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/struct_layout_builder.rb
 2662 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/struct.rb
 2663 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/union.rb
 2664 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/managedstruct.rb
 2665 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/callback.rb
 2666 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/io.rb
 2667 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/autopointer.rb
 2668 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/variadic.rb
 2669 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/enum.rb
 2670 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi/ffi.rb
 2671 /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi.rb
 2672 /app/vendor/bundle/ruby/2.5.0/gems/ropencc-0.0.6/lib/ropencc.rb

* Process memory map:

560ab5dfc000-560ab6122000 r-xp 00000000 fc:01 15223932                   /app/vendor/ruby-2.5.0/bin/ruby
560ab6322000-560ab6327000 r--p 00326000 fc:01 15223932                   /app/vendor/ruby-2.5.0/bin/ruby
560ab6327000-560ab6328000 rw-p 0032b000 fc:01 15223932                   /app/vendor/ruby-2.5.0/bin/ruby
560ab6328000-560ab6338000 rw-p 00000000 00:00 0 
560ab7bf5000-560abcda2000 rw-p 00000000 00:00 0                          [heap]
7fbc58000000-7fbc58021000 rw-p 00000000 00:00 0 
7fbc58021000-7fbc5c000000 ---p 00000000 00:00 0 
7fbc5f04b000-7fbc60000000 r--s 00000000 fc:01 15223932                   /app/vendor/ruby-2.5.0/bin/ruby
7fbc60000000-7fbc60021000 rw-p 00000000 00:00 0 
7fbc60021000-7fbc64000000 ---p 00000000 00:00 0 
7fbc6413a000-7fbc6432a000 r--s 00000000 07:0d 129641                     /lib/x86_64-linux-gnu/libc-2.27.so
7fbc6432a000-7fbc64371000 r-xp 00000000 fc:01 15223923                   /app/vendor/opencc/lib/libopencc.so
7fbc64371000-7fbc64570000 ---p 00047000 fc:01 15223923                   /app/vendor/opencc/lib/libopencc.so
7fbc64570000-7fbc64572000 r--p 00046000 fc:01 15223923                   /app/vendor/opencc/lib/libopencc.so
7fbc64572000-7fbc64573000 rw-p 00048000 fc:01 15223923                   /app/vendor/opencc/lib/libopencc.so
7fbc64573000-7fbc64596000 r-xp 00000000 fc:01 16009093                   /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so
7fbc64596000-7fbc64796000 ---p 00023000 fc:01 16009093                   /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so
7fbc64796000-7fbc64797000 r--p 00023000 fc:01 16009093                   /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so
7fbc64797000-7fbc64798000 rw-p 00024000 fc:01 16009093                   /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so
7fbc64798000-7fbc64d1b000 rw-p 00000000 00:00 0 
7fbc64d1b000-7fbc64d20000 r-xp 00000000 07:0d 129697                     /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7fbc64d20000-7fbc64f20000 ---p 00005000 07:0d 129697                     /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7fbc64f20000-7fbc64f21000 r--p 00005000 07:0d 129697                     /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7fbc64f21000-7fbc64f22000 rw-p 00006000 07:0d 129697                     /lib/x86_64-linux-gnu/libnss_dns-2.27.so
7fbc64f22000-7fbc64f2d000 r-xp 00000000 07:0d 129699                     /lib/x86_64-linux-gnu/libnss_files-2.27.so
7fbc64f2d000-7fbc6512c000 ---p 0000b000 07:0d 129699                     /lib/x86_64-linux-gnu/libnss_files-2.27.so
7fbc6512c000-7fbc6512d000 r--p 0000a000 07:0d 129699                     /lib/x86_64-linux-gnu/libnss_files-2.27.so
7fbc6512d000-7fbc6512e000 rw-p 0000b000 07:0d 129699                     /lib/x86_64-linux-gnu/libnss_files-2.27.so
7fbc6512e000-7fbc65134000 rw-p 00000000 00:00 0 
7fbc65134000-7fbc65135000 ---p 00000000 00:00 0 
7fbc65135000-7fbc65336000 rw-p 00000000 00:00 0 
7fbc65336000-7fbc65337000 ---p 00000000 00:00 0 
7fbc65337000-7fbc65538000 rw-p 00000000 00:00 0 
7fbc65538000-7fbc65539000 r-xp 00000000 fc:01 16524383                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/fiber.so
7fbc65539000-7fbc65738000 ---p 00001000 fc:01 16524383                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/fiber.so
7fbc65738000-7fbc65739000 r--p 00000000 fc:01 16524383                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/fiber.so
7fbc65739000-7fbc6573a000 rw-p 00001000 fc:01 16524383                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/fiber.so
7fbc6573a000-7fbc6573c000 r-xp 00000000 fc:01 16524440                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/iso_8859_1.so
7fbc6573c000-7fbc6593b000 ---p 00002000 fc:01 16524440                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/iso_8859_1.so
7fbc6593b000-7fbc6593c000 r--p 00001000 fc:01 16524440                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/iso_8859_1.so
7fbc6593c000-7fbc6593d000 rw-p 00002000 fc:01 16524440                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/iso_8859_1.so
7fbc6593d000-7fbc65abe000 rw-p 00000000 00:00 0 
7fbc65abe000-7fbc65ac5000 r-xp 00000000 07:0d 18881                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fbc65ac5000-7fbc65cc4000 ---p 00007000 07:0d 18881                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fbc65cc4000-7fbc65cc5000 r--p 00006000 07:0d 18881                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fbc65cc5000-7fbc65cc6000 rw-p 00007000 07:0d 18881                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fbc65cc6000-7fbc65dc9000 r-xp 00000000 07:0d 19080                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7fbc65dc9000-7fbc65fc9000 ---p 00103000 07:0d 19080                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7fbc65fc9000-7fbc65fcc000 r--p 00103000 07:0d 19080                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7fbc65fcc000-7fbc65fce000 rw-p 00106000 07:0d 19080                      /usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6
7fbc65fce000-7fbc65fcf000 rw-p 00000000 00:00 0 
7fbc65fcf000-7fbc66015000 r-xp 00000000 07:0d 18946                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7fbc66015000-7fbc66214000 ---p 00046000 07:0d 18946                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7fbc66214000-7fbc66217000 r--p 00045000 07:0d 18946                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7fbc66217000-7fbc66218000 rw-p 00048000 07:0d 18946                      /usr/lib/x86_64-linux-gnu/libhx509.so.5.0.0
7fbc66218000-7fbc66219000 rw-p 00000000 00:00 0 
7fbc66219000-7fbc66227000 r-xp 00000000 07:0d 18940                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7fbc66227000-7fbc66426000 ---p 0000e000 07:0d 18940                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7fbc66426000-7fbc66427000 r--p 0000d000 07:0d 18940                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7fbc66427000-7fbc66428000 rw-p 0000e000 07:0d 18940                      /usr/lib/x86_64-linux-gnu/libheimbase.so.1.0.0
7fbc66428000-7fbc66450000 r-xp 00000000 07:0d 19105                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7fbc66450000-7fbc6664f000 ---p 00028000 07:0d 19105                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7fbc6664f000-7fbc66650000 r--p 00027000 07:0d 19105                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7fbc66650000-7fbc66651000 rw-p 00028000 07:0d 19105                      /usr/lib/x86_64-linux-gnu/libwind.so.0.0.0
7fbc66651000-7fbc66684000 r-xp 00000000 07:0d 18944                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.4
7fbc66684000-7fbc66883000 ---p 00033000 07:0d 18944                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.4
7fbc66883000-7fbc66884000 r--p 00032000 07:0d 18944                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.4
7fbc66884000-7fbc66885000 rw-p 00033000 07:0d 18944                      /usr/lib/x86_64-linux-gnu/libhogweed.so.4.4
7fbc66885000-7fbc668b9000 r-xp 00000000 07:0d 19029                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.4
7fbc668b9000-7fbc66ab8000 ---p 00034000 07:0d 19029                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.4
7fbc66ab8000-7fbc66aba000 r--p 00033000 07:0d 19029                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.4
7fbc66aba000-7fbc66abb000 rw-p 00035000 07:0d 19029                      /usr/lib/x86_64-linux-gnu/libnettle.so.6.4
7fbc66abb000-7fbc66acc000 r-xp 00000000 07:0d 19086                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7fbc66acc000-7fbc66ccc000 ---p 00011000 07:0d 19086                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7fbc66ccc000-7fbc66ccd000 r--p 00011000 07:0d 19086                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7fbc66ccd000-7fbc66cce000 rw-p 00012000 07:0d 19086                      /usr/lib/x86_64-linux-gnu/libtasn1.so.6.5.5
7fbc66cce000-7fbc66e48000 r-xp 00000000 07:0d 19099                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7fbc66e48000-7fbc67048000 ---p 0017a000 07:0d 19099                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7fbc67048000-7fbc6704b000 r--p 0017a000 07:0d 19099                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7fbc6704b000-7fbc6704c000 rw-p 0017d000 07:0d 19099                      /usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0
7fbc6704c000-7fbc67068000 r-xp 00000000 07:0d 18960                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7fbc67068000-7fbc67267000 ---p 0001c000 07:0d 18960                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7fbc67267000-7fbc67268000 r--p 0001b000 07:0d 18960                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7fbc67268000-7fbc67269000 rw-p 0001c000 07:0d 18960                      /usr/lib/x86_64-linux-gnu/libidn2.so.0.3.3
7fbc67269000-7fbc67383000 r-xp 00000000 07:0d 19036                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7fbc67383000-7fbc67583000 ---p 0011a000 07:0d 19036                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7fbc67583000-7fbc6758d000 r--p 0011a000 07:0d 19036                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7fbc6758d000-7fbc67597000 rw-p 00124000 07:0d 19036                      /usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0
7fbc67597000-7fbc67598000 rw-p 00000000 00:00 0 
7fbc67598000-7fbc675ad000 r-xp 00000000 07:0d 19068                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7fbc675ad000-7fbc677ac000 ---p 00015000 07:0d 19068                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7fbc677ac000-7fbc677ad000 r--p 00014000 07:0d 19068                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7fbc677ad000-7fbc677ae000 rw-p 00015000 07:0d 19068                      /usr/lib/x86_64-linux-gnu/libroken.so.18.1.0
7fbc677ae000-7fbc677e1000 r-xp 00000000 07:0d 18938                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7fbc677e1000-7fbc679e0000 ---p 00033000 07:0d 18938                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7fbc679e0000-7fbc679e2000 r--p 00032000 07:0d 18938                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7fbc679e2000-7fbc679e3000 rw-p 00034000 07:0d 18938                      /usr/lib/x86_64-linux-gnu/libhcrypto.so.4.1.0
7fbc679e3000-7fbc679e4000 rw-p 00000000 00:00 0 
7fbc679e4000-7fbc67a82000 r-xp 00000000 07:0d 18820                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7fbc67a82000-7fbc67c82000 ---p 0009e000 07:0d 18820                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7fbc67c82000-7fbc67c83000 r--p 0009e000 07:0d 18820                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7fbc67c83000-7fbc67c86000 rw-p 0009f000 07:0d 18820                      /usr/lib/x86_64-linux-gnu/libasn1.so.8.0.0
7fbc67c86000-7fbc67d0d000 r-xp 00000000 07:0d 18984                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7fbc67d0d000-7fbc67f0c000 ---p 00087000 07:0d 18984                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7fbc67f0c000-7fbc67f10000 r--p 00086000 07:0d 18984                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7fbc67f10000-7fbc67f12000 rw-p 0008a000 07:0d 18984                      /usr/lib/x86_64-linux-gnu/libkrb5.so.26.0.0
7fbc67f12000-7fbc67f13000 rw-p 00000000 00:00 0 
7fbc67f13000-7fbc67f1b000 r-xp 00000000 07:0d 18942                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7fbc67f1b000-7fbc6811a000 ---p 00008000 07:0d 18942                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7fbc6811a000-7fbc6811b000 r--p 00007000 07:0d 18942                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7fbc6811b000-7fbc6811c000 rw-p 00008000 07:0d 18942                      /usr/lib/x86_64-linux-gnu/libheimntlm.so.0.1.0
7fbc6811c000-7fbc6811f000 r-xp 00000000 07:0d 129677                     /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7fbc6811f000-7fbc6831e000 ---p 00003000 07:0d 129677                     /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7fbc6831e000-7fbc6831f000 r--p 00002000 07:0d 129677                     /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7fbc6831f000-7fbc68320000 rw-p 00003000 07:0d 129677                     /lib/x86_64-linux-gnu/libkeyutils.so.1.5
7fbc68320000-7fbc68477000 r-xp 00000000 07:0d 18917                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7fbc68477000-7fbc68677000 ---p 00157000 07:0d 18917                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7fbc68677000-7fbc68683000 r--p 00157000 07:0d 18917                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7fbc68683000-7fbc68684000 rw-p 00163000 07:0d 18917                      /usr/lib/x86_64-linux-gnu/libgnutls.so.30.14.10
7fbc68684000-7fbc68685000 rw-p 00000000 00:00 0 
7fbc68685000-7fbc686c2000 r-xp 00000000 07:0d 18930                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7fbc686c2000-7fbc688c2000 ---p 0003d000 07:0d 18930                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7fbc688c2000-7fbc688c4000 r--p 0003d000 07:0d 18930                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7fbc688c4000-7fbc688c6000 rw-p 0003f000 07:0d 18930                      /usr/lib/x86_64-linux-gnu/libgssapi.so.3.0.0
7fbc688c6000-7fbc688df000 r-xp 00000000 07:0d 19075                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fbc688df000-7fbc68adf000 ---p 00019000 07:0d 19075                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fbc68adf000-7fbc68ae0000 r--p 00019000 07:0d 19075                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fbc68ae0000-7fbc68ae1000 rw-p 0001a000 07:0d 19075                      /usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25
7fbc68ae1000-7fbc68af8000 r-xp 00000000 07:0d 129722                     /lib/x86_64-linux-gnu/libresolv-2.27.so
7fbc68af8000-7fbc68cf8000 ---p 00017000 07:0d 129722                     /lib/x86_64-linux-gnu/libresolv-2.27.so
7fbc68cf8000-7fbc68cf9000 r--p 00017000 07:0d 129722                     /lib/x86_64-linux-gnu/libresolv-2.27.so
7fbc68cf9000-7fbc68cfa000 rw-p 00018000 07:0d 129722                     /lib/x86_64-linux-gnu/libresolv-2.27.so
7fbc68cfa000-7fbc68cfc000 rw-p 00000000 00:00 0 
7fbc68cfc000-7fbc68d09000 r-xp 00000000 07:0d 18992                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7fbc68d09000-7fbc68f08000 ---p 0000d000 07:0d 18992                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7fbc68f08000-7fbc68f09000 r--p 0000c000 07:0d 18992                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7fbc68f09000-7fbc68f0a000 rw-p 0000d000 07:0d 18992                      /usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.10.8
7fbc68f0a000-7fbc68f14000 r-xp 00000000 07:0d 18988                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7fbc68f14000-7fbc69113000 ---p 0000a000 07:0d 18988                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7fbc69113000-7fbc69114000 r--p 00009000 07:0d 18988                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7fbc69114000-7fbc69115000 rw-p 0000a000 07:0d 18988                      /usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1
7fbc69115000-7fbc69118000 r-xp 00000000 07:0d 129650                     /lib/x86_64-linux-gnu/libcom_err.so.2.1
7fbc69118000-7fbc69317000 ---p 00003000 07:0d 129650                     /lib/x86_64-linux-gnu/libcom_err.so.2.1
7fbc69317000-7fbc69318000 r--p 00002000 07:0d 129650                     /lib/x86_64-linux-gnu/libcom_err.so.2.1
7fbc69318000-7fbc69319000 rw-p 00003000 07:0d 129650                     /lib/x86_64-linux-gnu/libcom_err.so.2.1
7fbc69319000-7fbc69347000 r-xp 00000000 07:0d 18982                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7fbc69347000-7fbc69547000 ---p 0002e000 07:0d 18982                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7fbc69547000-7fbc69549000 r--p 0002e000 07:0d 18982                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7fbc69549000-7fbc6954a000 rw-p 00030000 07:0d 18982                      /usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1
7fbc6954a000-7fbc6954b000 rw-p 00000000 00:00 0 
7fbc6954b000-7fbc69611000 r-xp 00000000 07:0d 18986                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7fbc69611000-7fbc69811000 ---p 000c6000 07:0d 18986                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7fbc69811000-7fbc6981f000 r--p 000c6000 07:0d 18986                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7fbc6981f000-7fbc69821000 rw-p 000d4000 07:0d 18986                      /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3
7fbc69821000-7fbc6986f000 r-xp 00000000 07:0d 18997                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7fbc6986f000-7fbc69a6e000 ---p 0004e000 07:0d 18997                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7fbc69a6e000-7fbc69a70000 r--p 0004d000 07:0d 18997                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7fbc69a70000-7fbc69a71000 rw-p 0004f000 07:0d 18997                      /usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.10.8
7fbc69a71000-7fbc69a73000 rw-p 00000000 00:00 0 
7fbc69a73000-7fbc69abb000 r-xp 00000000 07:0d 18932                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7fbc69abb000-7fbc69cba000 ---p 00048000 07:0d 18932                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7fbc69cba000-7fbc69cbc000 r--p 00047000 07:0d 18932                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7fbc69cbc000-7fbc69cbe000 rw-p 00049000 07:0d 18932                      /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2
7fbc69cbe000-7fbc69d04000 r-xp 00000000 07:0d 19060                      /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7fbc69d04000-7fbc69f03000 ---p 00046000 07:0d 19060                      /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7fbc69f03000-7fbc69f06000 r--p 00045000 07:0d 19060                      /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7fbc69f06000-7fbc69f07000 rw-p 00048000 07:0d 19060                      /usr/lib/x86_64-linux-gnu/libpq.so.5.11
7fbc69f07000-7fbc69f31000 r-xp 00000000 fc:01 16518124                   /app/vendor/bundle/ruby/2.5.0/gems/pg-0.21.0/lib/pg_ext.so
7fbc69f31000-7fbc6a130000 ---p 0002a000 fc:01 16518124                   /app/vendor/bundle/ruby/2.5.0/gems/pg-0.21.0/lib/pg_ext.so
7fbc6a130000-7fbc6a131000 r--p 00029000 fc:01 16518124                   /app/vendor/bundle/ruby/2.5.0/gems/pg-0.21.0/lib/pg_ext.so
7fbc6a131000-7fbc6a132000 rw-p 0002a000 fc:01 16518124                   /app/vendor/bundle/ruby/2.5.0/gems/pg-0.21.0/lib/pg_ext.so
7fbc6a132000-7fbc6a149000 r-xp 00000000 07:0d 18561                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7fbc6a149000-7fbc6a348000 ---p 00017000 07:0d 18561                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7fbc6a348000-7fbc6a349000 r--p 00016000 07:0d 18561                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7fbc6a349000-7fbc6a34a000 rw-p 00017000 07:0d 18561                      /usr/lib/x86_64-linux-gnu/gconv/CP932.so
7fbc6a34a000-7fbc6a34e000 r-xp 00000000 fc:01 16524373                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/racc/cparse.so
7fbc6a34e000-7fbc6a54d000 ---p 00004000 fc:01 16524373                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/racc/cparse.so
7fbc6a54d000-7fbc6a54e000 r--p 00003000 fc:01 16524373                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/racc/cparse.so
7fbc6a54e000-7fbc6a54f000 rw-p 00004000 fc:01 16524373                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/racc/cparse.so
7fbc6a6d0000-7fbc6a6e4000 r-xp 00000000 07:0d 129669                     /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0
7fbc6a6e4000-7fbc6a8e3000 ---p 00014000 07:0d 129669                     /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0
7fbc6a8e3000-7fbc6a8e4000 r--p 00013000 07:0d 129669                     /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0
7fbc6a8e4000-7fbc6a8e5000 rw-p 00014000 07:0d 129669                     /lib/x86_64-linux-gnu/libgpg-error.so.0.22.0
7fbc6a8e5000-7fbc6a8fc000 r-xp 00000000 07:0d 129665                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7fbc6a8fc000-7fbc6aafb000 ---p 00017000 07:0d 129665                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7fbc6aafb000-7fbc6aafc000 r--p 00016000 07:0d 129665                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7fbc6aafc000-7fbc6aafd000 rw-p 00017000 07:0d 129665                     /lib/x86_64-linux-gnu/libgcc_s.so.1
7fbc6aafd000-7fbc6ac76000 r-xp 00000000 07:0d 19084                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7fbc6ac76000-7fbc6ae76000 ---p 00179000 07:0d 19084                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7fbc6ae76000-7fbc6ae80000 r--p 00179000 07:0d 19084                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7fbc6ae80000-7fbc6ae82000 rw-p 00183000 07:0d 19084                      /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.25
7fbc6ae82000-7fbc6ae86000 rw-p 00000000 00:00 0 
7fbc6ae86000-7fbc6c82e000 r-xp 00000000 07:0d 18948                      /usr/lib/x86_64-linux-gnu/libicudata.so.60.2
7fbc6c82e000-7fbc6ca2d000 ---p 019a8000 07:0d 18948                      /usr/lib/x86_64-linux-gnu/libicudata.so.60.2
7fbc6ca2d000-7fbc6ca2e000 r--p 019a7000 07:0d 18948                      /usr/lib/x86_64-linux-gnu/libicudata.so.60.2
7fbc6ca2e000-7fbc6ca2f000 rw-p 019a8000 07:0d 18948                      /usr/lib/x86_64-linux-gnu/libicudata.so.60.2
7fbc6ca2f000-7fbc6cb43000 r-xp 00000000 07:0d 129667                     /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1
7fbc6cb43000-7fbc6cd42000 ---p 00114000 07:0d 129667                     /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1
7fbc6cd42000-7fbc6cd44000 r--p 00113000 07:0d 129667                     /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1
7fbc6cd44000-7fbc6cd49000 rw-p 00115000 07:0d 129667                     /lib/x86_64-linux-gnu/libgcrypt.so.20.2.1
7fbc6cd49000-7fbc6cd4a000 rw-p 00000000 00:00 0 
7fbc6cd4a000-7fbc6cd6e000 r-xp 00000000 07:0d 129679                     /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fbc6cd6e000-7fbc6cf6e000 ---p 00024000 07:0d 129679                     /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fbc6cf6e000-7fbc6cf6f000 r--p 00024000 07:0d 129679                     /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fbc6cf6f000-7fbc6cf70000 rw-p 00025000 07:0d 129679                     /lib/x86_64-linux-gnu/liblzma.so.5.2.2
7fbc6cf70000-7fbc6d113000 r-xp 00000000 07:0d 18958                      /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2
7fbc6d113000-7fbc6d312000 ---p 001a3000 07:0d 18958                      /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2
7fbc6d312000-7fbc6d325000 r--p 001a2000 07:0d 18958                      /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2
7fbc6d325000-7fbc6d326000 rw-p 001b5000 07:0d 18958                      /usr/lib/x86_64-linux-gnu/libicuuc.so.60.2
7fbc6d326000-7fbc6d327000 rw-p 00000000 00:00 0 
7fbc6d327000-7fbc6d33b000 r-xp 00000000 07:0d 18879                      /usr/lib/x86_64-linux-gnu/libexslt.so.0.8.17
7fbc6d33b000-7fbc6d53b000 ---p 00014000 07:0d 18879                      /usr/lib/x86_64-linux-gnu/libexslt.so.0.8.17
7fbc6d53b000-7fbc6d53c000 r--p 00014000 07:0d 18879                      /usr/lib/x86_64-linux-gnu/libexslt.so.0.8.17
7fbc6d53c000-7fbc6d53d000 rw-p 00015000 07:0d 18879                      /usr/lib/x86_64-linux-gnu/libexslt.so.0.8.17
7fbc6d53d000-7fbc6d579000 r-xp 00000000 07:0d 19115                      /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29
7fbc6d579000-7fbc6d778000 ---p 0003c000 07:0d 19115                      /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29
7fbc6d778000-7fbc6d779000 r--p 0003b000 07:0d 19115                      /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29
7fbc6d779000-7fbc6d77a000 rw-p 0003c000 07:0d 19115                      /usr/lib/x86_64-linux-gnu/libxslt.so.1.1.29
7fbc6d77a000-7fbc6d930000 r-xp 00000000 07:0d 19113                      /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fbc6d930000-7fbc6db30000 ---p 001b6000 07:0d 19113                      /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fbc6db30000-7fbc6db38000 r--p 001b6000 07:0d 19113                      /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fbc6db38000-7fbc6db3a000 rw-p 001be000 07:0d 19113                      /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.4
7fbc6db3a000-7fbc6db3b000 rw-p 00000000 00:00 0 
7fbc6db3b000-7fbc6db56000 r-xp 00000000 fc:01 16523317                   /app/vendor/bundle/ruby/2.5.0/gems/nokogiri-1.9.1/lib/nokogiri/nokogiri.so
7fbc6db56000-7fbc6dd56000 ---p 0001b000 fc:01 16523317                   /app/vendor/bundle/ruby/2.5.0/gems/nokogiri-1.9.1/lib/nokogiri/nokogiri.so
7fbc6dd56000-7fbc6dd57000 r--p 0001b000 fc:01 16523317                   /app/vendor/bundle/ruby/2.5.0/gems/nokogiri-1.9.1/lib/nokogiri/nokogiri.so
7fbc6dd57000-7fbc6dd58000 rw-p 0001c000 fc:01 16523317                   /app/vendor/bundle/ruby/2.5.0/gems/nokogiri-1.9.1/lib/nokogiri/nokogiri.so
7fbc6dd58000-7fbc6dd59000 r-xp 00000000 fc:01 16524364                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha2.so
7fbc6dd59000-7fbc6df58000 ---p 00001000 fc:01 16524364                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha2.so
7fbc6df58000-7fbc6df59000 r--p 00000000 fc:01 16524364                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha2.so
7fbc6df59000-7fbc6df5a000 rw-p 00001000 fc:01 16524364                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha2.so
7fbc6df5a000-7fbc6df5b000 r-xp 00000000 fc:01 16524363                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/md5.so
7fbc6df5b000-7fbc6e15a000 ---p 00001000 fc:01 16524363                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/md5.so
7fbc6e15a000-7fbc6e15b000 r--p 00000000 fc:01 16524363                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/md5.so
7fbc6e15b000-7fbc6e15c000 rw-p 00001000 fc:01 16524363                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/md5.so
7fbc6e21d000-7fbc6e21e000 r-xp 00000000 fc:01 16524390                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16le.so
7fbc6e21e000-7fbc6e41d000 ---p 00001000 fc:01 16524390                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16le.so
7fbc6e41d000-7fbc6e41e000 r--p 00000000 fc:01 16524390                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16le.so
7fbc6e41e000-7fbc6e41f000 rw-p 00001000 fc:01 16524390                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16le.so
7fbc6e41f000-7fbc6e422000 r-xp 00000000 fc:01 16524411                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/utf_16_32.so
7fbc6e422000-7fbc6e622000 ---p 00003000 fc:01 16524411                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/utf_16_32.so
7fbc6e622000-7fbc6e623000 r--p 00003000 fc:01 16524411                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/utf_16_32.so
7fbc6e623000-7fbc6e624000 rw-p 00004000 fc:01 16524411                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/utf_16_32.so
7fbc6e624000-7fbc6e625000 r-xp 00000000 fc:01 16524395                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16be.so
7fbc6e625000-7fbc6e824000 ---p 00001000 fc:01 16524395                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16be.so
7fbc6e824000-7fbc6e825000 r--p 00000000 fc:01 16524395                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16be.so
7fbc6e825000-7fbc6e826000 rw-p 00001000 fc:01 16524395                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/utf_16be.so
7fbc6e826000-7fbc6e828000 r-xp 00000000 fc:01 16524441                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/windows_31j.so
7fbc6e828000-7fbc6ea28000 ---p 00002000 fc:01 16524441                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/windows_31j.so
7fbc6ea28000-7fbc6ea29000 r--p 00002000 fc:01 16524441                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/windows_31j.so
7fbc6ea29000-7fbc6ea2a000 rw-p 00003000 fc:01 16524441                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/windows_31j.so
7fbc6eaeb000-7fbc6eaed000 r-xp 00000000 fc:01 16524387                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/wait.so
7fbc6eaed000-7fbc6ecec000 ---p 00002000 fc:01 16524387                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/wait.so
7fbc6ecec000-7fbc6eced000 r--p 00001000 fc:01 16524387                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/wait.so
7fbc6eced000-7fbc6ecee000 rw-p 00002000 fc:01 16524387                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/wait.so
7fbc6ecee000-7fbc6ed1b000 r-xp 00000000 fc:01 16524378                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/socket.so
7fbc6ed1b000-7fbc6ef1b000 ---p 0002d000 fc:01 16524378                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/socket.so
7fbc6ef1b000-7fbc6ef1c000 r--p 0002d000 fc:01 16524378                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/socket.so
7fbc6ef1c000-7fbc6ef1d000 rw-p 0002e000 fc:01 16524378                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/socket.so
7fbc6ef1d000-7fbc6ef39000 r-xp 00000000 07:0d 129749                     /lib/x86_64-linux-gnu/libz.so.1.2.11
7fbc6ef39000-7fbc6f138000 ---p 0001c000 07:0d 129749                     /lib/x86_64-linux-gnu/libz.so.1.2.11
7fbc6f138000-7fbc6f139000 r--p 0001b000 07:0d 129749                     /lib/x86_64-linux-gnu/libz.so.1.2.11
7fbc6f139000-7fbc6f13a000 rw-p 0001c000 07:0d 129749                     /lib/x86_64-linux-gnu/libz.so.1.2.11
7fbc6f13a000-7fbc6f14d000 r-xp 00000000 fc:01 16524367                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/zlib.so
7fbc6f14d000-7fbc6f34c000 ---p 00013000 fc:01 16524367                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/zlib.so
7fbc6f34c000-7fbc6f34d000 r--p 00012000 fc:01 16524367                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/zlib.so
7fbc6f34d000-7fbc6f34e000 rw-p 00013000 fc:01 16524367                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/zlib.so
7fbc6f34e000-7fbc6f358000 r-xp 00000000 fc:01 16524458                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/generator.so
7fbc6f358000-7fbc6f557000 ---p 0000a000 fc:01 16524458                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/generator.so
7fbc6f557000-7fbc6f558000 r--p 00009000 fc:01 16524458                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/generator.so
7fbc6f558000-7fbc6f559000 rw-p 0000a000 fc:01 16524458                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/generator.so
7fbc6f559000-7fbc6f55f000 r-xp 00000000 fc:01 16524457                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/parser.so
7fbc6f55f000-7fbc6f75e000 ---p 00006000 fc:01 16524457                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/parser.so
7fbc6f75e000-7fbc6f75f000 r--p 00005000 fc:01 16524457                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/parser.so
7fbc6f75f000-7fbc6f760000 rw-p 00006000 fc:01 16524457                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/json/ext/parser.so
7fbc6f760000-7fbc6f774000 r-xp 00000000 fc:01 16524366                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/bigdecimal.so
7fbc6f774000-7fbc6f974000 ---p 00014000 fc:01 16524366                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/bigdecimal.so
7fbc6f974000-7fbc6f975000 r--p 00014000 fc:01 16524366                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/bigdecimal.so
7fbc6f975000-7fbc6f976000 rw-p 00015000 fc:01 16524366                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/bigdecimal.so
7fbc6f976000-7fbc6f9aa000 r-xp 00000000 fc:01 16524365                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/date_core.so
7fbc6f9aa000-7fbc6fbaa000 ---p 00034000 fc:01 16524365                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/date_core.so
7fbc6fbaa000-7fbc6fbab000 r--p 00034000 fc:01 16524365                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/date_core.so
7fbc6fbab000-7fbc6fbac000 rw-p 00035000 fc:01 16524365                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/date_core.so
7fbc6fbac000-7fbc6fbad000 rw-p 00000000 00:00 0 
7fbc6fbad000-7fbc6fbae000 r-xp 00000000 fc:01 16524385                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/nonblock.so
7fbc6fbae000-7fbc6fdad000 ---p 00001000 fc:01 16524385                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/nonblock.so
7fbc6fdad000-7fbc6fdae000 r--p 00000000 fc:01 16524385                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/nonblock.so
7fbc6fdae000-7fbc6fdaf000 rw-p 00001000 fc:01 16524385                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/io/nonblock.so
7fbc6fe70000-7fbc6fed0000 r-xp 00000000 07:0d 19082                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7fbc6fed0000-7fbc700d0000 ---p 00060000 07:0d 19082                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7fbc700d0000-7fbc700d4000 r--p 00060000 07:0d 19082                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7fbc700d4000-7fbc700da000 rw-p 00064000 07:0d 19082                      /usr/lib/x86_64-linux-gnu/libssl.so.1.1
7fbc700da000-7fbc70131000 r-xp 00000000 fc:01 16524459                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/openssl.so
7fbc70131000-7fbc70330000 ---p 00057000 fc:01 16524459                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/openssl.so
7fbc70330000-7fbc70332000 r--p 00056000 fc:01 16524459                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/openssl.so
7fbc70332000-7fbc70334000 rw-p 00058000 fc:01 16524459                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/openssl.so
7fbc70334000-7fbc70335000 rw-p 00000000 00:00 0 
7fbc70335000-7fbc70365000 r-xp 00000000 fc:01 16524370                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/psych.so
7fbc70365000-7fbc70565000 ---p 00030000 fc:01 16524370                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/psych.so
7fbc70565000-7fbc70566000 r--p 00030000 fc:01 16524370                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/psych.so
7fbc70566000-7fbc70567000 rw-p 00031000 fc:01 16524370                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/psych.so
7fbc70567000-7fbc7056e000 r-xp 00000000 fc:01 16524369                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/strscan.so
7fbc7056e000-7fbc7076d000 ---p 00007000 fc:01 16524369                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/strscan.so
7fbc7076d000-7fbc7076e000 r--p 00006000 fc:01 16524369                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/strscan.so
7fbc7076e000-7fbc7076f000 rw-p 00007000 fc:01 16524369                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/strscan.so
7fbc7076f000-7fbc70794000 r-xp 00000000 07:0d 129739                     /lib/x86_64-linux-gnu/libtinfo.so.5.9
7fbc70794000-7fbc70994000 ---p 00025000 07:0d 129739                     /lib/x86_64-linux-gnu/libtinfo.so.5.9
7fbc70994000-7fbc70998000 r--p 00025000 07:0d 129739                     /lib/x86_64-linux-gnu/libtinfo.so.5.9
7fbc70998000-7fbc70999000 rw-p 00029000 07:0d 129739                     /lib/x86_64-linux-gnu/libtinfo.so.5.9
7fbc70999000-7fbc709da000 r-xp 00000000 07:0d 129721                     /lib/x86_64-linux-gnu/libreadline.so.7.0
7fbc709da000-7fbc70bd9000 ---p 00041000 07:0d 129721                     /lib/x86_64-linux-gnu/libreadline.so.7.0
7fbc70bd9000-7fbc70bdb000 r--p 00040000 07:0d 129721                     /lib/x86_64-linux-gnu/libreadline.so.7.0
7fbc70bdb000-7fbc70be1000 rw-p 00042000 07:0d 129721                     /lib/x86_64-linux-gnu/libreadline.so.7.0
7fbc70be1000-7fbc70be2000 rw-p 00000000 00:00 0 
7fbc70be2000-7fbc70bea000 r-xp 00000000 fc:01 16524452                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/readline.so
7fbc70bea000-7fbc70de9000 ---p 00008000 fc:01 16524452                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/readline.so
7fbc70de9000-7fbc70dea000 r--p 00007000 fc:01 16524452                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/readline.so
7fbc70dea000-7fbc70deb000 rw-p 00008000 fc:01 16524452                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/readline.so
7fbc70deb000-7fbc70dee000 r-xp 00000000 fc:01 16524356                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/cgi/escape.so
7fbc70dee000-7fbc70fed000 ---p 00003000 fc:01 16524356                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/cgi/escape.so
7fbc70fed000-7fbc70fee000 r--p 00002000 fc:01 16524356                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/cgi/escape.so
7fbc70fee000-7fbc70fef000 rw-p 00003000 fc:01 16524356                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/cgi/escape.so
7fbc70fef000-7fbc70ff3000 r-xp 00000000 fc:01 16524375                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest.so
7fbc70ff3000-7fbc711f2000 ---p 00004000 fc:01 16524375                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest.so
7fbc711f2000-7fbc711f3000 r--p 00003000 fc:01 16524375                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest.so
7fbc711f3000-7fbc711f4000 rw-p 00004000 fc:01 16524375                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest.so
7fbc711f4000-7fbc71441000 r-xp 00000000 07:0d 18841                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7fbc71441000-7fbc71641000 ---p 0024d000 07:0d 18841                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7fbc71641000-7fbc7165f000 r--p 0024d000 07:0d 18841                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7fbc7165f000-7fbc71669000 rw-p 0026b000 07:0d 18841                      /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
7fbc71669000-7fbc7166c000 rw-p 00000000 00:00 0 
7fbc7166c000-7fbc7166d000 r-xp 00000000 fc:01 16524362                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha1.so
7fbc7166d000-7fbc7186c000 ---p 00001000 fc:01 16524362                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha1.so
7fbc7186c000-7fbc7186d000 r--p 00000000 fc:01 16524362                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha1.so
7fbc7186d000-7fbc7186e000 rw-p 00001000 fc:01 16524362                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/digest/sha1.so
7fbc7186e000-7fbc71876000 r-xp 00000000 fc:01 16524380                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/pathname.so
7fbc71876000-7fbc71a75000 ---p 00008000 fc:01 16524380                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/pathname.so
7fbc71a75000-7fbc71a76000 r--p 00007000 fc:01 16524380                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/pathname.so
7fbc71a76000-7fbc71a77000 rw-p 00008000 fc:01 16524380                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/pathname.so
7fbc71a77000-7fbc71a7d000 r-xp 00000000 fc:01 16524388                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/etc.so
7fbc71a7d000-7fbc71c7c000 ---p 00006000 fc:01 16524388                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/etc.so
7fbc71c7c000-7fbc71c7d000 r--p 00005000 fc:01 16524388                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/etc.so
7fbc71c7d000-7fbc71c7e000 rw-p 00006000 fc:01 16524388                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/etc.so
7fbc71c7e000-7fbc71c87000 r-xp 00000000 fc:01 16524450                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/stringio.so
7fbc71c87000-7fbc71e86000 ---p 00009000 fc:01 16524450                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/stringio.so
7fbc71e86000-7fbc71e87000 r--p 00008000 fc:01 16524450                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/stringio.so
7fbc71e87000-7fbc71e88000 rw-p 00009000 fc:01 16524450                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/stringio.so
7fbc71e88000-7fbc71e8a000 r-xp 00000000 fc:01 16524407                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/transdb.so
7fbc71e8a000-7fbc7208a000 ---p 00002000 fc:01 16524407                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/transdb.so
7fbc7208a000-7fbc7208b000 r--p 00002000 fc:01 16524407                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/transdb.so
7fbc7208b000-7fbc7208c000 rw-p 00003000 fc:01 16524407                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/trans/transdb.so
7fbc7208c000-7fbc7208e000 r-xp 00000000 fc:01 16524434                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/encdb.so
7fbc7208e000-7fbc7228d000 ---p 00002000 fc:01 16524434                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/encdb.so
7fbc7228d000-7fbc7228e000 r--p 00001000 fc:01 16524434                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/encdb.so
7fbc7228e000-7fbc7228f000 rw-p 00002000 fc:01 16524434                   /app/vendor/ruby-2.5.0/lib/ruby/2.5.0/x86_64-linux/enc/encdb.so
7fbc7228f000-7fbc7256d000 r--p 00000000 07:0d 9144                       /usr/lib/locale/locale-archive
7fbc7256d000-7fbc72754000 r-xp 00000000 07:0d 129641                     /lib/x86_64-linux-gnu/libc-2.27.so
7fbc72754000-7fbc72954000 ---p 001e7000 07:0d 129641                     /lib/x86_64-linux-gnu/libc-2.27.so
7fbc72954000-7fbc72958000 r--p 001e7000 07:0d 129641                     /lib/x86_64-linux-gnu/libc-2.27.so
7fbc72958000-7fbc7295a000 rw-p 001eb000 07:0d 129641                     /lib/x86_64-linux-gnu/libc-2.27.so
7fbc7295a000-7fbc7295e000 rw-p 00000000 00:00 0 
7fbc7295e000-7fbc72afb000 r-xp 00000000 07:0d 129680                     /lib/x86_64-linux-gnu/libm-2.27.so
7fbc72afb000-7fbc72cfa000 ---p 0019d000 07:0d 129680                     /lib/x86_64-linux-gnu/libm-2.27.so
7fbc72cfa000-7fbc72cfb000 r--p 0019c000 07:0d 129680                     /lib/x86_64-linux-gnu/libm-2.27.so
7fbc72cfb000-7fbc72cfc000 rw-p 0019d000 07:0d 129680                     /lib/x86_64-linux-gnu/libm-2.27.so
7fbc72cfc000-7fbc72d05000 r-xp 00000000 07:0d 129651                     /lib/x86_64-linux-gnu/libcrypt-2.27.so
7fbc72d05000-7fbc72f04000 ---p 00009000 07:0d 129651                     /lib/x86_64-linux-gnu/libcrypt-2.27.so
7fbc72f04000-7fbc72f05000 r--p 00008000 07:0d 129651                     /lib/x86_64-linux-gnu/libcrypt-2.27.so
7fbc72f05000-7fbc72f06000 rw-p 00009000 07:0d 129651                     /lib/x86_64-linux-gnu/libcrypt-2.27.so
7fbc72f06000-7fbc72f34000 rw-p 00000000 00:00 0 
7fbc72f34000-7fbc72f37000 r-xp 00000000 07:0d 129655                     /lib/x86_64-linux-gnu/libdl-2.27.so
7fbc72f37000-7fbc73136000 ---p 00003000 07:0d 129655                     /lib/x86_64-linux-gnu/libdl-2.27.so
7fbc73136000-7fbc73137000 r--p 00002000 07:0d 129655                     /lib/x86_64-linux-gnu/libdl-2.27.so
7fbc73137000-7fbc73138000 rw-p 00003000 07:0d 129655                     /lib/x86_64-linux-gnu/libdl-2.27.so
7fbc73138000-7fbc731b7000 r-xp 00000000 07:0d 18913                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7fbc731b7000-7fbc733b7000 ---p 0007f000 07:0d 18913                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7fbc733b7000-7fbc733b8000 r--p 0007f000 07:0d 18913                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7fbc733b8000-7fbc733b9000 rw-p 00080000 07:0d 18913                      /usr/lib/x86_64-linux-gnu/libgmp.so.10.3.2
7fbc733b9000-7fbc733d3000 r-xp 00000000 07:0d 129718                     /lib/x86_64-linux-gnu/libpthread-2.27.so
7fbc733d3000-7fbc735d2000 ---p 0001a000 07:0d 129718                     /lib/x86_64-linux-gnu/libpthread-2.27.so
7fbc735d2000-7fbc735d3000 r--p 00019000 07:0d 129718                     /lib/x86_64-linux-gnu/libpthread-2.27.so
7fbc735d3000-7fbc735d4000 rw-p 0001a000 07:0d 129718                     /lib/x86_64-linux-gnu/libpthread-2.27.so
7fbc735d4000-7fbc735d8000 rw-p 00000000 00:00 0 
7fbc735d8000-7fbc735ff000 r-xp 00000000 07:0d 129621                     /lib/x86_64-linux-gnu/ld-2.27.so
7fbc73602000-7fbc73661000 r--s 00000000 fc:01 16009093                   /app/vendor/bundle/ruby/2.5.0/gems/ffi-1.9.25/lib/ffi_c.so
7fbc73661000-7fbc73669000 r--s 00000000 07:0d 18881                      /usr/lib/x86_64-linux-gnu/libffi.so.6.0.4
7fbc73669000-7fbc73670000 r--s 00000000 07:0d 18785                      /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7fbc73674000-7fbc736cd000 r--s 00000000 fc:01 15223923                   /app/vendor/opencc/lib/libopencc.so
7fbc736cd000-7fbc736f1000 r--s 00000000 07:0d 129718                     /lib/x86_64-linux-gnu/libpthread-2.27.so
7fbc736f1000-7fbc737f9000 rw-p 00000000 00:00 0 
7fbc737f9000-7fbc737fa000 r-xp 00000000 00:00 0 
7fbc737fa000-7fbc737fb000 ---p 00000000 00:00 0 
7fbc737fb000-7fbc737ff000 rw-p 00000000 00:00 0 
7fbc737ff000-7fbc73800000 r--p 00027000 07:0d 129621                     /lib/x86_64-linux-gnu/ld-2.27.so
7fbc73800000-7fbc73801000 rw-p 00028000 07:0d 129621                     /lib/x86_64-linux-gnu/ld-2.27.so
7fbc73801000-7fbc73802000 rw-p 00000000 00:00 0 
7ffd1b13b000-7ffd1c13a000 rw-p 00000000 00:00 0                          [stack]
7ffd1c1b2000-7ffd1c1b5000 r--p 00000000 00:00 0                          [vvar]
7ffd1c1b5000-7ffd1c1b7000 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: http://www.ruby-lang.org/bugreport.html

Do not work in Ubuntu 12.10

irb
irb> require 'ropencc'

LoadError: Could not open library 'opencc': opencc: cannot open shared object file: No such file or directory.
Could not open library 'libopencc.so': libopencc.so: cannot open shared object file: No such file or directory
from /home/ryan/.rvm/gems/ruby-1.9.3-p194/gems/ffi-1.3.1/lib/ffi/library.rb:123:in `block in ffi_lib'

can't get ropencc work

I puts the following in irb console:

str = '简体'
Ropencc.conv('simp_to_trad', str)

Then I get an error, Assertion failed: (0), function opencc_open, file /tmp/opencc-c6NwLj/opencc-0.4.3/src/opencc.c, line 153.

I'm using MacBook under OS X 10.9.5, is the problem caused by my OpenCC installation or something else?

thanks!

wrong string encoding

Encoding of the returned strings are "ASCII-8BIT". This causes problems if the string needs further manipulation.
The following code block illustrates the problem

# encoding: UTF-8
require 'ropencc'
s = Ropencc.conv('simp_to_trad', '"忧郁")
puts s #OK
puts "#{s}"  # ERROR

error message
incompatible character encodings: UTF-8 and ASCII-8BIT (Encoding::CompatibilityError)


Currently, s.force_encoding("UTF-8") could be used as a quick fix.

运行时出错

$ uname -a
Darwin TonyzhoudeMacBook-Air.local 14.0.0 Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64 x86_64

$ opencc -v

Open Chinese Convert (OpenCC) Command Line Tool
Version 0.4.3

Author: BYVoid <[email protected]>
Bug Report: http://github.com/BYVoid/OpenCC/issues

ropencc (0.0.6)

require 'ropencc'

cc = Ropencc.open 'zhtw2zhcn_s.ini'
cc.convert '新年快樂'
/Users/tonyzhou/.rvm/gems/ruby-1.9.3-p125/gems/ffi-1.9.8/lib/ffi/library.rb:261:in `attach_function': Function 'opencc_convert_utf8_to_buffer' not found in [libopencc.dylib] (FFI::NotFoundError)
        from /Users/tonyzhou/.rvm/gems/ruby-1.9.3-p125/gems/ropencc-0.0.6/lib/ropencc.rb:11:in `<module:LibOpenCC>'
        from /Users/tonyzhou/.rvm/gems/ruby-1.9.3-p125/gems/ropencc-0.0.6/lib/ropencc.rb:6:in `<class:Ropencc>'
        from /Users/tonyzhou/.rvm/gems/ruby-1.9.3-p125/gems/ropencc-0.0.6/lib/ropencc.rb:5:in `<top (required)>'
        from /Users/tonyzhou/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_require.rb:128:in `require'
        from /Users/tonyzhou/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_require.rb:128:in `rescue in require'
        from /Users/tonyzhou/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/site_ruby/1.9.1/rubygems/core_ext/kernel_require.rb:39:in `require'
        from s2t.rb:9:in `<main>'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.