skywalking 0.0.0.alpha → 0.0.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +19 -0
  3. data/.github/PULL_REQUEST_TEMPLATE +42 -0
  4. data/.github/workflows/ci.yml +70 -0
  5. data/.github/workflows/e2e.yml +73 -0
  6. data/.gitignore +80 -0
  7. data/.gitmodules +18 -0
  8. data/.licenserc.yaml +36 -0
  9. data/.rspec +1 -2
  10. data/.rubocop.yml +6 -0
  11. data/CHANGELOG.md +3 -0
  12. data/Gemfile +20 -0
  13. data/NOTICE +1 -1
  14. data/docs/README.md +7 -0
  15. data/docs/en/agent/plugins.md +10 -0
  16. data/docs/{How-to-release.md → en/development-and-contribution/how-to-release.md} +6 -5
  17. data/docs/en/setup/quick-start.md +106 -0
  18. data/docs/menu.yml +31 -0
  19. data/lib/rails/generators/skywalking/start_generator.rb +47 -0
  20. data/{examples/rails-demo/config/initializers/skywalking_ruby.rb → lib/rails/generators/skywalking/templates/skywalking_initializer.rb} +0 -2
  21. data/lib/skywalking/agent.rb +5 -5
  22. data/lib/skywalking/configuration.rb +54 -33
  23. data/lib/skywalking/environment.rb +103 -11
  24. data/lib/skywalking/log/logger.rb +1 -1
  25. data/lib/skywalking/plugins/net_http.rb +73 -0
  26. data/lib/skywalking/plugins/redis5.rb +3 -2
  27. data/lib/skywalking/plugins/sinatra.rb +2 -2
  28. data/lib/skywalking/reporter/buffer_trigger.rb +1 -1
  29. data/lib/skywalking/reporter/client/grpc_client.rb +2 -2
  30. data/lib/skywalking/reporter/report.rb +1 -1
  31. data/lib/skywalking/tracing/carrier.rb +9 -8
  32. data/lib/skywalking/tracing/constants.rb +11 -18
  33. data/lib/skywalking/tracing/exit_span.rb +1 -1
  34. data/lib/skywalking/tracing/noop_span.rb +1 -1
  35. data/lib/skywalking/tracing/span.rb +1 -1
  36. data/lib/skywalking/tracing/span_context.rb +4 -4
  37. data/lib/skywalking/tracing/tag.rb +36 -1
  38. data/lib/skywalking/version.rb +1 -1
  39. data/skywalking.gemspec +61 -0
  40. data/spec/fixtures/agent.yaml +33 -0
  41. data/spec/scenarios/common/Dockerfile.agent +26 -0
  42. data/spec/scenarios/common/base-compose.yml +46 -0
  43. data/spec/scenarios/common/common_spec_helper.rb +40 -0
  44. data/spec/scenarios/common/compose_context.rb +39 -0
  45. data/spec/scenarios/common/validator.rb +41 -0
  46. data/spec/scenarios/net_http/docker-compose.yml +49 -0
  47. data/spec/scenarios/net_http/expected.yml +39 -0
  48. data/spec/scenarios/net_http/net_http.rb +33 -0
  49. data/spec/scenarios/net_http/net_http_spec.rb +43 -0
  50. data/spec/scenarios/redis/docker-compose.yml +67 -0
  51. data/spec/scenarios/redis/expected.yml +66 -0
  52. data/{examples/sinatra-demo/sinatra-demo.rb → spec/scenarios/redis/redis.rb} +8 -10
  53. data/spec/scenarios/redis/redis_spec.rb +29 -0
  54. data/spec/scenarios/sinatra/docker-compose.yml +54 -0
  55. data/spec/scenarios/sinatra/expected.yml +38 -0
  56. data/spec/scenarios/sinatra/sinatra.rb +26 -0
  57. data/spec/scenarios/sinatra/sinatra_spec.rb +29 -0
  58. data/spec/skywalking/config_spec.rb +41 -0
  59. data/spec/skywalking/utils/id_gen_spec.rb +26 -0
  60. data/spec/spec_helper.rb +115 -0
  61. metadata +134 -143
  62. data/examples/rails-demo/.dockerignore +0 -47
  63. data/examples/rails-demo/.gitattributes +0 -9
  64. data/examples/rails-demo/.gitignore +0 -34
  65. data/examples/rails-demo/.kamal/hooks/docker-setup.sample +0 -3
  66. data/examples/rails-demo/.kamal/hooks/post-deploy.sample +0 -14
  67. data/examples/rails-demo/.kamal/hooks/post-proxy-reboot.sample +0 -3
  68. data/examples/rails-demo/.kamal/hooks/pre-build.sample +0 -51
  69. data/examples/rails-demo/.kamal/hooks/pre-connect.sample +0 -47
  70. data/examples/rails-demo/.kamal/hooks/pre-deploy.sample +0 -109
  71. data/examples/rails-demo/.kamal/hooks/pre-proxy-reboot.sample +0 -3
  72. data/examples/rails-demo/.kamal/secrets +0 -17
  73. data/examples/rails-demo/.rubocop.yml +0 -8
  74. data/examples/rails-demo/.ruby-version +0 -1
  75. data/examples/rails-demo/Dockerfile +0 -72
  76. data/examples/rails-demo/Gemfile +0 -64
  77. data/examples/rails-demo/README.md +0 -24
  78. data/examples/rails-demo/Rakefile +0 -6
  79. data/examples/rails-demo/app/assets/images/.keep +0 -0
  80. data/examples/rails-demo/app/assets/stylesheets/application.css +0 -10
  81. data/examples/rails-demo/app/controllers/application_controller.rb +0 -4
  82. data/examples/rails-demo/app/controllers/concerns/.keep +0 -0
  83. data/examples/rails-demo/app/helpers/application_helper.rb +0 -2
  84. data/examples/rails-demo/app/javascript/application.js +0 -3
  85. data/examples/rails-demo/app/javascript/controllers/application.js +0 -9
  86. data/examples/rails-demo/app/javascript/controllers/hello_controller.js +0 -7
  87. data/examples/rails-demo/app/javascript/controllers/index.js +0 -4
  88. data/examples/rails-demo/app/jobs/application_job.rb +0 -7
  89. data/examples/rails-demo/app/mailers/application_mailer.rb +0 -4
  90. data/examples/rails-demo/app/models/application_record.rb +0 -3
  91. data/examples/rails-demo/app/models/concerns/.keep +0 -0
  92. data/examples/rails-demo/app/views/layouts/application.html.erb +0 -28
  93. data/examples/rails-demo/app/views/layouts/mailer.html.erb +0 -13
  94. data/examples/rails-demo/app/views/layouts/mailer.text.erb +0 -1
  95. data/examples/rails-demo/app/views/pwa/manifest.json.erb +0 -22
  96. data/examples/rails-demo/app/views/pwa/service-worker.js +0 -26
  97. data/examples/rails-demo/bin/brakeman +0 -7
  98. data/examples/rails-demo/bin/bundle +0 -109
  99. data/examples/rails-demo/bin/dev +0 -2
  100. data/examples/rails-demo/bin/docker-entrypoint +0 -14
  101. data/examples/rails-demo/bin/importmap +0 -4
  102. data/examples/rails-demo/bin/jobs +0 -6
  103. data/examples/rails-demo/bin/kamal +0 -27
  104. data/examples/rails-demo/bin/rails +0 -4
  105. data/examples/rails-demo/bin/rake +0 -4
  106. data/examples/rails-demo/bin/rubocop +0 -8
  107. data/examples/rails-demo/bin/setup +0 -34
  108. data/examples/rails-demo/bin/thrust +0 -5
  109. data/examples/rails-demo/config/application.rb +0 -27
  110. data/examples/rails-demo/config/boot.rb +0 -4
  111. data/examples/rails-demo/config/cable.yml +0 -17
  112. data/examples/rails-demo/config/cache.yml +0 -16
  113. data/examples/rails-demo/config/credentials.yml.enc +0 -1
  114. data/examples/rails-demo/config/database.yml +0 -41
  115. data/examples/rails-demo/config/deploy.yml +0 -116
  116. data/examples/rails-demo/config/environment.rb +0 -5
  117. data/examples/rails-demo/config/environments/development.rb +0 -72
  118. data/examples/rails-demo/config/environments/production.rb +0 -90
  119. data/examples/rails-demo/config/environments/test.rb +0 -53
  120. data/examples/rails-demo/config/importmap.rb +0 -7
  121. data/examples/rails-demo/config/initializers/assets.rb +0 -7
  122. data/examples/rails-demo/config/initializers/content_security_policy.rb +0 -25
  123. data/examples/rails-demo/config/initializers/filter_parameter_logging.rb +0 -8
  124. data/examples/rails-demo/config/initializers/inflections.rb +0 -16
  125. data/examples/rails-demo/config/locales/en.yml +0 -31
  126. data/examples/rails-demo/config/puma.rb +0 -41
  127. data/examples/rails-demo/config/queue.yml +0 -18
  128. data/examples/rails-demo/config/recurring.yml +0 -10
  129. data/examples/rails-demo/config/routes.rb +0 -14
  130. data/examples/rails-demo/config/storage.yml +0 -34
  131. data/examples/rails-demo/config.ru +0 -6
  132. data/examples/rails-demo/db/cable_schema.rb +0 -11
  133. data/examples/rails-demo/db/cache_schema.rb +0 -14
  134. data/examples/rails-demo/db/queue_schema.rb +0 -129
  135. data/examples/rails-demo/db/seeds.rb +0 -9
  136. data/examples/rails-demo/lib/tasks/.keep +0 -0
  137. data/examples/rails-demo/log/.keep +0 -0
  138. data/examples/rails-demo/public/400.html +0 -114
  139. data/examples/rails-demo/public/404.html +0 -114
  140. data/examples/rails-demo/public/406-unsupported-browser.html +0 -114
  141. data/examples/rails-demo/public/422.html +0 -114
  142. data/examples/rails-demo/public/500.html +0 -114
  143. data/examples/rails-demo/public/icon.png +0 -0
  144. data/examples/rails-demo/public/icon.svg +0 -3
  145. data/examples/rails-demo/public/robots.txt +0 -1
  146. data/examples/rails-demo/script/.keep +0 -0
  147. data/examples/rails-demo/storage/.keep +0 -0
  148. data/examples/rails-demo/test/application_system_test_case.rb +0 -5
  149. data/examples/rails-demo/test/controllers/.keep +0 -0
  150. data/examples/rails-demo/test/fixtures/files/.keep +0 -0
  151. data/examples/rails-demo/test/helpers/.keep +0 -0
  152. data/examples/rails-demo/test/integration/.keep +0 -0
  153. data/examples/rails-demo/test/mailers/.keep +0 -0
  154. data/examples/rails-demo/test/models/.keep +0 -0
  155. data/examples/rails-demo/test/system/.keep +0 -0
  156. data/examples/rails-demo/test/test_helper.rb +0 -15
  157. data/examples/rails-demo/tmp/.keep +0 -0
  158. data/examples/rails-demo/tmp/pids/.keep +0 -0
  159. data/examples/rails-demo/tmp/storage/.keep +0 -0
  160. data/examples/rails-demo/vendor/.keep +0 -0
  161. data/examples/rails-demo/vendor/javascript/.keep +0 -0
@@ -1,41 +0,0 @@
1
- # This configuration file will be evaluated by Puma. The top-level methods that
2
- # are invoked here are part of Puma's configuration DSL. For more information
3
- # about methods provided by the DSL, see https://puma.io/puma/Puma/DSL.html.
4
- #
5
- # Puma starts a configurable number of processes (workers) and each process
6
- # serves each request in a thread from an internal thread pool.
7
- #
8
- # You can control the number of workers using ENV["WEB_CONCURRENCY"]. You
9
- # should only set this value when you want to run 2 or more workers. The
10
- # default is already 1.
11
- #
12
- # The ideal number of threads per worker depends both on how much time the
13
- # application spends waiting for IO operations and on how much you wish to
14
- # prioritize throughput over latency.
15
- #
16
- # As a rule of thumb, increasing the number of threads will increase how much
17
- # traffic a given process can handle (throughput), but due to CRuby's
18
- # Global VM Lock (GVL) it has diminishing returns and will degrade the
19
- # response time (latency) of the application.
20
- #
21
- # The default is set to 3 threads as it's deemed a decent compromise between
22
- # throughput and latency for the average Rails application.
23
- #
24
- # Any libraries that use a connection pool or another resource pool should
25
- # be configured to provide at least as many connections as the number of
26
- # threads. This includes Active Record's `pool` parameter in `database.yml`.
27
- threads_count = ENV.fetch("RAILS_MAX_THREADS", 3)
28
- threads threads_count, threads_count
29
-
30
- # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
31
- port ENV.fetch("PORT", 3000)
32
-
33
- # Allow puma to be restarted by `bin/rails restart` command.
34
- plugin :tmp_restart
35
-
36
- # Run the Solid Queue supervisor inside of Puma for single-server deployments
37
- plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
38
-
39
- # Specify the PID file. Defaults to tmp/pids/server.pid in development.
40
- # In other environments, only set the PID file if requested.
41
- pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
@@ -1,18 +0,0 @@
1
- default: &default
2
- dispatchers:
3
- - polling_interval: 1
4
- batch_size: 500
5
- workers:
6
- - queues: "*"
7
- threads: 3
8
- processes: <%= ENV.fetch("JOB_CONCURRENCY", 1) %>
9
- polling_interval: 0.1
10
-
11
- development:
12
- <<: *default
13
-
14
- test:
15
- <<: *default
16
-
17
- production:
18
- <<: *default
@@ -1,10 +0,0 @@
1
- # production:
2
- # periodic_cleanup:
3
- # class: CleanSoftDeletedRecordsJob
4
- # queue: background
5
- # args: [ 1000, { batch_size: 500 } ]
6
- # schedule: every hour
7
- # periodic_command:
8
- # command: "SoftDeletedRecord.due.delete_all"
9
- # priority: 2
10
- # schedule: at 5am every day
@@ -1,14 +0,0 @@
1
- Rails.application.routes.draw do
2
- # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
3
-
4
- # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
5
- # Can be used by load balancers and uptime monitors to verify that the app is live.
6
- get "up" => "rails/health#show", as: :rails_health_check
7
-
8
- # Render dynamic PWA files from app/views/pwa/* (remember to link manifest in application.html.erb)
9
- # get "manifest" => "rails/pwa#manifest", as: :pwa_manifest
10
- # get "service-worker" => "rails/pwa#service_worker", as: :pwa_service_worker
11
-
12
- # Defines the root path route ("/")
13
- # root "posts#index"
14
- end
@@ -1,34 +0,0 @@
1
- test:
2
- service: Disk
3
- root: <%= Rails.root.join("tmp/storage") %>
4
-
5
- local:
6
- service: Disk
7
- root: <%= Rails.root.join("storage") %>
8
-
9
- # Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
- # amazon:
11
- # service: S3
12
- # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
- # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
- # region: us-east-1
15
- # bucket: your_own_bucket-<%= Rails.env %>
16
-
17
- # Remember not to checkin your GCS keyfile to a repository
18
- # google:
19
- # service: GCS
20
- # project: your_project
21
- # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
- # bucket: your_own_bucket-<%= Rails.env %>
23
-
24
- # Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
- # microsoft:
26
- # service: AzureStorage
27
- # storage_account_name: your_account_name
28
- # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
- # container: your_container_name-<%= Rails.env %>
30
-
31
- # mirror:
32
- # service: Mirror
33
- # primary: local
34
- # mirrors: [ amazon, google, microsoft ]
@@ -1,6 +0,0 @@
1
- # This file is used by Rack-based servers to start the application.
2
-
3
- require_relative "config/environment"
4
-
5
- run Rails.application
6
- Rails.application.load_server
@@ -1,11 +0,0 @@
1
- ActiveRecord::Schema[7.1].define(version: 1) do
2
- create_table "solid_cable_messages", force: :cascade do |t|
3
- t.binary "channel", limit: 1024, null: false
4
- t.binary "payload", limit: 536870912, null: false
5
- t.datetime "created_at", null: false
6
- t.integer "channel_hash", limit: 8, null: false
7
- t.index ["channel"], name: "index_solid_cable_messages_on_channel"
8
- t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash"
9
- t.index ["created_at"], name: "index_solid_cable_messages_on_created_at"
10
- end
11
- end
@@ -1,14 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- ActiveRecord::Schema[7.2].define(version: 1) do
4
- create_table "solid_cache_entries", force: :cascade do |t|
5
- t.binary "key", limit: 1024, null: false
6
- t.binary "value", limit: 536870912, null: false
7
- t.datetime "created_at", null: false
8
- t.integer "key_hash", limit: 8, null: false
9
- t.integer "byte_size", limit: 4, null: false
10
- t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size"
11
- t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size"
12
- t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true
13
- end
14
- end
@@ -1,129 +0,0 @@
1
- ActiveRecord::Schema[7.1].define(version: 1) do
2
- create_table "solid_queue_blocked_executions", force: :cascade do |t|
3
- t.bigint "job_id", null: false
4
- t.string "queue_name", null: false
5
- t.integer "priority", default: 0, null: false
6
- t.string "concurrency_key", null: false
7
- t.datetime "expires_at", null: false
8
- t.datetime "created_at", null: false
9
- t.index [ "concurrency_key", "priority", "job_id" ], name: "index_solid_queue_blocked_executions_for_release"
10
- t.index [ "expires_at", "concurrency_key" ], name: "index_solid_queue_blocked_executions_for_maintenance"
11
- t.index [ "job_id" ], name: "index_solid_queue_blocked_executions_on_job_id", unique: true
12
- end
13
-
14
- create_table "solid_queue_claimed_executions", force: :cascade do |t|
15
- t.bigint "job_id", null: false
16
- t.bigint "process_id"
17
- t.datetime "created_at", null: false
18
- t.index [ "job_id" ], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
19
- t.index [ "process_id", "job_id" ], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id"
20
- end
21
-
22
- create_table "solid_queue_failed_executions", force: :cascade do |t|
23
- t.bigint "job_id", null: false
24
- t.text "error"
25
- t.datetime "created_at", null: false
26
- t.index [ "job_id" ], name: "index_solid_queue_failed_executions_on_job_id", unique: true
27
- end
28
-
29
- create_table "solid_queue_jobs", force: :cascade do |t|
30
- t.string "queue_name", null: false
31
- t.string "class_name", null: false
32
- t.text "arguments"
33
- t.integer "priority", default: 0, null: false
34
- t.string "active_job_id"
35
- t.datetime "scheduled_at"
36
- t.datetime "finished_at"
37
- t.string "concurrency_key"
38
- t.datetime "created_at", null: false
39
- t.datetime "updated_at", null: false
40
- t.index [ "active_job_id" ], name: "index_solid_queue_jobs_on_active_job_id"
41
- t.index [ "class_name" ], name: "index_solid_queue_jobs_on_class_name"
42
- t.index [ "finished_at" ], name: "index_solid_queue_jobs_on_finished_at"
43
- t.index [ "queue_name", "finished_at" ], name: "index_solid_queue_jobs_for_filtering"
44
- t.index [ "scheduled_at", "finished_at" ], name: "index_solid_queue_jobs_for_alerting"
45
- end
46
-
47
- create_table "solid_queue_pauses", force: :cascade do |t|
48
- t.string "queue_name", null: false
49
- t.datetime "created_at", null: false
50
- t.index [ "queue_name" ], name: "index_solid_queue_pauses_on_queue_name", unique: true
51
- end
52
-
53
- create_table "solid_queue_processes", force: :cascade do |t|
54
- t.string "kind", null: false
55
- t.datetime "last_heartbeat_at", null: false
56
- t.bigint "supervisor_id"
57
- t.integer "pid", null: false
58
- t.string "hostname"
59
- t.text "metadata"
60
- t.datetime "created_at", null: false
61
- t.string "name", null: false
62
- t.index [ "last_heartbeat_at" ], name: "index_solid_queue_processes_on_last_heartbeat_at"
63
- t.index [ "name", "supervisor_id" ], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true
64
- t.index [ "supervisor_id" ], name: "index_solid_queue_processes_on_supervisor_id"
65
- end
66
-
67
- create_table "solid_queue_ready_executions", force: :cascade do |t|
68
- t.bigint "job_id", null: false
69
- t.string "queue_name", null: false
70
- t.integer "priority", default: 0, null: false
71
- t.datetime "created_at", null: false
72
- t.index [ "job_id" ], name: "index_solid_queue_ready_executions_on_job_id", unique: true
73
- t.index [ "priority", "job_id" ], name: "index_solid_queue_poll_all"
74
- t.index [ "queue_name", "priority", "job_id" ], name: "index_solid_queue_poll_by_queue"
75
- end
76
-
77
- create_table "solid_queue_recurring_executions", force: :cascade do |t|
78
- t.bigint "job_id", null: false
79
- t.string "task_key", null: false
80
- t.datetime "run_at", null: false
81
- t.datetime "created_at", null: false
82
- t.index [ "job_id" ], name: "index_solid_queue_recurring_executions_on_job_id", unique: true
83
- t.index [ "task_key", "run_at" ], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
84
- end
85
-
86
- create_table "solid_queue_recurring_tasks", force: :cascade do |t|
87
- t.string "key", null: false
88
- t.string "schedule", null: false
89
- t.string "command", limit: 2048
90
- t.string "class_name"
91
- t.text "arguments"
92
- t.string "queue_name"
93
- t.integer "priority", default: 0
94
- t.boolean "static", default: true, null: false
95
- t.text "description"
96
- t.datetime "created_at", null: false
97
- t.datetime "updated_at", null: false
98
- t.index [ "key" ], name: "index_solid_queue_recurring_tasks_on_key", unique: true
99
- t.index [ "static" ], name: "index_solid_queue_recurring_tasks_on_static"
100
- end
101
-
102
- create_table "solid_queue_scheduled_executions", force: :cascade do |t|
103
- t.bigint "job_id", null: false
104
- t.string "queue_name", null: false
105
- t.integer "priority", default: 0, null: false
106
- t.datetime "scheduled_at", null: false
107
- t.datetime "created_at", null: false
108
- t.index [ "job_id" ], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true
109
- t.index [ "scheduled_at", "priority", "job_id" ], name: "index_solid_queue_dispatch_all"
110
- end
111
-
112
- create_table "solid_queue_semaphores", force: :cascade do |t|
113
- t.string "key", null: false
114
- t.integer "value", default: 1, null: false
115
- t.datetime "expires_at", null: false
116
- t.datetime "created_at", null: false
117
- t.datetime "updated_at", null: false
118
- t.index [ "expires_at" ], name: "index_solid_queue_semaphores_on_expires_at"
119
- t.index [ "key", "value" ], name: "index_solid_queue_semaphores_on_key_and_value"
120
- t.index [ "key" ], name: "index_solid_queue_semaphores_on_key", unique: true
121
- end
122
-
123
- add_foreign_key "solid_queue_blocked_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
124
- add_foreign_key "solid_queue_claimed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
125
- add_foreign_key "solid_queue_failed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
126
- add_foreign_key "solid_queue_ready_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
127
- add_foreign_key "solid_queue_recurring_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
128
- add_foreign_key "solid_queue_scheduled_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
129
- end
@@ -1,9 +0,0 @@
1
- # This file should ensure the existence of records required to run the application in every environment (production,
2
- # development, test). The code here should be idempotent so that it can be executed at any point in every environment.
3
- # The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup).
4
- #
5
- # Example:
6
- #
7
- # ["Action", "Comedy", "Drama", "Horror"].each do |genre_name|
8
- # MovieGenre.find_or_create_by!(name: genre_name)
9
- # end
File without changes
File without changes
@@ -1,114 +0,0 @@
1
- <!doctype html>
2
-
3
- <html lang="en">
4
-
5
- <head>
6
-
7
- <title>The server cannot process the request due to a client error (400 Bad Request)</title>
8
-
9
- <meta charset="utf-8">
10
- <meta name="viewport" content="initial-scale=1, width=device-width">
11
- <meta name="robots" content="noindex, nofollow">
12
-
13
- <style>
14
-
15
- *, *::before, *::after {
16
- box-sizing: border-box;
17
- }
18
-
19
- * {
20
- margin: 0;
21
- }
22
-
23
- html {
24
- font-size: 16px;
25
- }
26
-
27
- body {
28
- background: #FFF;
29
- color: #261B23;
30
- display: grid;
31
- font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Aptos, Roboto, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
32
- font-size: clamp(1rem, 2.5vw, 2rem);
33
- -webkit-font-smoothing: antialiased;
34
- font-style: normal;
35
- font-weight: 400;
36
- letter-spacing: -0.0025em;
37
- line-height: 1.4;
38
- min-height: 100vh;
39
- place-items: center;
40
- text-rendering: optimizeLegibility;
41
- -webkit-text-size-adjust: 100%;
42
- }
43
-
44
- a {
45
- color: inherit;
46
- font-weight: 700;
47
- text-decoration: underline;
48
- text-underline-offset: 0.0925em;
49
- }
50
-
51
- b, strong {
52
- font-weight: 700;
53
- }
54
-
55
- i, em {
56
- font-style: italic;
57
- }
58
-
59
- main {
60
- display: grid;
61
- gap: 1em;
62
- padding: 2em;
63
- place-items: center;
64
- text-align: center;
65
- }
66
-
67
- main header {
68
- width: min(100%, 12em);
69
- }
70
-
71
- main header svg {
72
- height: auto;
73
- max-width: 100%;
74
- width: 100%;
75
- }
76
-
77
- main article {
78
- width: min(100%, 30em);
79
- }
80
-
81
- main article p {
82
- font-size: 75%;
83
- }
84
-
85
- main article br {
86
-
87
- display: none;
88
-
89
- @media(min-width: 48em) {
90
- display: inline;
91
- }
92
-
93
- }
94
-
95
- </style>
96
-
97
- </head>
98
-
99
- <body>
100
-
101
- <!-- This file lives in public/400.html -->
102
-
103
- <main>
104
- <header>
105
- <svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm115.583 168.69891c-40.822 0-64.884-35.146-64.884-85.7015 0-50.5554 24.062-85.700907 64.884-85.700907 40.823 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.061 85.7015-64.884 85.7015zm0-133.2831c-17.572 0-22.709 21.8984-22.709 47.5816 0 25.6835 5.137 47.5815 22.709 47.5815 17.303 0 22.71-21.898 22.71-47.5815 0-25.6832-5.407-47.5816-22.71-47.5816zm140.456 133.2831c-40.823 0-64.884-35.146-64.884-85.7015 0-50.5554 24.061-85.700907 64.884-85.700907 40.822 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.062 85.7015-64.884 85.7015zm0-133.2831c-17.573 0-22.71 21.8984-22.71 47.5816 0 25.6835 5.137 47.5815 22.71 47.5815 17.302 0 22.709-21.898 22.709-47.5815 0-25.6832-5.407-47.5816-22.709-47.5816z" fill="#f0eff0"/><path d="m123.606 85.4445c3.212 1.0523 5.538 4.2089 5.538 8.0301 0 6.1472-4.209 9.5254-11.298 9.5254h-15.617v-34.0033h14.565c7.089 0 11.353 3.1566 11.353 9.2484 0 3.6551-2.049 6.3134-4.541 7.1994zm-12.904-2.9905h5.095c2.603 0 3.988-.9968 3.988-3.1013 0-2.1044-1.385-3.0459-3.988-3.0459h-5.095zm0 6.6456v6.5902h5.981c2.492 0 3.877-1.3291 3.877-3.2674 0-2.049-1.385-3.3228-3.877-3.3228zm43.786 13.9004h-8.362v-1.274c-.831.831-3.323 1.717-5.981 1.717-4.929 0-9.083-2.769-9.083-8.0301 0-4.818 4.154-7.9193 9.581-7.9193 2.049 0 4.486.6646 5.483 1.3845v-1.606c0-1.606-.942-2.9905-3.046-2.9905-1.606 0-2.548.7199-2.935 1.8275h-8.197c.72-4.8181 4.985-8.6393 11.409-8.6393 7.088 0 11.131 3.7659 11.131 10.2453zm-8.362-6.9779v-1.4399c-.554-1.0522-2.049-1.7167-3.655-1.7167-1.717 0-3.434.7199-3.434 2.3813 0 1.7168 1.717 2.4367 3.434 2.4367 1.606 0 3.101-.6645 3.655-1.6614zm27.996 6.9779v-1.994c-1.163 1.329-3.599 2.548-6.147 2.548-7.199 0-11.131-5.8151-11.131-13.0145s3.932-13.0143 11.131-13.0143c2.548 0 4.984 1.2184 6.147 2.5475v-13.0697h8.695v35.997zm0-9.1931v-6.5902c-.664-1.3291-2.159-2.326-3.821-2.326-2.99 0-4.763 2.4368-4.763 5.6488s1.773 5.5934 4.763 5.5934c1.717 0 3.157-.9415 3.821-2.326zm35.471-2.049h-3.101v11.2421h-8.806v-34.0033h15.285c7.31 0 12.35 4.1535 12.35 11.5744 0 5.1503-2.603 8.6947-6.757 10.2453l7.975 12.1836h-9.858zm-3.101-15.2849v8.1962h5.538c3.156 0 4.596-1.606 4.596-4.0981s-1.44-4.0981-4.596-4.0981zm36.957 17.8323h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.515-13.0143 7.643 0 11.962 5.095 11.962 12.5159v2.1598h-16.115c.277 2.9905 1.827 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.822-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm30.98 27.5234v-10.799c-1.163 1.329-3.6 2.548-6.147 2.548-7.2 0-11.132-5.9259-11.132-13.0145 0-7.144 3.932-13.0143 11.132-13.0143 2.547 0 4.984 1.2184 6.147 2.5475v-1.9937h8.695v33.726zm0-17.9981v-6.5902c-.665-1.3291-2.105-2.326-3.821-2.326-2.991 0-4.763 2.4368-4.763 5.6488s1.772 5.5934 4.763 5.5934c1.661 0 3.156-.9415 3.821-2.326zm36.789-15.7279v24.921h-8.695v-2.16c-1.329 1.551-3.821 2.714-6.646 2.714-5.482 0-8.75-3.5999-8.75-9.1379v-16.3371h8.64v14.288c0 2.1045.996 3.5997 3.212 3.5997 1.606 0 3.101-1.0522 3.544-2.769v-15.1187zm19.084 16.2263h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.515-13.0143 7.643 0 11.963 5.095 11.963 12.5159v2.1598h-16.116c.277 2.9905 1.828 4.5965 4.32 4.5965 1.772 0 3.156-.7753 3.655-2.4921zm-3.822-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm13.428 11.0206h8.474c.387 1.3845 1.606 2.1598 3.156 2.1598 1.44 0 2.548-.5538 2.548-1.7168 0-.9414-.72-1.2737-1.939-1.5506l-4.873-.9969c-4.154-.886-6.867-2.8797-6.867-7.2547 0-5.3165 4.762-8.4178 10.633-8.4178 6.812 0 10.522 3.1567 11.297 8.0855h-8.03c-.277-1.0522-1.052-1.9937-3.046-1.9937-1.273 0-2.326.5538-2.326 1.6614 0 .7753.554 1.163 1.717 1.3845l4.929 1.163c4.541 1.0522 6.978 3.4335 6.978 7.4763 0 5.3168-4.818 8.2518-10.91 8.2518-6.369 0-10.965-2.88-11.741-8.2518zm27.538-.8861v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.205v6.7564h-5.205v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.993-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.871 0-9.193-2.769-9.193-9.0819z" fill="#d30001"/></svg>
106
- </header>
107
- <article>
108
- <p><strong>The server cannot process the request due to a client error.</strong> Please check the request and try again. If you’re the application owner check the logs for more information.</p>
109
- </article>
110
- </main>
111
-
112
- </body>
113
-
114
- </html>
@@ -1,114 +0,0 @@
1
- <!doctype html>
2
-
3
- <html lang="en">
4
-
5
- <head>
6
-
7
- <title>The page you were looking for doesn’t exist (404 Not found)</title>
8
-
9
- <meta charset="utf-8">
10
- <meta name="viewport" content="initial-scale=1, width=device-width">
11
- <meta name="robots" content="noindex, nofollow">
12
-
13
- <style>
14
-
15
- *, *::before, *::after {
16
- box-sizing: border-box;
17
- }
18
-
19
- * {
20
- margin: 0;
21
- }
22
-
23
- html {
24
- font-size: 16px;
25
- }
26
-
27
- body {
28
- background: #FFF;
29
- color: #261B23;
30
- display: grid;
31
- font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Aptos, Roboto, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
32
- font-size: clamp(1rem, 2.5vw, 2rem);
33
- -webkit-font-smoothing: antialiased;
34
- font-style: normal;
35
- font-weight: 400;
36
- letter-spacing: -0.0025em;
37
- line-height: 1.4;
38
- min-height: 100vh;
39
- place-items: center;
40
- text-rendering: optimizeLegibility;
41
- -webkit-text-size-adjust: 100%;
42
- }
43
-
44
- a {
45
- color: inherit;
46
- font-weight: 700;
47
- text-decoration: underline;
48
- text-underline-offset: 0.0925em;
49
- }
50
-
51
- b, strong {
52
- font-weight: 700;
53
- }
54
-
55
- i, em {
56
- font-style: italic;
57
- }
58
-
59
- main {
60
- display: grid;
61
- gap: 1em;
62
- padding: 2em;
63
- place-items: center;
64
- text-align: center;
65
- }
66
-
67
- main header {
68
- width: min(100%, 12em);
69
- }
70
-
71
- main header svg {
72
- height: auto;
73
- max-width: 100%;
74
- width: 100%;
75
- }
76
-
77
- main article {
78
- width: min(100%, 30em);
79
- }
80
-
81
- main article p {
82
- font-size: 75%;
83
- }
84
-
85
- main article br {
86
-
87
- display: none;
88
-
89
- @media(min-width: 48em) {
90
- display: inline;
91
- }
92
-
93
- }
94
-
95
- </style>
96
-
97
- </head>
98
-
99
- <body>
100
-
101
- <!-- This file lives in public/404.html -->
102
-
103
- <main>
104
- <header>
105
- <svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm115.583 168.69891c-40.822 0-64.884-35.146-64.884-85.7015 0-50.5554 24.062-85.700907 64.884-85.700907 40.823 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.061 85.7015-64.884 85.7015zm0-133.2831c-17.572 0-22.709 21.8984-22.709 47.5816 0 25.6835 5.137 47.5815 22.709 47.5815 17.303 0 22.71-21.898 22.71-47.5815 0-25.6832-5.407-47.5816-22.71-47.5816zm165.328-35.41581-45.689 100.02991h26.224v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.184v-31.901l50.285-103.27391z" fill="#f0eff0"/><path d="m157.758 68.9967v34.0033h-7.199l-14.233-19.8814v19.8814h-8.584v-34.0033h8.307l13.125 18.7184v-18.7184zm28.454 21.5428c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.528 0c0-3.4336-1.496-5.8703-4.209-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.209-2.3813 4.209-5.8149zm13.184 3.8766v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.205v6.7564h-5.205v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm37.027 8.5839h-8.806v-34.0033h23.924v7.6978h-15.118v6.7564h13.9v7.5316h-13.9zm41.876-12.4605c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.529 0c0-3.4336-1.495-5.8703-4.208-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.208-2.3813 4.208-5.8149zm35.337-12.4605v24.921h-8.695v-2.16c-1.329 1.551-3.821 2.714-6.646 2.714-5.482 0-8.75-3.5999-8.75-9.1379v-16.3371h8.64v14.288c0 2.1045.997 3.5997 3.212 3.5997 1.606 0 3.101-1.0522 3.544-2.769v-15.1187zm4.076 24.921v-24.921h8.694v2.1598c1.385-1.5506 3.822-2.7136 6.701-2.7136 5.538 0 8.806 3.5997 8.806 9.1377v16.3371h-8.639v-14.2327c0-2.049-1.053-3.5443-3.268-3.5443-1.717 0-3.156.9969-3.6 2.7136v15.0634zm44.113 0v-1.994c-1.163 1.329-3.6 2.548-6.147 2.548-7.2 0-11.132-5.8151-11.132-13.0145s3.932-13.0143 11.132-13.0143c2.547 0 4.984 1.2184 6.147 2.5475v-13.0697h8.695v35.997zm0-9.1931v-6.5902c-.665-1.3291-2.16-2.326-3.821-2.326-2.991 0-4.763 2.4368-4.763 5.6488s1.772 5.5934 4.763 5.5934c1.717 0 3.156-.9415 3.821-2.326z" fill="#d30001"/></svg>
106
- </header>
107
- <article>
108
- <p><strong>The page you were looking for doesn’t exist.</strong> You may have mistyped the address or the page may have moved. If you’re the application owner check the logs for more information.</p>
109
- </article>
110
- </main>
111
-
112
- </body>
113
-
114
- </html>
@@ -1,114 +0,0 @@
1
- <!doctype html>
2
-
3
- <html lang="en">
4
-
5
- <head>
6
-
7
- <title>Your browser is not supported (406 Not Acceptable)</title>
8
-
9
- <meta charset="utf-8">
10
- <meta name="viewport" content="initial-scale=1, width=device-width">
11
- <meta name="robots" content="noindex, nofollow">
12
-
13
- <style>
14
-
15
- *, *::before, *::after {
16
- box-sizing: border-box;
17
- }
18
-
19
- * {
20
- margin: 0;
21
- }
22
-
23
- html {
24
- font-size: 16px;
25
- }
26
-
27
- body {
28
- background: #FFF;
29
- color: #261B23;
30
- display: grid;
31
- font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Aptos, Roboto, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
32
- font-size: clamp(1rem, 2.5vw, 2rem);
33
- -webkit-font-smoothing: antialiased;
34
- font-style: normal;
35
- font-weight: 400;
36
- letter-spacing: -0.0025em;
37
- line-height: 1.4;
38
- min-height: 100vh;
39
- place-items: center;
40
- text-rendering: optimizeLegibility;
41
- -webkit-text-size-adjust: 100%;
42
- }
43
-
44
- a {
45
- color: inherit;
46
- font-weight: 700;
47
- text-decoration: underline;
48
- text-underline-offset: 0.0925em;
49
- }
50
-
51
- b, strong {
52
- font-weight: 700;
53
- }
54
-
55
- i, em {
56
- font-style: italic;
57
- }
58
-
59
- main {
60
- display: grid;
61
- gap: 1em;
62
- padding: 2em;
63
- place-items: center;
64
- text-align: center;
65
- }
66
-
67
- main header {
68
- width: min(100%, 12em);
69
- }
70
-
71
- main header svg {
72
- height: auto;
73
- max-width: 100%;
74
- width: 100%;
75
- }
76
-
77
- main article {
78
- width: min(100%, 30em);
79
- }
80
-
81
- main article p {
82
- font-size: 75%;
83
- }
84
-
85
- main article br {
86
-
87
- display: none;
88
-
89
- @media(min-width: 48em) {
90
- display: inline;
91
- }
92
-
93
- }
94
-
95
- </style>
96
-
97
- </head>
98
-
99
- <body>
100
-
101
- <!-- This file lives in public/406-unsupported-browser.html -->
102
-
103
- <main>
104
- <header>
105
- <svg height="172" viewBox="0 0 480 172" width="480" xmlns="http://www.w3.org/2000/svg"><path d="m124.48 3.00509-45.6889 100.02991h26.2239v-28.1168h38.119v28.1168h21.628v35.145h-21.628v30.82h-37.308v-30.82h-72.1833v-31.901l50.2851-103.27391zm115.583 168.69891c-40.822 0-64.884-35.146-64.884-85.7015 0-50.5554 24.062-85.700907 64.884-85.700907 40.823 0 64.884 35.145507 64.884 85.700907 0 50.5555-24.061 85.7015-64.884 85.7015zm0-133.2831c-17.572 0-22.709 21.8984-22.709 47.5816 0 25.6835 5.137 47.5815 22.709 47.5815 17.303 0 22.71-21.898 22.71-47.5815 0-25.6832-5.407-47.5816-22.71-47.5816zm202.906 9.7326h-41.093c-2.433-7.2994-7.84-12.4361-17.302-12.4361-16.221 0-25.413 17.5728-25.954 34.8752v1.3517c5.137-7.0291 16.221-12.4361 30.82-12.4361 33.524 0 54.881 24.0612 54.881 53.7998 0 33.253-23.791 58.396-61.64 58.396-21.628 0-39.741-10.003-50.825-27.576-9.733-14.599-13.788-32.442-13.788-54.3406 0-51.9072 24.331-89.485807 66.236-89.485807 32.712 0 53.258 18.654107 58.665 47.851907zm-82.727 66.2355c0 13.247 9.463 22.439 22.71 22.439 12.977 0 22.439-9.192 22.439-22.439 0-13.517-9.462-22.7091-22.439-22.7091-13.247 0-22.71 9.1921-22.71 22.7091z" fill="#f0eff0"/><path d="m100.761 68.9967v34.0033h-7.1991l-14.2326-19.8814v19.8814h-8.5839v-34.0033h8.307l13.125 18.7184v-18.7184zm28.454 21.5428c0 7.6978-5.15 13.0145-12.737 13.0145-7.532 0-12.738-5.3167-12.738-13.0145s5.206-13.0143 12.738-13.0143c7.587 0 12.737 5.3165 12.737 13.0143zm-8.529 0c0-3.4336-1.495-5.8703-4.208-5.8703-2.659 0-4.154 2.4367-4.154 5.8703s1.495 5.8149 4.154 5.8149c2.713 0 4.208-2.3813 4.208-5.8149zm13.185 3.8766v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.205v6.7564h-5.205v8.307c0 1.9383.941 2.769 2.658 2.769.941 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm39.02-25.4194h9.083l12.958 34.0033h-9.027l-2.436-6.5902h-12.35l-2.381 6.5902h-8.806zm4.431 10.5222-3.489 9.5807h6.978zm17.44 11.0206c0-7.6978 5.095-13.0143 12.572-13.0143 6.701 0 10.854 3.9874 11.574 9.8023h-8.418c-.221-1.4953-1.384-2.6029-3.156-2.6029-2.437 0-3.988 2.2706-3.988 5.8149s1.551 5.7595 3.988 5.7595c1.772 0 2.935-1.0522 3.156-2.5475h8.418c-.72 5.7596-4.873 9.8025-11.574 9.8025-7.477 0-12.572-5.3167-12.572-13.0145zm25.676 0c0-7.6978 5.095-13.0143 12.572-13.0143 6.701 0 10.854 3.9874 11.574 9.8023h-8.418c-.221-1.4953-1.384-2.6029-3.156-2.6029-2.437 0-3.988 2.2706-3.988 5.8149s1.551 5.7595 3.988 5.7595c1.772 0 2.935-1.0522 3.156-2.5475h8.418c-.72 5.7596-4.873 9.8025-11.574 9.8025-7.477 0-12.572-5.3167-12.572-13.0145zm42.013 3.7658h8.031c-.887 5.7597-5.206 9.2487-11.686 9.2487-7.642 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.317-13.0143 12.516-13.0143 7.643 0 11.962 5.095 11.962 12.5159v2.1598h-16.115c.277 2.9905 1.827 4.5965 4.319 4.5965 1.773 0 3.157-.7753 3.655-2.4921zm-3.821-10.0237c-2.049 0-3.433 1.2737-3.987 3.5997h7.532c-.111-2.0491-1.385-3.5997-3.545-3.5997zm23.4 16.7244v10.799h-8.694v-33.726h8.694v1.9937c1.163-1.3291 3.6-2.5475 6.148-2.5475 7.199 0 11.131 5.8703 11.131 13.0143 0 7.0886-3.932 13.0145-11.131 13.0145-2.548 0-4.985-1.219-6.148-2.548zm0-13.7893v6.5902c.665 1.3845 2.16 2.326 3.822 2.326 2.99 0 4.762-2.3814 4.762-5.5934s-1.772-5.6488-4.762-5.6488c-1.717 0-3.157.9969-3.822 2.326zm21.892 7.1994v-9.5807h-3.655v-6.7564h3.655v-6.8671h8.584v6.8671h5.206v6.7564h-5.206v8.307c0 1.9383.941 2.769 2.658 2.769.942 0 1.994-.2216 2.769-.5538v7.3654c-.997.443-2.88.775-4.818.775-5.87 0-9.193-2.769-9.193-9.0819zm39.458 8.5839h-8.363v-1.274c-.83.831-3.322 1.717-5.981 1.717-4.928 0-9.082-2.769-9.082-8.0301 0-4.818 4.154-7.9193 9.581-7.9193 2.049 0 4.486.6646 5.482 1.3845v-1.606c0-1.606-.941-2.9905-3.045-2.9905-1.606 0-2.548.7199-2.936 1.8275h-8.196c.72-4.8181 4.984-8.6393 11.408-8.6393 7.089 0 11.132 3.7659 11.132 10.2453zm-8.363-6.9779v-1.4399c-.553-1.0522-2.049-1.7167-3.655-1.7167-1.716 0-3.433.7199-3.433 2.3813 0 1.7168 1.717 2.4367 3.433 2.4367 1.606 0 3.102-.6645 3.655-1.6614zm20.742 4.9839v1.994h-8.694v-35.997h8.694v13.0697c1.163-1.3291 3.6-2.5475 6.148-2.5475 7.199 0 11.131 5.8149 11.131 13.0143s-3.932 13.0145-11.131 13.0145c-2.548 0-4.985-1.219-6.148-2.548zm0-13.7893v6.5902c.665 1.3845 2.105 2.326 3.822 2.326 2.99 0 4.762-2.3814 4.762-5.5934s-1.772-5.6488-4.762-5.6488c-1.662 0-3.157.9969-3.822 2.326zm28.759-20.2137v35.997h-8.695v-35.997zm19.172 27.3023h8.03c-.886 5.7597-5.206 9.2487-11.685 9.2487-7.643 0-12.682-5.2613-12.682-13.0145 0-7.6978 5.316-13.0143 12.516-13.0143 7.642 0 11.962 5.095 11.962 12.5159v2.1598h-16.116c.277 2.9905 1.828 4.5965 4.32 4.5965 1.772 0 3.157-.7753 3.655-2.4921zm-3.821-10.0237c-2.049 0-3.434 1.2737-3.988 3.5997h7.532c-.111-2.0491-1.384-3.5997-3.544-3.5997z" fill="#d30001"/></svg>
106
- </header>
107
- <article>
108
- <p><strong>Your browser is not supported.</strong><br> Please upgrade your browser to continue.</p>
109
- </article>
110
- </main>
111
-
112
- </body>
113
-
114
- </html>