├── core0 └── us │ ├── BUILD.bazel │ ├── api │ ├── data │ │ ├── gov │ │ │ ├── auth │ │ │ ├── peer │ │ │ ├── sys │ │ │ ├── relay │ │ │ ├── dfs │ │ │ ├── engine_auth │ │ │ ├── socket │ │ │ ├── traders │ │ │ ├── id │ │ │ ├── cash │ │ │ └── engine │ │ ├── device │ │ └── wallet │ │ │ ├── r2r │ │ │ └── pairing │ └── BUILD.bazel │ ├── COPYING │ ├── gui │ ├── .watchmanconfig │ ├── .ruby-version │ ├── app.json │ ├── .bundle │ │ └── config │ ├── 2025sdk9.0.jar │ ├── .eslintrc.js │ ├── babel.config.js │ ├── android │ │ ├── app │ │ │ ├── debug.keystore │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ │ └── res │ │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── proguard-rules.pro │ │ │ └── build_defs.bzl │ │ └── gradle │ │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── ios │ │ ├── gui │ │ │ ├── Images.xcassets │ │ │ │ └── Contents.json │ │ │ └── main.m │ │ └── guiTests │ │ │ └── Info.plist │ ├── .buckconfig │ ├── doc │ │ └── deps │ │ │ └── README.txt │ ├── .prettierrc.js │ ├── Gemfile │ ├── index.js │ ├── App.js │ ├── __tests__ │ │ └── App-test.js │ ├── metro.config.js │ └── package.json │ ├── bin │ ├── srctool │ └── node_sys │ │ └── perf │ ├── doc │ ├── us │ │ ├── index │ │ ├── gov │ │ │ ├── index │ │ │ ├── socket │ │ │ │ ├── gc │ │ │ │ ├── bgtask │ │ │ │ └── daemon │ │ │ ├── cli │ │ │ │ └── hmi │ │ │ └── relay │ │ │ │ └── daemon │ │ ├── bgtask │ │ ├── bin │ │ │ └── apply_brand │ │ └── wallet │ │ │ ├── traders │ │ │ └── wallet_local_api │ └── header │ ├── android │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ └── main │ │ │ │ ├── res │ │ │ │ ├── raw │ │ │ │ │ ├── cert.png │ │ │ │ │ ├── gear.png │ │ │ │ │ ├── info.png │ │ │ │ │ ├── basket.png │ │ │ │ │ ├── coins.png │ │ │ │ │ ├── create.png │ │ │ │ │ ├── doc_up.png │ │ │ │ │ ├── r2rtab.png │ │ │ │ │ ├── redled.png │ │ │ │ │ ├── amberled.png │ │ │ │ │ ├── catalogue.png │ │ │ │ │ ├── conn_ico.png │ │ │ │ │ ├── doc_down.png │ │ │ │ │ ├── greenled.png │ │ │ │ │ ├── loading_role_img.png │ │ │ │ │ └── under_construction.jpg │ │ │ │ ├── xml │ │ │ │ │ ├── provider_paths.xml │ │ │ │ │ └── apduservice.xml │ │ │ │ ├── values │ │ │ │ │ ├── languajes.xml │ │ │ │ │ ├── attrs.xml │ │ │ │ │ └── dimens.xml │ │ │ │ ├── drawable │ │ │ │ │ ├── led.xml │ │ │ │ │ ├── ic_arrow_drop_down.xml │ │ │ │ │ ├── ic_arrow_drop_up.xml │ │ │ │ │ ├── splash.xml │ │ │ │ │ ├── ic_send56.xml │ │ │ │ │ ├── ic_load56.xml │ │ │ │ │ ├── ic_send_48dp.xml │ │ │ │ │ ├── conn.xml │ │ │ │ │ ├── ic_done.xml │ │ │ │ │ ├── ic_back.xml │ │ │ │ │ ├── ic_arrow_left_48.xml │ │ │ │ │ ├── ic_arrow_view.xml │ │ │ │ │ ├── ic_bookmark.xml │ │ │ │ │ ├── sheet_head_bg.xml │ │ │ │ │ ├── ic_crypto.xml │ │ │ │ │ ├── ic_log.xml │ │ │ │ │ ├── ic_transfer.xml │ │ │ │ │ ├── drawer_item.xml │ │ │ │ │ ├── ic_random.xml │ │ │ │ │ ├── sheet_bg.xml │ │ │ │ │ ├── ic_drag.xml │ │ │ │ │ ├── ic_email.xml │ │ │ │ │ ├── ic_mail_48dp.xml │ │ │ │ │ ├── ic_open_doc.xml │ │ │ │ │ ├── ic_chat.xml │ │ │ │ │ ├── resolveip.xml │ │ │ │ │ ├── ic_pay_48dp.xml │ │ │ │ │ ├── ic_send.xml │ │ │ │ │ ├── ic_invoice.xml │ │ │ │ │ ├── ic_save_24dp.xml │ │ │ │ │ ├── ic_save_56dp.xml │ │ │ │ │ ├── ic_cancel.xml │ │ │ │ │ ├── ic_download_24dp.xml │ │ │ │ │ ├── ic_exit.xml │ │ │ │ │ ├── ic_prescription.xml │ │ │ │ │ ├── item_count.xml │ │ │ │ │ ├── ic_redirection_48.xml │ │ │ │ │ ├── ic_refresh.xml │ │ │ │ │ ├── ic_pay56.xml │ │ │ │ │ ├── ic_vieweye.xml │ │ │ │ │ ├── ic_bill.xml │ │ │ │ │ ├── ic_invoice48.xml │ │ │ │ │ ├── ic_avatar.xml │ │ │ │ │ ├── ic_reset.xml │ │ │ │ │ ├── ic_archive.xml │ │ │ │ │ ├── ic_archive_big.xml │ │ │ │ │ ├── ic_sign.xml │ │ │ │ │ ├── ic_airesult_48.xml │ │ │ │ │ ├── ic_crypto24.xml │ │ │ │ │ ├── ic_personality.xml │ │ │ │ │ ├── ic_productitem_24.xml │ │ │ │ │ ├── ic_bill_48.xml │ │ │ │ │ ├── ic_itemlist.xml │ │ │ │ │ ├── ic_update.xml │ │ │ │ │ ├── ic_pill.xml │ │ │ │ │ ├── ic_tip_24.xml │ │ │ │ │ ├── drawer_item_bg.xml │ │ │ │ │ ├── ic_appointment.xml │ │ │ │ │ ├── ic_basket_24.xml │ │ │ │ │ ├── ic_new.xml │ │ │ │ │ ├── ic_checkout_24.xml │ │ │ │ │ ├── ic_addbasket_24.xml │ │ │ │ │ ├── ic_show_my_endpoint.xml │ │ │ │ │ ├── ic_world.xml │ │ │ │ │ ├── ic_notification_24dp.xml │ │ │ │ │ └── ic_settings.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── enter_message_shape.xml │ │ │ │ │ ├── file_send_shape.xml │ │ │ │ │ ├── ic_send_24dp.xml │ │ │ │ │ ├── ic_play_circle_filled_black_24dp.xml │ │ │ │ │ ├── ic_pause_circle_filled_black_24dp.xml │ │ │ │ │ └── ic_attach_file_black_24dp.xml │ │ │ │ ├── color │ │ │ │ │ └── button_states.xml │ │ │ │ ├── anim │ │ │ │ │ ├── fadein.xml │ │ │ │ │ ├── fadeout.xml │ │ │ │ │ └── slide_from_bottom.xml │ │ │ │ ├── layout │ │ │ │ │ ├── simple_spinner_item.xml │ │ │ │ │ ├── simple_spinner_dropdown_item.xml │ │ │ │ │ ├── fragment_a2a.xml │ │ │ │ │ ├── fragment_fan2fan.xml │ │ │ │ │ ├── fragment_pat2ai_pat.xml │ │ │ │ │ ├── fragment_pat2slt_pat.xml │ │ │ │ │ ├── trades_listitem.xml │ │ │ │ │ ├── fragment_fan2club_club.xml │ │ │ │ │ ├── fragment_fan2club_fan.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── content_files.xml │ │ │ │ │ ├── content_trades.xml │ │ │ │ │ ├── consumer_workflow.xml │ │ │ │ │ ├── content_game.xml │ │ │ │ │ ├── activity_position.xml │ │ │ │ │ └── logo.xml │ │ │ │ ├── menu │ │ │ │ │ ├── activity_menu.xml │ │ │ │ │ ├── menu_modal.xml │ │ │ │ │ ├── menu_hmi_off.xml │ │ │ │ │ └── menu_hmi_on.xml │ │ │ │ └── drawable-anydpi │ │ │ │ │ ├── ic_balance.xml │ │ │ │ │ ├── ic_files.xml │ │ │ │ │ ├── ic_qr.xml │ │ │ │ │ └── ic_basket.xml │ │ │ │ └── ic_launcher-web.png │ │ └── proguard-rules.pro │ ├── licenses │ │ ├── google-gdk-license │ │ ├── android-googletv-license │ │ ├── android-sdk-arm-dbt-license │ │ ├── android-sdk-preview-license │ │ ├── mips-android-sysimage-license │ │ └── android-sdk-license │ ├── art │ │ └── splash.xcf │ ├── files │ │ ├── brand.png │ │ ├── icoapp.png │ │ ├── splash.png │ │ ├── settings.xml │ │ └── colors.xml │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── blesdk_2025 │ │ └── src │ │ │ └── main │ │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ │ └── AndroidManifest.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── wearable_JClife │ │ └── src │ │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ └── colors.xml │ │ │ ├── menu │ │ │ │ └── activity_home_navigation.xml │ │ │ └── layout │ │ │ │ ├── item_cmd.xml │ │ │ │ ├── activity_ble.xml │ │ │ │ └── activity_device_scan.xml │ │ │ └── AndroidManifest.xml │ ├── .gitignore │ ├── bin │ │ └── install_gradle │ ├── .project │ ├── getdeps │ └── gradle.properties │ ├── raspbian │ ├── 10-us │ │ ├── 00-packages-nr │ │ ├── 01-run.sh │ │ ├── 00-packages │ │ └── files │ │ │ └── rc.local.in │ └── OS.png │ ├── testx │ ├── nodes │ │ ├── bank1 │ │ │ ├── name │ │ │ ├── ico.png │ │ │ └── logo.png │ │ └── bank2 │ │ │ ├── name │ │ │ ├── ico.png │ │ │ └── logo.png │ └── verser │ │ ├── 8 │ │ └── blocks │ │ │ ├── 9zy2Tv5aqp2ud9pvDLZey2vC9rJ │ │ │ ├── BskeTpevBT8Ji9KK4EmHc5qM84X │ │ │ ├── GpV8CEJz37u4yixXY3uNYVStkCT │ │ │ ├── H21FnLCJSoUFEiit5GEYHkSmPxw │ │ │ ├── MaPTJH79TyGAnZPxABtbN17bZmg │ │ │ ├── QNCMwBLXQBs2ompPXEasxfPvHJB │ │ │ ├── TWXqGxkseMuznkEvHPDpwTQunUu │ │ │ ├── gHQL9hKhKjW2rqXpzSZrpPkH7T5 │ │ │ ├── h8UL8vaBVSrZBgY4AXhTy6Pd1hU │ │ │ ├── qeN1b4bpsmxsbbuJ63GUVYM5K6Y │ │ │ ├── qixUGvpXqY3tLuTfiezFeKGhYVz │ │ │ ├── rqpZxZXxEGRLQ1rEVs2pmaqcLJH │ │ │ ├── sdPRTbuNdWP8vLN9XZ9F26LcVyV │ │ │ ├── tXnSoYoXVchXBykDj9Q6LSm3DGw │ │ │ ├── 21kLvNL2kW8Paay39kdZBPCS3vmX │ │ │ ├── 2DuE9osLJQw7u251xVRNarQkDCdL │ │ │ ├── 2Gz2PnnsuMVNfbUDZvDYisVm34PX │ │ │ ├── 2NBHibaNtM2858Ss5ffbdWm3ZdFB │ │ │ ├── 2VgDWFQJiWGxnVaGnFS6kLWphseS │ │ │ ├── 2jL1b969S8tiVTMApMXekcJbVTgW │ │ │ ├── 2m2ww98oNHqU3qK7PYCnXr2feyWj │ │ │ ├── 2qoo59ksf1j6hpGg7ULSgPAmX9gk │ │ │ ├── 2zwDJj2E9fKfohSEULTR5gaFEgCW │ │ │ ├── 3A73G3itXs5Wo6fNQCBUTkppUa5C │ │ │ ├── 3DqaMHLkTZcxgYt82CE3gJhBBV2e │ │ │ ├── 3FkRHHG3uyGwfguBHRMiGYWMepT1 │ │ │ ├── 3fCSb35Mt92CHULZJBxWA8fnypPj │ │ │ ├── 3hq97rQwJ2EYBvaHvU1LrCGqztNh │ │ │ ├── 3iuYMwLGzM1BSQWsCDAnFGeW9u6W │ │ │ ├── 3jkkzm5st25AXbdgq8NjKAYYbUec │ │ │ ├── 45nVhZjKhPM4yLhNWFuLKx6B1P92 │ │ │ ├── 481YNrD5CK2EWYGg4BCZmUhzHsz9 │ │ │ ├── 4NCTRjfNDdoX2UmKqYcSZ9paBR8Y │ │ │ └── 4PHNfDjtwHoGBjGeqpoWJuMDmGbY │ │ ├── 9 │ │ ├── local_deltas_1 │ │ ├── local_deltas_2 │ │ └── blocks │ │ │ ├── 1MEMWafzZFFjCmvaZyrRkD8XNVA │ │ │ ├── 5B3VUCjXkwYT6DtfJ1wQoTuaW3o │ │ │ ├── 5Nd3PJKM79GS9c3UPf2a1LoqFda │ │ │ ├── ggHud5y1yLJ4FDsMsFg6zdTtyFw │ │ │ ├── pHxTfHhfnX1qaZQ8ShDERWU9wPT │ │ │ ├── rTyhh1xEQLifeYBqqRB9niU3LsZ │ │ │ ├── 2FBGFW1SmvUEyNJs9zSXBbgtGTiQ │ │ │ ├── 2RsZaUoozFG2tteNVEfytofjCmKV │ │ │ ├── 35AvmanUqk9NFTaNtVJKhamJE4Be │ │ │ ├── 3YLtn8JULFhGN1KiFoBahhBykG9a │ │ │ ├── 3fXi6dx1ePybQ1UJVc1hfz2R84aX │ │ │ ├── 3mGQQmndZwAE8GTDHnwPBhqpGS4K │ │ │ ├── 3nwJqY6WMcR8xh21goenQER4s5BK │ │ │ ├── 3tm4LxLzMzdQrfyNKJjcPcKrEm26 │ │ │ └── 44Zpjh3zmTXREzRJk94oRM1ATQJz │ │ └── 10 │ │ ├── local_deltas_1 │ │ └── local_deltas_2 │ ├── test │ ├── .gitignore │ ├── db_analyst │ │ ├── set1_expected │ │ ├── set10 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 23zY9A5b3Wf6ns34rvbpLNCftvWY │ │ │ ├── 2RrRc57rW4x1W21RVxyENjcfVuTw │ │ │ ├── 2SbyVrcqM8E4WaU3FUL3atuMuQKf │ │ │ ├── 2evg9ULJWaV66CdKBsMBuYkrHzCj │ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo │ │ │ ├── 3KQoMqZBuBHcy6mYbcZY3cj13kYF │ │ │ ├── 3TMuBruxndy9N1SNsvZrFkSx5mRP │ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB │ │ │ ├── 44EXtjjBcRpPGvfvxAoYFK9wuu9A │ │ │ ├── QFopAtyvNEAFLCuYmjQoAwuQ2bh │ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR │ │ ├── set2 │ │ │ └── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ ├── set3 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ └── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ ├── set4 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 3APvESao9P1zkchuX8GesqjAgS3L │ │ │ └── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ ├── set5 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo │ │ │ └── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ ├── set6 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo │ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ │ └── 3z3CjyzjX8K9vPGLrWraX6pD9YjB │ │ ├── set7 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo │ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB │ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR │ │ ├── set8 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 2evg9ULJWaV66CdKBsMBuYkrHzCj │ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo │ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB │ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR │ │ ├── set9 │ │ │ ├── 3KodzmKDFgwnRADyRyraEz4oVLiS │ │ │ ├── 23zY9A5b3Wf6ns34rvbpLNCftvWY │ │ │ ├── 2RrRc57rW4x1W21RVxyENjcfVuTw │ │ │ ├── 2SbyVrcqM8E4WaU3FUL3atuMuQKf │ │ │ ├── 2evg9ULJWaV66CdKBsMBuYkrHzCj │ │ │ ├── 2xWLsodXotVbeYJRFDcp8v62jNYo │ │ │ ├── 3KQoMqZBuBHcy6mYbcZY3cj13kYF │ │ │ ├── 3TMuBruxndy9N1SNsvZrFkSx5mRP │ │ │ ├── 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu │ │ │ ├── 3z3CjyzjX8K9vPGLrWraX6pD9YjB │ │ │ ├── 44EXtjjBcRpPGvfvxAoYFK9wuu9A │ │ │ └── 3yBE35YWZWPuAwUKaCyiWez28tUR │ │ ├── set2_expected │ │ ├── set3_expected │ │ ├── set5_expected │ │ ├── set4_expected │ │ ├── set6_expected │ │ └── set7_expected │ ├── img │ │ └── ico.png │ ├── symmetric_encryption_dir │ │ ├── test_cpp │ │ ├── Main.class │ │ ├── do_symmetric_encryption_test │ │ └── do_test_with_args │ ├── serialization │ │ └── prev │ │ │ ├── 3XcsvEZQM7md8W92ictRgoywWX6h │ │ │ └── 3zdrD4vWohxRLNd9qMp49MsXTsUn │ └── bin │ │ └── run_tests │ ├── var │ ├── us │ │ ├── LICENSE │ │ ├── commands │ │ │ ├── blockchain │ │ │ ├── broadcast │ │ │ │ ├── uptime │ │ │ │ └── upgrade_distr │ │ │ ├── journal │ │ │ ├── close-open-ports │ │ │ ├── uptime │ │ │ ├── clean │ │ │ ├── set_gov_passwd │ │ │ ├── ps_ssh │ │ │ ├── geo │ │ │ ├── ping │ │ │ ├── reverse_connect │ │ │ ├── change_oanode │ │ │ ├── proc_1.2 │ │ │ ├── write_torrc │ │ │ └── adduser_othernode │ │ └── geonodes │ └── www │ │ └── html │ │ ├── us-c.png │ │ └── motd.html │ ├── wallet │ └── trader │ │ └── r2r │ │ ├── a2a │ │ └── home │ │ │ ├── name │ │ │ └── ico.png │ │ └── w2w │ │ └── home │ │ ├── name │ │ ├── ico.png │ │ └── logo.png │ ├── etc │ ├── env │ ├── rc.local │ ├── wallet │ │ └── config.in │ ├── php │ │ └── 7.4 │ │ │ └── fpm │ │ │ └── pool.d │ │ │ └── user_wrest │ ├── sudoers.d │ │ └── usgov.in │ ├── bind │ │ ├── named.conf.local.in │ │ └── zones │ │ │ └── db.bind_domain.in │ ├── tor │ │ └── torrc.d │ │ │ └── us-hidden.in │ ├── nginx │ │ ├── snippets │ │ │ ├── us-node.conf │ │ │ └── snakeoil.conf │ │ └── conf.d │ │ │ └── us-hidden.conf.in │ ├── bashrc.in │ ├── bash_aliases.in │ ├── motd_hdr │ ├── systemd │ │ └── system │ │ │ ├── us-gov.service.in │ │ │ └── us-wallet.service.in │ ├── motd.in │ ├── 999999999_rclocal.in │ └── config.in │ ├── cash │ └── art │ │ ├── c.png │ │ ├── coin.xcf │ │ ├── usc.png │ │ └── us-cash.png │ ├── sdk │ └── wallet │ │ ├── java │ │ └── .gitignore │ │ └── cs │ │ ├── libs │ │ └── Secp256k1.Net.dll │ │ └── README │ ├── .bazelrc │ ├── srctool │ └── test │ │ └── testin.in │ ├── WORKSPACE.bazel │ └── root │ └── .ssh │ └── authorized_keys ├── core1 ├── .gitignore ├── brands │ └── plebble │ │ ├── blob │ │ ├── name │ │ ├── html │ │ ├── pub │ │ ├── doc │ │ │ └── user_manual.txt │ │ ├── btc.png │ │ ├── pi4.png │ │ ├── cloud.png │ │ ├── header.png │ │ ├── bg_sand.gif │ │ ├── bitcoin.pdf │ │ ├── favicon.ico │ │ ├── plebble_ico.png │ │ ├── rpi_imager.png │ │ ├── bitcoin │ │ │ ├── miner.jpg │ │ │ ├── fullnode.jpg │ │ │ └── bitcoin_nodes.pdf │ │ ├── plebble_logo.png │ │ ├── community │ │ │ ├── github.png │ │ │ ├── reddit.png │ │ │ ├── signal.jpg │ │ │ ├── signal.png │ │ │ ├── discord.png │ │ │ ├── patreon.png │ │ │ ├── telegram.png │ │ │ └── twitter.png │ │ ├── ecosystem │ │ │ ├── header.png │ │ │ ├── favicon.ico │ │ │ ├── plebble_ico.png │ │ │ └── plebble_logo.png │ │ ├── android_screenshots │ │ │ ├── IMG_20220629_211014.jpg │ │ │ ├── IMG_20220629_212001.jpg │ │ │ ├── IMG_20220629_212054.jpg │ │ │ ├── Screenshot_2022-06-29-20-53-40-555_katlas.trader.jpg │ │ │ ├── Screenshot_2022-06-29-20-57-17-175_katlas.trader.jpg │ │ │ ├── Screenshot_2022-06-30-10-08-55-757_com.miui.home.jpg │ │ │ ├── Screenshot_2022-06-29-20-47-09-892_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-20-51-46-224_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-20-56-22-306_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-20-59-18-924_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-00-22-437_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-04-35-170_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-06-19-781_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-07-12-902_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-07-58-247_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-09-07-355_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-18-47-013_plebble.trader.jpg │ │ │ ├── Screenshot_2022-06-29-21-21-28-556_plebble.trader.jpg │ │ │ └── Screenshot_2022-06-29-21-23-01-152_plebble.trader.jpg │ │ ├── why_ip4.txt │ │ └── shopping_list.txt │ │ ├── r2r │ │ ├── unixname │ │ ├── html_alt │ │ ├── bitbank │ │ │ └── index.html │ │ └── privacy_operating_system │ │ │ └── index.html │ │ ├── bookmarks │ │ ├── brand.png │ │ ├── icoapp.png │ │ ├── splash.png │ │ ├── art │ │ ├── icoapp.xcf │ │ └── splash.xcf │ │ ├── doc │ │ ├── icoapp.xcf │ │ └── splash.xcf │ │ ├── front │ │ ├── img │ │ │ ├── bg.jpg │ │ │ ├── pi4.png │ │ │ ├── icoapp.png │ │ │ ├── server.jpg │ │ │ ├── anycomputer.jpg │ │ │ ├── plebble_ico.png │ │ │ └── rasperry2.jpg │ │ ├── animate.js │ │ └── index.js │ │ ├── settings.xml │ │ ├── letsncrypt │ │ ├── devjob_skel │ │ ├── bin │ │ │ ├── lint │ │ │ ├── update_revs │ │ │ └── merge_submit │ │ └── .github │ │ │ └── FUNDING.yml │ │ └── source_code_header ├── us │ └── trader │ │ ├── .gitignore │ │ ├── r2r │ │ ├── games │ │ │ └── home │ │ │ │ ├── name │ │ │ │ └── ico.png │ │ └── bid2ask │ │ │ ├── ask │ │ │ └── home │ │ │ │ ├── name │ │ │ │ ├── ico.png │ │ │ │ └── logo.png │ │ │ └── bid │ │ │ └── home │ │ │ ├── name │ │ │ ├── ico.png │ │ │ └── logo.png │ │ └── testx │ │ ├── nodes │ │ └── ask │ │ │ ├── name │ │ │ ├── data │ │ │ ├── ico.png │ │ │ └── logo.png │ │ └── bin │ │ ├── compile_and_run_tests │ │ ├── compile_r2r_and_run_tests │ │ ├── compile_wallet_and_run_tests │ │ ├── gdb │ │ ├── compile_wallet_and_r2r_and_run_tests │ │ └── run ├── bde_setup │ └── bde_data │ │ ├── nginx │ │ └── html │ │ │ ├── clone.html │ │ │ └── googleplay.png │ │ └── template_base │ │ └── trader │ │ └── w2w │ │ ├── name │ │ ├── ico.png │ │ └── logo.png ├── template │ ├── README │ ├── devjobs_active │ └── cbs_config_brand ├── lib │ └── shenv └── snippet │ └── makefile_distr ├── .revs ├── bin ├── lint ├── update_revs └── merge_submit └── .github └── FUNDING.yml /core0/us/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/auth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/peer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/sys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core0/us/COPYING: -------------------------------------------------------------------------------- 1 | var/us/LICENSE -------------------------------------------------------------------------------- /core0/us/gui/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /core0/us/bin/srctool: -------------------------------------------------------------------------------- 1 | ../srctool/srctool -------------------------------------------------------------------------------- /core0/us/doc/us/index: -------------------------------------------------------------------------------- 1 | src root 2 | -------------------------------------------------------------------------------- /core0/us/gui/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /core1/.gitignore: -------------------------------------------------------------------------------- 1 | .cbs 2 | .cache 3 | -------------------------------------------------------------------------------- /core1/brands/plebble/blob: -------------------------------------------------------------------------------- 1 | PuxQ2g 2 | -------------------------------------------------------------------------------- /core1/brands/plebble/name: -------------------------------------------------------------------------------- 1 | plebble 2 | -------------------------------------------------------------------------------- /core0/us/android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /core0/us/doc/header: -------------------------------------------------------------------------------- 1 | HEADER PLACEHOLDER 2 | -------------------------------------------------------------------------------- /core0/us/raspbian/10-us/00-packages-nr: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core0/us/testx/nodes/bank1/name: -------------------------------------------------------------------------------- 1 | bank1 2 | -------------------------------------------------------------------------------- /core0/us/testx/nodes/bank2/name: -------------------------------------------------------------------------------- 1 | bank2 2 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/pub: -------------------------------------------------------------------------------- 1 | /home/gov/pub -------------------------------------------------------------------------------- /core1/brands/plebble/r2r: -------------------------------------------------------------------------------- 1 | bid2ask 2 | 3 | -------------------------------------------------------------------------------- /core1/brands/plebble/unixname: -------------------------------------------------------------------------------- 1 | plebble 2 | -------------------------------------------------------------------------------- /core0/us/test/.gitignore: -------------------------------------------------------------------------------- 1 | us-gov_test 2 | 3 | -------------------------------------------------------------------------------- /core0/us/var/us/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE PLACEHOLDER 2 | -------------------------------------------------------------------------------- /core1/us/trader/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.a 3 | 4 | -------------------------------------------------------------------------------- /core1/us/trader/r2r/games/home/name: -------------------------------------------------------------------------------- 1 | games 2 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/blockchain: -------------------------------------------------------------------------------- 1 | govshell n 2 | -------------------------------------------------------------------------------- /core0/us/wallet/trader/r2r/a2a/home/name: -------------------------------------------------------------------------------- 1 | actor 2 | -------------------------------------------------------------------------------- /core0/us/wallet/trader/r2r/w2w/home/name: -------------------------------------------------------------------------------- 1 | bank 2 | -------------------------------------------------------------------------------- /core1/us/trader/r2r/bid2ask/ask/home/name: -------------------------------------------------------------------------------- 1 | shop 2 | -------------------------------------------------------------------------------- /core1/us/trader/r2r/bid2ask/bid/home/name: -------------------------------------------------------------------------------- 1 | customer 2 | -------------------------------------------------------------------------------- /core1/us/trader/testx/nodes/ask/name: -------------------------------------------------------------------------------- 1 | Impact Shopping 2 | -------------------------------------------------------------------------------- /core0/us/etc/env: -------------------------------------------------------------------------------- 1 | alias log="tail -f /var/log/messages" 2 | 3 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/broadcast/uptime: -------------------------------------------------------------------------------- 1 | govshell uptime 2 | -------------------------------------------------------------------------------- /core1/bde_setup/bde_data/nginx/html/clone.html: -------------------------------------------------------------------------------- 1 |

TODO

2 | -------------------------------------------------------------------------------- /core1/bde_setup/bde_data/template_base/trader/w2w/name: -------------------------------------------------------------------------------- 1 | bank 2 | -------------------------------------------------------------------------------- /core0/us/etc/rc.local: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | run-parts /etc/rc.local.d 3 | -------------------------------------------------------------------------------- /core0/us/doc/us/gov/index: -------------------------------------------------------------------------------- 1 | Public Governance Core + Antier (Network layer) 2 | -------------------------------------------------------------------------------- /core0/us/gui/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gui", 3 | "displayName": "gui" 4 | } -------------------------------------------------------------------------------- /core0/us/bin/node_sys/perf: -------------------------------------------------------------------------------- 1 | govshell p c v app 20 db exit app 30 db exit 2 | 3 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set1_expected: -------------------------------------------------------------------------------- 1 | digraph D { 2 | node [shape=box] 3 | } 4 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/relay: -------------------------------------------------------------------------------- 1 | push 2 | h tid u2 code v blob 3 | async 4 | - 5 | - 6 | 7 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/doc/user_manual.txt: -------------------------------------------------------------------------------- 1 | /usr/local/share/doc/plebble/user_manual -------------------------------------------------------------------------------- /core0/us/android/licenses/google-gdk-license: -------------------------------------------------------------------------------- 1 | 2 | 33b6a2b64607f11b759f320ef9dff4ae5c47d97a -------------------------------------------------------------------------------- /core0/us/api/data/device: -------------------------------------------------------------------------------- 1 | get_component_update 2 | s file v bin 3 | async 4 | - 5 | - 6 | 7 | -------------------------------------------------------------------------------- /core0/us/etc/wallet/config.in: -------------------------------------------------------------------------------- 1 | LD_LIBRARY_PATH=/home/##str11##/.##str3##/wallet/trader/lib 2 | -------------------------------------------------------------------------------- /core0/us/android/licenses/android-googletv-license: -------------------------------------------------------------------------------- 1 | 2 | 601085b94cd77f0b54ff86406957099ebe79c4d6 -------------------------------------------------------------------------------- /core0/us/android/licenses/android-sdk-arm-dbt-license: -------------------------------------------------------------------------------- 1 | 2 | 859f317696f67ef3d7f30a50a5560e7834b43903 -------------------------------------------------------------------------------- /core0/us/android/licenses/android-sdk-preview-license: -------------------------------------------------------------------------------- 1 | 2 | 84831b9409646a918e30573bab4c9c91346d8abd -------------------------------------------------------------------------------- /core0/us/cash/art/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/c.png -------------------------------------------------------------------------------- /core0/us/gui/.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /core0/us/sdk/wallet/java/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | test_build 3 | libs 4 | *.jar 5 | us/CFG.java 6 | -------------------------------------------------------------------------------- /core1/us/trader/testx/bin/compile_and_run_tests: -------------------------------------------------------------------------------- 1 | ###############make clean 2 | bin/run_tests 3 | -------------------------------------------------------------------------------- /core0/us/android/licenses/mips-android-sysimage-license: -------------------------------------------------------------------------------- 1 | 2 | e9acab5b5fbb560a72cfaecce8946896ff6aab9d -------------------------------------------------------------------------------- /core0/us/cash/art/coin.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/coin.xcf -------------------------------------------------------------------------------- /core0/us/cash/art/usc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/usc.png -------------------------------------------------------------------------------- /core0/us/raspbian/OS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/raspbian/OS.png -------------------------------------------------------------------------------- /core0/us/test/img/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/test/img/ico.png -------------------------------------------------------------------------------- /core0/us/gui/2025sdk9.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/2025sdk9.0.jar -------------------------------------------------------------------------------- /core1/brands/plebble/html_alt/bitbank/index.html: -------------------------------------------------------------------------------- 1 |

BitBank: A P2P Network of Central Banks

2 | 3 | -------------------------------------------------------------------------------- /core0/us/android/art/splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/art/splash.xcf -------------------------------------------------------------------------------- /core0/us/cash/art/us-cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/cash/art/us-cash.png -------------------------------------------------------------------------------- /core0/us/etc/php/7.4/fpm/pool.d/user_wrest: -------------------------------------------------------------------------------- 1 | [##user##_wrest] 2 | 3 | user = ##user## 4 | group = ##user## 5 | -------------------------------------------------------------------------------- /core0/us/var/www/html/us-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/var/www/html/us-c.png -------------------------------------------------------------------------------- /core1/brands/plebble/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/bookmarks -------------------------------------------------------------------------------- /core1/brands/plebble/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/brand.png -------------------------------------------------------------------------------- /core1/brands/plebble/icoapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/icoapp.png -------------------------------------------------------------------------------- /core1/brands/plebble/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/splash.png -------------------------------------------------------------------------------- /core0/us/android/files/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/files/brand.png -------------------------------------------------------------------------------- /core0/us/android/files/icoapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/files/icoapp.png -------------------------------------------------------------------------------- /core0/us/android/files/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/files/splash.png -------------------------------------------------------------------------------- /core0/us/gui/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /core0/us/gui/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/btc.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/pi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/pi4.png -------------------------------------------------------------------------------- /core0/us/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /core0/us/etc/sudoers.d/usgov.in: -------------------------------------------------------------------------------- 1 | ##str11## ALL = (root) NOPASSWD: SETENV: ALL 2 | Defaults lecture = never 3 | 4 | -------------------------------------------------------------------------------- /core0/us/testx/nodes/bank1/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank1/ico.png -------------------------------------------------------------------------------- /core0/us/testx/nodes/bank1/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank1/logo.png -------------------------------------------------------------------------------- /core0/us/testx/nodes/bank2/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank2/ico.png -------------------------------------------------------------------------------- /core0/us/testx/nodes/bank2/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/nodes/bank2/logo.png -------------------------------------------------------------------------------- /core1/brands/plebble/art/icoapp.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/art/icoapp.xcf -------------------------------------------------------------------------------- /core1/brands/plebble/art/splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/art/splash.xcf -------------------------------------------------------------------------------- /core1/brands/plebble/doc/icoapp.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/doc/icoapp.xcf -------------------------------------------------------------------------------- /core1/brands/plebble/doc/splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/doc/splash.xcf -------------------------------------------------------------------------------- /core1/brands/plebble/html/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/cloud.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/header.png -------------------------------------------------------------------------------- /core0/us/api/data/gov/dfs: -------------------------------------------------------------------------------- 1 | file_request 2 | h content_digest 3 | sync 4 | [async_handler] 1 content 5 | - 6 | - 7 | 8 | 9 | -------------------------------------------------------------------------------- /core0/us/testx/verser/9/local_deltas_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/local_deltas_1 -------------------------------------------------------------------------------- /core0/us/testx/verser/9/local_deltas_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/local_deltas_2 -------------------------------------------------------------------------------- /core0/us/var/us/commands/journal: -------------------------------------------------------------------------------- 1 | echo "--BEG--" 2 | journalctl -t us-gov --since=today 3 | echo "--END--" 4 | exit 0 5 | 6 | -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/bg.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/pi4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/pi4.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/bg_sand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bg_sand.gif -------------------------------------------------------------------------------- /core1/brands/plebble/html/bitcoin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin.pdf -------------------------------------------------------------------------------- /core1/brands/plebble/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/favicon.ico -------------------------------------------------------------------------------- /core1/us/trader/r2r/games/home/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/games/home/ico.png -------------------------------------------------------------------------------- /core1/us/trader/testx/nodes/ask/data: -------------------------------------------------------------------------------- 1 | 4ZF1BsR2QDpxE9fDSBmQYFRC71WM 9PPteEVCPt25Qgnnn3pfJsS2YNQ 4ZF1BsR2QDpxE9fDSBmQYFRC71WM 2 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/debug.keystore -------------------------------------------------------------------------------- /core0/us/testx/verser/10/local_deltas_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/10/local_deltas_1 -------------------------------------------------------------------------------- /core0/us/testx/verser/10/local_deltas_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/10/local_deltas_2 -------------------------------------------------------------------------------- /core0/us/var/us/commands/close-open-ports: -------------------------------------------------------------------------------- 1 | /etc/cron.hourly/us-ports close 2 | echo "---" 3 | /etc/cron.hourly/us-ports open 4 | 5 | -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/icoapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/icoapp.png -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/server.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/plebble_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/plebble_ico.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/rpi_imager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/rpi_imager.png -------------------------------------------------------------------------------- /core1/us/trader/testx/nodes/ask/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/testx/nodes/ask/ico.png -------------------------------------------------------------------------------- /core1/us/trader/testx/nodes/ask/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/testx/nodes/ask/logo.png -------------------------------------------------------------------------------- /core0/us/android/licenses/android-sdk-license: -------------------------------------------------------------------------------- 1 | 2 | d56f5187479451eabf01fb78af6dfcb131a6481e 3 | 24333f8a63b6825ea9c5514f83c2829b004d1fee -------------------------------------------------------------------------------- /core0/us/etc/bind/named.conf.local.in: -------------------------------------------------------------------------------- 1 | zone "##str68##" { 2 | type master; 3 | file "/etc/bind/zones/db.bind_domain"; 4 | }; 5 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | gui 3 | 4 | -------------------------------------------------------------------------------- /core0/us/gui/ios/gui/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /core0/us/wallet/trader/r2r/a2a/home/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/wallet/trader/r2r/a2a/home/ico.png -------------------------------------------------------------------------------- /core0/us/wallet/trader/r2r/w2w/home/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/wallet/trader/r2r/w2w/home/ico.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/bitcoin/miner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin/miner.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/plebble_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/plebble_logo.png -------------------------------------------------------------------------------- /core1/brands/plebble/html_alt/privacy_operating_system/index.html: -------------------------------------------------------------------------------- 1 |

PLEBOS/PLEBBOS/PLEBBLOS/PLEBBLEOS: Privacy Operating System

2 | -------------------------------------------------------------------------------- /core1/template/README: -------------------------------------------------------------------------------- 1 | copy templates to .cbs/config 2 | 3 | cascade customized for brand files as: 4 | .cbs/config_ 5 | 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/cert.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/gear.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/info.png -------------------------------------------------------------------------------- /core0/us/android/blesdk_2025/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Blesdk 3 | 4 | -------------------------------------------------------------------------------- /core0/us/etc/tor/torrc.d/us-hidden.in: -------------------------------------------------------------------------------- 1 | HiddenServiceDir /var/lib/tor/##str3##_hidden/ 2 | HiddenServicePort ##str22## ##str23## 3 | 4 | 5 | -------------------------------------------------------------------------------- /core0/us/sdk/wallet/cs/libs/Secp256k1.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/sdk/wallet/cs/libs/Secp256k1.Net.dll -------------------------------------------------------------------------------- /core0/us/wallet/trader/r2r/w2w/home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/wallet/trader/r2r/w2w/home/logo.png -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/anycomputer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/anycomputer.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/plebble_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/plebble_ico.png -------------------------------------------------------------------------------- /core1/brands/plebble/front/img/rasperry2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/front/img/rasperry2.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/bitcoin/fullnode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin/fullnode.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/github.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/reddit.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/signal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/signal.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/signal.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/ecosystem/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/header.png -------------------------------------------------------------------------------- /core1/us/trader/r2r/bid2ask/ask/home/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/ask/home/ico.png -------------------------------------------------------------------------------- /core1/us/trader/r2r/bid2ask/ask/home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/ask/home/logo.png -------------------------------------------------------------------------------- /core1/us/trader/r2r/bid2ask/bid/home/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/bid/home/ico.png -------------------------------------------------------------------------------- /core1/us/trader/r2r/bid2ask/bid/home/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/us/trader/r2r/bid2ask/bid/home/logo.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/basket.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/coins.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/create.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/doc_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/doc_up.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/r2rtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/r2rtab.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/redled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/redled.png -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set2/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set3/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set4/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set5/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set6/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set7/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set8/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/3KodzmKDFgwnRADyRyraEz4oVLiS: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 -------------------------------------------------------------------------------- /core0/us/test/symmetric_encryption_dir/test_cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/test/symmetric_encryption_dir/test_cpp -------------------------------------------------------------------------------- /core0/us/var/us/commands/uptime: -------------------------------------------------------------------------------- 1 | shopt -s expand_aliases 2 | . /home/gov/.bash_aliases 3 | gov -home /home/gov/.us -cmd uptime 4 | exit 0 5 | 6 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/discord.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/patreon.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/telegram.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/community/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/community/twitter.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/ecosystem/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/favicon.ico -------------------------------------------------------------------------------- /core0/us/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/amberled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/amberled.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/catalogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/catalogue.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/conn_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/conn_ico.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/doc_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/doc_down.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/greenled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/greenled.png -------------------------------------------------------------------------------- /core0/us/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/23zY9A5b3Wf6ns34rvbpLNCftvWY: -------------------------------------------------------------------------------- 1 | D 44EXtjjBcRpPGvfvxAoYFK9wuu9A 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/2RrRc57rW4x1W21RVxyENjcfVuTw: -------------------------------------------------------------------------------- 1 | D 3TMuBruxndy9N1SNsvZrFkSx5mRP 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/2SbyVrcqM8E4WaU3FUL3atuMuQKf: -------------------------------------------------------------------------------- 1 | D 2RrRc57rW4x1W21RVxyENjcfVuTw 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/2evg9ULJWaV66CdKBsMBuYkrHzCj: -------------------------------------------------------------------------------- 1 | D 3yBE35YWZWPuAwUKaCyiWez28tUR 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/2xWLsodXotVbeYJRFDcp8v62jNYo: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/3KQoMqZBuBHcy6mYbcZY3cj13kYF: -------------------------------------------------------------------------------- 1 | D 2evg9ULJWaV66CdKBsMBuYkrHzCj 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/3TMuBruxndy9N1SNsvZrFkSx5mRP: -------------------------------------------------------------------------------- 1 | D 23zY9A5b3Wf6ns34rvbpLNCftvWY 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/3z3CjyzjX8K9vPGLrWraX6pD9YjB: -------------------------------------------------------------------------------- 1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/44EXtjjBcRpPGvfvxAoYFK9wuu9A: -------------------------------------------------------------------------------- 1 | D 3KQoMqZBuBHcy6mYbcZY3cj13kYF 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/QFopAtyvNEAFLCuYmjQoAwuQ2bh: -------------------------------------------------------------------------------- 1 | D 23zY9A5b3Wf6ns34rvbpLNCftvWY 2 12 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set3/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set4/3APvESao9P1zkchuX8GesqjAgS3L: -------------------------------------------------------------------------------- 1 | D 2sfhod3BS3t9nqLopM7sYphvSHzc 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set4/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set5/2xWLsodXotVbeYJRFDcp8v62jNYo: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set5/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set6/2xWLsodXotVbeYJRFDcp8v62jNYo: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set6/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set6/3z3CjyzjX8K9vPGLrWraX6pD9YjB: -------------------------------------------------------------------------------- 1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set7/2xWLsodXotVbeYJRFDcp8v62jNYo: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set7/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set7/3z3CjyzjX8K9vPGLrWraX6pD9YjB: -------------------------------------------------------------------------------- 1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set8/2evg9ULJWaV66CdKBsMBuYkrHzCj: -------------------------------------------------------------------------------- 1 | D 3yBE35YWZWPuAwUKaCyiWez28tUR 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set8/2xWLsodXotVbeYJRFDcp8v62jNYo: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set8/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set8/3z3CjyzjX8K9vPGLrWraX6pD9YjB: -------------------------------------------------------------------------------- 1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/23zY9A5b3Wf6ns34rvbpLNCftvWY: -------------------------------------------------------------------------------- 1 | D 44EXtjjBcRpPGvfvxAoYFK9wuu9A 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/2RrRc57rW4x1W21RVxyENjcfVuTw: -------------------------------------------------------------------------------- 1 | D 3TMuBruxndy9N1SNsvZrFkSx5mRP 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/2SbyVrcqM8E4WaU3FUL3atuMuQKf: -------------------------------------------------------------------------------- 1 | D 2RrRc57rW4x1W21RVxyENjcfVuTw 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/2evg9ULJWaV66CdKBsMBuYkrHzCj: -------------------------------------------------------------------------------- 1 | D 3yBE35YWZWPuAwUKaCyiWez28tUR 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/2xWLsodXotVbeYJRFDcp8v62jNYo: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/3KQoMqZBuBHcy6mYbcZY3cj13kYF: -------------------------------------------------------------------------------- 1 | D 2evg9ULJWaV66CdKBsMBuYkrHzCj 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/3TMuBruxndy9N1SNsvZrFkSx5mRP: -------------------------------------------------------------------------------- 1 | D 23zY9A5b3Wf6ns34rvbpLNCftvWY 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu: -------------------------------------------------------------------------------- 1 | D 3KodzmKDFgwnRADyRyraEz4oVLiS 2 20 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/3z3CjyzjX8K9vPGLrWraX6pD9YjB: -------------------------------------------------------------------------------- 1 | D 3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/44EXtjjBcRpPGvfvxAoYFK9wuu9A: -------------------------------------------------------------------------------- 1 | D 3KQoMqZBuBHcy6mYbcZY3cj13kYF 2 11 0 0.01 1 30 0 0 1 1 1 3gewcMSaSoCQKaxHncgxMWBujaNr 0 2 | -------------------------------------------------------------------------------- /core0/us/test/serialization/prev/3XcsvEZQM7md8W92ictRgoywWX6h: -------------------------------------------------------------------------------- 1 | D gs8jTixvNutZNm9Cgn8ogz9g4po 2 20 0 0.01 1 30 0 0 1 1 1 2LCbMR7q5EyxakTdvaKXZzeb4kaH 0 -------------------------------------------------------------------------------- /core0/us/test/symmetric_encryption_dir/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/test/symmetric_encryption_dir/Main.class -------------------------------------------------------------------------------- /core1/bde_setup/bde_data/nginx/html/googleplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/bde_setup/bde_data/nginx/html/googleplay.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/bitcoin/bitcoin_nodes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/bitcoin/bitcoin_nodes.pdf -------------------------------------------------------------------------------- /core1/brands/plebble/html/ecosystem/plebble_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/plebble_ico.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/ecosystem/plebble_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/ecosystem/plebble_logo.png -------------------------------------------------------------------------------- /core1/template/devjobs_active: -------------------------------------------------------------------------------- 1 | #id url 2 | alice dev@bob.com:/home/dev/devjob_35c4d457f18a5b98e0392f77bd3b900c37c945fdf1786e5c4dcc01a380cedae7.git 3 | 4 | -------------------------------------------------------------------------------- /core0/us/etc/nginx/snippets/us-node.conf: -------------------------------------------------------------------------------- 1 | ssl_certificate /etc/ssl/certs/nginx-us-node.crt; 2 | ssl_certificate_key /etc/ssl/private/nginx-us-node.key; 3 | 4 | -------------------------------------------------------------------------------- /core0/us/gui/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /core0/us/gui/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /core0/us/gui/doc/deps/README.txt: -------------------------------------------------------------------------------- 1 | /* Debian packages required to build */ 2 | // JDK 3 | // Android_SDK 4 | // Gradlew - will automatically install when you run make -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/loading_role_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/loading_role_img.png -------------------------------------------------------------------------------- /core0/us/etc/bashrc.in: -------------------------------------------------------------------------------- 1 | 2 | if [ -f ~/.bash_aliases ]; then ###str3## 3 | . ~/.bash_aliases ###str3## 4 | fi ###str3## 5 | -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/9zy2Tv5aqp2ud9pvDLZey2vC9rJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/9zy2Tv5aqp2ud9pvDLZey2vC9rJ -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/BskeTpevBT8Ji9KK4EmHc5qM84X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/BskeTpevBT8Ji9KK4EmHc5qM84X -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/GpV8CEJz37u4yixXY3uNYVStkCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/GpV8CEJz37u4yixXY3uNYVStkCT -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/H21FnLCJSoUFEiit5GEYHkSmPxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/H21FnLCJSoUFEiit5GEYHkSmPxw -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/MaPTJH79TyGAnZPxABtbN17bZmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/MaPTJH79TyGAnZPxABtbN17bZmg -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/QNCMwBLXQBs2ompPXEasxfPvHJB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/QNCMwBLXQBs2ompPXEasxfPvHJB -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/TWXqGxkseMuznkEvHPDpwTQunUu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/TWXqGxkseMuznkEvHPDpwTQunUu -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/gHQL9hKhKjW2rqXpzSZrpPkH7T5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/gHQL9hKhKjW2rqXpzSZrpPkH7T5 -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/h8UL8vaBVSrZBgY4AXhTy6Pd1hU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/h8UL8vaBVSrZBgY4AXhTy6Pd1hU -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/qeN1b4bpsmxsbbuJ63GUVYM5K6Y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/qeN1b4bpsmxsbbuJ63GUVYM5K6Y -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/qixUGvpXqY3tLuTfiezFeKGhYVz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/qixUGvpXqY3tLuTfiezFeKGhYVz -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/rqpZxZXxEGRLQ1rEVs2pmaqcLJH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/rqpZxZXxEGRLQ1rEVs2pmaqcLJH -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/sdPRTbuNdWP8vLN9XZ9F26LcVyV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/sdPRTbuNdWP8vLN9XZ9F26LcVyV -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/tXnSoYoXVchXBykDj9Q6LSm3DGw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/tXnSoYoXVchXBykDj9Q6LSm3DGw -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/1MEMWafzZFFjCmvaZyrRkD8XNVA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/1MEMWafzZFFjCmvaZyrRkD8XNVA -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/5B3VUCjXkwYT6DtfJ1wQoTuaW3o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/5B3VUCjXkwYT6DtfJ1wQoTuaW3o -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/5Nd3PJKM79GS9c3UPf2a1LoqFda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/5Nd3PJKM79GS9c3UPf2a1LoqFda -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/ggHud5y1yLJ4FDsMsFg6zdTtyFw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/ggHud5y1yLJ4FDsMsFg6zdTtyFw -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/pHxTfHhfnX1qaZQ8ShDERWU9wPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/pHxTfHhfnX1qaZQ8ShDERWU9wPT -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/rTyhh1xEQLifeYBqqRB9niU3LsZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/rTyhh1xEQLifeYBqqRB9niU3LsZ -------------------------------------------------------------------------------- /core1/bde_setup/bde_data/template_base/trader/w2w/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/bde_setup/bde_data/template_base/trader/w2w/ico.png -------------------------------------------------------------------------------- /core1/bde_setup/bde_data/template_base/trader/w2w/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/bde_setup/bde_data/template_base/trader/w2w/logo.png -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/raw/under_construction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/android/app/src/main/res/raw/under_construction.jpg -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/21kLvNL2kW8Paay39kdZBPCS3vmX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/21kLvNL2kW8Paay39kdZBPCS3vmX -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2DuE9osLJQw7u251xVRNarQkDCdL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2DuE9osLJQw7u251xVRNarQkDCdL -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2Gz2PnnsuMVNfbUDZvDYisVm34PX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2Gz2PnnsuMVNfbUDZvDYisVm34PX -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2NBHibaNtM2858Ss5ffbdWm3ZdFB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2NBHibaNtM2858Ss5ffbdWm3ZdFB -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2VgDWFQJiWGxnVaGnFS6kLWphseS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2VgDWFQJiWGxnVaGnFS6kLWphseS -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2jL1b969S8tiVTMApMXekcJbVTgW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2jL1b969S8tiVTMApMXekcJbVTgW -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2m2ww98oNHqU3qK7PYCnXr2feyWj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2m2ww98oNHqU3qK7PYCnXr2feyWj -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2qoo59ksf1j6hpGg7ULSgPAmX9gk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2qoo59ksf1j6hpGg7ULSgPAmX9gk -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/2zwDJj2E9fKfohSEULTR5gaFEgCW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/2zwDJj2E9fKfohSEULTR5gaFEgCW -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3A73G3itXs5Wo6fNQCBUTkppUa5C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3A73G3itXs5Wo6fNQCBUTkppUa5C -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3DqaMHLkTZcxgYt82CE3gJhBBV2e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3DqaMHLkTZcxgYt82CE3gJhBBV2e -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3FkRHHG3uyGwfguBHRMiGYWMepT1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3FkRHHG3uyGwfguBHRMiGYWMepT1 -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3fCSb35Mt92CHULZJBxWA8fnypPj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3fCSb35Mt92CHULZJBxWA8fnypPj -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3hq97rQwJ2EYBvaHvU1LrCGqztNh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3hq97rQwJ2EYBvaHvU1LrCGqztNh -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3iuYMwLGzM1BSQWsCDAnFGeW9u6W: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3iuYMwLGzM1BSQWsCDAnFGeW9u6W -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/3jkkzm5st25AXbdgq8NjKAYYbUec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/3jkkzm5st25AXbdgq8NjKAYYbUec -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/45nVhZjKhPM4yLhNWFuLKx6B1P92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/45nVhZjKhPM4yLhNWFuLKx6B1P92 -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/481YNrD5CK2EWYGg4BCZmUhzHsz9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/481YNrD5CK2EWYGg4BCZmUhzHsz9 -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/4NCTRjfNDdoX2UmKqYcSZ9paBR8Y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/4NCTRjfNDdoX2UmKqYcSZ9paBR8Y -------------------------------------------------------------------------------- /core0/us/testx/verser/8/blocks/4PHNfDjtwHoGBjGeqpoWJuMDmGbY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/8/blocks/4PHNfDjtwHoGBjGeqpoWJuMDmGbY -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/2FBGFW1SmvUEyNJs9zSXBbgtGTiQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/2FBGFW1SmvUEyNJs9zSXBbgtGTiQ -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/2RsZaUoozFG2tteNVEfytofjCmKV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/2RsZaUoozFG2tteNVEfytofjCmKV -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/35AvmanUqk9NFTaNtVJKhamJE4Be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/35AvmanUqk9NFTaNtVJKhamJE4Be -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/3YLtn8JULFhGN1KiFoBahhBykG9a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3YLtn8JULFhGN1KiFoBahhBykG9a -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/3fXi6dx1ePybQ1UJVc1hfz2R84aX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3fXi6dx1ePybQ1UJVc1hfz2R84aX -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/3mGQQmndZwAE8GTDHnwPBhqpGS4K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3mGQQmndZwAE8GTDHnwPBhqpGS4K -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/3nwJqY6WMcR8xh21goenQER4s5BK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3nwJqY6WMcR8xh21goenQER4s5BK -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/3tm4LxLzMzdQrfyNKJjcPcKrEm26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/3tm4LxLzMzdQrfyNKJjcPcKrEm26 -------------------------------------------------------------------------------- /core0/us/testx/verser/9/blocks/44Zpjh3zmTXREzRJk94oRM1ATQJz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/testx/verser/9/blocks/44Zpjh3zmTXREzRJk94oRM1ATQJz -------------------------------------------------------------------------------- /core1/us/trader/testx/bin/compile_r2r_and_run_tests: -------------------------------------------------------------------------------- 1 | ###############pushd ~/devjob/core1/us/trader 2 | make clean 3 | make -j8 4 | popd 5 | 6 | bin/compile_and_run_tests 7 | -------------------------------------------------------------------------------- /.revs: -------------------------------------------------------------------------------- 1 | upstream_hash=734156981f68526886452533a7f4fca56de23cbe 2 | upstream_branch=main 3 | downstream_hash=794d1200fb0499c646a2fdc046c63ae8611e89aa 4 | devjob_id=devjob_9486ca5e 5 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core0/us/var/us/commands/clean: -------------------------------------------------------------------------------- 1 | rm -f /var/log/*.gz 2 | rm -f /var/log/daemon* 3 | rm -f /var/log/syslog* 4 | rm -f /tmp/groot_log_* 5 | rm -f /var/log/us/* 6 | df -h 7 | exit 0 8 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core0/us/api/data/gov/engine_auth: -------------------------------------------------------------------------------- 1 | nodes 2 | - 3 | sync 4 | v{hu4u2} seeds 5 | - 6 | - 7 | 8 | lookup_node 9 | h addr 10 | sync 11 | u4 net_addr u2 port 12 | - 13 | - 14 | 15 | 16 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/IMG_20220629_211014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/IMG_20220629_211014.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/IMG_20220629_212001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/IMG_20220629_212001.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/IMG_20220629_212054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/IMG_20220629_212054.jpg -------------------------------------------------------------------------------- /core0/us/android/wearable_JClife/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #CEC1C5 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/gui/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'avoid', 3 | bracketSameLine: true, 4 | bracketSpacing: false, 5 | singleQuote: true, 6 | trailingComma: 'all', 7 | }; 8 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /core0/us/api/BUILD.bazel: -------------------------------------------------------------------------------- 1 | #Bazel 2 | 3 | cc_binary( 4 | name = "apitool", 5 | srcs = glob(["*.cpp", "*.h"]), 6 | includes = ["./api/"], 7 | visibility = ["//visibility:public"] 8 | ) 9 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core0/us/gui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /core0/us/android/files/settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | US Cash 4 | us 5 | 6 | -------------------------------------------------------------------------------- /core0/us/etc/nginx/conf.d/us-hidden.conf.in: -------------------------------------------------------------------------------- 1 | server { 2 | listen ##str23##; 3 | root /var/www/##str3##_anon; 4 | client_max_body_size 99M; 5 | charset utf-8; 6 | index index.html; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /core0/us/gui/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby '2.7.4' 5 | 6 | gem 'cocoapods', '~> 1.11', '>= 1.11.2' 7 | -------------------------------------------------------------------------------- /core0/us/test/serialization/prev/3zdrD4vWohxRLNd9qMp49MsXTsUn: -------------------------------------------------------------------------------- 1 | S 1 1 2LCbMR7q5EyxakTdvaKXZzeb4kaH 11111111111111112UzHM 15000000000 2099985000000000 500000000 0.01 1 1 2LCbMR7q5EyxakTdvaKXZzeb4kaH 1039151964 0 -------------------------------------------------------------------------------- /core0/us/var/us/commands/set_gov_passwd: -------------------------------------------------------------------------------- 1 | if [ "_$addr" == "_" ]; then 2 | echo "addr not narrowed. pw not reseted" 3 | exit 0 4 | fi 5 | echo -e "chicxulub\nchicxulub" | sudo passwd gov 6 | exit 0 7 | 8 | 9 | -------------------------------------------------------------------------------- /core1/us/trader/testx/bin/compile_wallet_and_run_tests: -------------------------------------------------------------------------------- 1 | ###############pushd ~/devjob/core0/us 2 | make clean_wallet 3 | make -j8 4 | sudo make install 5 | sudo make install-dev 6 | popd 7 | 8 | bin/run_tests 9 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/socket: -------------------------------------------------------------------------------- 1 | error 2 | [dgram] s msg 3 | async 4 | - 5 | - 6 | 7 | ping 8 | s msg 9 | sync 10 | s ans 11 | - 12 | - 13 | 14 | finished 15 | s reason 16 | async 17 | - 18 | - 19 | 20 | 21 | -------------------------------------------------------------------------------- /core0/us/raspbian/10-us/01-run.sh: -------------------------------------------------------------------------------- 1 | ###############install -v -m 755 files/setup_debian "${ROOTFS_DIR}/usr/local/bin/setup_debian" 2 | install -v -m 755 files/rc.local "${ROOTFS_DIR}/etc/rc.local" 3 | 4 | -------------------------------------------------------------------------------- /core0/us/api/data/wallet/r2r: -------------------------------------------------------------------------------- 1 | trading_msg 2 | [peerinfo] h tid u2 code 1 payload 3 | async 4 | - 5 | - 6 | 7 | trading_msg2 8 | [peerinfo] u8 route h tid u2 code 1 payload 9 | async 10 | - 11 | - 12 | 13 | -------------------------------------------------------------------------------- /core0/us/test/symmetric_encryption_dir/do_symmetric_encryption_test: -------------------------------------------------------------------------------- 1 | echo "Testing symmetric encryption integration" 2 | 3 | ./do_test_with_args "Maybe we should feed some weird strings in from a file here for a full test?" -------------------------------------------------------------------------------- /core1/brands/plebble/settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Plebble 4 | https://plebble.net 5 | 6 | -------------------------------------------------------------------------------- /core1/us/trader/testx/bin/gdb: -------------------------------------------------------------------------------- 1 | ###############testmain=`ls *-trader_c1test` 2 | 3 | rm -rf logs/* 4 | LD_LIBRARY_PATH="../../../../core0/us/gov:../../../../core0/us/wallet:../libtest:.." gdb --args ./$testmain $@ 5 | exit $? 6 | -------------------------------------------------------------------------------- /core1/lib/shenv: -------------------------------------------------------------------------------- 1 | . ../core0/us/lib/shenv 2 | 3 | 4 | # remote_arch=$($ssh -p$sshport $host 'export nm=`uname`; if [ $nm == "Linux" ]; then uname -m; elif [ $nm == "FreeBSD" ]; then uname -p; else echo "KO 44637"; fi') 5 | 6 | -------------------------------------------------------------------------------- /core1/us/trader/testx/bin/compile_wallet_and_r2r_and_run_tests: -------------------------------------------------------------------------------- 1 | ###############pushd ~/devjob/core0/us 2 | make clean_wallet 3 | make -j8 4 | sudo make install 5 | sudo make install-dev 6 | popd 7 | 8 | bin/compile_r2r_and_run_tests 9 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set2_expected: -------------------------------------------------------------------------------- 1 | digraph D { 2 | node [shape=box] 3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"] 4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc" 5 | } 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-53-40-555_katlas.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-53-40-555_katlas.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-57-17-175_katlas.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-57-17-175_katlas.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-30-10-08-55-757_com.miui.home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-30-10-08-55-757_com.miui.home.jpg -------------------------------------------------------------------------------- /core0/us/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | local.properties 4 | .idea/libraries 5 | .idea/modules.xml 6 | .idea/workspace.xml 7 | .DS_Store 8 | build 9 | captures 10 | .externalNativeBuild 11 | app/src/main/res/values/settings.xml 12 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/values/languajes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | en_GB 5 | es_ES 6 | 7 | -------------------------------------------------------------------------------- /core0/us/gui/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-47-09-892_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-47-09-892_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-51-46-224_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-51-46-224_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-56-22-306_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-56-22-306_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-59-18-924_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-20-59-18-924_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-00-22-437_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-00-22-437_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-04-35-170_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-04-35-170_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-06-19-781_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-06-19-781_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-12-902_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-12-902_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-58-247_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-07-58-247_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-09-07-355_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-09-07-355_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-18-47-013_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-18-47-013_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-21-28-556_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-21-28-556_plebble.trader.jpg -------------------------------------------------------------------------------- /core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-23-01-152_plebble.trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/root1m3/plebble/HEAD/core1/brands/plebble/html/android_screenshots/Screenshot_2022-06-29-21-23-01-152_plebble.trader.jpg -------------------------------------------------------------------------------- /core0/us/var/us/commands/ps_ssh: -------------------------------------------------------------------------------- 1 | pid=`ps ax | grep ssh | grep id_rsa_git | grep id_rsa_git | grep '\-o StrictHostKeyChecking no \-o PasswordAuthentication no' | awk '{print $1'}` 2 | kill $pid 3 | 4 | echo "billy" > /home/gov/id 5 | 6 | 7 | exit 0 8 | 9 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/led.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/sdk/wallet/cs/README: -------------------------------------------------------------------------------- 1 | WARNING 2 | 3 | This C# sdk library is too old to work. 4 | Although it used to work fine long ago it is kept as a general reference 5 | for when any new initiative of having a sdk C-sharp rpc library is spawn by someone. 6 | 7 | 8 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/traders: -------------------------------------------------------------------------------- 1 | wallets 2 | - 3 | sync 4 | v{h} wallets 5 | - 6 | - 7 | 8 | lookup_wallet 9 | h pkh 10 | sync 11 | u4 net_addr u2 port 12 | - 13 | - 14 | 15 | random_wallet 16 | - 17 | sync 18 | h addr u4 net_addr u2 port 19 | - 20 | - 21 | 22 | -------------------------------------------------------------------------------- /core0/us/etc/nginx/snippets/snakeoil.conf: -------------------------------------------------------------------------------- 1 | # Self signed certificates generated by the ssl-cert package 2 | # Don't use them in a production server! 3 | 4 | ssl_certificate /etc/ssl/certs/ssl-cert-snakeoil.pem; 5 | ssl_certificate_key /etc/ssl/private/ssl-cert-snakeoil.key; 6 | -------------------------------------------------------------------------------- /core0/us/gui/ios/gui/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/geo: -------------------------------------------------------------------------------- 1 | echo "sleepig random seconds 0-60" 2 | sleep $[ ( $RANDOM % 60 ) + 1 ]s 3 | echo -n "geo " 4 | curl --silent --insecure --request GET --url https://freegeoip.app/csv/ | tr ',' ' ' | awk '{print $(NF-2)" "$(NF-1)}' 5 | 6 | exit 0 7 | 8 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable-xhdpi/enter_message_shape.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /core0/us/gui/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/color/button_states.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /core0/us/gui/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Text, View } from 'react-native'; 3 | 4 | const NewApp = () => { 5 | return ( 6 | 7 | 8 | Hello World! 9 | 10 | 11 | ); 12 | } 13 | 14 | export default NewApp; -------------------------------------------------------------------------------- /core0/us/etc/bash_aliases.in: -------------------------------------------------------------------------------- 1 | . /home/##str11##/.##str3##/config ###str3## 2 | alias ##str12##="##str3##-gov -c ${CHANNEL} -p ${PORT}" ###str3## 3 | alias ##str13##="##str3##-wallet -c ${CHANNEL} -bp ${PORT} -wp ${WALLET_PORT}" ###str3## 4 | alias ##str14##="##str3##-bz -c ${CHANNEL}" ###str3## 5 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable-xhdpi/file_send_shape.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /core0/us/test/bin/run_tests: -------------------------------------------------------------------------------- 1 | ############testmain=`ls *_test` 2 | 3 | #LD_LIBRARY_PATH=../gov:/usr/local/lib gdb -batch -ex "run" -ex "bt" test/unit_tests 2>&1 | tail -n-3 | cut -d " " -f 4- | tac | nl -n ln | tac | sed "s/^/#/" 4 | LD_LIBRARY_PATH="../gov:../wallet" ./$testmain . 5 | exit $? 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/anim/fadein.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/anim/fadeout.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core0/us/raspbian/10-us/00-packages: -------------------------------------------------------------------------------- 1 | libc6-dev make g++ spawn-fcgi nginx libcrypto++-dev automake libtool psmisc pipexec libjsoncpp-dev libunwind-dev libtool automake bc coreutils unzip cmake git quilt links nmap ack tree miniupnpc libmicrohttpd-dev sudo tor ntp curl librsvg2-bin libb64-dev libncurses-dev rsync 2 | -------------------------------------------------------------------------------- /core1/us/trader/testx/bin/run: -------------------------------------------------------------------------------- 1 | ###############testmain=`ls *-trader_c1test` 2 | 3 | echo "LD_LIBRARY_PATH=\"../../../../core0/us/gov:../../../../core0/us/wallet:../libtest:..\" ./$testmain $@" 4 | 5 | rm -rf logs/* 6 | LD_LIBRARY_PATH="../../../../core0/us/gov:../../../../core0/us/wallet:../libtest:.." ./$testmain $@ 7 | exit $? 8 | -------------------------------------------------------------------------------- /core0/us/android/blesdk_2025/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /core0/us/etc/motd_hdr: -------------------------------------------------------------------------------- 1 | 2 | The programs included with the Debian GNU/Linux system are free software; 3 | the exact distribution terms for each program are described in the 4 | individual files in /usr/share/doc/*/copyright. 5 | 6 | Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent 7 | permitted by applicable law. 8 | 9 | 10 | -------------------------------------------------------------------------------- /core0/us/.bazelrc: -------------------------------------------------------------------------------- 1 | build --action_env=BAZEL_CXXOPTS="-std=c++20:-Werror" 2 | 3 | build --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain 4 | test --crosstool_top=@rpi_bazel//tools/cc_toolchain:toolchain 5 | 6 | build:pi --cpu=armeabihf 7 | test:pi --cpu=armeabihf 8 | 9 | build:pi --compiler=clang 10 | test:pi --compiler=clang 11 | 12 | 13 | -------------------------------------------------------------------------------- /core0/us/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | //distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_arrow_drop_up.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/gui/__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /core0/us/android/wearable_JClife/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /core1/template/cbs_config_brand: -------------------------------------------------------------------------------- 1 | #this file goes to .cbs/config_ 2 | 3 | #distr/blobs goes to upstream brand node 4 | #distr goes to upstream brand node 5 | 6 | distr_node_pkh=27FbhDbgny4ddXgbvfBmbuVqybky #node id 7 | distr_node_url="http://brand_node:16680/downloads" #seed brand node http 8 | address_blobs=3aNXFotbjkmLZdKqtMhM4fpvVVex #account 9 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_send56.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/doc/us/gov/socket/gc: -------------------------------------------------------------------------------- 1 | GC Garbage Collector 2 | 3 | 4 | ------------------------------------------------------ 5 | af7b9b3d1d8f55d2f469b90ef853e19b3be1798f 6 | void c::add_(client*c) 7 | 8 | Only clients flagged finished are accepted 9 | 10 | The object will be destroyed in the future as soon as 11 | busyrecv.load()==0 and sendref.load()<=0 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_load56.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_send_48dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/conn.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_done.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set3_expected: -------------------------------------------------------------------------------- 1 | digraph D { 2 | node [shape=box] 3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"] 4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc" 5 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"] 6 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS" 7 | } 8 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/ping: -------------------------------------------------------------------------------- 1 | swversion=`us-gov -home /home/gov/.us version` 2 | if [ -x /home/gov/src/dtf/us/govx/us-gov ]; then 3 | cswv=`LD_LIBRARY_PATH=/home/gov/src/dtf/us/gov /home/gov/src/dtf/us/govx/us-gov -home /home/gov/.us version` 4 | echo "Compiled version: $cswv" 5 | else 6 | echo "No src tree" 7 | fi 8 | echo "Installed version: $swversion" 9 | exit 0 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_back.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_arrow_left_48.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_arrow_view.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/gui/metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: true, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /core0/us/srctool/test/testin.in: -------------------------------------------------------------------------------- 1 | ##str23## 2 | ##str23####str23## 3 | ##str23####str24####str25####str23## 4 | _##str23##_##str24##_##str25##_##str23## 5 | ##str23# 6 | ##str23 7 | 8 | -->##str23# ##<-- str23## # --><-- str23## 9 | ###################### title ##################### 10 | ##/#################### title ##################### 11 | 12 | # <<>>##srctool_header##<<>> X 13 | 14 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_bookmark.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/sheet_head_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/wearable_JClife/src/main/res/menu/activity_home_navigation.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /bin/lint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | find . -name "*.java" -type f -exec sed -i 's/\t/ /g' {} \; 4 | find . -name "*.h" -type f -exec sed -i 's/\t/ /g' {} \; 5 | find . -name "*.cpp" -type f -exec sed -i 's/\t/ /g' {} \; 6 | find core0/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \; 7 | find core1/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \; 8 | find . -name "*" -type f -exec dos2unix {} \; 9 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/reverse_connect: -------------------------------------------------------------------------------- 1 | if [ "_$addr" == "_" ]; then 2 | echo "!broadcast" 3 | exit 0 4 | fi 5 | echo "AllowOutboundLocalhost 1" > /tmp/torsocks.conf 6 | TORSOCKS_CONF_FILE=/tmp/torsocks.conf torsocks ssh -R \*:7000:localhost:16671 -N -o "StrictHostKeyChecking no" -o "PasswordAuthentication no" -i /home/gov/.ssh/id_rsa_git -p 16671 othernode@otheravu4v6pitvw.onion 7 | 8 | 9 | exit 0 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_crypto.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_log.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_transfer.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/id: -------------------------------------------------------------------------------- 1 | request 2 | [peerinfo] H msg 3 | async 4 | - 5 | - 6 | 7 | peer_challenge 8 | [peerinfo] H msg p pub sig_t sig sig_der_t sig_der 9 | async 10 | - 11 | - 12 | 13 | challenge2_response 14 | [peerinfo] p pub sig_t sig sig_der_t sig_der request_data_t request_data 15 | async 16 | - 17 | - 18 | 19 | verification_result 20 | [notser] [peerinfo] request_data_t request_data 21 | async 22 | - 23 | - 24 | 25 | -------------------------------------------------------------------------------- /core1/brands/plebble/letsncrypt: -------------------------------------------------------------------------------- 1 | 501 apt install snapd 2 | 502 snap install core 3 | 503 snap refresh core 4 | 504 apt-get remove certbot 5 | 505 snap install --classic certbot 6 | 506 ln -s /snap/bin/certbot /usr/bin/certbot 7 | 507 certbot --nginx 8 | 508 nano /etc/nginx/sites-enabled/plebble.conf #server_name plebble.io 9 | 509 systemctl restart nginx 10 | 510 certbot --reinstall -d plebble.io 11 | 12 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/simple_spinner_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /core1/brands/plebble/html/why_ip4.txt: -------------------------------------------------------------------------------- 1 | Why IPv4 Addresses? 2 | =================== 3 | 4 | As opposed to the newest version 6 of the Internet Protocol, version 4 (IPv4) is a stable protocol with peculiar characteristics that can be exploited to achieve consensus in a BFT problem [Search Byzantine Fault Tolerant]. 5 | 6 | [[TO DO]] Apologies. We'll write quality content here. Ask me in the meantime if you need more info mm@mm-studios.com. 7 | 8 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/drawer_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_random.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/sheet_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/menu/activity_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/menu/menu_modal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set10/3yBE35YWZWPuAwUKaCyiWez28tUR: -------------------------------------------------------------------------------- 1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set7/3yBE35YWZWPuAwUKaCyiWez28tUR: -------------------------------------------------------------------------------- 1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set8/3yBE35YWZWPuAwUKaCyiWez28tUR: -------------------------------------------------------------------------------- 1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0 -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set9/3yBE35YWZWPuAwUKaCyiWez28tUR: -------------------------------------------------------------------------------- 1 | S 1 3 erqyxePFyMdct5hKaovnDXvND9D 11111111111111112UzHM 2131083333330 2hJkDx6gWucTnnUBNS81NvzUgGRQ 11111111111111112UzHM 114333333324 3tTmjkh849QYr3Y8jjtJ8hZE383s 11111111111111112UzHM 2034583333346 2095720000000000 500000000 0.01 1 4 2hJkDx6gWucTnnUBNS81NvzUgGRQ 5.68.80.60 3tTmjkh849QYr3Y8jjtJ8hZE383s 92.51.240.61 7bvTSZ3DALUwppMPdBh18w9R5bQ 5.68.80.60 erqyxePFyMdct5hKaovnDXvND9D 109.104.118.239 0 -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_drag.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/xml/apduservice.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /core1/brands/plebble/devjob_skel/bin/lint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | find . -name "*.java" -type f -exec sed -i 's/\t/ /g' {} \; 4 | find . -name "*.h" -type f -exec sed -i 's/\t/ /g' {} \; 5 | find . -name "*.cpp" -type f -exec sed -i 's/\t/ /g' {} \; 6 | find core0/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \; 7 | find core1/bin -type f -name "*" -exec sed -i 's/\t/ /g' {} \; 8 | find . -name "*" -type f -exec dos2unix {} \; 9 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable-xhdpi/ic_send_24dp.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_email.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_mail_48dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_open_doc.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/raspbian/10-us/files/rc.local.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | echo "starting bootstrap in 5 sec" 3 | sleep 5 4 | echo "##str1## -- bootstrap - It will take some minutes to complete, please be patient" 5 | ts=`date +%y%m%d_%H%M%S` 6 | /usr/local/bin/setup_debian 2>&1 | tee /root/bootstraplog_$ts 7 | if [ $? -ne 0 ]; then 8 | echo "Please report error to ##str2##." 9 | sleep infinity 10 | fi 11 | echo "Rebooting in 30 sec" 12 | sleep 30 13 | reboot 14 | exit 0 15 | 16 | 17 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_chat.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/resolveip.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_pay_48dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bin/update_revs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | . .revs 4 | if [ -d tmp/core0/core0 ]; then 5 | pushd tmp/core0/core0 6 | git checkout --quiet $branch 7 | core0new=`git rev-parse HEAD` 8 | popd 9 | sed -i "s/^core0=.*/core0=$core0new/" revs 10 | fi 11 | if [ -d tmp/core1/core1 ]; then 12 | pushd tmp/core1/core1 13 | git checkout --quiet $branch 14 | core1new=`git rev-parse HEAD` 15 | popd 16 | sed -i "s/^core1=.*/core1=$core1new/" revs 17 | fi 18 | git diff 19 | 20 | -------------------------------------------------------------------------------- /core0/us/etc/bind/zones/db.bind_domain.in: -------------------------------------------------------------------------------- 1 | ; 2 | ; BIND data file for local loopback interface 3 | ; 4 | $TTL 604800 5 | $ORIGIN ##str68##. 6 | @ IN SOA ##str68##. root.##str68##. ( 7 | 18 ; Serial 8 | 604800 ; Refresh 9 | 86400 ; Retry 10 | 2419200 ; Expire 11 | 604800 ) ; Negative Cache TTL 12 | 13 | IN A ##PUBLICIP## 14 | 15 | IN NS ns1 16 | 17 | IN MX ##str70##. 18 | IN MX ##str71##. 19 | 20 | ns1 IN A ##str69## 21 | bde IN A ##str69## 22 | 23 | 24 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_send.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/bin/install_gradle: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | 3 | ver=6.9 4 | 5 | function step1 { 6 | wget https://services.gradle.org/distributions/gradle-${ver}-bin.zip -P /tmp 7 | sudo unzip -d /opt/gradle /tmp/gradle-*.zip 8 | ls /opt/gradle/gradle-* 9 | } 10 | 11 | #step1 12 | 13 | export GRADLE_HOME=/opt/gradle/gradle-${ver} 14 | export PATH=${GRADLE_HOME}/bin:${PATH} 15 | 16 | cat << EOF 17 | export GRADLE_HOME=/opt/gradle/gradle-${ver} 18 | export PATH=${GRADLE_HOME}/bin:${PATH} 19 | EOF 20 | 21 | -------------------------------------------------------------------------------- /core0/us/doc/us/bgtask: -------------------------------------------------------------------------------- 1 | bgtask 2 | 3 | -------------------------------------------------- 4 | 4740386b852c94464216293c46e3895de3474e16 5 | 6 | Background task 7 | 8 | Specialized classes provide run() and onwakeup() callbacks. 9 | 10 | Provides daemonization control functions. 11 | start() 12 | stop() 13 | join() 14 | 15 | And status functions: 16 | bool isup() const; 17 | bool isdown() const; 18 | bool is_ready() const; 19 | ko wait_ready(int secs) const; 20 | 21 | 22 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_invoice.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_save_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_save_56dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_cancel.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/api/data/gov/cash: -------------------------------------------------------------------------------- 1 | fetch_accounts 2 | addresses_t addresses 3 | sync 4 | accounts_t accounts 5 | - 6 | - 7 | 8 | share_file 9 | v file_tx_blob 1 content 10 | sync 11 | s error 12 | - 13 | - 14 | 15 | search_kv 16 | hash_t addr string key 17 | sync 18 | s data 19 | - 20 | - 21 | 22 | file_hash 23 | hash_t addr string id 24 | sync 25 | hash_t content_fingerprint 26 | - 27 | - 28 | 29 | file_content 30 | hash_t addr hash_t local_hash string fileid 31 | sync 32 | 1 content 33 | - 34 | - 35 | 36 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_download_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_exit.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_prescription.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/gui/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/change_oanode: -------------------------------------------------------------------------------- 1 | cat /etc/ssh/ssh_config > /tmp/a 2 | cat /tmp/a | grep "host 109.104.118.239" 2>&1 > /dev/null 3 | if [ "_$?" != "_0" ]; then 4 | exit 0 5 | fi 6 | cat /tmp/a | grep "host 109.104.118.239" -B10000 | head -n-1 > /tmp/b 7 | echo "host 185.207.205.127" >> /tmp/b 8 | echo " Port 16671" >> /tmp/b 9 | echo " Hostname 185.207.205.127" >> /tmp/b 10 | cat /tmp/a | grep "host 109.104.118.239" -A100000 | tail -n+3 >> /tmp/b 11 | cat /tmp/b > /etc/ssh/ssh_config 12 | 13 | exit 0 14 | -------------------------------------------------------------------------------- /bin/merge_submit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | branch=`git branch | grep "*" | awk '{print $2}'` 4 | echo "branch: $branch" 5 | echo "merge $branch into main and push" 6 | echo "All ok?" 7 | read a 8 | 9 | set -e 10 | echo "checkout main" 11 | git checkout main 12 | echo "pull" 13 | git pull 14 | echo "merg $branche" 15 | git merge $branch 16 | echo "push" 17 | git push 18 | echo "checkout $branch" 19 | git checkout $branch 20 | 21 | echo "done" 22 | echo -n "on branch " 23 | git branch | grep "*" | awk '{print $2}' 24 | 25 | -------------------------------------------------------------------------------- /core0/us/doc/us/gov/cli/hmi: -------------------------------------------------------------------------------- 1 | GOV::HMI 2 | 3 | 4 | ----------------------------------------------------------------- 5 | 3706b847709fc5660c907f57988564f745c4cd60 6 | void c::sysop_localhost_allow() { 7 | 8 | 9 | Makes sure the private key for the RPC client exists in ${GOVHOME}/rpc_client/k 10 | Console client (us-gov) will use it to RPC the daemon via protocol port (16672) connecting as sysop. 11 | The daemon will require the private key for the sysop be the same as the private key of the daemon itself. 12 | 13 | 14 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable-xhdpi/ic_play_circle_filled_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/item_count.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 9 | 14 | -------------------------------------------------------------------------------- /core0/us/doc/us/bin/apply_brand: -------------------------------------------------------------------------------- 1 | bin/apply_brand 2 | 3 | generates a branded version of the source code 4 | It grabs the source from the specified branch of a clone of the current repository, as reported by git config --get remote.origin.url 5 | 6 | Call it from working directory us 7 | shall be absolute pathname. relative pathnames could produce undefined behaviour. 8 | git branch 9 | 10 | After execution, directory brand_ contains the new patched codebase 11 | 12 | 13 | -------------------------------------------------------------------------------- /core1/brands/plebble/devjob_skel/bin/update_revs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | . .revs 4 | if [ -d tmp/core0/core0 ]; then 5 | pushd tmp/core0/core0 6 | git checkout --quiet $branch 7 | core0new=`git rev-parse HEAD` 8 | popd 9 | sed -i "s/^core0=.*/core0=$core0new/" revs 10 | fi 11 | if [ -d tmp/core1/core1 ]; then 12 | pushd tmp/core1/core1 13 | git checkout --quiet $branch 14 | core1new=`git rev-parse HEAD` 15 | popd 16 | sed -i "s/^core1=.*/core1=$core1new/" revs 17 | fi 18 | git diff 19 | 20 | -------------------------------------------------------------------------------- /core0/us/android/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | android 4 | Project android created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.buildship.core.gradleprojectbuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.buildship.core.gradleprojectnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable-xhdpi/ic_pause_circle_filled_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_redirection_48.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/fragment_a2a.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/test/db_analyst/set5_expected: -------------------------------------------------------------------------------- 1 | digraph D { 2 | node [shape=box] 3 | "3KodzmKDFgwnRADyRyraEz4oVLiS" [style=filled color="black" fillcolor="lightyellow"] 4 | "3KodzmKDFgwnRADyRyraEz4oVLiS" -> "2sfhod3BS3t9nqLopM7sYphvSHzc" 5 | "2xWLsodXotVbeYJRFDcp8v62jNYo" [style=filled color="black" fillcolor="lightyellow"] 6 | "2xWLsodXotVbeYJRFDcp8v62jNYo" -> "3KodzmKDFgwnRADyRyraEz4oVLiS" 7 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" [style=filled color="black" fillcolor="lightyellow"] 8 | "3Ts2bEbdBXS9ChkTmvZ9P9xRGEUu" -> "3KodzmKDFgwnRADyRyraEz4oVLiS" 9 | } 10 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/fragment_fan2fan.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/fragment_pat2ai_pat.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/fragment_pat2slt_pat.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/trades_listitem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /core0/us/var/us/commands/proc_1.2: -------------------------------------------------------------------------------- 1 | runningswversion=`us-gov -home /home/gov/.us version` 2 | if [ "_$runningswversion" == "_4f33ba515de77fe5f1d2c26c32dbcd5d410a83d6" ]; then 3 | echo "Ok" 4 | exit 0 5 | fi 6 | 7 | echo "sleepig random seconds 0-60" 8 | sleep $[ ( $RANDOM % 60 ) + 1 ]s 9 | 10 | 11 | pushd /home/gov/src/dtf/us 12 | make install 13 | popd 14 | 15 | v=`us-gov version | awk '{print $1}'` 16 | echo "installed version is $v" 17 | 18 | systemctl restart us-wallet 19 | systemctl restart us-gov 20 | 21 | exit 0 22 | 23 | -------------------------------------------------------------------------------- /core1/brands/plebble/devjob_skel/bin/merge_submit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | branch=`git branch | grep "*" | awk '{print $2}'` 4 | echo "branch: $branch" 5 | echo "merge $branch into main and push" 6 | echo "All ok?" 7 | read a 8 | 9 | set -e 10 | echo "checkout main" 11 | git checkout main 12 | echo "pull" 13 | git pull 14 | echo "merg $branche" 15 | git merge $branch 16 | echo "push" 17 | git push 18 | echo "checkout $branch" 19 | git checkout $branch 20 | 21 | echo "done" 22 | echo -n "on branch " 23 | git branch | grep "*" | awk '{print $2}' 24 | 25 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/drawable/ic_pay56.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/fragment_fan2club_club.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/android/app/src/main/res/layout/fragment_fan2club_fan.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core0/us/android/wearable_JClife/src/main/res/layout/item_cmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |