diff --git a/assets/css/_phx-liveview.scss b/assets/css/_phx-liveview.scss
index 702bdd9f..2c7087ab 100644
--- a/assets/css/_phx-liveview.scss
+++ b/assets/css/_phx-liveview.scss
@@ -2,9 +2,13 @@
 
 /* hides the feedback field help if liveview indicates field not touched yet */
 .phx-no-feedback.invalid-feedback,
-.phx-no-feedback .invalid-feedback {
+.phx-no-feedback .invalid-feedback,
+.phx-orphaned-feedback.phx-no-feedback .invalid-feedback {
   display: none;
 }
+.phx-orphaned-feedback .invalid-feedback {
+  display: block !important;
+}
 
 /* sets default bootstrap form-control styles if field not touched yet */
 .phx-no-feedback .form-control.is-valid,
diff --git a/assets/js/app.js b/assets/js/app.js
index a376add3..72edd2eb 100644
--- a/assets/js/app.js
+++ b/assets/js/app.js
@@ -34,12 +34,14 @@ import "../node_modules/bootstrap-icons/icons/arrow-repeat.svg"; // resend confi
 import "../node_modules/@mdi/svg/svg/head-question-outline.svg"; // forgot password
 import "../node_modules/bootstrap-icons/icons/people.svg"; // users management
 // calendar/event icons
-import "../node_modules/bootstrap-icons/icons/calendar3-event.svg"; // brand
-import "../node_modules/bootstrap-icons/icons/clock-history.svg"; // brand
-import "../node_modules/bootstrap-icons/icons/hourglass.svg"; // brand
-import "../node_modules/bootstrap-icons/icons/geo.svg"; // brand
-import "../node_modules/bootstrap-icons/icons/justify-left.svg"; // brand
-import "../node_modules/bootstrap-icons/icons/plus-circle-dotted.svg"; // brand
+import "../node_modules/bootstrap-icons/icons/calendar3-event.svg";
+import "../node_modules/bootstrap-icons/icons/clock-history.svg"; // shift template
+import "../node_modules/bootstrap-icons/icons/tag.svg";
+import "../node_modules/bootstrap-icons/icons/hourglass.svg";
+import "../node_modules/bootstrap-icons/icons/map.svg";
+import "../node_modules/bootstrap-icons/icons/geo.svg";
+import "../node_modules/bootstrap-icons/icons/justify-left.svg";
+import "../node_modules/bootstrap-icons/icons/plus-circle-dotted.svg";
 
 // webpack automatically bundles all modules in your
 // entry points. Those entry points can be configured
diff --git a/lib/shift73k/shift_templates.ex b/lib/shift73k/shift_templates.ex
index b5f7139a..9520613c 100644
--- a/lib/shift73k/shift_templates.ex
+++ b/lib/shift73k/shift_templates.ex
@@ -22,8 +22,8 @@ defmodule Shift73k.ShiftTemplates do
   end
 
   def list_shift_templates_by_user_id(user_id) do
-    from(s in ShiftTemplate, where: s.user_id == ^user_id)
-    |> Repo.all()
+    q = from s in ShiftTemplate, where: s.user_id == ^user_id, order_by: s.subject
+    Repo.all(q)
   end
 
   @doc """
diff --git a/lib/shift73k/shift_templates/shift_template.ex b/lib/shift73k/shift_templates/shift_template.ex
index 6dc0975c..f5c6c2ca 100644
--- a/lib/shift73k/shift_templates/shift_template.ex
+++ b/lib/shift73k/shift_templates/shift_template.ex
@@ -8,13 +8,12 @@ defmodule Shift73k.ShiftTemplates.ShiftTemplate do
   @primary_key {:id, :binary_id, autogenerate: true}
   @foreign_key_type :binary_id
   schema "shift_templates" do
-    field :subject, :string, default: "My Work Shift"
+    field :subject, :string
     field :description, :string
     field :location, :string
-    field :timezone, :string, default: @time_zone
-    field :start_time, :time, default: ~T[09:00:00]
-    field :length_hours, :integer, default: 8
-    field :length_minutes, :integer, default: 0
+    field :time_zone, :string, default: @time_zone
+    field :time_start, :time, default: ~T[09:00:00]
+    field :time_end, :time, default: ~T[17:00:00]
 
     belongs_to(:user, Shift73k.Accounts.User)
 
@@ -26,22 +25,61 @@ defmodule Shift73k.ShiftTemplates.ShiftTemplate do
     shift_template
     |> cast(attrs, [
       :subject,
-      :description,
       :location,
-      :timezone,
-      :start_time,
-      :length_hours,
-      :length_minutes,
+      :description,
+      :time_zone,
+      :time_start,
+      :time_end,
       :user_id
     ])
     |> validate_required([
       :subject,
-      :timezone,
-      :start_time,
-      :length_hours
+      :time_zone,
+      :time_start,
+      :time_end
     ])
-    |> validate_number(:length_hours, greater_than_or_equal_to: 0, less_than_or_equal_to: 24)
-    |> validate_number(:length_minutes, greater_than_or_equal_to: 0, less_than: 60)
-    |> validate_inclusion(:timezone, Tzdata.zone_list())
+    |> validate_length(:subject, count: :codepoints, max: 280)
+    |> validate_length(:location, count: :codepoints, max: 280)
+    |> validate_change(:time_end, fn :time_end, time_end ->
+      shift_length = shift_length(get_time_start(attrs), time_end)
+
+      cond do
+        shift_length == 0 ->
+          [time_end: "end time cannot equal start time"]
+
+        shift_length >= 16 * 3600 ->
+          [time_end: "you don't want to work 16 or more hours!"]
+
+        true ->
+          []
+      end
+    end)
+    |> validate_inclusion(:time_zone, Tzdata.zone_list())
+  end
+
+  defp get_time_start(%{"time_start" => time_start}), do: time_start
+  defp get_time_start(%{time_start: time_start}), do: time_start
+  defp get_time_start(_), do: nil
+
+  def shift_length(time_start, time_end) do
+    cond do
+      time_end > time_start ->
+        Time.diff(time_end, time_start)
+
+      time_start > time_end ->
+        len1 = Time.diff(~T[23:59:59], time_start) + 1
+        len2 = Time.diff(time_end, ~T[00:00:00])
+        len1 + len2
+
+      true ->
+        0
+    end
+  end
+
+  def shift_length_h_m_tuple(time_start, time_end) do
+    shift_length_seconds = shift_length(time_start, time_end)
+    h = shift_length_seconds |> Integer.floor_div(3600)
+    m = shift_length_seconds |> rem(3600) |> Integer.floor_div(60)
+    {h, m}
   end
 end
diff --git a/lib/shift73k_web/live/shift_template_live/delete_component.html.leex b/lib/shift73k_web/live/shift_template_live/delete_component.html.leex
index 8047f7c8..ad6435bd 100644
--- a/lib/shift73k_web/live/shift_template_live/delete_component.html.leex
+++ b/lib/shift73k_web/live/shift_template_live/delete_component.html.leex
@@ -1,13 +1,9 @@
 <div class="modal-body">
 
   Are you sure you want to delete "<%= @delete_shift_template.subject %>
-    (<%= @delete_shift_template.start_time |> Calendar.strftime("%I:%M%P") %>
+    (<%= @delete_shift_template.time_start |> Calendar.strftime("%I:%M%P") %>
     &mdash;
-    <%=
-      @delete_shift_template.start_time
-      |> Time.add((60 * 60 * @delete_shift_template.length_hours) + ((@delete_shift_template.length_minutes || 0) * 60))
-      |> Calendar.strftime("%I:%M%P")
-      %>)"?
+    <%= @delete_shift_template.time_end |> Calendar.strftime("%I:%M%P") %>)"?
 
 </div>
 <div class="modal-footer">
diff --git a/lib/shift73k_web/live/shift_template_live/form_component.ex b/lib/shift73k_web/live/shift_template_live/form_component.ex
index b108ea75..b156d53c 100644
--- a/lib/shift73k_web/live/shift_template_live/form_component.ex
+++ b/lib/shift73k_web/live/shift_template_live/form_component.ex
@@ -2,54 +2,96 @@ defmodule Shift73kWeb.ShiftTemplateLive.FormComponent do
   use Shift73kWeb, :live_component
 
   alias Shift73k.ShiftTemplates
+  alias Shift73k.ShiftTemplates.ShiftTemplate
 
   @impl true
   def update(%{shift_template: shift_template} = assigns, socket) do
     changeset = ShiftTemplates.change_shift_template(shift_template)
 
-    {:ok,
-     socket
-     |> assign(assigns)
-     |> assign(:changeset, changeset)}
+    socket
+    |> assign(assigns)
+    |> assign(:changeset, changeset)
+    |> assign_shift_length(shift_template.time_start, shift_template.time_end)
+    |> live_okreply()
+  end
+
+  defp assign_shift_length(socket, time_start, time_end) do
+    shift_length = ShiftTemplate.shift_length_h_m_tuple(time_start, time_end)
+    assign(socket, :shift_length, shift_length)
+  end
+
+  defp prep_shift_template_params(shift_template_params, current_user) do
+    time_start = Time.from_iso8601!("T#{shift_template_params["time_start"]}:00")
+    time_end = Time.from_iso8601!("T#{shift_template_params["time_end"]}:00")
+
+    shift_template_params
+    |> Map.put("time_start", time_start)
+    |> Map.put("time_end", time_end)
+    |> Map.put("user_id", current_user.id)
   end
 
   @impl true
   def handle_event("validate", %{"shift_template" => shift_template_params}, socket) do
+    shift_template_params =
+      prep_shift_template_params(shift_template_params, socket.assigns.current_user)
+
     changeset =
       socket.assigns.shift_template
       |> ShiftTemplates.change_shift_template(shift_template_params)
       |> Map.put(:action, :validate)
 
-    {:noreply, assign(socket, :changeset, changeset)}
+    socket
+    |> assign(:changeset, changeset)
+    |> assign_shift_length(
+      shift_template_params["time_start"],
+      shift_template_params["time_end"]
+    )
+    |> live_noreply()
   end
 
   def handle_event("save", %{"shift_template" => shift_template_params}, socket) do
-    save_shift_template(socket, socket.assigns.action, shift_template_params)
+    save_shift_template(
+      socket,
+      socket.assigns.action,
+      prep_shift_template_params(shift_template_params, socket.assigns.current_user)
+    )
   end
 
-  defp save_shift_template(socket, :edit, shift_template_params) do
-    case ShiftTemplates.update_shift_template(socket.assigns.shift_template, shift_template_params) do
-      {:ok, _shift_template} ->
-        {:noreply,
-         socket
-         |> put_flash(:info, "Shift template updated successfully")
-         |> push_redirect(to: socket.assigns.return_to)}
-
-      {:error, %Ecto.Changeset{} = changeset} ->
-        {:noreply, assign(socket, :changeset, changeset)}
-    end
+  @impl true
+  def handle_event("cancel", _, socket) do
+    {:noreply, push_event(socket, "modal-please-hide", %{})}
   end
 
   defp save_shift_template(socket, :new, shift_template_params) do
     case ShiftTemplates.create_shift_template(shift_template_params) do
       {:ok, _shift_template} ->
-        {:noreply,
-         socket
-         |> put_flash(:info, "Shift template created successfully")
-         |> push_redirect(to: socket.assigns.return_to)}
+        flash = {:info, "Shift template created successfully"}
+        send(self(), {:put_flash_message, flash})
+
+        socket
+        |> push_event("modal-please-hide", %{})
+        |> live_noreply()
 
       {:error, %Ecto.Changeset{} = changeset} ->
         {:noreply, assign(socket, changeset: changeset)}
     end
   end
+
+  defp save_shift_template(socket, :edit, shift_template_params) do
+    case ShiftTemplates.update_shift_template(
+           socket.assigns.shift_template,
+           shift_template_params
+         ) do
+      {:ok, _shift_template} ->
+        flash = {:info, "Shift template updated successfully"}
+        send(self(), {:put_flash_message, flash})
+
+        socket
+        |> push_event("modal-please-hide", %{})
+        |> live_noreply()
+
+      {:error, %Ecto.Changeset{} = changeset} ->
+        {:noreply, assign(socket, :changeset, changeset)}
+    end
+  end
 end
diff --git a/lib/shift73k_web/live/shift_template_live/form_component.html.leex b/lib/shift73k_web/live/shift_template_live/form_component.html.leex
index d560d1b3..c6286012 100644
--- a/lib/shift73k_web/live/shift_template_live/form_component.html.leex
+++ b/lib/shift73k_web/live/shift_template_live/form_component.html.leex
@@ -6,39 +6,107 @@
 
   <div class="modal-body">
 
+    <%= label f, :subject, "Subject/Title", class: "form-label" %>
+    <div class="inner-addon left-addon mb-3" phx-feedback-for="<%= input_id(f, :subject) %>">
+      <%= icon_div @socket, "bi-tag", [class: "icon is-left text-muted fs-5"] %>
+      <%= text_input f, :subject,
+          value: input_value(f, :subject),
+          class: input_class(f, :subject, "form-control"),
+          autofocus: true,
+          aria_describedby: error_ids(f, :subject)
+        %>
+      <%= error_tag f, :subject %>
+    </div>
 
-    <%= label f, :subject %>
-    <%= text_input f, :subject %>
-    <%= error_tag f, :subject %>
+    <div class="row gx-2 gx-sm-3">
 
-    <%= label f, :description %>
-    <%= text_input f, :description %>
-    <%= error_tag f, :description %>
+      <div class="col-6" phx-feedback-for="<%= input_id(f, :time_start) %>">
+        <%= label f, :time_start, "Start", class: "form-label" %>
+        <%= time_input f, :time_start,
+            precision: :minute,
+            value: input_value(f, :time_start),
+            class: input_class(f, :time_start, "form-control"),
+            aria_describedby: error_ids(f, :time_start)
+          %>
+      </div>
 
-    <%= label f, :location %>
-    <%= text_input f, :location %>
-    <%= error_tag f, :location %>
+      <div class="col-6" phx-feedback-for="<%= input_id(f, :time_end) %>">
+        <%= label f, :time_end, "End", class: "form-label" %>
+        <%= time_input f, :time_end,
+            precision: :minute,
+            value: input_value(f, :time_end),
+            class: input_class(f, :time_end, "form-control"),
+            aria_describedby: error_ids(f, :time_end)
+          %>
+      </div>
 
-    <%= label f, :timezone %>
-    <%= text_input f, :timezone %>
-    <%= error_tag f, :timezone %>
+    </div>
 
-    <%= label f, :start_time %>
-    <%= time_select f, :start_time %>
-    <%= error_tag f, :start_time %>
+    <div class="valid-feedback d-block text-primary">Shift length: <%= @shift_length |> elem(0) %>h <%= @shift_length |> elem(1) %>m</div>
+
+    <div class="phx-orphaned-feedback" phx-feedback-for="<%= input_id(f, :time_start) %>">
+      <%= error_tag f, :time_start %>
+    </div>
+    <div class="phx-orphaned-feedback" phx-feedback-for="<%= input_id(f, :time_end) %>">
+      <%= error_tag f, :time_end %>
+    </div>
+
+
+
+    <%= label f, :location, class: "form-label mt-3" %>
+    <div class="inner-addon left-addon mb-3" phx-feedback-for="<%= input_id(f, :location) %>">
+      <%= icon_div @socket, "bi-geo", [class: "icon is-left text-muted fs-5"] %>
+      <%= text_input f, :location,
+          value: input_value(f, :location),
+          class: input_class(f, :location, "form-control"),
+          aria_describedby: error_ids(f, :location)
+        %>
+      <%= error_tag f, :location %>
+    </div>
+
+
+    <%= label f, :description, class: "form-label" %>
+    <div class="mb-3" phx-feedback-for="<%= input_id(f, :description) %>">
+
+      <%= textarea f, :description,
+          value: input_value(f, :description),
+          class: input_class(f, :description, "form-control"),
+          aria_describedby: error_ids(f, :description)
+        %>
+      <%= error_tag f, :description %>
+    </div>
+
+
+    <%= label f, :time_zone, class: "form-label" %>
+    <div class="inner-addon left-addon mb-3" phx-feedback-for="<%= input_id(f, :time_zone) %>">
+      <%= icon_div @socket, "bi-map", [class: "icon is-left text-muted fs-5"] %>
+      <%= text_input f, :time_zone,
+          value: input_value(f, :time_zone),
+          class: "form-control",
+          list: "tz_list"
+        %>
+        <datalist id="tz_list">
+          <%= for tz_name <- Tzdata.zone_list() do %>
+            <option value="<%= tz_name %>"></option>
+          <% end %>
+          end
+        </datalist>
+      <div class="valid-feedback d-block text-primary">Type to search & select from list of known time zones (<%= link "formatted per IANA", to: "https://en.wikipedia.org/wiki/List_of_tz_database_time_zones", target: "_blank" %>)</div>
+      <%= error_tag f, :time_zone %>
+    </div>
 
-    <%= label f, :length_hours %>
-    <%= number_input f, :length_hours %>
-    <%= error_tag f, :length_hours %>
 
-    <%= label f, :length_minutes %>
-    <%= number_input f, :length_minutes %>
-    <%= error_tag f, :length_minutes %>
 
   </div>
   <div class="modal-footer">
 
-    <%= submit "Save", phx_disable_with: "Saving..." %>
+    <%= link "Cancel", to: "#", class: "btn", phx_click: "cancel", phx_target: @myself %>
+    <%= submit "Save",
+        class: "btn btn-primary ",
+        disabled: !@changeset.valid?,
+        aria_disabled: !@changeset.valid? && "true" || false,
+        phx_disable_with: "Saving..."
+      %>
 
   </div>
 
diff --git a/lib/shift73k_web/live/shift_template_live/index.html.leex b/lib/shift73k_web/live/shift_template_live/index.html.leex
index a4728ac9..d6ce5dd0 100644
--- a/lib/shift73k_web/live/shift_template_live/index.html.leex
+++ b/lib/shift73k_web/live/shift_template_live/index.html.leex
@@ -17,7 +17,7 @@
 
 
 <div class="row justify-content-start justify-content-sm-center">
-  <div class="col-md-12 col-lg-10 col-xxl-8">
+  <div class="col-md-10 col-xl-10">
 
     <div class="d-flex flex-column flex-sm-row justify-content-between align-items-start align-items-sm-center">
       <h2 class="mb-3 mb-sm-0">
@@ -35,7 +35,7 @@
 
       <%= for shift <- @shift_templates do %>
 
-        <div class="col-12 col-md-6 col-xl-4 ">
+        <div class="col-12 col-lg-6">
 
           <div class="card mt-4">
             <h5 class="card-header">
@@ -49,23 +49,25 @@
                   <tr>
                     <th scope="row" class="text-end">
                       <%= icon_div @socket, "bi-hourglass", [class: "icon baseline text-muted"] %>
-                      <span class="visually-hidden">Hours</span>
+                      <span class="visually-hidden">Hours:</span>
                     </th>
                     <td>
-                      <%= shift.start_time |> Calendar.strftime("%I:%M%P") %>
+                      <%= shift.time_start |> Calendar.strftime("%I:%M%P") %>
                       &mdash;
-                      <%=
-                        shift.start_time
-                        |> Time.add((60 * 60 * shift.length_hours) + ((shift.length_minutes || 0) * 60))
-                        |> Calendar.strftime("%I:%M%P")
-                        %>
+                      <%= shift.time_end |> Calendar.strftime("%I:%M%P") %>
+                      <span class="text-muted">
+                        <span class="visually-hidden">Shift length:</span>
+                        <% shift_length = ShiftTemplate.shift_length_h_m_tuple(shift.time_start, shift.time_end) %>
+                        (<%= shift_length |> elem(0) %>h <%= shift_length |> elem(1) %>m)
+                      </span>
+                      <span class="valid-feedback d-block text-muted mt-n1">TZ: <%= shift.time_zone %></span>
                     </td>
                   </tr>
 
                   <tr>
                     <th scope="row" class="text-end">
                       <%= icon_div @socket, "bi-geo", [class: "icon baseline text-muted"] %>
-                      <span class="visually-hidden">Location</span>
+                      <span class="visually-hidden">Location:</span>
                     </th>
                     <td>
                       <%= if shift.location do %>
@@ -78,11 +80,11 @@
                   <tr>
                     <th scope="row" class="text-end">
                       <%= icon_div @socket, "bi-justify-left", [class: "icon baseline text-muted"] %>
-                      <span class="visually-hidden">Description</span>
+                      <span class="visually-hidden">Description:</span>
                     </th>
                     <td>
                       <%= if shift.description do %>
-                        <%= shift.description %>
+                        <%= text_to_html shift.description %>
                       <% else %>
                         <span class="text-muted fst-italic">none</span>
                       <% end %>
diff --git a/lib/shift73k_web/templates/layout/_navbar.html.eex b/lib/shift73k_web/templates/layout/_navbar.html.eex
index 808d5cf5..611fa08a 100644
--- a/lib/shift73k_web/templates/layout/_navbar.html.eex
+++ b/lib/shift73k_web/templates/layout/_navbar.html.eex
@@ -15,7 +15,7 @@
         </span>
       </button>
     <% else %>
-      <%= link nav_link_opts(@conn, to: Routes.user_session_path(@conn, :new), class: "btn btn-outline-light") do %>
+      <%= link nav_link_opts(@conn, to: Routes.user_session_path(@conn, :new), class: "btn btn-outline-light d-block d-lg-none") do %>
         <%= icon_div @conn, "bi-door-open", [class: "icon baseline", style: "margin-right:0.125rem;"] %>
         Log in
       <% end %>
@@ -68,6 +68,13 @@
 
         <%= render "navbar/_user_menu.html", assigns %>
 
+        <%= if !@current_user do %>
+          <%= link nav_link_opts(@conn, to: Routes.user_session_path(@conn, :new), class: "btn btn-outline-light d-none d-lg-block") do %>
+            <%= icon_div @conn, "bi-door-open", [class: "icon baseline", style: "margin-right:0.125rem;"] %>
+            Log in
+          <% end %>
+        <% end %>
+
       </ul>
 
     </div>
diff --git a/priv/repo/MOCK_DATA_shift-templates.json b/priv/repo/MOCK_DATA_shift-templates.json
index 77efd9b5..c3701e0b 100755
--- a/priv/repo/MOCK_DATA_shift-templates.json
+++ b/priv/repo/MOCK_DATA_shift-templates.json
@@ -1,1000 +1,9002 @@
-[{"subject":"Strosin LLC","description":"Phased bandwidth-monitored circuit","location":"77624 Melby Place","timezone":"Europe/Oslo","start_time":"20:57","length_hours":4,"length_minutes":36},
-{"subject":"Hyatt Inc","description":"Balanced tertiary superstructure","location":"466 Dawn Avenue","timezone":"Asia/Ho_Chi_Minh","start_time":"18:10","length_hours":5,"length_minutes":null},
-{"subject":"Quigley and Sons","description":null,"location":null,"timezone":"Asia/Makassar","start_time":"17:06","length_hours":4,"length_minutes":null},
-{"subject":"Auer, DuBuque and Raynor","description":null,"location":null,"timezone":"Asia/Chongqing","start_time":"10:51","length_hours":7,"length_minutes":58},
-{"subject":"Lang, Hermann and Bechtelar","description":null,"location":"18771 Grover Place","timezone":"Europe/Amsterdam","start_time":"14:26","length_hours":12,"length_minutes":null},
-{"subject":"Kertzmann, Schiller and Murphy","description":"User-friendly content-based methodology","location":"1936 Sheridan Point","timezone":"Asia/Jakarta","start_time":"12:49","length_hours":9,"length_minutes":50},
-{"subject":"Watsica-Ryan","description":"Integrated value-added ability","location":"7751 Pepper Wood Avenue","timezone":"Europe/Moscow","start_time":"22:07","length_hours":9,"length_minutes":1},
-{"subject":"Barton Group","description":"Self-enabling intermediate instruction set","location":null,"timezone":"Asia/Ho_Chi_Minh","start_time":"22:53","length_hours":9,"length_minutes":null},
-{"subject":"O'Hara-Mills","description":null,"location":null,"timezone":"Asia/Chongqing","start_time":"20:43","length_hours":7,"length_minutes":35},
-{"subject":"Prohaska and Sons","description":"Stand-alone directional strategy","location":"34 Anthes Circle","timezone":"Asia/Chongqing","start_time":"17:55","length_hours":10,"length_minutes":21},
-{"subject":"Frami Inc","description":"Progressive systematic pricing structure","location":"90690 Scott Point","timezone":"Asia/Shanghai","start_time":"10:43","length_hours":7,"length_minutes":24},
-{"subject":"Kris and Sons","description":"Face to face bottom-line architecture","location":null,"timezone":"Africa/Kampala","start_time":"11:07","length_hours":7,"length_minutes":24},
-{"subject":"Walker-Cruickshank","description":null,"location":null,"timezone":"Europe/Stockholm","start_time":"8:14","length_hours":8,"length_minutes":10},
-{"subject":"Legros Inc","description":null,"location":null,"timezone":"Europe/Stockholm","start_time":"13:15","length_hours":11,"length_minutes":null},
-{"subject":"Boyle, Lindgren and Lowe","description":null,"location":null,"timezone":"Europe/Prague","start_time":"19:12","length_hours":12,"length_minutes":null},
-{"subject":"Aufderhar, Lakin and Wolf","description":"Multi-channelled object-oriented encryption","location":"96 Hagan Street","timezone":"Asia/Chongqing","start_time":"7:04","length_hours":5,"length_minutes":21},
-{"subject":"Hansen LLC","description":null,"location":"55 Spaight Trail","timezone":"Asia/Tokyo","start_time":"8:57","length_hours":7,"length_minutes":null},
-{"subject":"Howell, Larson and Leuschke","description":null,"location":null,"timezone":"Europe/Kiev","start_time":"12:18","length_hours":6,"length_minutes":49},
-{"subject":"Altenwerth, Wisoky and Koch","description":null,"location":"8 North Plaza","timezone":"Europe/Copenhagen","start_time":"7:03","length_hours":9,"length_minutes":48},
-{"subject":"Schumm-Yundt","description":null,"location":"94 Crownhardt Avenue","timezone":"Europe/Stockholm","start_time":"21:43","length_hours":8,"length_minutes":50},
-{"subject":"Walsh, Brown and Blanda","description":null,"location":null,"timezone":"Europe/Stockholm","start_time":"14:24","length_hours":9,"length_minutes":null},
-{"subject":"Gleason Group","description":null,"location":"66371 Oak Valley Center","timezone":"America/Denver","start_time":"12:50","length_hours":5,"length_minutes":null},
-{"subject":"Bailey-Corwin","description":"Persevering heuristic interface","location":null,"timezone":"Europe/Dublin","start_time":"14:13","length_hours":4,"length_minutes":null},
-{"subject":"Moore, Kirlin and Jenkins","description":"Intuitive 5th generation instruction set","location":"2 Amoth Road","timezone":"America/Havana","start_time":"4:51","length_hours":10,"length_minutes":38},
-{"subject":"Bahringer, Haley and Doyle","description":"Reduced directional definition","location":"28 Fulton Hill","timezone":"Asia/Jakarta","start_time":"17:57","length_hours":11,"length_minutes":22},
-{"subject":"Powlowski-Keeling","description":"Extended content-based open system","location":null,"timezone":"Asia/Chongqing","start_time":"15:17","length_hours":5,"length_minutes":44},
-{"subject":"Durgan-Howell","description":"Profit-focused zero defect encoding","location":null,"timezone":"Africa/Lubumbashi","start_time":"12:29","length_hours":6,"length_minutes":null},
-{"subject":"Casper and Sons","description":"Monitored foreground support","location":"49751 Grover Lane","timezone":"America/Anguilla","start_time":"8:25","length_hours":6,"length_minutes":45},
-{"subject":"Hamill, Rau and Stark","description":"Function-based content-based projection","location":null,"timezone":"Asia/Makassar","start_time":"20:20","length_hours":8,"length_minutes":null},
-{"subject":"Ward, Haley and Dietrich","description":"Front-line leading edge complexity","location":"66004 Alpine Court","timezone":"America/Toronto","start_time":"15:36","length_hours":12,"length_minutes":5},
-{"subject":"Leuschke-Abbott","description":null,"location":"79 Ruskin Pass","timezone":"Europe/Athens","start_time":"14:33","length_hours":4,"length_minutes":null},
-{"subject":"Grimes and Sons","description":"Horizontal logistical groupware","location":"8 Hayes Avenue","timezone":"Europe/Warsaw","start_time":"10:31","length_hours":8,"length_minutes":25},
-{"subject":"Weissnat LLC","description":null,"location":"56793 Lyons Lane","timezone":"Europe/Stockholm","start_time":"12:58","length_hours":4,"length_minutes":24},
-{"subject":"Lubowitz LLC","description":"Up-sized optimizing project","location":"1 Columbus Road","timezone":"Asia/Chongqing","start_time":"20:23","length_hours":6,"length_minutes":57},
-{"subject":"Ebert, Rutherford and Volkman","description":"Networked didactic definition","location":"0106 Moland Crossing","timezone":"Asia/Vientiane","start_time":"6:53","length_hours":11,"length_minutes":27},
-{"subject":"Bashirian, Haley and Weimann","description":"Synergized interactive flexibility","location":"3 Melvin Place","timezone":"Asia/Chongqing","start_time":"21:51","length_hours":9,"length_minutes":47},
-{"subject":"Auer-Rowe","description":"De-engineered coherent knowledge base","location":"36 Birchwood Circle","timezone":"Europe/Dublin","start_time":"7:38","length_hours":12,"length_minutes":9},
-{"subject":"Orn and Sons","description":null,"location":"141 North Crossing","timezone":"Europe/Warsaw","start_time":"7:58","length_hours":12,"length_minutes":35},
-{"subject":"Carroll Inc","description":"Implemented empowering encoding","location":"2 Grasskamp Terrace","timezone":"Europe/Athens","start_time":"7:59","length_hours":10,"length_minutes":null},
-{"subject":"Grady-Sawayn","description":"Quality-focused 5th generation collaboration","location":"6317 Homewood Point","timezone":"Asia/Jakarta","start_time":"9:33","length_hours":6,"length_minutes":null},
-{"subject":"Skiles Inc","description":"Cross-platform uniform open system","location":"6 Stuart Alley","timezone":"Asia/Oral","start_time":"7:29","length_hours":10,"length_minutes":56},
-{"subject":"Bode-Stroman","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"17:56","length_hours":5,"length_minutes":45},
-{"subject":"Bahringer, Crist and Dietrich","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"7:22","length_hours":7,"length_minutes":null},
-{"subject":"Koch-Ebert","description":"Open-architected asynchronous service-desk","location":"777 Melrose Alley","timezone":"Asia/Harbin","start_time":"13:18","length_hours":6,"length_minutes":47},
-{"subject":"Emard LLC","description":"Robust 24/7 support","location":"6 Annamark Point","timezone":"Asia/Shanghai","start_time":"13:27","length_hours":6,"length_minutes":5},
-{"subject":"Konopelski, Brekke and DuBuque","description":"Synergized 6th generation access","location":"626 Erie Center","timezone":"America/Lima","start_time":"10:16","length_hours":8,"length_minutes":1},
-{"subject":"Schamberger Inc","description":"Phased transitional support","location":"39428 Orin Terrace","timezone":"Asia/Manila","start_time":"13:10","length_hours":9,"length_minutes":25},
-{"subject":"Erdman LLC","description":"Future-proofed bi-directional service-desk","location":"7351 Barnett Lane","timezone":"Asia/Manila","start_time":"7:41","length_hours":10,"length_minutes":2},
-{"subject":"Langworth, Herzog and Jaskolski","description":null,"location":"935 Shasta Plaza","timezone":"Europe/Athens","start_time":"13:09","length_hours":5,"length_minutes":23},
-{"subject":"Pouros, Turner and Abernathy","description":null,"location":"331 Reindahl Way","timezone":"Asia/Urumqi","start_time":"21:45","length_hours":5,"length_minutes":57},
-{"subject":"Berge LLC","description":"Multi-tiered multimedia adapter","location":"5750 Center Place","timezone":"Africa/Accra","start_time":"4:35","length_hours":4,"length_minutes":49},
-{"subject":"Rath-Greenfelder","description":"Fundamental multi-state time-frame","location":"9 Sachs Center","timezone":"Asia/Jakarta","start_time":"12:58","length_hours":11,"length_minutes":0},
-{"subject":"Purdy-Littel","description":"Multi-tiered non-volatile middleware","location":null,"timezone":"America/Argentina/Cordoba","start_time":"6:30","length_hours":12,"length_minutes":35},
-{"subject":"Goldner, Veum and Langworth","description":"Balanced asymmetric project","location":"4807 Norway Maple Trail","timezone":"America/New_York","start_time":"6:59","length_hours":10,"length_minutes":19},
-{"subject":"Smith Group","description":"Streamlined tangible capability","location":"37688 Hovde Court","timezone":"Asia/Jakarta","start_time":"6:17","length_hours":12,"length_minutes":null},
-{"subject":"Waters, Robel and Roberts","description":"Streamlined bifurcated process improvement","location":"6 Jackson Trail","timezone":"Asia/Kuching","start_time":"8:14","length_hours":8,"length_minutes":41},
-{"subject":"Harvey and Sons","description":"Distributed zero administration productivity","location":"04275 7th Drive","timezone":"Asia/Shanghai","start_time":"15:26","length_hours":7,"length_minutes":null},
-{"subject":"Nader and Sons","description":"Self-enabling reciprocal software","location":"9 Monterey Terrace","timezone":"America/Havana","start_time":"17:19","length_hours":12,"length_minutes":null},
-{"subject":"Kshlerin Group","description":"Persevering bi-directional model","location":"2 Farragut Plaza","timezone":"Asia/Kathmandu","start_time":"10:06","length_hours":9,"length_minutes":null},
-{"subject":"Wisoky, Weber and Ullrich","description":null,"location":"5 Scoville Place","timezone":"America/New_York","start_time":"22:10","length_hours":4,"length_minutes":6},
-{"subject":"Hirthe, Ernser and Farrell","description":"Function-based maximized system engine","location":null,"timezone":"Europe/Paris","start_time":"6:08","length_hours":4,"length_minutes":49},
-{"subject":"Quigley-Wisoky","description":"Enhanced motivating throughput","location":"44131 Monument Court","timezone":"Europe/Zagreb","start_time":"8:57","length_hours":10,"length_minutes":null},
-{"subject":"McClure LLC","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"5:45","length_hours":6,"length_minutes":26},
-{"subject":"Boyle LLC","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"5:44","length_hours":6,"length_minutes":null},
-{"subject":"Turcotte, Sporer and Raynor","description":"Universal national system engine","location":null,"timezone":"Europe/Paris","start_time":"11:21","length_hours":4,"length_minutes":null},
-{"subject":"Collins-Morar","description":"Operative fault-tolerant task-force","location":null,"timezone":"Asia/Chongqing","start_time":"10:05","length_hours":5,"length_minutes":33},
-{"subject":"Stokes Group","description":null,"location":"3747 Novick Trail","timezone":"Asia/Makassar","start_time":"7:03","length_hours":5,"length_minutes":2},
-{"subject":"Lubowitz-O'Reilly","description":null,"location":"4 Prentice Hill","timezone":"Asia/Chongqing","start_time":"16:36","length_hours":8,"length_minutes":13},
-{"subject":"Haag-Bruen","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"14:03","length_hours":5,"length_minutes":null},
-{"subject":"Padberg and Sons","description":"Profit-focused upward-trending product","location":null,"timezone":"Europe/Warsaw","start_time":"17:09","length_hours":4,"length_minutes":3},
-{"subject":"Smitham-Hintz","description":"Distributed value-added function","location":null,"timezone":"Europe/Lisbon","start_time":"8:35","length_hours":6,"length_minutes":9},
-{"subject":"Heaney, Beatty and Lind","description":"Object-based impactful product","location":"7 Clarendon Park","timezone":"Europe/Zaporozhye","start_time":"4:19","length_hours":7,"length_minutes":9},
-{"subject":"Sanford Group","description":"Vision-oriented responsive success","location":null,"timezone":"Europe/Lisbon","start_time":"13:16","length_hours":5,"length_minutes":null},
-{"subject":"O'Connell-Pagac","description":null,"location":"70534 Lerdahl Junction","timezone":"Europe/Skopje","start_time":"5:57","length_hours":10,"length_minutes":22},
-{"subject":"Harris and Sons","description":null,"location":"9113 Loeprich Plaza","timezone":"Europe/Lisbon","start_time":"9:17","length_hours":4,"length_minutes":39},
-{"subject":"Deckow, Corkery and Mante","description":null,"location":null,"timezone":"Atlantic/Faroe","start_time":"17:12","length_hours":12,"length_minutes":46},
-{"subject":"Haag and Sons","description":null,"location":null,"timezone":"America/Montreal","start_time":"10:12","length_hours":7,"length_minutes":51},
-{"subject":"Welch LLC","description":"Virtual stable attitude","location":"27 Scott Circle","timezone":"Asia/Manila","start_time":"19:18","length_hours":4,"length_minutes":6},
-{"subject":"Schaefer Inc","description":null,"location":"4 Pawling Hill","timezone":"Asia/Baku","start_time":"20:31","length_hours":5,"length_minutes":29},
-{"subject":"Donnelly, Strosin and Metz","description":null,"location":null,"timezone":"Asia/Rangoon","start_time":"8:41","length_hours":12,"length_minutes":null},
-{"subject":"King-Carter","description":"Up-sized bandwidth-monitored analyzer","location":"4574 Everett Avenue","timezone":"America/New_York","start_time":"12:52","length_hours":4,"length_minutes":32},
-{"subject":"Paucek-Medhurst","description":null,"location":"02 Holy Cross Parkway","timezone":"America/Caracas","start_time":"18:08","length_hours":6,"length_minutes":58},
-{"subject":"Brakus LLC","description":null,"location":"0382 Vidon Court","timezone":"America/Lima","start_time":"15:52","length_hours":7,"length_minutes":null},
-{"subject":"Kohler-Marquardt","description":null,"location":"91 Roxbury Avenue","timezone":"Asia/Shanghai","start_time":"4:28","length_hours":12,"length_minutes":null},
-{"subject":"Schumm-Kerluke","description":"Open-architected impactful parallelism","location":null,"timezone":"America/Montreal","start_time":"14:58","length_hours":7,"length_minutes":18},
-{"subject":"Schultz, Schaefer and Schaefer","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"5:54","length_hours":11,"length_minutes":35},
-{"subject":"Bode-Runte","description":"Re-contextualized even-keeled hierarchy","location":"2 Jackson Drive","timezone":"Europe/London","start_time":"8:15","length_hours":6,"length_minutes":49},
-{"subject":"Waters Group","description":"Monitored bi-directional approach","location":null,"timezone":"Asia/Shanghai","start_time":"18:03","length_hours":6,"length_minutes":1},
-{"subject":"Swaniawski Group","description":null,"location":"1 Jenna Parkway","timezone":"Asia/Jerusalem","start_time":"4:48","length_hours":10,"length_minutes":null},
-{"subject":"Hartmann, Stracke and Schaefer","description":"Ameliorated cohesive task-force","location":"9041 Hanover Crossing","timezone":"Europe/Kiev","start_time":"8:31","length_hours":7,"length_minutes":27},
-{"subject":"Schuster, Stehr and Schaefer","description":null,"location":null,"timezone":"Asia/Manila","start_time":"9:38","length_hours":11,"length_minutes":25},
-{"subject":"Hintz-Koepp","description":"Front-line responsive process improvement","location":"9 Claremont Lane","timezone":"Asia/Chongqing","start_time":"18:48","length_hours":7,"length_minutes":31},
-{"subject":"Prosacco-Yundt","description":"Open-architected regional implementation","location":"58119 Artisan Pass","timezone":"Asia/Shanghai","start_time":"13:09","length_hours":8,"length_minutes":9},
-{"subject":"Leffler Inc","description":"Self-enabling global orchestration","location":"95 Old Gate Road","timezone":"Europe/Helsinki","start_time":"15:10","length_hours":8,"length_minutes":42},
-{"subject":"Bergstrom-Senger","description":null,"location":null,"timezone":"Europe/Stockholm","start_time":"9:07","length_hours":12,"length_minutes":7},
-{"subject":"Sawayn Group","description":"Switchable 4th generation concept","location":"76 Spohn Parkway","timezone":"Europe/Sarajevo","start_time":"11:02","length_hours":12,"length_minutes":11},
-{"subject":"Wuckert, Brakus and Gleichner","description":"Fully-configurable 4th generation hub","location":"782 Milwaukee Drive","timezone":"Asia/Shanghai","start_time":"13:53","length_hours":7,"length_minutes":31},
-{"subject":"Anderson Inc","description":"Focused composite definition","location":"61953 Arrowood Street","timezone":"America/Sao_Paulo","start_time":"15:53","length_hours":12,"length_minutes":null},
-{"subject":"Thiel Inc","description":null,"location":"1 Utah Parkway","timezone":"Asia/Shanghai","start_time":"22:49","length_hours":4,"length_minutes":45},
-{"subject":"Satterfield-Prohaska","description":"Decentralized web-enabled monitoring","location":"35 Kensington Center","timezone":"Asia/Shanghai","start_time":"11:19","length_hours":7,"length_minutes":33},
-{"subject":"Bogan-Kreiger","description":"Progressive 24 hour knowledge base","location":"615 Oakridge Lane","timezone":"Africa/Djibouti","start_time":"8:06","length_hours":4,"length_minutes":32},
-{"subject":"Glover, O'Keefe and Hartmann","description":null,"location":"12790 Farmco Parkway","timezone":"America/Caracas","start_time":"22:56","length_hours":4,"length_minutes":16},
-{"subject":"Pfannerstill LLC","description":null,"location":"57 Nevada Junction","timezone":"Australia/Sydney","start_time":"10:03","length_hours":8,"length_minutes":null},
-{"subject":"Haley Inc","description":"Progressive encompassing policy","location":"40224 Carpenter Lane","timezone":"Africa/Libreville","start_time":"14:21","length_hours":8,"length_minutes":null},
-{"subject":"Halvorson-Renner","description":null,"location":"8 Derek Circle","timezone":"Asia/Makassar","start_time":"13:31","length_hours":5,"length_minutes":17},
-{"subject":"Borer Group","description":null,"location":null,"timezone":"Asia/Bangkok","start_time":"14:17","length_hours":6,"length_minutes":41},
-{"subject":"Hauck Group","description":null,"location":"3 Cottonwood Junction","timezone":"America/Asuncion","start_time":"6:57","length_hours":10,"length_minutes":40},
-{"subject":"Bahringer, Steuber and Kohler","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"21:17","length_hours":8,"length_minutes":47},
-{"subject":"Gerlach Group","description":null,"location":"2 Fulton Park","timezone":"Europe/Athens","start_time":"5:11","length_hours":4,"length_minutes":null},
-{"subject":"Zieme-Aufderhar","description":null,"location":"65445 Rusk Trail","timezone":"America/Argentina/Cordoba","start_time":"20:10","length_hours":4,"length_minutes":51},
-{"subject":"Effertz, Adams and Collier","description":"Robust mission-critical standardization","location":null,"timezone":"Europe/Stockholm","start_time":"17:38","length_hours":12,"length_minutes":null},
-{"subject":"Schoen, Reilly and Hudson","description":null,"location":"59 Jay Hill","timezone":"Asia/Dushanbe","start_time":"4:20","length_hours":10,"length_minutes":24},
-{"subject":"McKenzie Inc","description":null,"location":"367 Summer Ridge Point","timezone":"Asia/Shanghai","start_time":"12:01","length_hours":4,"length_minutes":14},
-{"subject":"Langosh-Kohler","description":"Profit-focused secondary process improvement","location":"64246 Northridge Place","timezone":"America/Caracas","start_time":"7:52","length_hours":9,"length_minutes":null},
-{"subject":"Johnston-Murazik","description":null,"location":"34519 Burrows Street","timezone":"Asia/Ashgabat","start_time":"8:11","length_hours":12,"length_minutes":55},
-{"subject":"Smitham, Strosin and D'Amore","description":"Universal next generation middleware","location":null,"timezone":"Asia/Muscat","start_time":"9:18","length_hours":4,"length_minutes":null},
-{"subject":"Reichert-Osinski","description":null,"location":"0127 Hauk Pass","timezone":"Europe/Lisbon","start_time":"12:57","length_hours":9,"length_minutes":null},
-{"subject":"Sawayn, Cole and Herman","description":"Virtual hybrid task-force","location":"65 Walton Drive","timezone":"Asia/Shanghai","start_time":"9:20","length_hours":9,"length_minutes":null},
-{"subject":"Olson-Bayer","description":"Managed discrete task-force","location":"0 Melody Junction","timezone":"America/Sao_Paulo","start_time":"13:26","length_hours":8,"length_minutes":null},
-{"subject":"Leuschke, Blick and Kunde","description":null,"location":"4 Anhalt Alley","timezone":"Asia/Manila","start_time":"12:07","length_hours":5,"length_minutes":41},
-{"subject":"Russel Inc","description":"Public-key global access","location":null,"timezone":"Asia/Shanghai","start_time":"16:22","length_hours":9,"length_minutes":null},
-{"subject":"Oberbrunner, Frami and McClure","description":null,"location":"853 Dennis Crossing","timezone":"Europe/Riga","start_time":"21:22","length_hours":9,"length_minutes":11},
-{"subject":"Weissnat-Spinka","description":"Reduced actuating analyzer","location":"336 Hanover Court","timezone":"Asia/Baku","start_time":"7:18","length_hours":12,"length_minutes":16},
-{"subject":"Lakin, Tremblay and Pfeffer","description":"Managed stable emulation","location":null,"timezone":"Europe/Prague","start_time":"13:29","length_hours":12,"length_minutes":null},
-{"subject":"Emmerich LLC","description":"Cross-platform systemic concept","location":"42 Brickson Park Park","timezone":"Asia/Tokyo","start_time":"6:50","length_hours":12,"length_minutes":21},
-{"subject":"Reichel, Barrows and Weissnat","description":"Customer-focused zero administration collaboration","location":"52440 Anderson Alley","timezone":"Asia/Jakarta","start_time":"4:33","length_hours":6,"length_minutes":32},
-{"subject":"Funk, Cronin and Larkin","description":"Diverse foreground implementation","location":"9 Northridge Terrace","timezone":"Asia/Makassar","start_time":"5:58","length_hours":11,"length_minutes":48},
-{"subject":"Kovacek, Davis and Kovacek","description":"Balanced cohesive conglomeration","location":"21522 Dorton Plaza","timezone":"Europe/Warsaw","start_time":"12:01","length_hours":11,"length_minutes":23},
-{"subject":"Wisozk, Powlowski and Hane","description":"Public-key full-range synergy","location":"9305 Carey Pass","timezone":"America/Argentina/Salta","start_time":"9:49","length_hours":9,"length_minutes":50},
-{"subject":"Streich, Romaguera and Parisian","description":null,"location":"56730 Granby Junction","timezone":"Asia/Chongqing","start_time":"17:36","length_hours":8,"length_minutes":4},
-{"subject":"Robel-Predovic","description":"Polarised responsive product","location":"37 Moulton Trail","timezone":"America/Argentina/Salta","start_time":"19:53","length_hours":8,"length_minutes":5},
-{"subject":"White-Spinka","description":"Synergistic explicit matrix","location":"3592 Melby Drive","timezone":"Asia/Riyadh","start_time":"22:43","length_hours":9,"length_minutes":null},
-{"subject":"Boyle Group","description":null,"location":null,"timezone":"Asia/Tokyo","start_time":"20:16","length_hours":8,"length_minutes":56},
-{"subject":"Schiller and Sons","description":"Front-line systematic protocol","location":null,"timezone":"Asia/Harbin","start_time":"11:20","length_hours":12,"length_minutes":57},
-{"subject":"O'Kon, Roob and Hagenes","description":"Face to face full-range utilisation","location":"9682 Ruskin Plaza","timezone":"America/Tegucigalpa","start_time":"17:01","length_hours":8,"length_minutes":8},
-{"subject":"Torphy, Padberg and Bashirian","description":"Cloned tangible approach","location":"898 Melrose Road","timezone":"Asia/Ho_Chi_Minh","start_time":"9:41","length_hours":12,"length_minutes":38},
-{"subject":"Bernhard, Koss and Botsford","description":"Persistent upward-trending infrastructure","location":null,"timezone":"Asia/Chongqing","start_time":"15:58","length_hours":10,"length_minutes":null},
-{"subject":"Shields, D'Amore and Ritchie","description":"Focused radical initiative","location":"37816 Summer Ridge Crossing","timezone":"Africa/Casablanca","start_time":"11:12","length_hours":8,"length_minutes":40},
-{"subject":"Boehm-Becker","description":null,"location":null,"timezone":"America/Lima","start_time":"17:03","length_hours":8,"length_minutes":53},
-{"subject":"Osinski, Kiehn and Purdy","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"9:04","length_hours":9,"length_minutes":null},
-{"subject":"Kohler-Reichert","description":null,"location":"058 Rockefeller Terrace","timezone":"Europe/Warsaw","start_time":"16:52","length_hours":9,"length_minutes":null},
-{"subject":"Heller, Walter and Purdy","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"15:03","length_hours":11,"length_minutes":null},
-{"subject":"Strosin, Parker and Williamson","description":null,"location":"767 Esch Place","timezone":"Europe/Belgrade","start_time":"15:19","length_hours":7,"length_minutes":35},
-{"subject":"Mosciski, Torphy and Hamill","description":"Ameliorated maximized customer loyalty","location":"66877 Boyd Road","timezone":"Asia/Harbin","start_time":"21:45","length_hours":5,"length_minutes":null},
-{"subject":"Mayert and Sons","description":null,"location":"9 Heath Crossing","timezone":"America/Sao_Paulo","start_time":"17:13","length_hours":5,"length_minutes":null},
-{"subject":"Mohr Group","description":null,"location":null,"timezone":"Asia/Irkutsk","start_time":"22:15","length_hours":9,"length_minutes":4},
-{"subject":"Hermiston-Zemlak","description":null,"location":"2170 Pond Plaza","timezone":"Asia/Shanghai","start_time":"6:53","length_hours":11,"length_minutes":25},
-{"subject":"Durgan-Hand","description":"Mandatory full-range functionalities","location":null,"timezone":"Asia/Manila","start_time":"7:40","length_hours":7,"length_minutes":null},
-{"subject":"Wunsch-Hermann","description":"Persistent web-enabled methodology","location":null,"timezone":"Asia/Shanghai","start_time":"21:17","length_hours":4,"length_minutes":null},
-{"subject":"Johns, Langosh and Kuphal","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"19:50","length_hours":6,"length_minutes":57},
-{"subject":"Boehm-Kemmer","description":"Up-sized systemic implementation","location":null,"timezone":"Asia/Shanghai","start_time":"5:39","length_hours":7,"length_minutes":35},
-{"subject":"Schaefer, Fritsch and Jacobson","description":null,"location":null,"timezone":"Africa/Kampala","start_time":"19:07","length_hours":11,"length_minutes":20},
-{"subject":"Weissnat, Ritchie and Cronin","description":"Enterprise-wide 4th generation challenge","location":"700 Express Alley","timezone":"Asia/Manila","start_time":"13:56","length_hours":11,"length_minutes":1},
-{"subject":"Frami LLC","description":null,"location":"1653 Duke Street","timezone":"Africa/Niamey","start_time":"22:51","length_hours":12,"length_minutes":21},
-{"subject":"Feeney-Keeling","description":"Synchronised secondary software","location":"3636 Shoshone Junction","timezone":"America/Tegucigalpa","start_time":"14:23","length_hours":8,"length_minutes":14},
-{"subject":"Gibson, Trantow and Gutmann","description":null,"location":"43533 Prentice Way","timezone":"Africa/Dar_es_Salaam","start_time":"17:53","length_hours":7,"length_minutes":null},
-{"subject":"Schulist Group","description":"Persevering stable model","location":null,"timezone":"Pacific/Noumea","start_time":"21:35","length_hours":11,"length_minutes":19},
-{"subject":"Medhurst-Fahey","description":"Automated clear-thinking conglomeration","location":"2 Columbus Way","timezone":"Europe/Warsaw","start_time":"4:29","length_hours":12,"length_minutes":22},
-{"subject":"Trantow-Krajcik","description":null,"location":"4 Transport Junction","timezone":"Asia/Chongqing","start_time":"16:24","length_hours":12,"length_minutes":15},
-{"subject":"Koelpin, Stracke and Koch","description":"Organized zero administration groupware","location":"27116 Park Meadow Trail","timezone":"America/Managua","start_time":"10:03","length_hours":9,"length_minutes":22},
-{"subject":"Schumm LLC","description":"Synergized contextually-based leverage","location":"775 2nd Center","timezone":"Europe/Warsaw","start_time":"7:33","length_hours":4,"length_minutes":43},
-{"subject":"Gerhold-Lemke","description":"Persistent client-driven internet solution","location":"26181 Havey Road","timezone":"Europe/Lisbon","start_time":"22:59","length_hours":12,"length_minutes":32},
-{"subject":"Schimmel LLC","description":"Synchronised actuating architecture","location":null,"timezone":"Europe/Helsinki","start_time":"19:38","length_hours":11,"length_minutes":57},
-{"subject":"Shields and Sons","description":"Expanded responsive toolset","location":null,"timezone":"Africa/Bujumbura","start_time":"14:49","length_hours":8,"length_minutes":32},
-{"subject":"Kub Inc","description":"Compatible 6th generation time-frame","location":null,"timezone":"America/Detroit","start_time":"11:40","length_hours":11,"length_minutes":37},
-{"subject":"Kihn, Mosciski and Heidenreich","description":"Cross-group full-range algorithm","location":"22 Farwell Place","timezone":"Asia/Hebron","start_time":"21:14","length_hours":7,"length_minutes":31},
-{"subject":"Harris-Bayer","description":"Horizontal stable process improvement","location":"7 Barnett Avenue","timezone":"Europe/Uzhgorod","start_time":"19:56","length_hours":9,"length_minutes":4},
-{"subject":"Reinger Group","description":"Synergized client-driven leverage","location":"57 Straubel Way","timezone":"Asia/Jakarta","start_time":"11:00","length_hours":11,"length_minutes":null},
-{"subject":"Towne LLC","description":null,"location":"70 Mitchell Avenue","timezone":"Europe/Uzhgorod","start_time":"19:12","length_hours":8,"length_minutes":43},
-{"subject":"Rohan, Breitenberg and Volkman","description":null,"location":null,"timezone":"America/New_York","start_time":"22:33","length_hours":9,"length_minutes":31},
-{"subject":"Hilll, Altenwerth and Hermann","description":"Grass-roots intangible model","location":"66 Hintze Junction","timezone":"Asia/Manila","start_time":"8:53","length_hours":6,"length_minutes":42},
-{"subject":"Howell and Sons","description":null,"location":null,"timezone":"America/Lima","start_time":"20:56","length_hours":11,"length_minutes":40},
-{"subject":"Hoppe-Koelpin","description":"Sharable 5th generation emulation","location":"78148 Vahlen Crossing","timezone":"Europe/Paris","start_time":"15:13","length_hours":10,"length_minutes":null},
-{"subject":"Langosh-Beatty","description":"Sharable foreground hub","location":null,"timezone":"Asia/Shanghai","start_time":"14:22","length_hours":11,"length_minutes":23},
-{"subject":"Casper, Hegmann and D'Amore","description":"Upgradable object-oriented process improvement","location":"2628 Calypso Street","timezone":"Asia/Shanghai","start_time":"17:59","length_hours":9,"length_minutes":33},
-{"subject":"O'Kon, Hintz and Boehm","description":"Monitored real-time utilisation","location":"42917 Waxwing Center","timezone":"Europe/Simferopol","start_time":"19:31","length_hours":6,"length_minutes":54},
-{"subject":"Hermann-Gerhold","description":null,"location":"091 Tennessee Hill","timezone":"America/Toronto","start_time":"14:13","length_hours":10,"length_minutes":2},
-{"subject":"Hayes, Blanda and Gusikowski","description":"Customer-focused tangible knowledge base","location":"0985 Knutson Crossing","timezone":"Europe/Berlin","start_time":"17:20","length_hours":11,"length_minutes":43},
-{"subject":"Blanda, Hahn and Franecki","description":"Front-line explicit paradigm","location":"7461 Toban Point","timezone":"Europe/Warsaw","start_time":"6:46","length_hours":5,"length_minutes":null},
-{"subject":"Rowe LLC","description":"Advanced attitude-oriented alliance","location":null,"timezone":"Indian/Antananarivo","start_time":"14:05","length_hours":9,"length_minutes":13},
-{"subject":"Stehr-Rice","description":"Programmable optimizing hub","location":"5129 Claremont Street","timezone":"Asia/Yekaterinburg","start_time":"5:30","length_hours":4,"length_minutes":52},
-{"subject":"Waters-Blick","description":"Fundamental client-server moderator","location":null,"timezone":"America/Sao_Paulo","start_time":"19:16","length_hours":6,"length_minutes":1},
-{"subject":"Wehner-Heathcote","description":"Devolved homogeneous extranet","location":"38260 Mesta Parkway","timezone":"Asia/Manila","start_time":"14:00","length_hours":11,"length_minutes":3},
-{"subject":"Weimann Inc","description":"Profit-focused dynamic algorithm","location":"58 South Junction","timezone":"Asia/Taipei","start_time":"8:34","length_hours":7,"length_minutes":33},
-{"subject":"Altenwerth-Vandervort","description":"Re-contextualized needs-based methodology","location":"9558 Cambridge Court","timezone":"Europe/Athens","start_time":"11:37","length_hours":12,"length_minutes":57},
-{"subject":"Nitzsche-Ondricka","description":"Synergized systemic forecast","location":null,"timezone":"Europe/Stockholm","start_time":"4:18","length_hours":7,"length_minutes":57},
-{"subject":"Dickinson Inc","description":null,"location":"852 Portage Court","timezone":"America/Sao_Paulo","start_time":"18:02","length_hours":6,"length_minutes":42},
-{"subject":"Kassulke, Von and Goyette","description":"Face to face transitional strategy","location":null,"timezone":"America/Caracas","start_time":"22:29","length_hours":7,"length_minutes":29},
-{"subject":"Medhurst Inc","description":"Automated eco-centric info-mediaries","location":null,"timezone":"Europe/Zurich","start_time":"7:20","length_hours":4,"length_minutes":null},
-{"subject":"Durgan, Hickle and Ebert","description":"Digitized dynamic challenge","location":"826 Logan Road","timezone":"Asia/Jakarta","start_time":"6:45","length_hours":6,"length_minutes":null},
-{"subject":"Conn, Ondricka and Muller","description":"Organic multi-tasking pricing structure","location":"81 Westport Hill","timezone":"Asia/Chongqing","start_time":"14:16","length_hours":6,"length_minutes":null},
-{"subject":"D'Amore-Parker","description":null,"location":null,"timezone":"Asia/Tokyo","start_time":"19:01","length_hours":11,"length_minutes":14},
-{"subject":"Ortiz, Bednar and Quigley","description":"Monitored modular methodology","location":"60057 Luster Alley","timezone":"Asia/Bangkok","start_time":"16:08","length_hours":5,"length_minutes":24},
-{"subject":"Medhurst, Walker and Carter","description":"Multi-lateral static time-frame","location":"9 Ohio Plaza","timezone":"Europe/Uzhgorod","start_time":"9:54","length_hours":4,"length_minutes":57},
-{"subject":"Carter Inc","description":"Centralized foreground parallelism","location":"247 Twin Pines Trail","timezone":"America/Bogota","start_time":"6:59","length_hours":6,"length_minutes":null},
-{"subject":"Feeney Inc","description":null,"location":"0 Warbler Place","timezone":"Europe/Paris","start_time":"16:46","length_hours":10,"length_minutes":13},
-{"subject":"Upton, Hirthe and Lynch","description":null,"location":"93 Kings Pass","timezone":"Europe/Moscow","start_time":"6:41","length_hours":6,"length_minutes":null},
-{"subject":"Kovacek Inc","description":null,"location":null,"timezone":"Asia/Kabul","start_time":"4:23","length_hours":4,"length_minutes":34},
-{"subject":"Goyette, Lehner and Quigley","description":"De-engineered bottom-line knowledge user","location":null,"timezone":"Europe/Paris","start_time":"10:07","length_hours":9,"length_minutes":31},
-{"subject":"Mertz, Thiel and Hammes","description":"Adaptive demand-driven extranet","location":"9207 Crest Line Junction","timezone":"Europe/Athens","start_time":"9:44","length_hours":8,"length_minutes":24},
-{"subject":"Marquardt-Green","description":"Compatible mobile portal","location":"3863 Carpenter Drive","timezone":"Asia/Chongqing","start_time":"16:38","length_hours":12,"length_minutes":52},
-{"subject":"Frami Group","description":"Customizable demand-driven paradigm","location":"2 Milwaukee Drive","timezone":"Europe/Amsterdam","start_time":"21:47","length_hours":11,"length_minutes":53},
-{"subject":"Veum, Vandervort and Nikolaus","description":null,"location":"208 Lyons Alley","timezone":"Asia/Makassar","start_time":"16:11","length_hours":12,"length_minutes":29},
-{"subject":"Gutkowski-McGlynn","description":"Synergized coherent adapter","location":"21331 Troy Junction","timezone":"Asia/Chongqing","start_time":"4:18","length_hours":10,"length_minutes":27},
-{"subject":"Bergstrom, Kerluke and Yundt","description":"Decentralized scalable superstructure","location":"0230 Heffernan Crossing","timezone":"Asia/Jakarta","start_time":"16:05","length_hours":6,"length_minutes":null},
-{"subject":"Gaylord, Haag and Bernier","description":null,"location":"57066 Calypso Road","timezone":"Asia/Chongqing","start_time":"14:09","length_hours":11,"length_minutes":16},
-{"subject":"Hyatt-Gleichner","description":"Focused multimedia architecture","location":null,"timezone":"Asia/Jakarta","start_time":"7:07","length_hours":12,"length_minutes":47},
-{"subject":"Crooks-Trantow","description":null,"location":"6490 Algoma Point","timezone":"Asia/Jakarta","start_time":"18:35","length_hours":5,"length_minutes":58},
-{"subject":"Green, Roberts and Hand","description":"Universal client-driven instruction set","location":"2905 Stephen Lane","timezone":"Europe/Berlin","start_time":"14:09","length_hours":9,"length_minutes":null},
-{"subject":"Stamm LLC","description":"Vision-oriented methodical infrastructure","location":"3369 Cody Court","timezone":"Europe/Moscow","start_time":"18:24","length_hours":12,"length_minutes":null},
-{"subject":"Hudson-Schmidt","description":null,"location":"52 Clove Park","timezone":"Asia/Chongqing","start_time":"20:54","length_hours":8,"length_minutes":44},
-{"subject":"Erdman, Hickle and Purdy","description":"Front-line radical frame","location":"84834 Derek Pass","timezone":"Asia/Yakutsk","start_time":"8:10","length_hours":5,"length_minutes":14},
-{"subject":"Hackett-Bergstrom","description":null,"location":"82 Maywood Plaza","timezone":"Asia/Makassar","start_time":"6:55","length_hours":11,"length_minutes":30},
-{"subject":"Sanford and Sons","description":"Upgradable tertiary artificial intelligence","location":"04 Anhalt Center","timezone":"Asia/Manila","start_time":"21:50","length_hours":9,"length_minutes":46},
-{"subject":"Stamm-Hoppe","description":"Digitized regional flexibility","location":"20 Calypso Point","timezone":"Africa/Kampala","start_time":"22:17","length_hours":12,"length_minutes":42},
-{"subject":"Hilll-Moen","description":"Cross-group non-volatile moderator","location":"4 8th Drive","timezone":"America/Bogota","start_time":"7:42","length_hours":11,"length_minutes":null},
-{"subject":"Jones LLC","description":"Right-sized global model","location":"24 Union Avenue","timezone":"America/Lima","start_time":"16:21","length_hours":9,"length_minutes":38},
-{"subject":"Ortiz, Schmeler and Hoeger","description":"Team-oriented bandwidth-monitored implementation","location":null,"timezone":"Asia/Manila","start_time":"5:53","length_hours":5,"length_minutes":null},
-{"subject":"Gerhold and Sons","description":"Re-engineered fault-tolerant throughput","location":"52928 Moose Point","timezone":"Europe/Paris","start_time":"22:44","length_hours":4,"length_minutes":58},
-{"subject":"Johnston Inc","description":null,"location":"3 Memorial Alley","timezone":"Europe/Prague","start_time":"7:16","length_hours":8,"length_minutes":46},
-{"subject":"Bosco, Schuppe and Walter","description":"Upgradable methodical info-mediaries","location":null,"timezone":"America/Sao_Paulo","start_time":"21:02","length_hours":5,"length_minutes":null},
-{"subject":"Grady, Huel and McKenzie","description":"User-friendly system-worthy forecast","location":"3047 Fordem Terrace","timezone":"Asia/Chongqing","start_time":"14:44","length_hours":7,"length_minutes":19},
-{"subject":"Jast LLC","description":null,"location":"7452 Goodland Center","timezone":"Asia/Bangkok","start_time":"22:37","length_hours":10,"length_minutes":39},
-{"subject":"Koch-Baumbach","description":"Cross-platform hybrid matrix","location":"77721 Heath Park","timezone":"Asia/Makassar","start_time":"18:14","length_hours":12,"length_minutes":38},
-{"subject":"Konopelski LLC","description":null,"location":"9458 Lukken Way","timezone":"Asia/Jakarta","start_time":"18:59","length_hours":10,"length_minutes":30},
-{"subject":"Simonis, Bode and McLaughlin","description":"User-centric asynchronous flexibility","location":"69709 Becker Lane","timezone":"Asia/Shanghai","start_time":"18:16","length_hours":9,"length_minutes":null},
-{"subject":"Hauck-Rosenbaum","description":"Phased background synergy","location":"44 Express Avenue","timezone":"Asia/Pyongyang","start_time":"15:57","length_hours":12,"length_minutes":null},
-{"subject":"Kessler-Mosciski","description":"Total responsive service-desk","location":"8540 Atwood Junction","timezone":"Africa/Accra","start_time":"21:54","length_hours":12,"length_minutes":42},
-{"subject":"Roberts-Koepp","description":"Synchronised interactive extranet","location":"11 Stone Corner Center","timezone":"Asia/Hebron","start_time":"20:15","length_hours":12,"length_minutes":null},
-{"subject":"Simonis, Huels and Kuhlman","description":"Quality-focused empowering standardization","location":"48559 Hintze Junction","timezone":"Asia/Chongqing","start_time":"8:52","length_hours":10,"length_minutes":10},
-{"subject":"Turcotte LLC","description":"Reactive regional solution","location":"4 Elgar Point","timezone":"Asia/Shanghai","start_time":"9:47","length_hours":11,"length_minutes":null},
-{"subject":"Tromp LLC","description":"Multi-lateral maximized open system","location":"12 Petterle Center","timezone":"America/Fortaleza","start_time":"21:50","length_hours":6,"length_minutes":3},
-{"subject":"O'Kon LLC","description":"Enterprise-wide intermediate database","location":"9 Pankratz Court","timezone":"Europe/Paris","start_time":"15:22","length_hours":4,"length_minutes":1},
-{"subject":"Breitenberg, Parisian and Leuschke","description":null,"location":"15418 Kennedy Park","timezone":"Asia/Yekaterinburg","start_time":"9:40","length_hours":5,"length_minutes":15},
-{"subject":"Aufderhar, Rowe and Mills","description":null,"location":"386 Little Fleur Alley","timezone":"Pacific/Majuro","start_time":"11:59","length_hours":12,"length_minutes":24},
-{"subject":"Padberg LLC","description":"Diverse exuding parallelism","location":null,"timezone":"America/Halifax","start_time":"6:49","length_hours":6,"length_minutes":43},
-{"subject":"Gutkowski LLC","description":null,"location":"46 Division Alley","timezone":"Asia/Chongqing","start_time":"12:38","length_hours":5,"length_minutes":null},
-{"subject":"Beer, Hilpert and Haley","description":null,"location":"56 Drewry Alley","timezone":"Europe/Sarajevo","start_time":"15:49","length_hours":8,"length_minutes":14},
-{"subject":"O'Kon-Adams","description":null,"location":"6 Rusk Pass","timezone":"Asia/Shanghai","start_time":"9:51","length_hours":6,"length_minutes":44},
-{"subject":"Walker Group","description":"Progressive leading edge architecture","location":"08640 Westport Avenue","timezone":"Asia/Manila","start_time":"11:46","length_hours":7,"length_minutes":31},
-{"subject":"Fahey LLC","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"12:16","length_hours":11,"length_minutes":55},
-{"subject":"Emard, Jerde and Kerluke","description":"Extended static model","location":"60704 Monument Plaza","timezone":"Asia/Manila","start_time":"17:23","length_hours":12,"length_minutes":43},
-{"subject":"Stamm-Monahan","description":null,"location":"11 Continental Way","timezone":"Asia/Chongqing","start_time":"9:37","length_hours":4,"length_minutes":50},
-{"subject":"Wintheiser-Murray","description":"Secured zero defect standardization","location":"353 Glendale Plaza","timezone":"America/Guatemala","start_time":"14:23","length_hours":11,"length_minutes":7},
-{"subject":"Collier LLC","description":"Polarised transitional time-frame","location":"878 Stone Corner Way","timezone":"Asia/Kuala_Lumpur","start_time":"5:43","length_hours":7,"length_minutes":null},
-{"subject":"Berge Group","description":null,"location":"94353 Victoria Parkway","timezone":"Asia/Makassar","start_time":"19:16","length_hours":6,"length_minutes":null},
-{"subject":"Roob-Jacobi","description":"Customizable 3rd generation secured line","location":"1430 Anzinger Alley","timezone":"Europe/Amsterdam","start_time":"7:01","length_hours":12,"length_minutes":9},
-{"subject":"Gerhold and Sons","description":null,"location":"928 Del Sol Alley","timezone":"Asia/Yerevan","start_time":"12:33","length_hours":7,"length_minutes":28},
-{"subject":"Homenick-Quigley","description":"Virtual local internet solution","location":"697 Elgar Hill","timezone":"Asia/Kuala_Lumpur","start_time":"8:33","length_hours":4,"length_minutes":null},
-{"subject":"Huels, Larkin and Krajcik","description":null,"location":"542 Marcy Street","timezone":"Europe/Helsinki","start_time":"19:35","length_hours":9,"length_minutes":5},
-{"subject":"Jacobi Group","description":"Persistent 5th generation extranet","location":null,"timezone":"Asia/Urumqi","start_time":"11:37","length_hours":7,"length_minutes":26},
-{"subject":"Sawayn-Hessel","description":"Extended tertiary process improvement","location":"54403 Meadow Vale Trail","timezone":"Asia/Shanghai","start_time":"19:18","length_hours":9,"length_minutes":46},
-{"subject":"Koepp-Blanda","description":"Decentralized intermediate methodology","location":"132 Alpine Lane","timezone":"America/Santo_Domingo","start_time":"8:13","length_hours":10,"length_minutes":58},
-{"subject":"Johns-Gulgowski","description":"Persistent static projection","location":"2885 Hoffman Terrace","timezone":"America/Lima","start_time":"4:16","length_hours":5,"length_minutes":41},
-{"subject":"VonRueden Group","description":"Fundamental fresh-thinking parallelism","location":"9706 Schlimgen Way","timezone":"Asia/Riyadh","start_time":"6:28","length_hours":11,"length_minutes":32},
-{"subject":"Sanford-Lowe","description":null,"location":"61 Nancy Avenue","timezone":"Asia/Manila","start_time":"8:51","length_hours":4,"length_minutes":57},
-{"subject":"Lakin Inc","description":null,"location":"4 Mosinee Place","timezone":"Europe/Belgrade","start_time":"21:38","length_hours":7,"length_minutes":16},
-{"subject":"Toy, Schaefer and Emmerich","description":null,"location":"225 Sommers Pass","timezone":"Europe/Warsaw","start_time":"20:19","length_hours":5,"length_minutes":48},
-{"subject":"Shields, Stehr and Rogahn","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"17:00","length_hours":5,"length_minutes":null},
-{"subject":"Watsica, Glover and Witting","description":null,"location":"45737 Westend Terrace","timezone":"America/Campo_Grande","start_time":"4:25","length_hours":11,"length_minutes":59},
-{"subject":"Sauer, Donnelly and Hilpert","description":"Optional client-server firmware","location":"802 Maryland Pass","timezone":"Asia/Shanghai","start_time":"13:30","length_hours":8,"length_minutes":57},
-{"subject":"Heller LLC","description":"Monitored system-worthy architecture","location":"91960 Butterfield Terrace","timezone":"America/Godthab","start_time":"22:47","length_hours":10,"length_minutes":55},
-{"subject":"Orn Inc","description":null,"location":"5450 Bellgrove Hill","timezone":"Asia/Chongqing","start_time":"4:17","length_hours":8,"length_minutes":13},
-{"subject":"Nikolaus Group","description":null,"location":"25 Stang Circle","timezone":"Europe/Prague","start_time":"11:27","length_hours":8,"length_minutes":null},
-{"subject":"Rath LLC","description":"Devolved responsive open architecture","location":"858 Morrow Parkway","timezone":"Africa/Dar_es_Salaam","start_time":"13:34","length_hours":4,"length_minutes":6},
-{"subject":"Jacobson-Mraz","description":"Re-contextualized system-worthy superstructure","location":"6075 Bluejay Crossing","timezone":"Asia/Makassar","start_time":"6:20","length_hours":7,"length_minutes":20},
-{"subject":"Hartmann, Barton and Homenick","description":"Multi-tiered client-driven architecture","location":null,"timezone":"Europe/Paris","start_time":"6:25","length_hours":8,"length_minutes":23},
-{"subject":"Kuvalis-DuBuque","description":"Secured discrete attitude","location":null,"timezone":"Europe/Athens","start_time":"17:20","length_hours":10,"length_minutes":24},
-{"subject":"Stanton, Fahey and Streich","description":"Integrated demand-driven architecture","location":null,"timezone":"Africa/Johannesburg","start_time":"4:45","length_hours":10,"length_minutes":null},
-{"subject":"Stracke Inc","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"10:33","length_hours":8,"length_minutes":null},
-{"subject":"Mueller-Conn","description":"Realigned bifurcated implementation","location":"797 Main Junction","timezone":"Europe/Moscow","start_time":"17:14","length_hours":10,"length_minutes":null},
-{"subject":"Ondricka LLC","description":null,"location":"529 Fallview Trail","timezone":"Europe/Prague","start_time":"12:49","length_hours":11,"length_minutes":null},
-{"subject":"Konopelski-Nader","description":null,"location":"0 Linden Circle","timezone":"Asia/Chongqing","start_time":"9:28","length_hours":12,"length_minutes":28},
-{"subject":"Simonis-O'Keefe","description":"Multi-channelled modular array","location":null,"timezone":"Europe/Paris","start_time":"19:17","length_hours":4,"length_minutes":38},
-{"subject":"Heaney and Sons","description":"Expanded intermediate model","location":"522 Nevada Crossing","timezone":"Europe/Stockholm","start_time":"16:16","length_hours":11,"length_minutes":null},
-{"subject":"Greenfelder-Larson","description":null,"location":"52131 Basil Trail","timezone":"Europe/Prague","start_time":"8:49","length_hours":4,"length_minutes":5},
-{"subject":"Krajcik, Jaskolski and Labadie","description":"Versatile multi-tasking artificial intelligence","location":"575 Mcguire Point","timezone":"Asia/Manila","start_time":"12:02","length_hours":10,"length_minutes":34},
-{"subject":"Schimmel, Keebler and Grady","description":"Optional logistical analyzer","location":"2 Hauk Crossing","timezone":"America/Tijuana","start_time":"11:27","length_hours":9,"length_minutes":null},
-{"subject":"Berge and Sons","description":null,"location":"99 Golden Leaf Center","timezone":"Europe/Stockholm","start_time":"6:08","length_hours":11,"length_minutes":43},
-{"subject":"Aufderhar LLC","description":"Upgradable background definition","location":null,"timezone":"Asia/Jakarta","start_time":"22:20","length_hours":8,"length_minutes":53},
-{"subject":"D'Amore and Sons","description":"Reactive high-level attitude","location":null,"timezone":"America/Asuncion","start_time":"14:10","length_hours":12,"length_minutes":null},
-{"subject":"Weissnat Inc","description":"Synchronised scalable knowledge base","location":"44 Namekagon Pass","timezone":"Asia/Jakarta","start_time":"17:24","length_hours":6,"length_minutes":2},
-{"subject":"Sipes, Von and Reichel","description":"Expanded neutral attitude","location":"3 Montana Plaza","timezone":"Europe/Prague","start_time":"18:07","length_hours":12,"length_minutes":59},
-{"subject":"Kuhic Group","description":"Managed object-oriented flexibility","location":null,"timezone":"Europe/Belgrade","start_time":"12:42","length_hours":9,"length_minutes":null},
-{"subject":"Smith, Goodwin and Nader","description":"Sharable heuristic archive","location":"2 Shelley Way","timezone":"Europe/Warsaw","start_time":"17:44","length_hours":6,"length_minutes":45},
-{"subject":"Waters, Jaskolski and Collier","description":"Business-focused needs-based encryption","location":"51 Mosinee Plaza","timezone":"Asia/Shanghai","start_time":"6:42","length_hours":12,"length_minutes":16},
-{"subject":"Gaylord-Gerlach","description":"Multi-channelled multi-tasking secured line","location":"10 Esch Crossing","timezone":"Africa/Lagos","start_time":"11:30","length_hours":10,"length_minutes":51},
-{"subject":"Koss Inc","description":"Reduced coherent database","location":"5 Longview Center","timezone":"Asia/Makassar","start_time":"4:45","length_hours":11,"length_minutes":40},
-{"subject":"Ebert and Sons","description":"Expanded stable leverage","location":"14 Fairfield Center","timezone":"Asia/Yerevan","start_time":"11:43","length_hours":9,"length_minutes":null},
-{"subject":"Kunde, Nitzsche and Schinner","description":null,"location":"684 Warrior Trail","timezone":"Europe/Stockholm","start_time":"22:07","length_hours":6,"length_minutes":33},
-{"subject":"Emmerich, Bayer and Kohler","description":"Horizontal demand-driven access","location":"6510 Loomis Circle","timezone":"America/Chicago","start_time":"17:04","length_hours":11,"length_minutes":43},
-{"subject":"Bode LLC","description":"Polarised holistic matrix","location":"986 Larry Park","timezone":"Asia/Chongqing","start_time":"12:32","length_hours":11,"length_minutes":null},
-{"subject":"Johns LLC","description":"Optional 4th generation success","location":null,"timezone":"Europe/Lisbon","start_time":"13:38","length_hours":10,"length_minutes":null},
-{"subject":"Schroeder Inc","description":"Intuitive intermediate hub","location":"1 Utah Hill","timezone":"Europe/Warsaw","start_time":"22:47","length_hours":12,"length_minutes":1},
-{"subject":"Klein, Koelpin and Koelpin","description":"User-friendly bi-directional data-warehouse","location":"73 Fremont Circle","timezone":"Asia/Jakarta","start_time":"9:08","length_hours":6,"length_minutes":24},
-{"subject":"Reichert, Murray and Rodriguez","description":"Polarised stable parallelism","location":"37384 Anthes Terrace","timezone":"Asia/Jakarta","start_time":"5:06","length_hours":7,"length_minutes":null},
-{"subject":"Turner Group","description":"Grass-roots disintermediate neural-net","location":"57 Division Park","timezone":"Asia/Almaty","start_time":"18:40","length_hours":5,"length_minutes":2},
-{"subject":"Howe-Reynolds","description":"Multi-layered global synergy","location":null,"timezone":"Asia/Chongqing","start_time":"7:16","length_hours":8,"length_minutes":50},
-{"subject":"Kiehn-Renner","description":"Down-sized interactive intranet","location":"668 Holmberg Alley","timezone":"Europe/Stockholm","start_time":"8:13","length_hours":12,"length_minutes":null},
-{"subject":"Mayer, Ratke and Zulauf","description":null,"location":"46 Brown Avenue","timezone":"Africa/Bamako","start_time":"7:28","length_hours":4,"length_minutes":null},
-{"subject":"Emmerich-Bogisich","description":"Exclusive transitional focus group","location":null,"timezone":"Asia/Thimphu","start_time":"21:55","length_hours":11,"length_minutes":1},
-{"subject":"Fay, Cassin and Mraz","description":"Down-sized leading edge matrix","location":null,"timezone":"Asia/Manila","start_time":"4:41","length_hours":8,"length_minutes":null},
-{"subject":"Johnston Group","description":"Exclusive well-modulated function","location":"79 Green Ridge Parkway","timezone":"Asia/Jakarta","start_time":"4:56","length_hours":11,"length_minutes":39},
-{"subject":"Price Inc","description":"Implemented even-keeled framework","location":null,"timezone":"Asia/Chongqing","start_time":"16:49","length_hours":11,"length_minutes":30},
-{"subject":"Greenholt, Abernathy and Schumm","description":null,"location":"13 Village Green Park","timezone":"Europe/Stockholm","start_time":"9:51","length_hours":4,"length_minutes":null},
-{"subject":"Roberts, Flatley and Waelchi","description":null,"location":"552 Fallview Drive","timezone":"Asia/Jakarta","start_time":"12:26","length_hours":7,"length_minutes":null},
-{"subject":"Feil-Rath","description":"Team-oriented cohesive pricing structure","location":"73800 Dennis Terrace","timezone":"Europe/Prague","start_time":"13:03","length_hours":7,"length_minutes":33},
-{"subject":"Hammes LLC","description":"De-engineered discrete policy","location":null,"timezone":"Europe/Tirane","start_time":"19:36","length_hours":10,"length_minutes":null},
-{"subject":"Dare, Walter and Bechtelar","description":null,"location":"0869 Pankratz Center","timezone":"America/Montreal","start_time":"13:12","length_hours":12,"length_minutes":49},
-{"subject":"Kunze-Treutel","description":"Fundamental static emulation","location":"380 Derek Junction","timezone":"Indian/Mauritius","start_time":"16:42","length_hours":4,"length_minutes":null},
-{"subject":"Smitham, Sipes and Crist","description":null,"location":"29686 Larry Circle","timezone":"Asia/Bangkok","start_time":"19:58","length_hours":10,"length_minutes":21},
-{"subject":"Stamm Group","description":"Polarised directional project","location":null,"timezone":"America/Chicago","start_time":"9:09","length_hours":7,"length_minutes":43},
-{"subject":"Lehner and Sons","description":null,"location":"82339 Spohn Terrace","timezone":"Europe/Samara","start_time":"17:17","length_hours":4,"length_minutes":35},
-{"subject":"Labadie, Cruickshank and Bogan","description":"Synchronised regional open architecture","location":"1058 Packers Lane","timezone":"Europe/Moscow","start_time":"21:31","length_hours":8,"length_minutes":17},
-{"subject":"McGlynn-Collier","description":null,"location":"3 Fuller Circle","timezone":"Europe/Stockholm","start_time":"20:10","length_hours":10,"length_minutes":18},
-{"subject":"Ullrich-Spinka","description":"Innovative leading edge internet solution","location":"3 Sage Alley","timezone":"Asia/Ho_Chi_Minh","start_time":"6:11","length_hours":4,"length_minutes":51},
-{"subject":"Wyman, Cartwright and Wilderman","description":null,"location":null,"timezone":"Asia/Manila","start_time":"17:22","length_hours":4,"length_minutes":null},
-{"subject":"Kreiger, Jakubowski and Cummings","description":"Assimilated exuding data-warehouse","location":null,"timezone":"Asia/Shanghai","start_time":"10:55","length_hours":10,"length_minutes":35},
-{"subject":"Stiedemann, Waters and Monahan","description":"Integrated cohesive info-mediaries","location":"904 Victoria Street","timezone":"Europe/Helsinki","start_time":"19:01","length_hours":5,"length_minutes":34},
-{"subject":"Fadel, Gerlach and Erdman","description":null,"location":"946 Debs Circle","timezone":"Asia/Harbin","start_time":"7:24","length_hours":4,"length_minutes":24},
-{"subject":"Kuhic Inc","description":null,"location":"3 Main Alley","timezone":"Africa/Porto-Novo","start_time":"13:58","length_hours":5,"length_minutes":37},
-{"subject":"Zieme-Romaguera","description":"Fully-configurable next generation protocol","location":"031 Lighthouse Bay Way","timezone":"Asia/Tokyo","start_time":"8:42","length_hours":12,"length_minutes":40},
-{"subject":"Spencer Group","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"21:41","length_hours":5,"length_minutes":57},
-{"subject":"Jacobs Inc","description":"Reduced neutral knowledge base","location":null,"timezone":"Asia/Jakarta","start_time":"4:19","length_hours":11,"length_minutes":40},
-{"subject":"Rippin, Rath and Beatty","description":"Profound hybrid service-desk","location":null,"timezone":"Asia/Jakarta","start_time":"22:41","length_hours":4,"length_minutes":34},
-{"subject":"Pfeffer-Morissette","description":"Enterprise-wide composite system engine","location":"56228 Clove Pass","timezone":"America/Jamaica","start_time":"11:04","length_hours":10,"length_minutes":27},
-{"subject":"Ondricka-Becker","description":"Streamlined web-enabled structure","location":null,"timezone":"Asia/Damascus","start_time":"15:00","length_hours":10,"length_minutes":35},
-{"subject":"Bechtelar, Ledner and Padberg","description":null,"location":"39461 Sheridan Drive","timezone":"Asia/Manila","start_time":"8:23","length_hours":8,"length_minutes":null},
-{"subject":"Brakus-Beatty","description":"Self-enabling cohesive help-desk","location":"6 Steensland Junction","timezone":"Asia/Jakarta","start_time":"18:40","length_hours":11,"length_minutes":null},
-{"subject":"Beahan Inc","description":"Down-sized cohesive parallelism","location":"136 4th Place","timezone":"Asia/Chongqing","start_time":"15:15","length_hours":5,"length_minutes":null},
-{"subject":"Block, Frami and Price","description":"Inverse context-sensitive structure","location":"29 Johnson Street","timezone":"Europe/Berlin","start_time":"17:06","length_hours":7,"length_minutes":55},
-{"subject":"Runolfsson LLC","description":"Operative 24 hour migration","location":"425 Maple Wood Way","timezone":"Asia/Ashgabat","start_time":"10:55","length_hours":8,"length_minutes":37},
-{"subject":"Kuphal, Marvin and Dickinson","description":"Business-focused needs-based benchmark","location":"7774 Myrtle Plaza","timezone":"Asia/Jakarta","start_time":"5:05","length_hours":4,"length_minutes":34},
-{"subject":"Barton-Schuppe","description":null,"location":"22 Holmberg Court","timezone":"Indian/Antananarivo","start_time":"20:35","length_hours":11,"length_minutes":11},
-{"subject":"Turner, Nicolas and Ferry","description":"Enterprise-wide holistic orchestration","location":"31402 Charing Cross Hill","timezone":"Asia/Chongqing","start_time":"4:44","length_hours":10,"length_minutes":9},
-{"subject":"Crist Inc","description":null,"location":null,"timezone":"Africa/Dar_es_Salaam","start_time":"13:44","length_hours":4,"length_minutes":null},
-{"subject":"Haag, Gulgowski and Fadel","description":"Progressive leading edge implementation","location":"836 Pearson Drive","timezone":"Asia/Shanghai","start_time":"8:12","length_hours":4,"length_minutes":50},
-{"subject":"Hintz Group","description":null,"location":"2233 Del Sol Trail","timezone":"Asia/Bangkok","start_time":"9:50","length_hours":8,"length_minutes":30},
-{"subject":"Friesen Inc","description":"Networked multimedia adapter","location":"36 Karstens Alley","timezone":"America/Chicago","start_time":"6:52","length_hours":10,"length_minutes":null},
-{"subject":"Feest Group","description":"Exclusive 4th generation forecast","location":"4 Veith Pass","timezone":"Asia/Chongqing","start_time":"19:00","length_hours":12,"length_minutes":27},
-{"subject":"Lang-Kohler","description":null,"location":"679 High Crossing Plaza","timezone":"Asia/Seoul","start_time":"5:21","length_hours":10,"length_minutes":56},
-{"subject":"Kilback Group","description":null,"location":"5 Carey Road","timezone":"America/Caracas","start_time":"22:32","length_hours":10,"length_minutes":43},
-{"subject":"Weimann, Senger and Deckow","description":null,"location":"8341 Arkansas Road","timezone":"Europe/Amsterdam","start_time":"18:26","length_hours":5,"length_minutes":28},
-{"subject":"Hickle Inc","description":"Advanced stable collaboration","location":null,"timezone":"Europe/Lisbon","start_time":"14:50","length_hours":9,"length_minutes":23},
-{"subject":"Ebert and Sons","description":"Balanced didactic task-force","location":null,"timezone":"Asia/Harbin","start_time":"22:42","length_hours":4,"length_minutes":null},
-{"subject":"Treutel LLC","description":"Public-key background hardware","location":null,"timezone":"Asia/Chongqing","start_time":"15:28","length_hours":8,"length_minutes":null},
-{"subject":"Langosh, Swift and Bode","description":null,"location":"41 Autumn Leaf Crossing","timezone":"Asia/Almaty","start_time":"11:46","length_hours":7,"length_minutes":51},
-{"subject":"Leffler-Kertzmann","description":null,"location":"6 Eggendart Trail","timezone":"America/Edmonton","start_time":"22:41","length_hours":12,"length_minutes":17},
-{"subject":"Flatley, Stanton and Ryan","description":"Face to face client-server model","location":null,"timezone":"America/Sao_Paulo","start_time":"22:22","length_hours":5,"length_minutes":59},
-{"subject":"Ferry LLC","description":"Profit-focused disintermediate product","location":"8739 Larry Park","timezone":"America/Lima","start_time":"15:54","length_hours":8,"length_minutes":32},
-{"subject":"Hettinger Inc","description":"Operative 24/7 utilisation","location":null,"timezone":"Asia/Makassar","start_time":"20:54","length_hours":6,"length_minutes":6},
-{"subject":"Predovic, Rowe and O'Hara","description":"Configurable actuating productivity","location":"60 Towne Street","timezone":"Africa/Johannesburg","start_time":"16:59","length_hours":5,"length_minutes":null},
-{"subject":"White, Kirlin and Hansen","description":"Secured eco-centric synergy","location":null,"timezone":"Asia/Harbin","start_time":"18:34","length_hours":8,"length_minutes":null},
-{"subject":"Wisozk-Breitenberg","description":"Networked hybrid project","location":"5663 Sachtjen Park","timezone":"Asia/Jakarta","start_time":"9:42","length_hours":12,"length_minutes":null},
-{"subject":"Barton Inc","description":"Front-line 3rd generation system engine","location":null,"timezone":"Asia/Ho_Chi_Minh","start_time":"14:19","length_hours":5,"length_minutes":null},
-{"subject":"Ratke, Adams and Maggio","description":"Up-sized intermediate algorithm","location":"267 Glendale Junction","timezone":"America/Sao_Paulo","start_time":"6:51","length_hours":9,"length_minutes":56},
-{"subject":"Frami-Heidenreich","description":"Optimized radical capability","location":"4 Kipling Drive","timezone":"America/Argentina/Cordoba","start_time":"5:43","length_hours":6,"length_minutes":34},
-{"subject":"Jast, Borer and Hermiston","description":null,"location":"95 Crescent Oaks Trail","timezone":"Asia/Jakarta","start_time":"14:23","length_hours":8,"length_minutes":null},
-{"subject":"Durgan, Hermiston and Bauch","description":"Seamless leading edge model","location":"45749 Sachs Point","timezone":"America/Santiago","start_time":"9:33","length_hours":12,"length_minutes":52},
-{"subject":"Dibbert Group","description":null,"location":"19 Rusk Trail","timezone":"Asia/Tashkent","start_time":"12:36","length_hours":10,"length_minutes":null},
-{"subject":"Kassulke-O'Hara","description":"Digitized needs-based forecast","location":"50 Butterfield Drive","timezone":"Europe/Moscow","start_time":"14:41","length_hours":6,"length_minutes":23},
-{"subject":"Kunze LLC","description":"Advanced system-worthy installation","location":"54636 Division Park","timezone":"Europe/Moscow","start_time":"16:57","length_hours":10,"length_minutes":45},
-{"subject":"Krajcik, Lueilwitz and Carter","description":"Enterprise-wide empowering support","location":"829 Lindbergh Lane","timezone":"Asia/Shanghai","start_time":"8:16","length_hours":8,"length_minutes":null},
-{"subject":"Schmitt-Braun","description":"Organized intangible product","location":"89597 Bunting Circle","timezone":"Europe/Warsaw","start_time":"21:16","length_hours":7,"length_minutes":34},
-{"subject":"Greenholt and Sons","description":"Profound tertiary budgetary management","location":null,"timezone":"America/Bogota","start_time":"11:09","length_hours":6,"length_minutes":null},
-{"subject":"McClure Group","description":"Self-enabling intermediate hardware","location":"5790 Anthes Court","timezone":"Asia/Chongqing","start_time":"4:02","length_hours":9,"length_minutes":46},
-{"subject":"Kautzer Inc","description":null,"location":"44 Golf Park","timezone":"America/Bogota","start_time":"8:12","length_hours":11,"length_minutes":null},
-{"subject":"Schroeder LLC","description":"Phased asynchronous process improvement","location":"3169 Gina Alley","timezone":"Asia/Jakarta","start_time":"15:31","length_hours":12,"length_minutes":8},
-{"subject":"Kemmer, Purdy and Murray","description":"Synergistic client-driven leverage","location":"528 Holmberg Junction","timezone":"Africa/Johannesburg","start_time":"9:20","length_hours":4,"length_minutes":null},
-{"subject":"Purdy-Sawayn","description":null,"location":"61479 South Terrace","timezone":"America/Bogota","start_time":"22:00","length_hours":9,"length_minutes":45},
-{"subject":"Bergstrom, Bradtke and Volkman","description":null,"location":"32 Kings Point","timezone":"Asia/Chongqing","start_time":"8:06","length_hours":10,"length_minutes":null},
-{"subject":"Hudson-Ritchie","description":"Decentralized context-sensitive monitoring","location":"82 Dennis Pass","timezone":"Asia/Chongqing","start_time":"6:11","length_hours":12,"length_minutes":35},
-{"subject":"Conn, Swift and Mohr","description":"Universal real-time success","location":null,"timezone":"Asia/Ho_Chi_Minh","start_time":"10:12","length_hours":6,"length_minutes":3},
-{"subject":"Gorczany-Fadel","description":null,"location":"6342 Artisan Terrace","timezone":"Asia/Chongqing","start_time":"17:47","length_hours":4,"length_minutes":43},
-{"subject":"Hermiston-Strosin","description":"Adaptive national success","location":"81 Scofield Crossing","timezone":"Asia/Makassar","start_time":"15:16","length_hours":5,"length_minutes":19},
-{"subject":"Ratke-Hyatt","description":"Monitored homogeneous matrix","location":null,"timezone":"Asia/Chongqing","start_time":"17:09","length_hours":12,"length_minutes":null},
-{"subject":"Jenkins Group","description":null,"location":"39 Homewood Circle","timezone":"Asia/Shanghai","start_time":"8:23","length_hours":7,"length_minutes":null},
-{"subject":"Considine-Kautzer","description":"Cloned well-modulated contingency","location":"450 Orin Lane","timezone":"Europe/Paris","start_time":"17:33","length_hours":8,"length_minutes":4},
-{"subject":"Welch Inc","description":null,"location":"1943 Grover Court","timezone":"Asia/Yekaterinburg","start_time":"13:15","length_hours":10,"length_minutes":57},
-{"subject":"Wiegand LLC","description":"Cloned holistic encryption","location":null,"timezone":"Asia/Chongqing","start_time":"14:48","length_hours":11,"length_minutes":null},
-{"subject":"Wintheiser-King","description":null,"location":"37 Brentwood Street","timezone":"Asia/Kuala_Lumpur","start_time":"5:11","length_hours":4,"length_minutes":null},
-{"subject":"Rippin LLC","description":"Team-oriented 4th generation solution","location":"6 Dawn Court","timezone":"America/Argentina/Jujuy","start_time":"21:44","length_hours":11,"length_minutes":20},
-{"subject":"O'Hara-Purdy","description":null,"location":"1 5th Way","timezone":"Asia/Jakarta","start_time":"20:09","length_hours":7,"length_minutes":6},
-{"subject":"Maggio and Sons","description":"Front-line full-range implementation","location":"1 Merry Lane","timezone":"Asia/Aden","start_time":"22:22","length_hours":6,"length_minutes":7},
-{"subject":"Green Group","description":null,"location":"854 Buell Pass","timezone":"Asia/Jakarta","start_time":"18:40","length_hours":6,"length_minutes":null},
-{"subject":"Sauer Inc","description":"Synergized user-facing hierarchy","location":null,"timezone":"Asia/Harbin","start_time":"12:11","length_hours":12,"length_minutes":null},
-{"subject":"Bartoletti, Hilpert and Lemke","description":"Intuitive actuating protocol","location":"79074 Onsgard Way","timezone":"Asia/Shanghai","start_time":"16:54","length_hours":10,"length_minutes":15},
-{"subject":"Mosciski, Goyette and Cassin","description":null,"location":"13 Transport Pass","timezone":"Asia/Irkutsk","start_time":"9:21","length_hours":7,"length_minutes":47},
-{"subject":"McKenzie and Sons","description":null,"location":"15828 Fairview Center","timezone":"Europe/Paris","start_time":"8:42","length_hours":8,"length_minutes":null},
-{"subject":"Torp-Harvey","description":"Configurable human-resource hierarchy","location":null,"timezone":"Europe/Warsaw","start_time":"10:31","length_hours":7,"length_minutes":51},
-{"subject":"Morissette-Daniel","description":"Configurable optimal moderator","location":"0456 Schlimgen Hill","timezone":"Asia/Harbin","start_time":"5:11","length_hours":7,"length_minutes":39},
-{"subject":"Conroy-Wolf","description":null,"location":null,"timezone":"America/Chicago","start_time":"11:56","length_hours":11,"length_minutes":28},
-{"subject":"Konopelski, Crooks and Hauck","description":"Distributed background website","location":"5183 Luster Terrace","timezone":"Europe/Madrid","start_time":"22:39","length_hours":8,"length_minutes":44},
-{"subject":"Walter-Rosenbaum","description":null,"location":"13385 Russell Center","timezone":"Asia/Makassar","start_time":"8:28","length_hours":4,"length_minutes":18},
-{"subject":"Conroy, Sipes and Stiedemann","description":"Distributed executive attitude","location":"04019 Coleman Lane","timezone":"Asia/Urumqi","start_time":"18:05","length_hours":6,"length_minutes":51},
-{"subject":"Lakin Group","description":"Reduced incremental paradigm","location":"52 Harbort Park","timezone":"Asia/Krasnoyarsk","start_time":"14:43","length_hours":12,"length_minutes":null},
-{"subject":"Parker Inc","description":null,"location":"5776 Bobwhite Point","timezone":"Asia/Harbin","start_time":"10:14","length_hours":7,"length_minutes":null},
-{"subject":"Boyle, Windler and Orn","description":"Diverse exuding benchmark","location":"02795 Holy Cross Terrace","timezone":"Asia/Harbin","start_time":"4:34","length_hours":6,"length_minutes":58},
-{"subject":"Leannon, Morar and Gaylord","description":"User-friendly next generation superstructure","location":"425 Menomonie Circle","timezone":"America/Sao_Paulo","start_time":"15:29","length_hours":12,"length_minutes":15},
-{"subject":"McDermott, Johnson and Senger","description":"Vision-oriented mobile website","location":null,"timezone":"Europe/Paris","start_time":"13:52","length_hours":8,"length_minutes":51},
-{"subject":"Koch, Mohr and Lehner","description":null,"location":"9 Lyons Hill","timezone":"Europe/Zagreb","start_time":"7:50","length_hours":4,"length_minutes":41},
-{"subject":"Borer, Rogahn and Nolan","description":"Realigned responsive structure","location":"8640 Riverside Park","timezone":"Europe/Lisbon","start_time":"13:48","length_hours":6,"length_minutes":2},
-{"subject":"Tillman-Price","description":null,"location":"8385 Jackson Junction","timezone":"Europe/Moscow","start_time":"9:21","length_hours":7,"length_minutes":44},
-{"subject":"Schumm, Nitzsche and Rodriguez","description":null,"location":"26 Upham Place","timezone":"Asia/Shanghai","start_time":"4:45","length_hours":12,"length_minutes":null},
-{"subject":"Ward LLC","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"5:37","length_hours":11,"length_minutes":10},
-{"subject":"Ullrich Group","description":null,"location":null,"timezone":"America/Argentina/Cordoba","start_time":"17:50","length_hours":5,"length_minutes":57},
-{"subject":"Tromp, Skiles and Gleichner","description":"Decentralized user-facing matrix","location":"43945 Fairview Park","timezone":"Europe/Zaporozhye","start_time":"5:27","length_hours":7,"length_minutes":29},
-{"subject":"Rodriguez-Hilll","description":"Customer-focused attitude-oriented encryption","location":"4050 Nelson Drive","timezone":"Asia/Shanghai","start_time":"15:15","length_hours":5,"length_minutes":15},
-{"subject":"Littel, Ward and Robel","description":"Profit-focused bandwidth-monitored artificial intelligence","location":"988 Hayes Pass","timezone":"America/Sao_Paulo","start_time":"13:34","length_hours":9,"length_minutes":null},
-{"subject":"Jones-Lockman","description":"Reduced methodical Graphic Interface","location":"435 Dwight Hill","timezone":"America/Santiago","start_time":"14:35","length_hours":4,"length_minutes":null},
-{"subject":"Larkin-Rau","description":null,"location":"53998 Village Road","timezone":"Indian/Comoro","start_time":"9:14","length_hours":4,"length_minutes":52},
-{"subject":"Little-Muller","description":"Persistent secondary portal","location":null,"timezone":"Europe/Helsinki","start_time":"15:10","length_hours":9,"length_minutes":43},
-{"subject":"Ernser, Huel and Fadel","description":"Adaptive foreground paradigm","location":"70066 Continental Lane","timezone":"Asia/Kathmandu","start_time":"13:02","length_hours":7,"length_minutes":46},
-{"subject":"Glover, Ondricka and Balistreri","description":"Expanded non-volatile Graphical User Interface","location":"31502 Little Fleur Street","timezone":"Asia/Shanghai","start_time":"17:30","length_hours":11,"length_minutes":8},
-{"subject":"Stokes-Boehm","description":null,"location":"0 Moulton Junction","timezone":"America/Sao_Paulo","start_time":"14:22","length_hours":9,"length_minutes":53},
-{"subject":"Purdy LLC","description":null,"location":"4 Pennsylvania Hill","timezone":"Pacific/Auckland","start_time":"10:39","length_hours":9,"length_minutes":40},
-{"subject":"Wiegand Inc","description":null,"location":"1 Goodland Alley","timezone":"Europe/Moscow","start_time":"8:40","length_hours":11,"length_minutes":56},
-{"subject":"Reinger, Weber and Friesen","description":"Persevering multi-state standardization","location":"99 Badeau Drive","timezone":"America/Sao_Paulo","start_time":"11:43","length_hours":7,"length_minutes":null},
-{"subject":"Bechtelar, Hudson and Wunsch","description":null,"location":null,"timezone":"Asia/Manila","start_time":"11:01","length_hours":6,"length_minutes":null},
-{"subject":"Schuster-Monahan","description":"Managed value-added ability","location":null,"timezone":"Europe/Prague","start_time":"16:57","length_hours":5,"length_minutes":30},
-{"subject":"Hegmann, Lindgren and Hettinger","description":null,"location":"507 Knutson Parkway","timezone":"Asia/Shanghai","start_time":"11:06","length_hours":8,"length_minutes":null},
-{"subject":"Emmerich, Hills and Howell","description":"Face to face well-modulated flexibility","location":null,"timezone":"Europe/Lisbon","start_time":"16:04","length_hours":7,"length_minutes":55},
-{"subject":"Hoeger, Cole and Grady","description":"Multi-tiered tertiary collaboration","location":"2 Hooker Avenue","timezone":"Europe/Lisbon","start_time":"13:00","length_hours":9,"length_minutes":null},
-{"subject":"Stamm, Monahan and Rolfson","description":null,"location":"61009 Sycamore Court","timezone":"Europe/Warsaw","start_time":"13:08","length_hours":6,"length_minutes":null},
-{"subject":"Turcotte, Pfannerstill and Goldner","description":"Re-engineered systematic pricing structure","location":"36057 Spohn Parkway","timezone":"America/Mexico_City","start_time":"17:58","length_hours":5,"length_minutes":38},
-{"subject":"Mante-Dickens","description":"Open-architected secondary concept","location":"3 Barby Park","timezone":"Europe/Prague","start_time":"22:34","length_hours":6,"length_minutes":null},
-{"subject":"Becker-Adams","description":"Progressive didactic attitude","location":"0 Stuart Avenue","timezone":"America/Havana","start_time":"12:04","length_hours":6,"length_minutes":0},
-{"subject":"Ferry, Prosacco and Lindgren","description":"Diverse value-added interface","location":null,"timezone":"Europe/Moscow","start_time":"4:03","length_hours":6,"length_minutes":null},
-{"subject":"Roob Inc","description":null,"location":"6207 Longview Pass","timezone":"Europe/Paris","start_time":"11:08","length_hours":4,"length_minutes":null},
-{"subject":"McDermott, Graham and Effertz","description":null,"location":"69 Parkside Point","timezone":"Asia/Harbin","start_time":"17:31","length_hours":5,"length_minutes":25},
-{"subject":"Beer-Lueilwitz","description":"Organized zero tolerance protocol","location":null,"timezone":"Europe/Athens","start_time":"5:43","length_hours":6,"length_minutes":null},
-{"subject":"Jakubowski, Rolfson and Mueller","description":"Integrated exuding approach","location":null,"timezone":"Asia/Makassar","start_time":"10:44","length_hours":8,"length_minutes":null},
-{"subject":"Feest Inc","description":null,"location":"33372 Del Sol Pass","timezone":"America/Denver","start_time":"9:51","length_hours":10,"length_minutes":12},
-{"subject":"Watsica LLC","description":"Pre-emptive solution-oriented portal","location":null,"timezone":"Asia/Chongqing","start_time":"12:46","length_hours":12,"length_minutes":null},
-{"subject":"Crona-Aufderhar","description":"Synergistic intangible adapter","location":"6623 Fordem Street","timezone":"Europe/Ljubljana","start_time":"5:34","length_hours":5,"length_minutes":37},
-{"subject":"Mills-Bode","description":"Assimilated grid-enabled parallelism","location":"16 Rutledge Plaza","timezone":"Asia/Shanghai","start_time":"13:34","length_hours":7,"length_minutes":10},
-{"subject":"Yost and Sons","description":"Re-engineered upward-trending product","location":null,"timezone":"Asia/Ho_Chi_Minh","start_time":"4:41","length_hours":12,"length_minutes":58},
-{"subject":"Reilly Inc","description":"Visionary leading edge time-frame","location":"180 Carey Junction","timezone":"America/Toronto","start_time":"15:35","length_hours":8,"length_minutes":null},
-{"subject":"Kreiger, Reichert and Huel","description":"Stand-alone bi-directional collaboration","location":"8 Boyd Point","timezone":"Europe/Lisbon","start_time":"21:41","length_hours":5,"length_minutes":null},
-{"subject":"Block, Pfeffer and Koepp","description":"Virtual maximized product","location":null,"timezone":"Europe/Paris","start_time":"20:36","length_hours":9,"length_minutes":null},
-{"subject":"Rutherford-Raynor","description":"Fundamental optimizing application","location":null,"timezone":"America/Nassau","start_time":"12:10","length_hours":9,"length_minutes":56},
-{"subject":"Kautzer, Wolf and Collins","description":"Reactive 24/7 attitude","location":null,"timezone":"Europe/Stockholm","start_time":"6:47","length_hours":6,"length_minutes":40},
-{"subject":"Reichert, Bahringer and Koss","description":null,"location":"1 Buhler Road","timezone":"Europe/Prague","start_time":"19:46","length_hours":11,"length_minutes":null},
-{"subject":"Stoltenberg, Hickle and Hauck","description":null,"location":"62121 Eliot Drive","timezone":"Europe/Moscow","start_time":"22:34","length_hours":9,"length_minutes":null},
-{"subject":"Glover-Cassin","description":"Upgradable 3rd generation alliance","location":null,"timezone":"Asia/Chongqing","start_time":"19:36","length_hours":4,"length_minutes":38},
-{"subject":"Morar Inc","description":"Organic logistical toolset","location":null,"timezone":"Africa/Bamako","start_time":"13:47","length_hours":9,"length_minutes":null},
-{"subject":"Morissette-Lebsack","description":null,"location":"7554 Drewry Alley","timezone":"Asia/Makassar","start_time":"9:59","length_hours":4,"length_minutes":6},
-{"subject":"Upton LLC","description":null,"location":null,"timezone":"Africa/Dar_es_Salaam","start_time":"18:02","length_hours":5,"length_minutes":54},
-{"subject":"Jast, Balistreri and Kris","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"12:06","length_hours":12,"length_minutes":16},
-{"subject":"Bode-Breitenberg","description":null,"location":"43560 Village Green Plaza","timezone":"Asia/Manila","start_time":"20:40","length_hours":10,"length_minutes":null},
-{"subject":"Vandervort-Wyman","description":"Customizable user-facing functionalities","location":null,"timezone":"Asia/Jakarta","start_time":"22:49","length_hours":6,"length_minutes":null},
-{"subject":"McKenzie, Gaylord and Kerluke","description":"Fully-configurable secondary budgetary management","location":"7 Mccormick Parkway","timezone":"Asia/Chongqing","start_time":"20:41","length_hours":5,"length_minutes":48},
-{"subject":"Green-Yost","description":"Focused 24 hour utilisation","location":"8 Quincy Park","timezone":"Asia/Bangkok","start_time":"9:30","length_hours":10,"length_minutes":21},
-{"subject":"Abernathy and Sons","description":null,"location":"2 Cascade Street","timezone":"America/Bogota","start_time":"8:51","length_hours":4,"length_minutes":35},
-{"subject":"Prohaska LLC","description":"Progressive 4th generation monitoring","location":"656 Norway Maple Plaza","timezone":"America/Bogota","start_time":"15:40","length_hours":10,"length_minutes":null},
-{"subject":"Kulas-Reynolds","description":"Reactive multi-state installation","location":"46384 Merry Hill","timezone":"Europe/Paris","start_time":"14:51","length_hours":5,"length_minutes":20},
-{"subject":"Brakus LLC","description":"Function-based contextually-based open system","location":null,"timezone":"America/Moncton","start_time":"4:49","length_hours":6,"length_minutes":29},
-{"subject":"Turner-Goyette","description":"Phased responsive customer loyalty","location":null,"timezone":"Asia/Damascus","start_time":"7:01","length_hours":12,"length_minutes":20},
-{"subject":"Mraz, Daniel and Blanda","description":"Future-proofed reciprocal groupware","location":"68734 Homewood Court","timezone":"Asia/Chongqing","start_time":"5:57","length_hours":8,"length_minutes":24},
-{"subject":"Boyle-Strosin","description":"Cross-platform executive archive","location":"8 Rockefeller Drive","timezone":"Asia/Tokyo","start_time":"14:54","length_hours":4,"length_minutes":54},
-{"subject":"Kassulke, Keebler and Walter","description":"Proactive zero administration algorithm","location":"4811 Jenna Way","timezone":"Africa/Maputo","start_time":"17:15","length_hours":10,"length_minutes":null},
-{"subject":"Boyer, Lesch and Bauch","description":"Innovative secondary analyzer","location":"1 Manley Alley","timezone":"Asia/Chongqing","start_time":"5:23","length_hours":8,"length_minutes":null},
-{"subject":"D'Amore-Hackett","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"22:22","length_hours":10,"length_minutes":12},
-{"subject":"Maggio LLC","description":"Enterprise-wide eco-centric ability","location":"689 Pine View Street","timezone":"Europe/Moscow","start_time":"19:27","length_hours":8,"length_minutes":26},
-{"subject":"Wehner-MacGyver","description":"Optional exuding function","location":"24790 Bluejay Center","timezone":"Europe/Moscow","start_time":"10:51","length_hours":6,"length_minutes":null},
-{"subject":"Grant-Johns","description":"Versatile real-time capacity","location":"98571 Sundown Lane","timezone":"Europe/Athens","start_time":"16:34","length_hours":5,"length_minutes":56},
-{"subject":"Trantow, Johnston and Stokes","description":null,"location":"26904 Reindahl Terrace","timezone":"Europe/Moscow","start_time":"12:14","length_hours":12,"length_minutes":null},
-{"subject":"Keeling, Deckow and Williamson","description":"Persistent attitude-oriented concept","location":"5 Bluestem Pass","timezone":"Africa/Nairobi","start_time":"10:05","length_hours":4,"length_minutes":8},
-{"subject":"Jaskolski, Yundt and Vandervort","description":"Organic client-server product","location":"779 Sachtjen Street","timezone":"Asia/Jakarta","start_time":"10:18","length_hours":4,"length_minutes":null},
-{"subject":"Mann Group","description":null,"location":"7 Hanson Drive","timezone":"Africa/Kampala","start_time":"15:57","length_hours":4,"length_minutes":26},
-{"subject":"Wiegand-Mante","description":"Focused client-driven pricing structure","location":null,"timezone":"Asia/Jakarta","start_time":"4:51","length_hours":8,"length_minutes":57},
-{"subject":"Kuhn LLC","description":null,"location":"19222 Northfield Crossing","timezone":"Asia/Qyzylorda","start_time":"21:07","length_hours":10,"length_minutes":59},
-{"subject":"Reichel-Kuhn","description":"Multi-layered 24/7 adapter","location":null,"timezone":"Europe/Tirane","start_time":"18:57","length_hours":6,"length_minutes":null},
-{"subject":"Larkin Group","description":"Persevering intermediate benchmark","location":null,"timezone":"Asia/Krasnoyarsk","start_time":"10:32","length_hours":4,"length_minutes":null},
-{"subject":"Mraz-Mann","description":null,"location":null,"timezone":"America/Montreal","start_time":"10:57","length_hours":9,"length_minutes":null},
-{"subject":"Hartmann Inc","description":"Robust background archive","location":null,"timezone":"America/Lima","start_time":"7:30","length_hours":6,"length_minutes":2},
-{"subject":"Wisoky, Quigley and Osinski","description":"Inverse modular synergy","location":"5630 Basil Crossing","timezone":"Asia/Shanghai","start_time":"11:07","length_hours":5,"length_minutes":54},
-{"subject":"Lockman LLC","description":null,"location":"61829 Dakota Crossing","timezone":"Asia/Chongqing","start_time":"17:04","length_hours":5,"length_minutes":52},
-{"subject":"Dibbert-Breitenberg","description":"Integrated client-driven adapter","location":"23 Superior Road","timezone":"Asia/Chongqing","start_time":"4:48","length_hours":4,"length_minutes":30},
-{"subject":"Weissnat, Wisozk and Roob","description":"Object-based impactful policy","location":"3 Amoth Circle","timezone":"Africa/Addis_Ababa","start_time":"21:54","length_hours":8,"length_minutes":null},
-{"subject":"Bruen LLC","description":"Fully-configurable asynchronous definition","location":null,"timezone":"Asia/Baku","start_time":"9:57","length_hours":4,"length_minutes":10},
-{"subject":"Tillman Group","description":"Virtual multi-tasking encryption","location":"15 Esker Junction","timezone":"Asia/Tokyo","start_time":"12:43","length_hours":8,"length_minutes":43},
-{"subject":"Nienow, Lueilwitz and Stehr","description":"Pre-emptive optimizing installation","location":null,"timezone":"Asia/Shanghai","start_time":"21:27","length_hours":9,"length_minutes":12},
-{"subject":"Eichmann, Little and Tremblay","description":null,"location":null,"timezone":"Africa/Johannesburg","start_time":"20:05","length_hours":10,"length_minutes":3},
-{"subject":"Leuschke, Gorczany and McKenzie","description":"Digitized non-volatile internet solution","location":null,"timezone":"Europe/Athens","start_time":"9:03","length_hours":8,"length_minutes":13},
-{"subject":"Runte, Mitchell and Carroll","description":"Re-contextualized explicit archive","location":"09240 Katie Junction","timezone":"Europe/Athens","start_time":"16:29","length_hours":10,"length_minutes":null},
-{"subject":"Cartwright Group","description":null,"location":null,"timezone":"America/Bahia","start_time":"6:14","length_hours":11,"length_minutes":null},
-{"subject":"Maggio and Sons","description":"De-engineered multi-tasking artificial intelligence","location":"5 Wayridge Junction","timezone":"Europe/Prague","start_time":"22:18","length_hours":4,"length_minutes":19},
-{"subject":"Gleichner Inc","description":"Ergonomic solution-oriented open architecture","location":"06 Fairfield Hill","timezone":"Asia/Shanghai","start_time":"21:23","length_hours":11,"length_minutes":13},
-{"subject":"Abshire and Sons","description":null,"location":"22 Mandrake Court","timezone":"Asia/Chongqing","start_time":"12:13","length_hours":5,"length_minutes":18},
-{"subject":"Nienow Group","description":"Devolved fault-tolerant software","location":null,"timezone":"Asia/Tokyo","start_time":"22:05","length_hours":6,"length_minutes":17},
-{"subject":"Cormier LLC","description":"Polarised tangible focus group","location":"51981 Talmadge Court","timezone":"Europe/Paris","start_time":"13:10","length_hours":9,"length_minutes":null},
-{"subject":"Gleichner, Padberg and Wiegand","description":null,"location":"3 Gateway Way","timezone":"America/Port-au-Prince","start_time":"6:27","length_hours":12,"length_minutes":0},
-{"subject":"Zboncak Inc","description":"Multi-layered context-sensitive matrices","location":"809 Meadow Vale Avenue","timezone":"America/New_York","start_time":"8:01","length_hours":10,"length_minutes":26},
-{"subject":"Little-Terry","description":"Extended dedicated definition","location":"14001 Rieder Way","timezone":"Asia/Vladivostok","start_time":"12:38","length_hours":11,"length_minutes":32},
-{"subject":"Nader-Ernser","description":"Mandatory mission-critical throughput","location":"47 Kingsford Lane","timezone":"Asia/Shanghai","start_time":"20:54","length_hours":7,"length_minutes":null},
-{"subject":"Lueilwitz, Bartell and Wisoky","description":null,"location":null,"timezone":"Asia/Yekaterinburg","start_time":"7:57","length_hours":12,"length_minutes":45},
-{"subject":"Harris and Sons","description":"Vision-oriented human-resource collaboration","location":"89 Orin Junction","timezone":"Europe/Istanbul","start_time":"14:13","length_hours":11,"length_minutes":30},
-{"subject":"Bergnaum and Sons","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"7:55","length_hours":7,"length_minutes":7},
-{"subject":"Carter, Becker and Schuppe","description":"Horizontal optimal pricing structure","location":"604 Montana Drive","timezone":"Europe/Paris","start_time":"7:03","length_hours":8,"length_minutes":38},
-{"subject":"Marquardt Group","description":null,"location":"088 Nova Junction","timezone":"America/Mexico_City","start_time":"10:37","length_hours":10,"length_minutes":56},
-{"subject":"Kautzer-Bogan","description":"Horizontal contextually-based functionalities","location":"54 Donald Street","timezone":"America/Guatemala","start_time":"5:40","length_hours":10,"length_minutes":3},
-{"subject":"Sauer Inc","description":"Open-source optimal synergy","location":"4612 Nelson Center","timezone":"America/New_York","start_time":"11:17","length_hours":5,"length_minutes":36},
-{"subject":"Jacobs and Sons","description":"Realigned full-range infrastructure","location":"7018 Farmco Alley","timezone":"Asia/Makassar","start_time":"5:59","length_hours":6,"length_minutes":null},
-{"subject":"Hegmann and Sons","description":"User-centric empowering support","location":null,"timezone":"Asia/Seoul","start_time":"20:56","length_hours":10,"length_minutes":58},
-{"subject":"Anderson-Aufderhar","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"12:09","length_hours":11,"length_minutes":36},
-{"subject":"Toy, Wyman and Weimann","description":"Open-source 6th generation customer loyalty","location":"65 Manley Way","timezone":"Europe/Moscow","start_time":"18:41","length_hours":10,"length_minutes":17},
-{"subject":"Koss LLC","description":"Organic grid-enabled moderator","location":null,"timezone":"Europe/Lisbon","start_time":"20:21","length_hours":11,"length_minutes":null},
-{"subject":"Monahan, Kunde and Douglas","description":"Decentralized disintermediate algorithm","location":"149 Dayton Street","timezone":"Asia/Chongqing","start_time":"20:43","length_hours":11,"length_minutes":33},
-{"subject":"Howell-Prohaska","description":"Innovative discrete hub","location":"18357 Badeau Crossing","timezone":"Asia/Shanghai","start_time":"20:42","length_hours":11,"length_minutes":null},
-{"subject":"Marquardt-Homenick","description":"Managed systematic encryption","location":"040 Meadow Vale Road","timezone":"Asia/Jakarta","start_time":"7:39","length_hours":10,"length_minutes":34},
-{"subject":"Runolfsson-Dicki","description":"Self-enabling hybrid parallelism","location":null,"timezone":"Asia/Jakarta","start_time":"17:08","length_hours":11,"length_minutes":null},
-{"subject":"Schmitt, Krajcik and Kunze","description":null,"location":"3829 Esker Alley","timezone":"America/Santo_Domingo","start_time":"16:55","length_hours":6,"length_minutes":9},
-{"subject":"Boehm and Sons","description":null,"location":"788 Ohio Court","timezone":"Asia/Shanghai","start_time":"6:57","length_hours":4,"length_minutes":1},
-{"subject":"Littel LLC","description":"Optimized reciprocal challenge","location":null,"timezone":"Europe/Zaporozhye","start_time":"17:15","length_hours":8,"length_minutes":null},
-{"subject":"McClure-Wilkinson","description":"Visionary neutral product","location":"45 Bultman Lane","timezone":"Asia/Yekaterinburg","start_time":"4:29","length_hours":11,"length_minutes":null},
-{"subject":"Sawayn, Paucek and Collier","description":"Cloned local initiative","location":"4754 Lunder Street","timezone":"Asia/Shanghai","start_time":"12:13","length_hours":4,"length_minutes":null},
-{"subject":"Adams LLC","description":"Expanded bottom-line analyzer","location":null,"timezone":"America/Guatemala","start_time":"22:19","length_hours":4,"length_minutes":53},
-{"subject":"Green-Lueilwitz","description":"Configurable solution-oriented capacity","location":"81 Karstens Avenue","timezone":"Asia/Jakarta","start_time":"22:03","length_hours":8,"length_minutes":27},
-{"subject":"Schneider and Sons","description":null,"location":null,"timezone":"America/La_Paz","start_time":"21:25","length_hours":8,"length_minutes":39},
-{"subject":"Collins, O'Hara and Klein","description":null,"location":"01458 Banding Point","timezone":"Europe/Warsaw","start_time":"9:49","length_hours":10,"length_minutes":23},
-{"subject":"Jenkins, Goodwin and Durgan","description":"Inverse systemic website","location":"68809 Springview Street","timezone":"Asia/Yakutsk","start_time":"20:24","length_hours":5,"length_minutes":15},
-{"subject":"Anderson, Morissette and Dare","description":null,"location":"49754 Raven Hill","timezone":"Asia/Baghdad","start_time":"22:07","length_hours":12,"length_minutes":46},
-{"subject":"Lockman-Dickens","description":null,"location":null,"timezone":"Europe/Moscow","start_time":"7:25","length_hours":7,"length_minutes":null},
-{"subject":"Kuhn, Runte and Wiegand","description":null,"location":null,"timezone":"Asia/Chongqing","start_time":"13:53","length_hours":9,"length_minutes":45},
-{"subject":"Lubowitz Group","description":"Open-architected non-volatile array","location":null,"timezone":"Asia/Tashkent","start_time":"17:37","length_hours":6,"length_minutes":36},
-{"subject":"Bernier LLC","description":"Assimilated stable task-force","location":null,"timezone":"Asia/Chongqing","start_time":"21:24","length_hours":4,"length_minutes":22},
-{"subject":"Pfeffer Inc","description":"Exclusive multimedia interface","location":"408 Hayes Point","timezone":"Asia/Shanghai","start_time":"20:47","length_hours":4,"length_minutes":38},
-{"subject":"Kris-Zulauf","description":"User-friendly content-based implementation","location":"59 Macpherson Place","timezone":"Asia/Manila","start_time":"14:41","length_hours":9,"length_minutes":null},
-{"subject":"Schulist Inc","description":"Customizable directional infrastructure","location":null,"timezone":"America/Sao_Paulo","start_time":"9:57","length_hours":5,"length_minutes":0},
-{"subject":"Ullrich Group","description":"Assimilated motivating benchmark","location":null,"timezone":"Pacific/Pago_Pago","start_time":"14:48","length_hours":7,"length_minutes":2},
-{"subject":"Schiller, Boehm and Goldner","description":"Cross-group methodical open architecture","location":"5 Bluejay Lane","timezone":"Asia/Bangkok","start_time":"15:15","length_hours":5,"length_minutes":null},
-{"subject":"Marks, Labadie and Lowe","description":"Total empowering process improvement","location":"69382 Novick Crossing","timezone":"Asia/Shanghai","start_time":"10:04","length_hours":5,"length_minutes":null},
-{"subject":"Price-Feest","description":"Diverse optimal portal","location":null,"timezone":"Europe/Warsaw","start_time":"12:31","length_hours":4,"length_minutes":51},
-{"subject":"Rippin and Sons","description":"Persistent maximized parallelism","location":"998 Swallow Lane","timezone":"Asia/Makassar","start_time":"18:54","length_hours":9,"length_minutes":1},
-{"subject":"Boyer, Bergstrom and Rolfson","description":"Streamlined multi-state flexibility","location":null,"timezone":"Europe/Warsaw","start_time":"17:07","length_hours":8,"length_minutes":36},
-{"subject":"Hegmann-Gutkowski","description":"Right-sized 6th generation focus group","location":null,"timezone":"Europe/Paris","start_time":"11:57","length_hours":10,"length_minutes":58},
-{"subject":"Littel, Champlin and Ebert","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"18:04","length_hours":5,"length_minutes":22},
-{"subject":"Denesik-Conroy","description":"Optional zero defect help-desk","location":"11737 Mallory Circle","timezone":"Asia/Chongqing","start_time":"20:56","length_hours":7,"length_minutes":48},
-{"subject":"Rohan Inc","description":"Monitored modular policy","location":null,"timezone":"Asia/Chongqing","start_time":"11:56","length_hours":7,"length_minutes":11},
-{"subject":"Rodriguez, Jast and Bayer","description":"Configurable full-range info-mediaries","location":"81845 Summerview Court","timezone":"Asia/Chongqing","start_time":"20:18","length_hours":8,"length_minutes":34},
-{"subject":"Schuster, Crist and Balistreri","description":null,"location":"7839 Charing Cross Point","timezone":"Europe/Sofia","start_time":"4:29","length_hours":7,"length_minutes":52},
-{"subject":"Heaney Inc","description":"Multi-channelled full-range installation","location":"3989 Loeprich Crossing","timezone":"Europe/Stockholm","start_time":"12:28","length_hours":9,"length_minutes":2},
-{"subject":"Herzog-Stark","description":null,"location":null,"timezone":"Asia/Seoul","start_time":"9:21","length_hours":6,"length_minutes":null},
-{"subject":"Wilkinson-Sauer","description":null,"location":null,"timezone":"America/Lima","start_time":"10:18","length_hours":10,"length_minutes":22},
-{"subject":"Considine, Nienow and Cronin","description":"Intuitive asynchronous archive","location":"048 Tennessee Point","timezone":"America/Tegucigalpa","start_time":"18:17","length_hours":6,"length_minutes":9},
-{"subject":"Kemmer-Schultz","description":"Fundamental encompassing knowledge base","location":"02711 Arkansas Hill","timezone":"Europe/Athens","start_time":"18:32","length_hours":4,"length_minutes":14},
-{"subject":"Wyman-Parker","description":"Decentralized fault-tolerant methodology","location":null,"timezone":"Asia/Makassar","start_time":"14:22","length_hours":10,"length_minutes":null},
-{"subject":"Bosco, Raynor and Boehm","description":null,"location":null,"timezone":"Asia/Bishkek","start_time":"22:05","length_hours":5,"length_minutes":15},
-{"subject":"Larkin, Leffler and Reichel","description":null,"location":null,"timezone":"Africa/Maseru","start_time":"16:37","length_hours":7,"length_minutes":48},
-{"subject":"Stroman, Johnson and Goyette","description":null,"location":null,"timezone":"America/Phoenix","start_time":"4:36","length_hours":7,"length_minutes":26},
-{"subject":"O'Hara, Hackett and Hauck","description":"Vision-oriented impactful strategy","location":null,"timezone":"Europe/Volgograd","start_time":"8:57","length_hours":7,"length_minutes":16},
-{"subject":"Keebler LLC","description":"Self-enabling foreground data-warehouse","location":"213 Debra Plaza","timezone":"America/Lima","start_time":"21:09","length_hours":9,"length_minutes":null},
-{"subject":"Cruickshank-Grady","description":"Switchable multi-state knowledge user","location":"40685 Daystar Pass","timezone":"Asia/Manila","start_time":"9:34","length_hours":8,"length_minutes":23},
-{"subject":"Schoen Group","description":"Versatile methodical benchmark","location":"8385 Tony Plaza","timezone":"Asia/Taipei","start_time":"4:30","length_hours":11,"length_minutes":28},
-{"subject":"Botsford Inc","description":"Object-based radical alliance","location":"0847 Bay Street","timezone":"Europe/Moscow","start_time":"9:40","length_hours":5,"length_minutes":5},
-{"subject":"Bosco-Metz","description":"User-centric maximized project","location":"95 Jenna Place","timezone":"Europe/Stockholm","start_time":"13:49","length_hours":4,"length_minutes":36},
-{"subject":"Collins LLC","description":"Customizable well-modulated instruction set","location":"75 Waxwing Street","timezone":"America/Lima","start_time":"7:08","length_hours":5,"length_minutes":null},
-{"subject":"Gibson and Sons","description":"Customer-focused foreground structure","location":null,"timezone":"America/Havana","start_time":"22:44","length_hours":10,"length_minutes":3},
-{"subject":"Bailey-Bode","description":"Enterprise-wide eco-centric application","location":"519 Huxley Drive","timezone":"Asia/Jakarta","start_time":"5:55","length_hours":11,"length_minutes":51},
-{"subject":"Toy and Sons","description":"Virtual dynamic archive","location":"5 Donald Center","timezone":"Asia/Jakarta","start_time":"21:27","length_hours":10,"length_minutes":23},
-{"subject":"Schumm LLC","description":"Face to face asynchronous initiative","location":null,"timezone":"Asia/Bangkok","start_time":"19:09","length_hours":4,"length_minutes":15},
-{"subject":"Green-Olson","description":null,"location":"691 Hudson Junction","timezone":"Asia/Bangkok","start_time":"7:40","length_hours":5,"length_minutes":null},
-{"subject":"O'Connell, Hills and Hegmann","description":"Up-sized web-enabled process improvement","location":"2872 Butternut Point","timezone":"Asia/Tehran","start_time":"22:01","length_hours":7,"length_minutes":41},
-{"subject":"Hudson Group","description":null,"location":"847 Sunnyside Center","timezone":"Europe/Samara","start_time":"16:36","length_hours":9,"length_minutes":21},
-{"subject":"Moore Group","description":"Upgradable well-modulated circuit","location":"06005 Elgar Drive","timezone":"Asia/Makassar","start_time":"21:23","length_hours":9,"length_minutes":45},
-{"subject":"Mohr, Carter and Von","description":"Synchronised impactful open system","location":"124 New Castle Street","timezone":"Europe/Skopje","start_time":"15:03","length_hours":12,"length_minutes":null},
-{"subject":"Friesen, Brakus and Lakin","description":"Cross-group discrete alliance","location":"0 Anhalt Way","timezone":"Europe/Tirane","start_time":"10:47","length_hours":12,"length_minutes":3},
-{"subject":"Kuhic, Hahn and Kohler","description":"Vision-oriented 5th generation collaboration","location":"8 Thompson Drive","timezone":"Asia/Shanghai","start_time":"12:36","length_hours":7,"length_minutes":13},
-{"subject":"Torphy Inc","description":"Ameliorated attitude-oriented standardization","location":"0 Springview Street","timezone":"Africa/Lagos","start_time":"12:19","length_hours":9,"length_minutes":52},
-{"subject":"Bosco-Collier","description":null,"location":null,"timezone":"Asia/Chongqing","start_time":"9:34","length_hours":6,"length_minutes":55},
-{"subject":"Schoen-Schuppe","description":"Reduced demand-driven internet solution","location":"2 Merry Circle","timezone":"Europe/Moscow","start_time":"4:27","length_hours":12,"length_minutes":null},
-{"subject":"Farrell Group","description":"Monitored 24/7 analyzer","location":"02779 Butterfield Crossing","timezone":"Europe/Lisbon","start_time":"6:43","length_hours":10,"length_minutes":19},
-{"subject":"Medhurst-Gerhold","description":null,"location":"5768 Ludington Street","timezone":"Europe/Bucharest","start_time":"12:32","length_hours":7,"length_minutes":21},
-{"subject":"Buckridge, Runolfsdottir and Hodkiewicz","description":"Balanced logistical circuit","location":null,"timezone":"Asia/Muscat","start_time":"16:53","length_hours":8,"length_minutes":56},
-{"subject":"Ziemann-McDermott","description":"Decentralized multi-tasking extranet","location":"55 Golf Course Center","timezone":"Asia/Jakarta","start_time":"4:49","length_hours":11,"length_minutes":null},
-{"subject":"Hand, Batz and Fay","description":"Synergized multi-state instruction set","location":null,"timezone":"America/Guayaquil","start_time":"20:43","length_hours":12,"length_minutes":51},
-{"subject":"Welch Group","description":null,"location":null,"timezone":"Asia/Makassar","start_time":"6:18","length_hours":11,"length_minutes":null},
-{"subject":"Schmitt-Baumbach","description":null,"location":"07770 Cordelia Pass","timezone":"Asia/Manila","start_time":"8:20","length_hours":7,"length_minutes":36},
-{"subject":"Reilly-Dickens","description":"Function-based holistic success","location":null,"timezone":"Asia/Chongqing","start_time":"17:22","length_hours":4,"length_minutes":null},
-{"subject":"Wuckert and Sons","description":null,"location":"05 Loftsgordon Point","timezone":"Asia/Tokyo","start_time":"10:28","length_hours":8,"length_minutes":null},
-{"subject":"Volkman-Gleichner","description":"Object-based homogeneous synergy","location":null,"timezone":"Asia/Tokyo","start_time":"16:46","length_hours":9,"length_minutes":null},
-{"subject":"Schumm-Homenick","description":null,"location":"897 Thackeray Alley","timezone":"Europe/Lisbon","start_time":"9:59","length_hours":11,"length_minutes":null},
-{"subject":"Koss-Heidenreich","description":"Customer-focused logistical artificial intelligence","location":null,"timezone":"Asia/Jakarta","start_time":"20:28","length_hours":6,"length_minutes":28},
-{"subject":"Ledner, Powlowski and Mitchell","description":"Proactive cohesive service-desk","location":null,"timezone":"Asia/Pyongyang","start_time":"13:30","length_hours":6,"length_minutes":11},
-{"subject":"Schimmel and Sons","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"13:58","length_hours":5,"length_minutes":47},
-{"subject":"Wisoky-Turcotte","description":null,"location":"169 Lindbergh Avenue","timezone":"Europe/Zagreb","start_time":"13:13","length_hours":8,"length_minutes":55},
-{"subject":"Ward and Sons","description":"Organized dynamic functionalities","location":null,"timezone":"Asia/Harbin","start_time":"14:25","length_hours":7,"length_minutes":32},
-{"subject":"Kovacek-Walter","description":"Versatile bottom-line info-mediaries","location":null,"timezone":"Asia/Chongqing","start_time":"6:15","length_hours":12,"length_minutes":null},
-{"subject":"McClure-Russel","description":"Focused mobile paradigm","location":null,"timezone":"Europe/Paris","start_time":"18:57","length_hours":6,"length_minutes":null},
-{"subject":"Strosin, O'Kon and Schuster","description":"Switchable bi-directional focus group","location":"560 Boyd Parkway","timezone":"Europe/Dublin","start_time":"15:35","length_hours":9,"length_minutes":5},
-{"subject":"Adams and Sons","description":null,"location":"3 Charing Cross Alley","timezone":"Asia/Manila","start_time":"13:01","length_hours":8,"length_minutes":52},
-{"subject":"Padberg LLC","description":"Integrated empowering installation","location":"00 Coleman Court","timezone":"Europe/Paris","start_time":"7:25","length_hours":12,"length_minutes":null},
-{"subject":"Hermann-Von","description":"Universal 24 hour methodology","location":"52 Duke Lane","timezone":"America/Sao_Paulo","start_time":"14:51","length_hours":7,"length_minutes":2},
-{"subject":"Hayes Inc","description":null,"location":"2 Summit Terrace","timezone":"America/Bahia","start_time":"16:15","length_hours":11,"length_minutes":43},
-{"subject":"Jast-Collier","description":null,"location":"75 Melody Place","timezone":"Asia/Jakarta","start_time":"14:33","length_hours":9,"length_minutes":11},
-{"subject":"Dickinson-Ernser","description":null,"location":null,"timezone":"Asia/Makassar","start_time":"9:21","length_hours":5,"length_minutes":39},
-{"subject":"Nikolaus-Kshlerin","description":"Seamless multi-tasking process improvement","location":null,"timezone":"Asia/Shanghai","start_time":"11:42","length_hours":12,"length_minutes":16},
-{"subject":"Pfeffer, Kuhlman and Nikolaus","description":null,"location":null,"timezone":"America/New_York","start_time":"18:51","length_hours":9,"length_minutes":30},
-{"subject":"Sporer, Moen and Paucek","description":"Fundamental bifurcated standardization","location":null,"timezone":"Europe/Amsterdam","start_time":"10:08","length_hours":4,"length_minutes":null},
-{"subject":"Gerlach and Sons","description":null,"location":"76 Waxwing Drive","timezone":"Europe/Paris","start_time":"13:42","length_hours":6,"length_minutes":null},
-{"subject":"Herzog, Senger and Gleichner","description":"Phased content-based superstructure","location":null,"timezone":"Europe/Uzhgorod","start_time":"20:10","length_hours":10,"length_minutes":57},
-{"subject":"Huels-Hills","description":"Universal analyzing paradigm","location":null,"timezone":"America/Mexico_City","start_time":"9:57","length_hours":4,"length_minutes":30},
-{"subject":"Senger, Simonis and Bradtke","description":"Reduced tangible parallelism","location":null,"timezone":"Asia/Shanghai","start_time":"9:47","length_hours":12,"length_minutes":43},
-{"subject":"McDermott, Walter and Goldner","description":"Mandatory systemic workforce","location":"0250 Forest Dale Plaza","timezone":"Europe/Paris","start_time":"19:49","length_hours":6,"length_minutes":56},
-{"subject":"Gusikowski, Boyer and Sauer","description":"Sharable content-based utilisation","location":"09 Little Fleur Junction","timezone":"Europe/Paris","start_time":"18:26","length_hours":7,"length_minutes":null},
-{"subject":"Krajcik and Sons","description":null,"location":"075 Mosinee Crossing","timezone":"Asia/Manila","start_time":"15:24","length_hours":7,"length_minutes":58},
-{"subject":"Blick, Spencer and Muller","description":"Balanced non-volatile neural-net","location":"46897 Columbus Alley","timezone":"Europe/Simferopol","start_time":"7:59","length_hours":7,"length_minutes":30},
-{"subject":"Bogan-Baumbach","description":"Visionary motivating architecture","location":"46 Mandrake Road","timezone":"Asia/Ho_Chi_Minh","start_time":"14:56","length_hours":12,"length_minutes":32},
-{"subject":"Mills, Ward and Becker","description":null,"location":null,"timezone":"Africa/Johannesburg","start_time":"16:12","length_hours":12,"length_minutes":null},
-{"subject":"Marquardt-Brown","description":"Ameliorated fresh-thinking archive","location":"33543 Pine View Park","timezone":"Africa/Johannesburg","start_time":"14:33","length_hours":12,"length_minutes":49},
-{"subject":"Gislason, Thompson and Wunsch","description":null,"location":"56 Granby Alley","timezone":"Asia/Jayapura","start_time":"18:46","length_hours":7,"length_minutes":45},
-{"subject":"McDermott, Dietrich and Sawayn","description":"Stand-alone impactful emulation","location":"142 Canary Pass","timezone":"Asia/Chongqing","start_time":"17:27","length_hours":8,"length_minutes":29},
-{"subject":"Lang Inc","description":"Down-sized bottom-line pricing structure","location":"093 American Ash Park","timezone":"Asia/Tokyo","start_time":"15:54","length_hours":7,"length_minutes":31},
-{"subject":"Heller, Effertz and Larkin","description":"Customizable exuding info-mediaries","location":"6867 Duke Alley","timezone":"Asia/Harbin","start_time":"10:25","length_hours":9,"length_minutes":null},
-{"subject":"Stamm Inc","description":"De-engineered national array","location":"8 Grover Avenue","timezone":"Asia/Jakarta","start_time":"19:22","length_hours":6,"length_minutes":null},
-{"subject":"Funk-Hagenes","description":"Business-focused homogeneous hardware","location":"3 Badeau Pass","timezone":"Europe/Prague","start_time":"13:10","length_hours":4,"length_minutes":null},
-{"subject":"Armstrong-Hilll","description":"Open-architected clear-thinking paradigm","location":null,"timezone":"America/Bahia","start_time":"6:20","length_hours":12,"length_minutes":30},
-{"subject":"Nitzsche Inc","description":"Re-engineered hybrid project","location":"18454 Dryden Terrace","timezone":"Europe/Moscow","start_time":"16:22","length_hours":11,"length_minutes":null},
-{"subject":"Herzog-Bergstrom","description":"Optimized context-sensitive challenge","location":null,"timezone":"Europe/Paris","start_time":"18:17","length_hours":5,"length_minutes":26},
-{"subject":"Brakus Inc","description":null,"location":null,"timezone":"Asia/Manila","start_time":"19:25","length_hours":10,"length_minutes":51},
-{"subject":"Crona-D'Amore","description":"Focused fresh-thinking monitoring","location":null,"timezone":"Asia/Harbin","start_time":"16:10","length_hours":10,"length_minutes":6},
-{"subject":"Krajcik-Schmitt","description":null,"location":null,"timezone":"Asia/Shanghai","start_time":"13:38","length_hours":6,"length_minutes":34},
-{"subject":"Turcotte Inc","description":"Visionary context-sensitive methodology","location":null,"timezone":"Europe/Belgrade","start_time":"13:51","length_hours":9,"length_minutes":null},
-{"subject":"Wunsch, Ruecker and Stracke","description":null,"location":"3 Clarendon Crossing","timezone":"Asia/Pyongyang","start_time":"22:19","length_hours":4,"length_minutes":55},
-{"subject":"Lesch Inc","description":"Innovative mission-critical functionalities","location":null,"timezone":"Asia/Chongqing","start_time":"22:39","length_hours":12,"length_minutes":29},
-{"subject":"Nitzsche Inc","description":"Open-source coherent capability","location":"972 Toban Street","timezone":"Asia/Harbin","start_time":"20:21","length_hours":9,"length_minutes":42},
-{"subject":"Ledner Group","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"9:57","length_hours":11,"length_minutes":null},
-{"subject":"Emard and Sons","description":"Secured client-driven moderator","location":"64594 South Lane","timezone":"Asia/Shanghai","start_time":"7:36","length_hours":7,"length_minutes":53},
-{"subject":"Farrell, Hoppe and Weber","description":"Public-key asymmetric capability","location":"00621 Coolidge Place","timezone":"Asia/Chongqing","start_time":"9:29","length_hours":12,"length_minutes":null},
-{"subject":"D'Amore, Weber and Ruecker","description":"Grass-roots full-range internet solution","location":"4 Westport Avenue","timezone":"Europe/Sarajevo","start_time":"20:14","length_hours":6,"length_minutes":19},
-{"subject":"Auer, Feest and Gutmann","description":"Compatible reciprocal hardware","location":null,"timezone":"Europe/Kiev","start_time":"21:02","length_hours":10,"length_minutes":0},
-{"subject":"Nienow Group","description":"Switchable eco-centric throughput","location":"534 Starling Road","timezone":"Europe/Prague","start_time":"13:45","length_hours":11,"length_minutes":null},
-{"subject":"Marks, Wolf and Schmidt","description":null,"location":"24 Riverside Street","timezone":"America/Sao_Paulo","start_time":"18:49","length_hours":12,"length_minutes":45},
-{"subject":"Bogan, Bashirian and McLaughlin","description":null,"location":null,"timezone":"Europe/Athens","start_time":"6:48","length_hours":8,"length_minutes":null},
-{"subject":"Miller Group","description":null,"location":null,"timezone":"Asia/Harbin","start_time":"18:27","length_hours":8,"length_minutes":25},
-{"subject":"Walker, Cummings and Yost","description":"Right-sized composite framework","location":null,"timezone":"Africa/Casablanca","start_time":"6:19","length_hours":5,"length_minutes":null},
-{"subject":"Morissette-Bednar","description":"Organic full-range encryption","location":"59382 Towne Circle","timezone":"Europe/Vilnius","start_time":"6:23","length_hours":7,"length_minutes":21},
-{"subject":"Bogisich, Fahey and Schamberger","description":"Reverse-engineered 6th generation encoding","location":"94955 Bowman Alley","timezone":"Africa/Nairobi","start_time":"5:50","length_hours":6,"length_minutes":20},
-{"subject":"Romaguera Inc","description":"Face to face methodical initiative","location":"133 Talmadge Way","timezone":"Asia/Harbin","start_time":"11:23","length_hours":12,"length_minutes":2},
-{"subject":"Torphy, Nader and Kilback","description":"Expanded optimal approach","location":"05 Monterey Crossing","timezone":"Africa/Lagos","start_time":"14:12","length_hours":10,"length_minutes":46},
-{"subject":"Johnson and Sons","description":null,"location":"1222 Eagle Crest Crossing","timezone":"Asia/Chongqing","start_time":"22:51","length_hours":5,"length_minutes":37},
-{"subject":"Morar, Stark and Hartmann","description":"Digitized mobile intranet","location":"3 Surrey Lane","timezone":"Asia/Damascus","start_time":"17:20","length_hours":11,"length_minutes":57},
-{"subject":"Torp, Blanda and Nienow","description":null,"location":"134 Schmedeman Court","timezone":"Asia/Jakarta","start_time":"19:01","length_hours":5,"length_minutes":19},
-{"subject":"Doyle-Daniel","description":"Object-based system-worthy frame","location":"6618 Crest Line Trail","timezone":"Europe/Moscow","start_time":"15:00","length_hours":7,"length_minutes":null},
-{"subject":"Hauck, Berge and Reynolds","description":"Multi-layered even-keeled infrastructure","location":null,"timezone":"Asia/Jakarta","start_time":"13:44","length_hours":8,"length_minutes":59},
-{"subject":"Zulauf LLC","description":"Public-key analyzing access","location":"6766 Monument Alley","timezone":"Europe/Rome","start_time":"16:46","length_hours":4,"length_minutes":51},
-{"subject":"Lang-VonRueden","description":"Balanced heuristic attitude","location":"171 Eagle Crest Circle","timezone":"Europe/Helsinki","start_time":"8:56","length_hours":12,"length_minutes":36},
-{"subject":"Hills-Emard","description":"Distributed regional customer loyalty","location":null,"timezone":"Europe/Lisbon","start_time":"12:27","length_hours":10,"length_minutes":null},
-{"subject":"Hayes and Sons","description":"Team-oriented static projection","location":"903 Schiller Terrace","timezone":"Europe/Ljubljana","start_time":"9:28","length_hours":11,"length_minutes":39},
-{"subject":"Tillman, Tromp and Harber","description":"User-centric needs-based interface","location":"311 Maywood Center","timezone":"Europe/Lisbon","start_time":"12:32","length_hours":8,"length_minutes":54},
-{"subject":"Conroy Inc","description":"Stand-alone grid-enabled middleware","location":null,"timezone":"Asia/Almaty","start_time":"7:10","length_hours":8,"length_minutes":null},
-{"subject":"Dicki-Lang","description":"Monitored even-keeled core","location":null,"timezone":"Asia/Shanghai","start_time":"14:33","length_hours":4,"length_minutes":0},
-{"subject":"Carroll, Wolf and Heller","description":"Seamless leading edge process improvement","location":null,"timezone":"Europe/Tallinn","start_time":"8:15","length_hours":12,"length_minutes":null},
-{"subject":"Braun Group","description":"Innovative real-time middleware","location":null,"timezone":"Asia/Shanghai","start_time":"15:49","length_hours":7,"length_minutes":32},
-{"subject":"Turner and Sons","description":"Customizable zero administration time-frame","location":"2409 Pleasure Road","timezone":"Europe/Paris","start_time":"15:11","length_hours":9,"length_minutes":56},
-{"subject":"Walter-Bayer","description":null,"location":"3 Pawling Park","timezone":"Asia/Shanghai","start_time":"22:31","length_hours":6,"length_minutes":null},
-{"subject":"Mayert, Heller and Quigley","description":"Down-sized clear-thinking database","location":"990 Burning Wood Trail","timezone":"America/Bogota","start_time":"13:07","length_hours":10,"length_minutes":null},
-{"subject":"Gerhold LLC","description":"Enterprise-wide tertiary intranet","location":null,"timezone":"Europe/Paris","start_time":"12:21","length_hours":4,"length_minutes":28},
-{"subject":"Johns Group","description":"Customer-focused coherent productivity","location":"7 Riverside Court","timezone":"Africa/Kampala","start_time":"14:33","length_hours":8,"length_minutes":14},
-{"subject":"Schulist, Torp and Beahan","description":null,"location":"716 Sunbrook Court","timezone":"Europe/Zagreb","start_time":"10:24","length_hours":12,"length_minutes":null},
-{"subject":"Will, Heathcote and Altenwerth","description":null,"location":"10165 Grim Place","timezone":"Europe/Moscow","start_time":"19:15","length_hours":12,"length_minutes":39},
-{"subject":"Schimmel-Nitzsche","description":"Centralized zero tolerance time-frame","location":null,"timezone":"Europe/Paris","start_time":"5:56","length_hours":7,"length_minutes":null},
-{"subject":"Herzog-Schuster","description":"Mandatory holistic encoding","location":null,"timezone":"Europe/Prague","start_time":"17:03","length_hours":8,"length_minutes":32},
-{"subject":"Zieme-Rogahn","description":null,"location":"51954 Nobel Lane","timezone":"Europe/Berlin","start_time":"12:58","length_hours":11,"length_minutes":30},
-{"subject":"Smith, Miller and Wolff","description":"Focused static capability","location":null,"timezone":"America/Caracas","start_time":"12:11","length_hours":11,"length_minutes":null},
-{"subject":"Schmeler-Breitenberg","description":"Function-based leading edge core","location":null,"timezone":"Asia/Chongqing","start_time":"22:03","length_hours":8,"length_minutes":null},
-{"subject":"Williamson and Sons","description":"Public-key eco-centric policy","location":"9727 Elmside Park","timezone":"Europe/Lisbon","start_time":"17:15","length_hours":11,"length_minutes":45},
-{"subject":"Monahan-Stanton","description":null,"location":null,"timezone":"Europe/Moscow","start_time":"21:39","length_hours":7,"length_minutes":24},
-{"subject":"Wisoky, Pouros and Lynch","description":null,"location":"628 Dwight Way","timezone":"Asia/Shanghai","start_time":"19:24","length_hours":9,"length_minutes":null},
-{"subject":"Hilpert, Leuschke and Hagenes","description":null,"location":"114 Comanche Avenue","timezone":"America/Lima","start_time":"13:03","length_hours":4,"length_minutes":null},
-{"subject":"Raynor, Schultz and Wehner","description":"Intuitive web-enabled flexibility","location":"77896 Katie Circle","timezone":"Indian/Antananarivo","start_time":"18:15","length_hours":4,"length_minutes":null},
-{"subject":"Keebler, Wiza and King","description":"Compatible intermediate superstructure","location":"60 Banding Center","timezone":"America/Fortaleza","start_time":"7:47","length_hours":10,"length_minutes":3},
-{"subject":"Kirlin, Trantow and Shanahan","description":"Switchable interactive frame","location":"540 Harper Way","timezone":"Europe/Moscow","start_time":"20:18","length_hours":6,"length_minutes":null},
-{"subject":"Lemke-Satterfield","description":"Automated mobile analyzer","location":"96 Welch Junction","timezone":"Asia/Manila","start_time":"16:30","length_hours":5,"length_minutes":null},
-{"subject":"Braun, Windler and Wuckert","description":null,"location":"2502 School Pass","timezone":"America/Sao_Paulo","start_time":"17:10","length_hours":9,"length_minutes":null},
-{"subject":"Powlowski-Rowe","description":null,"location":"690 Linden Circle","timezone":"America/Cuiaba","start_time":"12:35","length_hours":7,"length_minutes":null},
-{"subject":"Herman Inc","description":"Customer-focused multi-state hierarchy","location":"78181 Mitchell Terrace","timezone":"America/Manaus","start_time":"13:34","length_hours":11,"length_minutes":41},
-{"subject":"Jacobson LLC","description":"Fundamental mobile function","location":"164 Hauk Hill","timezone":"Asia/Shanghai","start_time":"8:42","length_hours":6,"length_minutes":34},
-{"subject":"Lakin LLC","description":"Function-based optimizing alliance","location":"88723 Pierstorff Hill","timezone":"Asia/Shanghai","start_time":"11:26","length_hours":12,"length_minutes":null},
-{"subject":"Hoeger, Doyle and Vandervort","description":"Programmable disintermediate algorithm","location":null,"timezone":"Asia/Krasnoyarsk","start_time":"4:54","length_hours":4,"length_minutes":36},
-{"subject":"Altenwerth, Vandervort and Baumbach","description":"User-friendly multi-state open system","location":"4 Parkside Lane","timezone":"Europe/London","start_time":"13:20","length_hours":6,"length_minutes":null},
-{"subject":"Bartell Inc","description":"Persistent demand-driven pricing structure","location":null,"timezone":"Europe/Helsinki","start_time":"22:08","length_hours":6,"length_minutes":5},
-{"subject":"Breitenberg, Lind and Schaden","description":"User-centric 24/7 circuit","location":"295 Badeau Circle","timezone":"Europe/Stockholm","start_time":"5:15","length_hours":11,"length_minutes":8},
-{"subject":"Botsford and Sons","description":null,"location":"75785 Sunfield Crossing","timezone":"Europe/Moscow","start_time":"10:42","length_hours":9,"length_minutes":20},
-{"subject":"Bins LLC","description":null,"location":null,"timezone":"Asia/Damascus","start_time":"13:00","length_hours":4,"length_minutes":12},
-{"subject":"Hirthe-Purdy","description":"Seamless regional functionalities","location":"7 Forster Place","timezone":"Europe/Stockholm","start_time":"16:32","length_hours":9,"length_minutes":20},
-{"subject":"Price Group","description":"Sharable heuristic flexibility","location":"624 Moose Junction","timezone":"Asia/Jakarta","start_time":"4:02","length_hours":4,"length_minutes":null},
-{"subject":"Heidenreich, Mraz and Jones","description":"Versatile multi-state solution","location":"167 Mifflin Place","timezone":"Africa/Abidjan","start_time":"10:14","length_hours":12,"length_minutes":12},
-{"subject":"Schmidt, Hettinger and Marquardt","description":"Ergonomic intermediate open system","location":null,"timezone":"Europe/Lisbon","start_time":"9:52","length_hours":4,"length_minutes":null},
-{"subject":"Altenwerth-Price","description":null,"location":"19 Coleman Street","timezone":"America/Toronto","start_time":"15:49","length_hours":8,"length_minutes":null},
-{"subject":"Hane, Larson and Corkery","description":null,"location":"3 Butterfield Hill","timezone":"America/Sao_Paulo","start_time":"20:01","length_hours":5,"length_minutes":38},
-{"subject":"Von, Hermann and Corwin","description":null,"location":null,"timezone":"America/Lima","start_time":"6:50","length_hours":11,"length_minutes":null},
-{"subject":"Schneider Group","description":"Fundamental attitude-oriented middleware","location":"6528 Northridge Street","timezone":"Europe/Warsaw","start_time":"12:26","length_hours":4,"length_minutes":47},
-{"subject":"Boyle-Kuphal","description":null,"location":"45360 Basil Lane","timezone":"Asia/Manila","start_time":"18:22","length_hours":7,"length_minutes":0},
-{"subject":"Toy Inc","description":"Switchable holistic functionalities","location":"9613 Bartelt Road","timezone":"America/Havana","start_time":"6:16","length_hours":12,"length_minutes":null},
-{"subject":"Lindgren, Hettinger and Kozey","description":"Synchronised high-level middleware","location":"16 Hanover Drive","timezone":"America/Mexico_City","start_time":"10:20","length_hours":5,"length_minutes":15},
-{"subject":"Walker, Mertz and Oberbrunner","description":"Monitored logistical standardization","location":"2 Cody Avenue","timezone":"America/Bogota","start_time":"13:21","length_hours":11,"length_minutes":null},
-{"subject":"Kiehn LLC","description":"Persistent 24 hour monitoring","location":"01 Debs Junction","timezone":"America/La_Paz","start_time":"20:06","length_hours":5,"length_minutes":null},
-{"subject":"Auer and Sons","description":"Innovative heuristic challenge","location":null,"timezone":"Asia/Kabul","start_time":"11:58","length_hours":12,"length_minutes":null},
-{"subject":"Nader, Welch and Goyette","description":null,"location":"3693 Mesta Hill","timezone":"Asia/Shanghai","start_time":"18:51","length_hours":8,"length_minutes":null},
-{"subject":"Kautzer-Hagenes","description":null,"location":null,"timezone":"Europe/Moscow","start_time":"13:58","length_hours":5,"length_minutes":25},
-{"subject":"Cummerata and Sons","description":"Triple-buffered well-modulated utilisation","location":"7848 Twin Pines Road","timezone":"Asia/Harbin","start_time":"14:34","length_hours":9,"length_minutes":53},
-{"subject":"Dickinson, Davis and Hand","description":"Innovative mobile intranet","location":null,"timezone":"America/Lima","start_time":"19:38","length_hours":9,"length_minutes":48},
-{"subject":"Heathcote, Marquardt and Kunde","description":"Realigned hybrid function","location":null,"timezone":"Asia/Manila","start_time":"17:49","length_hours":4,"length_minutes":1},
-{"subject":"Halvorson and Sons","description":null,"location":"3 Muir Junction","timezone":"Asia/Karachi","start_time":"21:04","length_hours":4,"length_minutes":15},
-{"subject":"Reichel and Sons","description":"Reactive attitude-oriented adapter","location":"5042 Walton Place","timezone":"America/Monterrey","start_time":"14:07","length_hours":5,"length_minutes":null},
-{"subject":"Hyatt Group","description":"Ameliorated contextually-based standardization","location":null,"timezone":"Asia/Jakarta","start_time":"5:19","length_hours":9,"length_minutes":null},
-{"subject":"Koch, MacGyver and Bernhard","description":"Reverse-engineered dynamic parallelism","location":null,"timezone":"America/Mexico_City","start_time":"16:08","length_hours":9,"length_minutes":null},
-{"subject":"Labadie Group","description":"Open-architected even-keeled matrix","location":"64 Manley Avenue","timezone":"Europe/Warsaw","start_time":"16:21","length_hours":4,"length_minutes":11},
-{"subject":"Powlowski-Volkman","description":"Function-based real-time system engine","location":"4 Meadow Valley Road","timezone":"Asia/Chongqing","start_time":"6:13","length_hours":8,"length_minutes":16},
-{"subject":"Johnston, Barrows and Morissette","description":"Advanced reciprocal secured line","location":null,"timezone":"Asia/Shanghai","start_time":"10:16","length_hours":5,"length_minutes":3},
-{"subject":"Kulas-Halvorson","description":null,"location":null,"timezone":"Europe/Oslo","start_time":"7:50","length_hours":4,"length_minutes":7},
-{"subject":"Bahringer Inc","description":null,"location":"0770 Golf Alley","timezone":"Asia/Ho_Chi_Minh","start_time":"14:26","length_hours":5,"length_minutes":35},
-{"subject":"Bogisich-Willms","description":null,"location":"78 Warbler Crossing","timezone":"Asia/Gaza","start_time":"20:08","length_hours":11,"length_minutes":55},
-{"subject":"Sauer-Bartoletti","description":"Persistent homogeneous portal","location":null,"timezone":"Asia/Harbin","start_time":"22:16","length_hours":6,"length_minutes":null},
-{"subject":"Lowe-White","description":"Focused heuristic leverage","location":"155 Pond Parkway","timezone":"Africa/Accra","start_time":"14:38","length_hours":11,"length_minutes":13},
-{"subject":"Sipes, Mosciski and Ondricka","description":"Open-source 3rd generation standardization","location":"1616 Kenwood Place","timezone":"Europe/Berlin","start_time":"15:20","length_hours":8,"length_minutes":null},
-{"subject":"Dickens-Howe","description":"Expanded dynamic strategy","location":"62 Fuller Avenue","timezone":"Asia/Makassar","start_time":"12:41","length_hours":7,"length_minutes":null},
-{"subject":"Kirlin LLC","description":"Ergonomic bi-directional concept","location":null,"timezone":"America/Sao_Paulo","start_time":"8:30","length_hours":11,"length_minutes":null},
-{"subject":"Ledner-Farrell","description":"Automated composite structure","location":"2 Rutledge Crossing","timezone":"Europe/Amsterdam","start_time":"10:28","length_hours":8,"length_minutes":null},
-{"subject":"Yundt-Hermann","description":null,"location":null,"timezone":"America/Fortaleza","start_time":"14:54","length_hours":11,"length_minutes":45},
-{"subject":"Halvorson, Daugherty and Pfannerstill","description":null,"location":"4 Manitowish Pass","timezone":"Asia/Manila","start_time":"5:11","length_hours":11,"length_minutes":null},
-{"subject":"Kessler, Fisher and Crist","description":"Vision-oriented next generation array","location":null,"timezone":"America/Santo_Domingo","start_time":"21:01","length_hours":7,"length_minutes":25},
-{"subject":"Kuvalis Inc","description":null,"location":"30 Atwood Hill","timezone":"Europe/Stockholm","start_time":"17:44","length_hours":10,"length_minutes":34},
-{"subject":"Graham-Prohaska","description":null,"location":"148 Pawling Park","timezone":"Asia/Shanghai","start_time":"4:03","length_hours":4,"length_minutes":31},
-{"subject":"Berge, Swift and Koch","description":"Persistent discrete structure","location":"3732 Monument Junction","timezone":"Asia/Harbin","start_time":"4:50","length_hours":4,"length_minutes":null},
-{"subject":"Cassin and Sons","description":"Multi-lateral zero administration implementation","location":"1970 Orin Point","timezone":"Asia/Shanghai","start_time":"21:37","length_hours":7,"length_minutes":42},
-{"subject":"Schroeder-Oberbrunner","description":"Upgradable 5th generation model","location":null,"timezone":"America/Toronto","start_time":"16:25","length_hours":8,"length_minutes":33},
-{"subject":"Bailey Inc","description":"Cross-platform disintermediate leverage","location":null,"timezone":"Europe/Zaporozhye","start_time":"7:44","length_hours":12,"length_minutes":null},
-{"subject":"Kohler LLC","description":"Virtual tangible website","location":"5 Caliangt Crossing","timezone":"Asia/Chongqing","start_time":"10:46","length_hours":11,"length_minutes":26},
-{"subject":"Dickens and Sons","description":"Function-based zero defect data-warehouse","location":"57633 Westridge Court","timezone":"Asia/Damascus","start_time":"12:41","length_hours":8,"length_minutes":null},
-{"subject":"Lehner, Christiansen and Greenfelder","description":"Right-sized motivating project","location":"79448 Jana Plaza","timezone":"Asia/Harbin","start_time":"16:06","length_hours":4,"length_minutes":8},
-{"subject":"Batz-Kris","description":"Virtual optimizing adapter","location":null,"timezone":"Asia/Irkutsk","start_time":"12:09","length_hours":4,"length_minutes":null},
-{"subject":"Hodkiewicz-Wiza","description":"Distributed scalable core","location":null,"timezone":"Asia/Colombo","start_time":"12:39","length_hours":9,"length_minutes":26},
-{"subject":"Doyle, Stokes and Cormier","description":"Ergonomic human-resource knowledge user","location":"3298 Talisman Plaza","timezone":"America/Sao_Paulo","start_time":"15:21","length_hours":8,"length_minutes":null},
-{"subject":"Bruen and Sons","description":"Persistent multi-tasking matrix","location":null,"timezone":"America/Santiago","start_time":"14:01","length_hours":11,"length_minutes":null},
-{"subject":"Nienow-Yundt","description":"Function-based empowering intranet","location":"891 Texas Park","timezone":"America/Sao_Paulo","start_time":"9:09","length_hours":11,"length_minutes":40},
-{"subject":"Leffler-Schaefer","description":"Innovative multi-tasking support","location":"9125 Kensington Court","timezone":"America/Bogota","start_time":"16:40","length_hours":6,"length_minutes":48},
-{"subject":"Gutkowski LLC","description":"Function-based background data-warehouse","location":null,"timezone":"America/Lima","start_time":"6:41","length_hours":12,"length_minutes":null},
-{"subject":"Torp, O'Kon and Raynor","description":"Multi-lateral intermediate help-desk","location":null,"timezone":"Europe/Stockholm","start_time":"20:29","length_hours":12,"length_minutes":11},
-{"subject":"Cruickshank-Jones","description":"Expanded 24 hour installation","location":null,"timezone":"Asia/Chongqing","start_time":"4:01","length_hours":8,"length_minutes":null},
-{"subject":"Kemmer-Treutel","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"16:29","length_hours":4,"length_minutes":null},
-{"subject":"Douglas-Walker","description":"Re-engineered background adapter","location":null,"timezone":"Asia/Shanghai","start_time":"16:48","length_hours":11,"length_minutes":14},
-{"subject":"Bechtelar, Kertzmann and Beahan","description":"Diverse tertiary definition","location":"49598 Clarendon Point","timezone":"America/Bogota","start_time":"9:01","length_hours":7,"length_minutes":34},
-{"subject":"Leuschke, Becker and Brown","description":"User-friendly mission-critical parallelism","location":"1229 Carioca Avenue","timezone":"Asia/Manila","start_time":"11:52","length_hours":8,"length_minutes":null},
-{"subject":"O'Reilly, Reichel and Erdman","description":"Customizable radical focus group","location":"04 Kensington Road","timezone":"America/Sao_Paulo","start_time":"17:55","length_hours":9,"length_minutes":51},
-{"subject":"Ziemann, Keeling and Wintheiser","description":"Exclusive methodical migration","location":"1 Riverside Terrace","timezone":"Asia/Chongqing","start_time":"12:30","length_hours":11,"length_minutes":7},
-{"subject":"Conn and Sons","description":"Reverse-engineered asynchronous standardization","location":null,"timezone":"Asia/Makassar","start_time":"6:25","length_hours":5,"length_minutes":35},
-{"subject":"Hayes Inc","description":"Sharable regional installation","location":"431 Kensington Plaza","timezone":"America/Argentina/Salta","start_time":"15:16","length_hours":11,"length_minutes":null},
-{"subject":"Ondricka LLC","description":"De-engineered maximized success","location":"12189 Welch Center","timezone":"Europe/Kiev","start_time":"11:31","length_hours":11,"length_minutes":17},
-{"subject":"Weber and Sons","description":"Profit-focused tertiary concept","location":null,"timezone":"America/Sao_Paulo","start_time":"13:16","length_hours":8,"length_minutes":32},
-{"subject":"Rohan-Ernser","description":null,"location":null,"timezone":"Europe/Paris","start_time":"9:50","length_hours":4,"length_minutes":null},
-{"subject":"Spinka, Schoen and Buckridge","description":null,"location":null,"timezone":"America/Lima","start_time":"17:41","length_hours":11,"length_minutes":0},
-{"subject":"Leuschke-Carter","description":"Virtual national monitoring","location":"86460 Oak Valley Alley","timezone":"Asia/Makassar","start_time":"18:45","length_hours":8,"length_minutes":23},
-{"subject":"Fay Group","description":null,"location":"6062 Ruskin Alley","timezone":"Asia/Makassar","start_time":"17:32","length_hours":8,"length_minutes":43},
-{"subject":"Quigley, Dare and Deckow","description":null,"location":"91 Truax Trail","timezone":"Europe/Paris","start_time":"22:25","length_hours":8,"length_minutes":26},
-{"subject":"Ziemann-Kirlin","description":null,"location":"14 Weeping Birch Plaza","timezone":"Asia/Shanghai","start_time":"12:59","length_hours":4,"length_minutes":null},
-{"subject":"Ernser, Kunde and Leffler","description":null,"location":"50061 Basil Road","timezone":"America/Port-au-Prince","start_time":"15:35","length_hours":10,"length_minutes":39},
-{"subject":"Krajcik-Jones","description":"Expanded 5th generation open system","location":"745 Florence Plaza","timezone":"Africa/Windhoek","start_time":"13:07","length_hours":10,"length_minutes":38},
-{"subject":"Strosin and Sons","description":null,"location":"70 Wayridge Drive","timezone":"Africa/Cairo","start_time":"17:19","length_hours":9,"length_minutes":30},
-{"subject":"Emard Inc","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"17:23","length_hours":11,"length_minutes":5},
-{"subject":"Windler-Kohler","description":"Compatible hybrid methodology","location":"76027 Brickson Park Street","timezone":"Europe/Paris","start_time":"10:23","length_hours":11,"length_minutes":null},
-{"subject":"Emmerich Group","description":null,"location":"1 Muir Trail","timezone":"Asia/Jakarta","start_time":"15:28","length_hours":8,"length_minutes":null},
-{"subject":"Rippin Inc","description":null,"location":"74522 Rutledge Circle","timezone":"Europe/London","start_time":"14:40","length_hours":7,"length_minutes":26},
-{"subject":"Lowe-Aufderhar","description":"Reactive fault-tolerant concept","location":"3871 School Hill","timezone":"Europe/Lisbon","start_time":"4:46","length_hours":7,"length_minutes":null},
-{"subject":"Abbott Inc","description":"Grass-roots attitude-oriented portal","location":"10 Walton Hill","timezone":"Asia/Almaty","start_time":"14:20","length_hours":12,"length_minutes":31},
-{"subject":"Goldner-Robel","description":null,"location":null,"timezone":"Europe/Paris","start_time":"12:51","length_hours":9,"length_minutes":57},
-{"subject":"Hilll, Murray and Kautzer","description":null,"location":"519 Namekagon Alley","timezone":"Africa/Khartoum","start_time":"17:01","length_hours":6,"length_minutes":null},
-{"subject":"Hyatt, Kihn and Fisher","description":"Innovative tangible artificial intelligence","location":"7 Bunker Hill Court","timezone":"Asia/Shanghai","start_time":"14:49","length_hours":6,"length_minutes":null},
-{"subject":"Koss LLC","description":"Enhanced optimizing frame","location":"73 Fairfield Drive","timezone":"Asia/Chongqing","start_time":"7:58","length_hours":12,"length_minutes":null},
-{"subject":"Botsford LLC","description":"Re-engineered directional standardization","location":"7878 Heath Hill","timezone":"Europe/Moscow","start_time":"8:29","length_hours":9,"length_minutes":50},
-{"subject":"Kertzmann, Cartwright and Braun","description":"Mandatory solution-oriented initiative","location":"91 Jenna Way","timezone":"Asia/Kabul","start_time":"19:28","length_hours":10,"length_minutes":null},
-{"subject":"Koepp, Ledner and Mertz","description":"Up-sized reciprocal architecture","location":"6431 Saint Paul Point","timezone":"Asia/Shanghai","start_time":"5:50","length_hours":12,"length_minutes":48},
-{"subject":"Quigley-Renner","description":null,"location":null,"timezone":"America/Sao_Paulo","start_time":"9:33","length_hours":5,"length_minutes":54},
-{"subject":"Bergstrom, Blick and Bergstrom","description":null,"location":"0 Marquette Way","timezone":"America/Jamaica","start_time":"21:16","length_hours":5,"length_minutes":37},
-{"subject":"McDermott LLC","description":null,"location":"97 Burrows Hill","timezone":"Europe/Tallinn","start_time":"5:34","length_hours":6,"length_minutes":null},
-{"subject":"Cremin Group","description":"Reverse-engineered motivating analyzer","location":null,"timezone":"Asia/Sakhalin","start_time":"4:23","length_hours":6,"length_minutes":null},
-{"subject":"Hauck, Lockman and Mayer","description":null,"location":"217 Shoshone Court","timezone":"Europe/Paris","start_time":"19:12","length_hours":11,"length_minutes":null},
-{"subject":"Balistreri Group","description":"Fully-configurable didactic analyzer","location":null,"timezone":"Asia/Manila","start_time":"9:30","length_hours":11,"length_minutes":26},
-{"subject":"Muller Inc","description":null,"location":null,"timezone":"Asia/Bangkok","start_time":"9:35","length_hours":10,"length_minutes":null},
-{"subject":"Muller Group","description":null,"location":"04 Acker Point","timezone":"Asia/Chongqing","start_time":"14:32","length_hours":11,"length_minutes":null},
-{"subject":"Sauer, Hane and Beier","description":null,"location":"4 Bluejay Place","timezone":"Asia/Shanghai","start_time":"5:17","length_hours":5,"length_minutes":43},
-{"subject":"Thiel-Prosacco","description":"Synergistic explicit archive","location":"102 Northland Pass","timezone":"Africa/Dar_es_Salaam","start_time":"4:55","length_hours":8,"length_minutes":36},
-{"subject":"Gleichner Inc","description":"Organic tertiary archive","location":"16414 Kingsford Terrace","timezone":"Asia/Jakarta","start_time":"20:33","length_hours":8,"length_minutes":null},
-{"subject":"Tillman and Sons","description":"Upgradable systemic orchestration","location":"19584 Derek Drive","timezone":"America/Bogota","start_time":"10:09","length_hours":4,"length_minutes":null},
-{"subject":"Murazik-Brown","description":"Cross-group 5th generation complexity","location":"109 Mendota Terrace","timezone":"Europe/Moscow","start_time":"22:14","length_hours":7,"length_minutes":12},
-{"subject":"Williamson Group","description":null,"location":"4832 Waubesa Alley","timezone":"Africa/Kinshasa","start_time":"9:27","length_hours":10,"length_minutes":7},
-{"subject":"Grady-Gottlieb","description":"Ameliorated coherent hardware","location":"74 Old Shore Court","timezone":"Europe/Stockholm","start_time":"6:12","length_hours":4,"length_minutes":null},
-{"subject":"Farrell-Nicolas","description":"Customer-focused leading edge alliance","location":"7 Dawn Court","timezone":"Asia/Bangkok","start_time":"21:54","length_hours":7,"length_minutes":null},
-{"subject":"Mertz-Kiehn","description":null,"location":"80090 Summit Crossing","timezone":"Europe/Moscow","start_time":"14:12","length_hours":10,"length_minutes":null},
-{"subject":"Goyette-Mayert","description":"Persevering optimal flexibility","location":"108 Eliot Hill","timezone":"Europe/Moscow","start_time":"18:41","length_hours":12,"length_minutes":null},
-{"subject":"MacGyver-Kuhlman","description":"Triple-buffered zero defect interface","location":"774 Dawn Circle","timezone":"Europe/Athens","start_time":"6:26","length_hours":8,"length_minutes":19},
-{"subject":"Mann, Hackett and Ritchie","description":"Persevering systematic process improvement","location":null,"timezone":"America/Sao_Paulo","start_time":"6:42","length_hours":8,"length_minutes":51},
-{"subject":"Zboncak-Gottlieb","description":"Reduced human-resource customer loyalty","location":null,"timezone":"Asia/Riyadh","start_time":"17:43","length_hours":6,"length_minutes":7},
-{"subject":"Padberg, Reinger and Raynor","description":"Function-based real-time data-warehouse","location":"3 Coolidge Pass","timezone":"Europe/Sofia","start_time":"22:09","length_hours":6,"length_minutes":51},
-{"subject":"Shanahan Inc","description":"Switchable didactic neural-net","location":null,"timezone":"Europe/Lisbon","start_time":"11:52","length_hours":6,"length_minutes":40},
-{"subject":"Flatley, Hegmann and Kunde","description":null,"location":null,"timezone":"Europe/Sarajevo","start_time":"22:48","length_hours":6,"length_minutes":null},
-{"subject":"Conn Group","description":null,"location":"76 Ronald Regan Way","timezone":"Asia/Shanghai","start_time":"14:22","length_hours":10,"length_minutes":59},
-{"subject":"Keeling-Marks","description":"Self-enabling maximized complexity","location":"73755 Maryland Circle","timezone":"Asia/Chongqing","start_time":"18:57","length_hours":10,"length_minutes":8},
-{"subject":"Tillman, Dooley and Johnson","description":"Synergized transitional data-warehouse","location":null,"timezone":"Asia/Jakarta","start_time":"5:23","length_hours":9,"length_minutes":32},
-{"subject":"Jones-Emmerich","description":"Cross-group impactful policy","location":null,"timezone":"Asia/Kathmandu","start_time":"10:48","length_hours":11,"length_minutes":3},
-{"subject":"Schimmel-Murray","description":"Mandatory impactful infrastructure","location":"4 Messerschmidt Way","timezone":"America/New_York","start_time":"10:43","length_hours":7,"length_minutes":null},
-{"subject":"Cronin, Prosacco and Christiansen","description":"Synergized holistic open architecture","location":"4331 Continental Court","timezone":"Europe/Uzhgorod","start_time":"5:17","length_hours":8,"length_minutes":24},
-{"subject":"Willms-Strosin","description":"Progressive background budgetary management","location":"96907 Beilfuss Drive","timezone":"Asia/Manila","start_time":"16:20","length_hours":6,"length_minutes":32},
-{"subject":"Nikolaus, Streich and Erdman","description":null,"location":null,"timezone":"Asia/Harbin","start_time":"13:47","length_hours":5,"length_minutes":null},
-{"subject":"Weissnat Inc","description":"Digitized 4th generation service-desk","location":"128 Fairview Way","timezone":"Europe/Paris","start_time":"7:39","length_hours":12,"length_minutes":null},
-{"subject":"Orn, Schroeder and Cummerata","description":"Focused bandwidth-monitored complexity","location":"539 Graedel Junction","timezone":"Asia/Chongqing","start_time":"9:08","length_hours":6,"length_minutes":null},
-{"subject":"Wuckert, Jaskolski and Franecki","description":"Object-based 5th generation contingency","location":"842 Golf Course Drive","timezone":"Europe/Lisbon","start_time":"22:53","length_hours":6,"length_minutes":17},
-{"subject":"Jast-Satterfield","description":"Mandatory attitude-oriented workforce","location":"7598 Meadow Valley Lane","timezone":"Asia/Jakarta","start_time":"17:21","length_hours":5,"length_minutes":51},
-{"subject":"Mraz and Sons","description":null,"location":"06484 Novick Plaza","timezone":"Asia/Shanghai","start_time":"5:27","length_hours":6,"length_minutes":50},
-{"subject":"Mayer Inc","description":"Optional needs-based alliance","location":"322 Eagan Place","timezone":"Asia/Makassar","start_time":"11:04","length_hours":10,"length_minutes":null},
-{"subject":"Kohler, Bruen and Roberts","description":"Extended discrete intranet","location":null,"timezone":"Asia/Shanghai","start_time":"6:51","length_hours":9,"length_minutes":null},
-{"subject":"Pollich Group","description":null,"location":null,"timezone":"Asia/Manila","start_time":"20:24","length_hours":11,"length_minutes":null},
-{"subject":"Tremblay-Maggio","description":"Virtual real-time analyzer","location":"504 Heath Pass","timezone":"Asia/Jakarta","start_time":"7:02","length_hours":5,"length_minutes":null},
-{"subject":"Homenick, Bailey and Friesen","description":"Triple-buffered tangible toolset","location":"19 Vahlen Lane","timezone":"Europe/Moscow","start_time":"15:08","length_hours":11,"length_minutes":24},
-{"subject":"Schuppe Inc","description":"Profit-focused client-driven parallelism","location":"546 Utah Court","timezone":"Europe/Lisbon","start_time":"4:19","length_hours":6,"length_minutes":46},
-{"subject":"Anderson LLC","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"22:16","length_hours":10,"length_minutes":null},
-{"subject":"Langworth-Lowe","description":"Centralized full-range flexibility","location":"73 Sachs Drive","timezone":"Asia/Tehran","start_time":"10:05","length_hours":7,"length_minutes":19},
-{"subject":"Hirthe, Bechtelar and Waelchi","description":"Synergized motivating migration","location":"50803 Haas Hill","timezone":"America/Lima","start_time":"6:26","length_hours":7,"length_minutes":null},
-{"subject":"Price Inc","description":"Universal static portal","location":"50759 Ridge Oak Trail","timezone":"Asia/Manila","start_time":"9:57","length_hours":6,"length_minutes":null},
-{"subject":"Feest-Wilderman","description":null,"location":"01596 Waubesa Center","timezone":"Europe/Zagreb","start_time":"21:37","length_hours":9,"length_minutes":22},
-{"subject":"Bradtke-Barton","description":"Diverse neutral collaboration","location":"34547 Ridgeview Terrace","timezone":"Asia/Chongqing","start_time":"15:04","length_hours":7,"length_minutes":29},
-{"subject":"Langworth Inc","description":null,"location":null,"timezone":"Europe/Tirane","start_time":"13:17","length_hours":8,"length_minutes":30},
-{"subject":"Miller, Stroman and Emard","description":"Enhanced zero tolerance hardware","location":null,"timezone":"America/Sao_Paulo","start_time":"5:37","length_hours":11,"length_minutes":9},
-{"subject":"Lakin and Sons","description":"Versatile 24 hour ability","location":"9552 Lillian Circle","timezone":"Asia/Jakarta","start_time":"8:38","length_hours":7,"length_minutes":51},
-{"subject":"Dach-Cartwright","description":"Horizontal didactic open system","location":"57 Lawn Alley","timezone":"Asia/Makassar","start_time":"15:51","length_hours":8,"length_minutes":23},
-{"subject":"Harris, O'Keefe and Kirlin","description":"Inverse discrete collaboration","location":"8 Mendota Court","timezone":"Asia/Shanghai","start_time":"12:42","length_hours":12,"length_minutes":34},
-{"subject":"Keebler Group","description":"Profound even-keeled portal","location":"9 Gina Place","timezone":"Asia/Ho_Chi_Minh","start_time":"16:29","length_hours":11,"length_minutes":28},
-{"subject":"Sporer, Moore and Reynolds","description":"Reactive well-modulated parallelism","location":null,"timezone":"Europe/Warsaw","start_time":"5:57","length_hours":6,"length_minutes":15},
-{"subject":"Bauch and Sons","description":null,"location":"97 Stoughton Center","timezone":"Asia/Karachi","start_time":"4:29","length_hours":11,"length_minutes":17},
-{"subject":"Harvey Group","description":"Customizable contextually-based definition","location":"30559 Lunder Trail","timezone":"Asia/Makassar","start_time":"19:13","length_hours":7,"length_minutes":null},
-{"subject":"Rodriguez, Nikolaus and Jones","description":"Customizable reciprocal artificial intelligence","location":null,"timezone":"America/New_York","start_time":"17:29","length_hours":11,"length_minutes":null},
-{"subject":"Funk Group","description":"Vision-oriented background Graphic Interface","location":null,"timezone":"Europe/Stockholm","start_time":"16:54","length_hours":6,"length_minutes":4},
-{"subject":"Collier-Hilll","description":"Enhanced methodical firmware","location":"0625 Macpherson Pass","timezone":"America/Bogota","start_time":"5:27","length_hours":5,"length_minutes":38},
-{"subject":"Greenfelder-Padberg","description":"Synergistic leading edge leverage","location":null,"timezone":"Asia/Seoul","start_time":"21:18","length_hours":11,"length_minutes":null},
-{"subject":"Mante-Daugherty","description":"Advanced systematic solution","location":"5 Transport Street","timezone":"Asia/Nicosia","start_time":"6:57","length_hours":8,"length_minutes":24},
-{"subject":"Purdy, Nader and Beahan","description":"Diverse homogeneous architecture","location":null,"timezone":"Asia/Jakarta","start_time":"5:25","length_hours":8,"length_minutes":10},
-{"subject":"Graham, Quigley and Schmidt","description":null,"location":null,"timezone":"Asia/Harbin","start_time":"21:05","length_hours":10,"length_minutes":36},
-{"subject":"Balistreri-Gutmann","description":"Multi-channelled human-resource flexibility","location":"3 Stephen Alley","timezone":"America/Grenada","start_time":"9:44","length_hours":4,"length_minutes":36},
-{"subject":"Olson LLC","description":"Automated reciprocal open system","location":"08513 Anderson Alley","timezone":"Asia/Manila","start_time":"17:09","length_hours":6,"length_minutes":36},
-{"subject":"Ullrich-Funk","description":"Fully-configurable eco-centric local area network","location":"76 Jenifer Junction","timezone":"America/Sao_Paulo","start_time":"11:34","length_hours":6,"length_minutes":null},
-{"subject":"Barrows Group","description":"Expanded 4th generation toolset","location":null,"timezone":"Europe/Moscow","start_time":"6:58","length_hours":10,"length_minutes":23},
-{"subject":"Goyette, Boyle and Wyman","description":"Face to face real-time standardization","location":"83 Cody Trail","timezone":"Asia/Tokyo","start_time":"14:22","length_hours":4,"length_minutes":49},
-{"subject":"Kertzmann, Runolfsdottir and Dickinson","description":null,"location":null,"timezone":"America/Bogota","start_time":"11:20","length_hours":8,"length_minutes":38},
-{"subject":"Farrell, Heidenreich and Doyle","description":"Front-line secondary concept","location":"01251 Erie Terrace","timezone":"Asia/Krasnoyarsk","start_time":"14:07","length_hours":11,"length_minutes":null},
-{"subject":"Wuckert Group","description":null,"location":"15060 Hauk Hill","timezone":"Asia/Manila","start_time":"18:08","length_hours":10,"length_minutes":20},
-{"subject":"Hamill-Wolf","description":"Digitized maximized interface","location":null,"timezone":"Asia/Makassar","start_time":"14:26","length_hours":4,"length_minutes":9},
-{"subject":"Ritchie Group","description":"Phased uniform utilisation","location":"05471 Dakota Street","timezone":"Europe/Lisbon","start_time":"21:35","length_hours":6,"length_minutes":null},
-{"subject":"West Group","description":null,"location":"8 Hovde Parkway","timezone":"Europe/Paris","start_time":"19:56","length_hours":4,"length_minutes":59},
-{"subject":"Thiel, Wyman and Stamm","description":"Upgradable empowering moderator","location":null,"timezone":"America/Boise","start_time":"19:04","length_hours":7,"length_minutes":null},
-{"subject":"Nolan, Stark and Haley","description":null,"location":"8 Mcguire Junction","timezone":"America/Santarem","start_time":"14:03","length_hours":6,"length_minutes":10},
-{"subject":"Mraz and Sons","description":null,"location":"7010 Paget Court","timezone":"Europe/Warsaw","start_time":"15:04","length_hours":10,"length_minutes":null},
-{"subject":"Macejkovic-Turcotte","description":null,"location":"5 Eagan Street","timezone":"Asia/Manila","start_time":"13:47","length_hours":8,"length_minutes":50},
-{"subject":"Pollich-Mohr","description":"Reverse-engineered 5th generation encoding","location":"892 Donald Point","timezone":"Asia/Makassar","start_time":"10:19","length_hours":10,"length_minutes":1},
-{"subject":"Graham, Hammes and Kirlin","description":"Function-based hybrid hierarchy","location":"85 Comanche Road","timezone":"Asia/Makassar","start_time":"19:21","length_hours":12,"length_minutes":40},
-{"subject":"Terry and Sons","description":null,"location":"410 Michigan Pass","timezone":"Europe/Paris","start_time":"15:28","length_hours":7,"length_minutes":null},
-{"subject":"Schmitt-Yundt","description":"Organic zero defect strategy","location":"4 Delaware Way","timezone":"Asia/Shanghai","start_time":"18:20","length_hours":6,"length_minutes":null},
-{"subject":"Mann, Rau and Lubowitz","description":null,"location":"9670 Ludington Trail","timezone":"Asia/Bangkok","start_time":"5:14","length_hours":6,"length_minutes":null},
-{"subject":"Weissnat LLC","description":"User-friendly static productivity","location":"78 Haas Way","timezone":"Africa/Luanda","start_time":"6:26","length_hours":5,"length_minutes":28},
-{"subject":"Gorczany, Mante and Greenfelder","description":null,"location":"5978 Becker Way","timezone":"Europe/Lisbon","start_time":"11:44","length_hours":9,"length_minutes":33},
-{"subject":"Considine-McClure","description":null,"location":null,"timezone":"Pacific/Guam","start_time":"22:50","length_hours":4,"length_minutes":7},
-{"subject":"Runolfsdottir, Hane and DuBuque","description":"Streamlined background hub","location":null,"timezone":"Africa/Ndjamena","start_time":"21:09","length_hours":6,"length_minutes":59},
-{"subject":"King LLC","description":null,"location":"64 Parkside Center","timezone":"Asia/Makassar","start_time":"4:24","length_hours":4,"length_minutes":21},
-{"subject":"Funk-Larkin","description":"De-engineered optimal knowledge user","location":null,"timezone":"Asia/Bangkok","start_time":"21:53","length_hours":12,"length_minutes":59},
-{"subject":"Gibson LLC","description":"Triple-buffered real-time software","location":"21395 East Terrace","timezone":"Asia/Jakarta","start_time":"10:38","length_hours":5,"length_minutes":48},
-{"subject":"Langosh, Daugherty and Hegmann","description":"Down-sized contextually-based parallelism","location":null,"timezone":"Asia/Chongqing","start_time":"9:39","length_hours":9,"length_minutes":6},
-{"subject":"Emmerich LLC","description":"Stand-alone contextually-based project","location":null,"timezone":"Africa/Bamako","start_time":"15:07","length_hours":11,"length_minutes":22},
-{"subject":"Treutel-Schuster","description":"Assimilated logistical strategy","location":"9419 Riverside Way","timezone":"Asia/Jakarta","start_time":"16:14","length_hours":11,"length_minutes":40},
-{"subject":"Walsh, Willms and Homenick","description":null,"location":null,"timezone":"America/Caracas","start_time":"13:28","length_hours":6,"length_minutes":47},
-{"subject":"Wiza, Schuster and Christiansen","description":null,"location":"79 Gina Center","timezone":"Europe/Lisbon","start_time":"17:45","length_hours":6,"length_minutes":null},
-{"subject":"Leannon, Morar and Hartmann","description":null,"location":null,"timezone":"Asia/Jakarta","start_time":"19:17","length_hours":9,"length_minutes":7},
-{"subject":"Dooley, Roob and Predovic","description":"Self-enabling system-worthy data-warehouse","location":null,"timezone":"Europe/Moscow","start_time":"19:04","length_hours":11,"length_minutes":49},
-{"subject":"Murazik Group","description":"Reactive actuating structure","location":null,"timezone":"Africa/Kampala","start_time":"4:30","length_hours":11,"length_minutes":1},
-{"subject":"Harber-Gerlach","description":"Optional background data-warehouse","location":"79 Wayridge Alley","timezone":"Indian/Mauritius","start_time":"11:06","length_hours":4,"length_minutes":14},
-{"subject":"Maggio, Schaefer and Balistreri","description":null,"location":"4403 Miller Crossing","timezone":"Europe/Lisbon","start_time":"10:09","length_hours":5,"length_minutes":23},
-{"subject":"Lebsack, Mayer and Daniel","description":"Down-sized multi-tasking superstructure","location":"67 Cordelia Road","timezone":"Asia/Jakarta","start_time":"11:28","length_hours":4,"length_minutes":null},
-{"subject":"Bergnaum and Sons","description":"Expanded attitude-oriented collaboration","location":"8387 Norway Maple Lane","timezone":"Europe/Athens","start_time":"6:16","length_hours":9,"length_minutes":29},
-{"subject":"McLaughlin, West and Wolf","description":null,"location":"6866 Lunder Alley","timezone":"Asia/Manila","start_time":"18:55","length_hours":6,"length_minutes":57},
-{"subject":"Fahey, Hermiston and Skiles","description":"Focused intermediate customer loyalty","location":null,"timezone":"Indian/Comoro","start_time":"12:16","length_hours":6,"length_minutes":0},
-{"subject":"Kertzmann LLC","description":"Proactive dynamic encoding","location":"584 Waywood Terrace","timezone":"Europe/Volgograd","start_time":"17:07","length_hours":5,"length_minutes":21},
-{"subject":"Barton Group","description":"Cross-platform zero defect strategy","location":"8 Haas Hill","timezone":"Asia/Shanghai","start_time":"15:38","length_hours":5,"length_minutes":null},
-{"subject":"Ryan Inc","description":"Quality-focused intermediate encoding","location":null,"timezone":"America/Bogota","start_time":"11:17","length_hours":8,"length_minutes":null},
-{"subject":"Mann-Welch","description":"Grass-roots needs-based initiative","location":"7 Vidon Circle","timezone":"Europe/Rome","start_time":"13:00","length_hours":10,"length_minutes":null},
-{"subject":"Boyle-Denesik","description":"Up-sized fault-tolerant contingency","location":"10979 Ilene Terrace","timezone":"Africa/Dakar","start_time":"4:45","length_hours":4,"length_minutes":40},
-{"subject":"Grimes, Corkery and Pfannerstill","description":null,"location":"9 Homewood Road","timezone":"Asia/Manila","start_time":"14:40","length_hours":5,"length_minutes":null},
-{"subject":"Beier, Collier and Schmeler","description":"Object-based non-volatile installation","location":"8 Kennedy Park","timezone":"America/Argentina/Cordoba","start_time":"15:38","length_hours":6,"length_minutes":19},
-{"subject":"Cremin and Sons","description":"Operative analyzing time-frame","location":"6 Packers Center","timezone":"Asia/Shanghai","start_time":"15:24","length_hours":9,"length_minutes":null},
-{"subject":"Johnson LLC","description":"Up-sized system-worthy artificial intelligence","location":"92 Blue Bill Park Lane","timezone":"Europe/Moscow","start_time":"17:59","length_hours":8,"length_minutes":null},
-{"subject":"Sawayn Inc","description":null,"location":"04 Derek Drive","timezone":"Europe/Lisbon","start_time":"6:20","length_hours":11,"length_minutes":null},
-{"subject":"Legros Inc","description":null,"location":"0464 Harbort Alley","timezone":"Europe/Prague","start_time":"4:06","length_hours":12,"length_minutes":49},
-{"subject":"Turcotte-Cruickshank","description":"Advanced reciprocal moratorium","location":null,"timezone":"Europe/Kiev","start_time":"20:32","length_hours":11,"length_minutes":40},
-{"subject":"Torp Inc","description":"Focused radical hub","location":"26654 Eagle Crest Avenue","timezone":"Asia/Shanghai","start_time":"4:17","length_hours":11,"length_minutes":null},
-{"subject":"Schaden, Kessler and Walsh","description":"Grass-roots homogeneous artificial intelligence","location":null,"timezone":"America/Bahia","start_time":"14:42","length_hours":6,"length_minutes":null},
-{"subject":"Frami, Lindgren and O'Hara","description":"Face to face grid-enabled framework","location":null,"timezone":"America/Sao_Paulo","start_time":"12:27","length_hours":12,"length_minutes":null},
-{"subject":"Armstrong, Bayer and Metz","description":"Switchable well-modulated data-warehouse","location":"2 Spaight Junction","timezone":"Asia/Shanghai","start_time":"20:13","length_hours":10,"length_minutes":null},
-{"subject":"Medhurst-Quitzon","description":"Grass-roots content-based open system","location":"0 Redwing Way","timezone":"Europe/Lisbon","start_time":"21:52","length_hours":5,"length_minutes":57},
-{"subject":"Cummings-Mann","description":null,"location":null,"timezone":"Europe/Simferopol","start_time":"8:23","length_hours":7,"length_minutes":17},
-{"subject":"Steuber Group","description":"Public-key holistic capacity","location":"808 Duke Trail","timezone":"Asia/Jakarta","start_time":"14:26","length_hours":11,"length_minutes":20},
-{"subject":"Torp, Reichert and Daniel","description":"Grass-roots static workforce","location":"79434 Merry Court","timezone":"Asia/Tehran","start_time":"20:16","length_hours":5,"length_minutes":17},
-{"subject":"Schuster Group","description":"User-centric hybrid instruction set","location":"2 Waubesa Place","timezone":"America/Sao_Paulo","start_time":"8:58","length_hours":9,"length_minutes":32},
-{"subject":"Cremin-Rempel","description":"Configurable content-based capability","location":null,"timezone":"Asia/Chongqing","start_time":"4:21","length_hours":10,"length_minutes":21},
-{"subject":"Keeling Inc","description":"Organic optimizing utilisation","location":null,"timezone":"Asia/Ashgabat","start_time":"17:11","length_hours":4,"length_minutes":null},
-{"subject":"Windler, Smitham and Hoeger","description":"Extended zero administration alliance","location":"63885 Victoria Street","timezone":"Europe/Rome","start_time":"20:15","length_hours":10,"length_minutes":43},
-{"subject":"Dickens-Conroy","description":null,"location":"622 Badeau Park","timezone":"Europe/Vilnius","start_time":"10:55","length_hours":12,"length_minutes":19},
-{"subject":"Sawayn, Windler and Lynch","description":"Down-sized stable portal","location":null,"timezone":"America/Lima","start_time":"7:47","length_hours":4,"length_minutes":null},
-{"subject":"Moore-Thompson","description":"Expanded object-oriented encoding","location":null,"timezone":"Asia/Riyadh","start_time":"6:03","length_hours":7,"length_minutes":4},
-{"subject":"Feeney, Lakin and Aufderhar","description":null,"location":"49630 Forest Dale Trail","timezone":"America/Sao_Paulo","start_time":"4:30","length_hours":4,"length_minutes":null},
-{"subject":"Muller Group","description":"Multi-layered attitude-oriented adapter","location":"209 Oriole Alley","timezone":"America/Lima","start_time":"20:22","length_hours":8,"length_minutes":20},
-{"subject":"Homenick-Schoen","description":"User-friendly high-level adapter","location":"793 5th Parkway","timezone":"Asia/Jakarta","start_time":"10:47","length_hours":7,"length_minutes":null},
-{"subject":"Lang, Littel and Cronin","description":"Configurable even-keeled firmware","location":"6 Claremont Trail","timezone":"Asia/Jakarta","start_time":"6:38","length_hours":8,"length_minutes":24},
-{"subject":"Nolan, Harber and Fay","description":"Organic fresh-thinking concept","location":null,"timezone":"Asia/Dili","start_time":"7:35","length_hours":12,"length_minutes":32},
-{"subject":"Jerde-Gerlach","description":null,"location":"53330 Center Crossing","timezone":"Asia/Tokyo","start_time":"8:10","length_hours":5,"length_minutes":31},
-{"subject":"Douglas and Sons","description":null,"location":"3619 Anderson Way","timezone":"America/Chicago","start_time":"13:08","length_hours":8,"length_minutes":9},
-{"subject":"Durgan-Spinka","description":null,"location":"90590 Hooker Terrace","timezone":"America/La_Paz","start_time":"21:20","length_hours":5,"length_minutes":34},
-{"subject":"Smith, Corkery and Farrell","description":"Switchable 24 hour budgetary management","location":null,"timezone":"Asia/Harbin","start_time":"18:47","length_hours":8,"length_minutes":34},
-{"subject":"Abshire LLC","description":null,"location":null,"timezone":"Asia/Makassar","start_time":"12:54","length_hours":11,"length_minutes":24},
-{"subject":"Kertzmann LLC","description":null,"location":"3 Nelson Point","timezone":"Asia/Jerusalem","start_time":"20:16","length_hours":6,"length_minutes":22},
-{"subject":"Hansen, Wunsch and Balistreri","description":"Diverse non-volatile projection","location":"733 Anthes Junction","timezone":"America/Asuncion","start_time":"12:28","length_hours":8,"length_minutes":23},
-{"subject":"Sporer-Hoppe","description":"Synergized asymmetric utilisation","location":"2953 Village Green Road","timezone":"Asia/Urumqi","start_time":"14:33","length_hours":4,"length_minutes":31},
-{"subject":"Bayer-Swaniawski","description":"Right-sized intermediate analyzer","location":"85 Caliangt Pass","timezone":"Asia/Tokyo","start_time":"8:12","length_hours":10,"length_minutes":24},
-{"subject":"Mohr-Roob","description":"Vision-oriented non-volatile hardware","location":"2 Lakeland Trail","timezone":"Europe/Paris","start_time":"21:54","length_hours":7,"length_minutes":31},
-{"subject":"Hirthe and Sons","description":null,"location":null,"timezone":"Asia/Tokyo","start_time":"9:30","length_hours":12,"length_minutes":0},
-{"subject":"Rogahn, Hammes and Feeney","description":null,"location":null,"timezone":"America/Toronto","start_time":"5:37","length_hours":6,"length_minutes":null},
-{"subject":"Jacobson Inc","description":null,"location":"34902 Banding Junction","timezone":"Asia/Manila","start_time":"16:15","length_hours":10,"length_minutes":43},
-{"subject":"Beatty Group","description":"Grass-roots tertiary productivity","location":"828 Magdeline Avenue","timezone":"Asia/Shanghai","start_time":"13:59","length_hours":11,"length_minutes":null},
-{"subject":"Emmerich LLC","description":null,"location":"90 Mariners Cove Point","timezone":"Asia/Chongqing","start_time":"10:02","length_hours":5,"length_minutes":7},
-{"subject":"Little LLC","description":null,"location":"3997 Saint Paul Terrace","timezone":"Asia/Jakarta","start_time":"14:23","length_hours":12,"length_minutes":34},
-{"subject":"Abshire Inc","description":"Team-oriented dynamic software","location":"55 Nevada Alley","timezone":"Asia/Chongqing","start_time":"9:01","length_hours":5,"length_minutes":19},
-{"subject":"Orn-Dicki","description":"Monitored even-keeled product","location":"4 Tennessee Parkway","timezone":"Asia/Shanghai","start_time":"6:48","length_hours":10,"length_minutes":26},
-{"subject":"Feest, Pfannerstill and Nader","description":"Devolved empowering methodology","location":"4 Maple Way","timezone":"Europe/Moscow","start_time":"22:36","length_hours":7,"length_minutes":36},
-{"subject":"Nicolas, Waelchi and Raynor","description":null,"location":"1923 Rutledge Trail","timezone":"Asia/Makassar","start_time":"9:11","length_hours":7,"length_minutes":43},
-{"subject":"Bradtke-Borer","description":"Synchronised empowering toolset","location":null,"timezone":"Asia/Chongqing","start_time":"19:22","length_hours":8,"length_minutes":null},
-{"subject":"Carter and Sons","description":"Ergonomic discrete open system","location":null,"timezone":"Europe/Madrid","start_time":"13:37","length_hours":9,"length_minutes":27},
-{"subject":"Gerhold Group","description":"Cross-group content-based architecture","location":null,"timezone":"Europe/Moscow","start_time":"20:40","length_hours":6,"length_minutes":39},
-{"subject":"Marvin-Rohan","description":"Self-enabling human-resource moderator","location":"4 Charing Cross Place","timezone":"Asia/Muscat","start_time":"20:54","length_hours":9,"length_minutes":28},
-{"subject":"Lakin, Kertzmann and Toy","description":"Advanced systematic throughput","location":null,"timezone":"Africa/Dar_es_Salaam","start_time":"12:36","length_hours":10,"length_minutes":null},
-{"subject":"Bogisich Inc","description":"Visionary heuristic workforce","location":null,"timezone":"Asia/Shanghai","start_time":"6:50","length_hours":10,"length_minutes":25},
-{"subject":"Bednar Group","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"13:39","length_hours":11,"length_minutes":null},
-{"subject":"Bartoletti-Murray","description":null,"location":"36 Forest Dale Parkway","timezone":"Europe/Helsinki","start_time":"13:52","length_hours":7,"length_minutes":21},
-{"subject":"Streich and Sons","description":null,"location":"2 Lillian Park","timezone":"America/Argentina/Buenos_Aires","start_time":"15:31","length_hours":9,"length_minutes":2},
-{"subject":"Wiza, Leannon and Hills","description":"Right-sized reciprocal implementation","location":"65410 Bellgrove Drive","timezone":"Asia/Bangkok","start_time":"13:29","length_hours":10,"length_minutes":55},
-{"subject":"Goyette and Sons","description":"Devolved 6th generation hub","location":null,"timezone":"America/Caracas","start_time":"9:18","length_hours":11,"length_minutes":5},
-{"subject":"Gusikowski-Beahan","description":null,"location":"0523 Graedel Terrace","timezone":"America/Argentina/Cordoba","start_time":"21:28","length_hours":6,"length_minutes":null},
-{"subject":"Considine and Sons","description":null,"location":null,"timezone":"Europe/Tirane","start_time":"22:56","length_hours":6,"length_minutes":0},
-{"subject":"Dickinson, Goodwin and Schumm","description":null,"location":"2 Stuart Place","timezone":"America/Mexico_City","start_time":"15:43","length_hours":10,"length_minutes":3},
-{"subject":"Wuckert-Streich","description":null,"location":"32303 Crownhardt Park","timezone":"Europe/Moscow","start_time":"6:04","length_hours":11,"length_minutes":49},
-{"subject":"Farrell-Wisozk","description":null,"location":"90518 5th Road","timezone":"Africa/Johannesburg","start_time":"19:30","length_hours":9,"length_minutes":null},
-{"subject":"Harber Inc","description":"Advanced zero administration workforce","location":"55 Farragut Crossing","timezone":"America/Port-au-Prince","start_time":"7:56","length_hours":5,"length_minutes":53},
-{"subject":"Langosh LLC","description":"Automated holistic forecast","location":"44929 Sutteridge Pass","timezone":"Asia/Shanghai","start_time":"21:51","length_hours":9,"length_minutes":55},
-{"subject":"Doyle-Schamberger","description":null,"location":"96 Dapin Pass","timezone":"America/Chicago","start_time":"12:12","length_hours":9,"length_minutes":26},
-{"subject":"DuBuque, Conn and Kuhlman","description":null,"location":"6829 Brickson Park Junction","timezone":"Asia/Kashgar","start_time":"19:01","length_hours":10,"length_minutes":23},
-{"subject":"Parker-Considine","description":null,"location":"52 Memorial Park","timezone":"Europe/Lisbon","start_time":"7:03","length_hours":12,"length_minutes":48},
-{"subject":"Dare and Sons","description":null,"location":"27 Waxwing Plaza","timezone":"Africa/Monrovia","start_time":"5:40","length_hours":5,"length_minutes":38},
-{"subject":"Sanford LLC","description":"Universal transitional ability","location":"86135 Service Junction","timezone":"Asia/Chongqing","start_time":"6:55","length_hours":9,"length_minutes":23},
-{"subject":"Gislason and Sons","description":"Adaptive systematic matrix","location":null,"timezone":"Asia/Omsk","start_time":"8:34","length_hours":6,"length_minutes":1},
-{"subject":"Farrell LLC","description":"Monitored mission-critical orchestration","location":"824 Fordem Street","timezone":"America/Argentina/Buenos_Aires","start_time":"17:43","length_hours":5,"length_minutes":null},
-{"subject":"Schamberger, Reichert and Rippin","description":null,"location":"9 Lakewood Gardens Road","timezone":"Pacific/Guam","start_time":"9:30","length_hours":6,"length_minutes":33},
-{"subject":"Purdy-Feeney","description":"Multi-channelled asymmetric implementation","location":"80 Burrows Trail","timezone":"Asia/Manila","start_time":"7:57","length_hours":11,"length_minutes":19},
-{"subject":"Marvin and Sons","description":"Seamless heuristic forecast","location":"084 Sutteridge Plaza","timezone":"Asia/Manila","start_time":"20:01","length_hours":6,"length_minutes":57},
-{"subject":"Ryan Group","description":"Visionary analyzing pricing structure","location":"00064 Blue Bill Park Trail","timezone":"America/Mexico_City","start_time":"7:13","length_hours":10,"length_minutes":43},
-{"subject":"Jast LLC","description":null,"location":"13 Buell Street","timezone":"Europe/Prague","start_time":"19:10","length_hours":11,"length_minutes":null},
-{"subject":"Volkman-Schuppe","description":null,"location":"2839 Elmside Hill","timezone":"Asia/Jakarta","start_time":"5:56","length_hours":11,"length_minutes":35},
-{"subject":"Abernathy-Eichmann","description":"Re-engineered impactful ability","location":"0 Jana Junction","timezone":"Europe/Paris","start_time":"20:28","length_hours":8,"length_minutes":null},
-{"subject":"Deckow, Weber and Will","description":"Centralized grid-enabled standardization","location":"3850 Talmadge Park","timezone":"Europe/Uzhgorod","start_time":"9:40","length_hours":12,"length_minutes":0},
-{"subject":"Ankunding LLC","description":null,"location":"7 Sherman Alley","timezone":"Europe/Lisbon","start_time":"13:10","length_hours":6,"length_minutes":51},
-{"subject":"Gorczany, Schumm and Bednar","description":null,"location":"3861 Emmet Junction","timezone":"Asia/Harbin","start_time":"4:25","length_hours":8,"length_minutes":null},
-{"subject":"Mann, Jaskolski and Jakubowski","description":"Front-line neutral algorithm","location":"0 Anthes Road","timezone":"Asia/Jakarta","start_time":"15:46","length_hours":8,"length_minutes":14},
-{"subject":"Sporer-Muller","description":"Re-engineered content-based implementation","location":null,"timezone":"Asia/Chongqing","start_time":"7:59","length_hours":5,"length_minutes":55},
-{"subject":"Mills-Murphy","description":null,"location":null,"timezone":"Asia/Dushanbe","start_time":"7:46","length_hours":9,"length_minutes":null},
-{"subject":"Doyle, Torphy and Brekke","description":null,"location":"5584 Hallows Point","timezone":"Asia/Makassar","start_time":"7:45","length_hours":11,"length_minutes":41},
-{"subject":"Bartoletti Group","description":"Managed transitional hierarchy","location":"5 Brentwood Trail","timezone":"Asia/Magadan","start_time":"10:24","length_hours":8,"length_minutes":null},
-{"subject":"Schmidt Group","description":null,"location":"8 Riverside Place","timezone":"Asia/Jakarta","start_time":"15:34","length_hours":12,"length_minutes":59},
-{"subject":"Harvey and Sons","description":"Sharable methodical data-warehouse","location":null,"timezone":"Asia/Jayapura","start_time":"6:32","length_hours":12,"length_minutes":12},
-{"subject":"Harvey Group","description":"Down-sized content-based structure","location":"93 Spaight Court","timezone":"Europe/Dublin","start_time":"4:55","length_hours":6,"length_minutes":38},
-{"subject":"Wehner, Mitchell and Lang","description":"Diverse multi-tasking knowledge base","location":"5466 Northwestern Drive","timezone":"Europe/Paris","start_time":"4:50","length_hours":6,"length_minutes":4},
-{"subject":"Leuschke Group","description":null,"location":null,"timezone":"America/Mexico_City","start_time":"16:11","length_hours":11,"length_minutes":33},
-{"subject":"Cummings, Jenkins and Fadel","description":null,"location":null,"timezone":"Asia/Chongqing","start_time":"21:38","length_hours":8,"length_minutes":30},
-{"subject":"West, Homenick and Carroll","description":null,"location":"91 Eggendart Place","timezone":"Europe/Moscow","start_time":"16:59","length_hours":7,"length_minutes":33},
-{"subject":"Conroy-Hane","description":null,"location":"7764 Iowa Alley","timezone":"Asia/Harbin","start_time":"11:20","length_hours":5,"length_minutes":null},
-{"subject":"Grimes LLC","description":"Vision-oriented mission-critical policy","location":"828 Pierstorff Road","timezone":"America/Los_Angeles","start_time":"20:26","length_hours":5,"length_minutes":32},
-{"subject":"Boyle LLC","description":"Open-architected web-enabled process improvement","location":null,"timezone":"Asia/Bangkok","start_time":"9:10","length_hours":10,"length_minutes":11},
-{"subject":"Rogahn Inc","description":"Triple-buffered web-enabled attitude","location":"6 Moose Drive","timezone":"Asia/Jakarta","start_time":"21:32","length_hours":9,"length_minutes":null},
-{"subject":"Becker, Vandervort and Blick","description":null,"location":"46 Jana Drive","timezone":"America/Sao_Paulo","start_time":"11:53","length_hours":10,"length_minutes":null},
-{"subject":"Kunze, Roob and Will","description":"Devolved holistic knowledge user","location":"66694 Pankratz Trail","timezone":"Asia/Omsk","start_time":"22:13","length_hours":9,"length_minutes":53},
-{"subject":"Herman-Runolfsdottir","description":"Diverse homogeneous knowledge base","location":null,"timezone":"Asia/Tokyo","start_time":"11:49","length_hours":4,"length_minutes":29},
-{"subject":"Schimmel and Sons","description":"Adaptive user-facing forecast","location":null,"timezone":"Europe/Paris","start_time":"11:43","length_hours":6,"length_minutes":null},
-{"subject":"Reichel, Osinski and Gutmann","description":"Synergized homogeneous frame","location":null,"timezone":"Europe/Warsaw","start_time":"22:05","length_hours":8,"length_minutes":null},
-{"subject":"Crona LLC","description":"Function-based neutral budgetary management","location":"0 Becker Drive","timezone":"Pacific/Tongatapu","start_time":"15:09","length_hours":10,"length_minutes":null},
-{"subject":"Romaguera, Rippin and Effertz","description":null,"location":null,"timezone":"Europe/Warsaw","start_time":"7:53","length_hours":5,"length_minutes":null},
-{"subject":"Bogan-Lynch","description":null,"location":"037 Cottonwood Place","timezone":"Asia/Phnom_Penh","start_time":"19:28","length_hours":11,"length_minutes":null},
-{"subject":"Fay and Sons","description":"Self-enabling disintermediate complexity","location":"11712 Ridgeview Hill","timezone":"Asia/Harbin","start_time":"11:30","length_hours":4,"length_minutes":53},
-{"subject":"Lind-Cassin","description":"Inverse systematic circuit","location":"96479 Sage Junction","timezone":"Europe/Moscow","start_time":"15:12","length_hours":6,"length_minutes":2},
-{"subject":"O'Hara-Toy","description":null,"location":null,"timezone":"Asia/Harbin","start_time":"17:02","length_hours":8,"length_minutes":30},
-{"subject":"Mills, Kuhic and Rohan","description":"Focused disintermediate application","location":"0993 Dawn Alley","timezone":"Asia/Chongqing","start_time":"4:19","length_hours":12,"length_minutes":null},
-{"subject":"Lang-Kirlin","description":"Virtual analyzing model","location":"06335 Village Plaza","timezone":"Europe/Lisbon","start_time":"20:24","length_hours":11,"length_minutes":null},
-{"subject":"Price and Sons","description":null,"location":"1 Southridge Point","timezone":"Europe/Lisbon","start_time":"5:33","length_hours":7,"length_minutes":31},
-{"subject":"Bergnaum, Stamm and Leannon","description":"Configurable bifurcated intranet","location":null,"timezone":"Pacific/Port_Moresby","start_time":"15:42","length_hours":6,"length_minutes":null},
-{"subject":"Runolfsdottir and Sons","description":"De-engineered 24 hour function","location":"2877 Lakeland Center","timezone":"America/Lima","start_time":"21:58","length_hours":7,"length_minutes":null},
-{"subject":"Pollich, Goyette and O'Reilly","description":"Expanded background Graphic Interface","location":"3012 Chive Place","timezone":"Asia/Shanghai","start_time":"11:04","length_hours":10,"length_minutes":38}]
\ No newline at end of file
+[
+  {
+    "subject": "Strosin LLC",
+    "description": "Phased bandwidth-monitored circuit",
+    "location": "77624 Melby Place",
+    "time_zone": "Europe/Oslo",
+    "time_start": "20:57",
+    "length_hours": 4,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Hyatt Inc",
+    "description": "Balanced tertiary superstructure",
+    "location": "466 Dawn Avenue",
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "18:10",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Quigley and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "17:06",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Auer, DuBuque and Raynor",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "10:51",
+    "length_hours": 7,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Lang, Hermann and Bechtelar",
+    "description": null,
+    "location": "18771 Grover Place",
+    "time_zone": "Europe/Amsterdam",
+    "time_start": "14:26",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kertzmann, Schiller and Murphy",
+    "description": "User-friendly content-based methodology",
+    "location": "1936 Sheridan Point",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "12:49",
+    "length_hours": 9,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Watsica-Ryan",
+    "description": "Integrated value-added ability",
+    "location": "7751 Pepper Wood Avenue",
+    "time_zone": "Europe/Moscow",
+    "time_start": "22:07",
+    "length_hours": 9,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Barton Group",
+    "description": "Self-enabling intermediate instruction set",
+    "location": null,
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "22:53",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "O'Hara-Mills",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:43",
+    "length_hours": 7,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Prohaska and Sons",
+    "description": "Stand-alone directional strategy",
+    "location": "34 Anthes Circle",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:55",
+    "length_hours": 10,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Frami Inc",
+    "description": "Progressive systematic pricing structure",
+    "location": "90690 Scott Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "10:43",
+    "length_hours": 7,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Kris and Sons",
+    "description": "Face to face bottom-line architecture",
+    "location": null,
+    "time_zone": "Africa/Kampala",
+    "time_start": "11:07",
+    "length_hours": 7,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Walker-Cruickshank",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "8:14",
+    "length_hours": 8,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Legros Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "13:15",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Boyle, Lindgren and Lowe",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Prague",
+    "time_start": "19:12",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Aufderhar, Lakin and Wolf",
+    "description": "Multi-channelled object-oriented encryption",
+    "location": "96 Hagan Street",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "7:04",
+    "length_hours": 5,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Hansen LLC",
+    "description": null,
+    "location": "55 Spaight Trail",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "8:57",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Howell, Larson and Leuschke",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Kiev",
+    "time_start": "12:18",
+    "length_hours": 6,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Altenwerth, Wisoky and Koch",
+    "description": null,
+    "location": "8 North Plaza",
+    "time_zone": "Europe/Copenhagen",
+    "time_start": "7:03",
+    "length_hours": 9,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Schumm-Yundt",
+    "description": null,
+    "location": "94 Crownhardt Avenue",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "21:43",
+    "length_hours": 8,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Walsh, Brown and Blanda",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "14:24",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gleason Group",
+    "description": null,
+    "location": "66371 Oak Valley Center",
+    "time_zone": "America/Denver",
+    "time_start": "12:50",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bailey-Corwin",
+    "description": "Persevering heuristic interface",
+    "location": null,
+    "time_zone": "Europe/Dublin",
+    "time_start": "14:13",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Moore, Kirlin and Jenkins",
+    "description": "Intuitive 5th generation instruction set",
+    "location": "2 Amoth Road",
+    "time_zone": "America/Havana",
+    "time_start": "4:51",
+    "length_hours": 10,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Bahringer, Haley and Doyle",
+    "description": "Reduced directional definition",
+    "location": "28 Fulton Hill",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "17:57",
+    "length_hours": 11,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Powlowski-Keeling",
+    "description": "Extended content-based open system",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "15:17",
+    "length_hours": 5,
+    "length_minutes": 44
+  },
+  {
+    "subject": "Durgan-Howell",
+    "description": "Profit-focused zero defect encoding",
+    "location": null,
+    "time_zone": "Africa/Lubumbashi",
+    "time_start": "12:29",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Casper and Sons",
+    "description": "Monitored foreground support",
+    "location": "49751 Grover Lane",
+    "time_zone": "America/Anguilla",
+    "time_start": "8:25",
+    "length_hours": 6,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Hamill, Rau and Stark",
+    "description": "Function-based content-based projection",
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "20:20",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ward, Haley and Dietrich",
+    "description": "Front-line leading edge complexity",
+    "location": "66004 Alpine Court",
+    "time_zone": "America/Toronto",
+    "time_start": "15:36",
+    "length_hours": 12,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Leuschke-Abbott",
+    "description": null,
+    "location": "79 Ruskin Pass",
+    "time_zone": "Europe/Athens",
+    "time_start": "14:33",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Grimes and Sons",
+    "description": "Horizontal logistical groupware",
+    "location": "8 Hayes Avenue",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "10:31",
+    "length_hours": 8,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Weissnat LLC",
+    "description": null,
+    "location": "56793 Lyons Lane",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "12:58",
+    "length_hours": 4,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Lubowitz LLC",
+    "description": "Up-sized optimizing project",
+    "location": "1 Columbus Road",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:23",
+    "length_hours": 6,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Ebert, Rutherford and Volkman",
+    "description": "Networked didactic definition",
+    "location": "0106 Moland Crossing",
+    "time_zone": "Asia/Vientiane",
+    "time_start": "6:53",
+    "length_hours": 11,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Bashirian, Haley and Weimann",
+    "description": "Synergized interactive flexibility",
+    "location": "3 Melvin Place",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "21:51",
+    "length_hours": 9,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Auer-Rowe",
+    "description": "De-engineered coherent knowledge base",
+    "location": "36 Birchwood Circle",
+    "time_zone": "Europe/Dublin",
+    "time_start": "7:38",
+    "length_hours": 12,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Orn and Sons",
+    "description": null,
+    "location": "141 North Crossing",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "7:58",
+    "length_hours": 12,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Carroll Inc",
+    "description": "Implemented empowering encoding",
+    "location": "2 Grasskamp Terrace",
+    "time_zone": "Europe/Athens",
+    "time_start": "7:59",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Grady-Sawayn",
+    "description": "Quality-focused 5th generation collaboration",
+    "location": "6317 Homewood Point",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "9:33",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Skiles Inc",
+    "description": "Cross-platform uniform open system",
+    "location": "6 Stuart Alley",
+    "time_zone": "Asia/Oral",
+    "time_start": "7:29",
+    "length_hours": 10,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Bode-Stroman",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "17:56",
+    "length_hours": 5,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Bahringer, Crist and Dietrich",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "7:22",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Koch-Ebert",
+    "description": "Open-architected asynchronous service-desk",
+    "location": "777 Melrose Alley",
+    "time_zone": "Asia/Harbin",
+    "time_start": "13:18",
+    "length_hours": 6,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Emard LLC",
+    "description": "Robust 24/7 support",
+    "location": "6 Annamark Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:27",
+    "length_hours": 6,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Konopelski, Brekke and DuBuque",
+    "description": "Synergized 6th generation access",
+    "location": "626 Erie Center",
+    "time_zone": "America/Lima",
+    "time_start": "10:16",
+    "length_hours": 8,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Schamberger Inc",
+    "description": "Phased transitional support",
+    "location": "39428 Orin Terrace",
+    "time_zone": "Asia/Manila",
+    "time_start": "13:10",
+    "length_hours": 9,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Erdman LLC",
+    "description": "Future-proofed bi-directional service-desk",
+    "location": "7351 Barnett Lane",
+    "time_zone": "Asia/Manila",
+    "time_start": "7:41",
+    "length_hours": 10,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Langworth, Herzog and Jaskolski",
+    "description": null,
+    "location": "935 Shasta Plaza",
+    "time_zone": "Europe/Athens",
+    "time_start": "13:09",
+    "length_hours": 5,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Pouros, Turner and Abernathy",
+    "description": null,
+    "location": "331 Reindahl Way",
+    "time_zone": "Asia/Urumqi",
+    "time_start": "21:45",
+    "length_hours": 5,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Berge LLC",
+    "description": "Multi-tiered multimedia adapter",
+    "location": "5750 Center Place",
+    "time_zone": "Africa/Accra",
+    "time_start": "4:35",
+    "length_hours": 4,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Rath-Greenfelder",
+    "description": "Fundamental multi-state time-frame",
+    "location": "9 Sachs Center",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "12:58",
+    "length_hours": 11,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Purdy-Littel",
+    "description": "Multi-tiered non-volatile middleware",
+    "location": null,
+    "time_zone": "America/Argentina/Cordoba",
+    "time_start": "6:30",
+    "length_hours": 12,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Goldner, Veum and Langworth",
+    "description": "Balanced asymmetric project",
+    "location": "4807 Norway Maple Trail",
+    "time_zone": "America/New_York",
+    "time_start": "6:59",
+    "length_hours": 10,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Smith Group",
+    "description": "Streamlined tangible capability",
+    "location": "37688 Hovde Court",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "6:17",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Waters, Robel and Roberts",
+    "description": "Streamlined bifurcated process improvement",
+    "location": "6 Jackson Trail",
+    "time_zone": "Asia/Kuching",
+    "time_start": "8:14",
+    "length_hours": 8,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Harvey and Sons",
+    "description": "Distributed zero administration productivity",
+    "location": "04275 7th Drive",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "15:26",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Nader and Sons",
+    "description": "Self-enabling reciprocal software",
+    "location": "9 Monterey Terrace",
+    "time_zone": "America/Havana",
+    "time_start": "17:19",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kshlerin Group",
+    "description": "Persevering bi-directional model",
+    "location": "2 Farragut Plaza",
+    "time_zone": "Asia/Kathmandu",
+    "time_start": "10:06",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wisoky, Weber and Ullrich",
+    "description": null,
+    "location": "5 Scoville Place",
+    "time_zone": "America/New_York",
+    "time_start": "22:10",
+    "length_hours": 4,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Hirthe, Ernser and Farrell",
+    "description": "Function-based maximized system engine",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "6:08",
+    "length_hours": 4,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Quigley-Wisoky",
+    "description": "Enhanced motivating throughput",
+    "location": "44131 Monument Court",
+    "time_zone": "Europe/Zagreb",
+    "time_start": "8:57",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "McClure LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:45",
+    "length_hours": 6,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Boyle LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:44",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Turcotte, Sporer and Raynor",
+    "description": "Universal national system engine",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "11:21",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Collins-Morar",
+    "description": "Operative fault-tolerant task-force",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "10:05",
+    "length_hours": 5,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Stokes Group",
+    "description": null,
+    "location": "3747 Novick Trail",
+    "time_zone": "Asia/Makassar",
+    "time_start": "7:03",
+    "length_hours": 5,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Lubowitz-O'Reilly",
+    "description": null,
+    "location": "4 Prentice Hill",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "16:36",
+    "length_hours": 8,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Haag-Bruen",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "14:03",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Padberg and Sons",
+    "description": "Profit-focused upward-trending product",
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "17:09",
+    "length_hours": 4,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Smitham-Hintz",
+    "description": "Distributed value-added function",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "8:35",
+    "length_hours": 6,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Heaney, Beatty and Lind",
+    "description": "Object-based impactful product",
+    "location": "7 Clarendon Park",
+    "time_zone": "Europe/Zaporozhye",
+    "time_start": "4:19",
+    "length_hours": 7,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Sanford Group",
+    "description": "Vision-oriented responsive success",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "13:16",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "O'Connell-Pagac",
+    "description": null,
+    "location": "70534 Lerdahl Junction",
+    "time_zone": "Europe/Skopje",
+    "time_start": "5:57",
+    "length_hours": 10,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Harris and Sons",
+    "description": null,
+    "location": "9113 Loeprich Plaza",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "9:17",
+    "length_hours": 4,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Deckow, Corkery and Mante",
+    "description": null,
+    "location": null,
+    "time_zone": "Atlantic/Faroe",
+    "time_start": "17:12",
+    "length_hours": 12,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Haag and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Montreal",
+    "time_start": "10:12",
+    "length_hours": 7,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Welch LLC",
+    "description": "Virtual stable attitude",
+    "location": "27 Scott Circle",
+    "time_zone": "Asia/Manila",
+    "time_start": "19:18",
+    "length_hours": 4,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Schaefer Inc",
+    "description": null,
+    "location": "4 Pawling Hill",
+    "time_zone": "Asia/Baku",
+    "time_start": "20:31",
+    "length_hours": 5,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Donnelly, Strosin and Metz",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Rangoon",
+    "time_start": "8:41",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "King-Carter",
+    "description": "Up-sized bandwidth-monitored analyzer",
+    "location": "4574 Everett Avenue",
+    "time_zone": "America/New_York",
+    "time_start": "12:52",
+    "length_hours": 4,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Paucek-Medhurst",
+    "description": null,
+    "location": "02 Holy Cross Parkway",
+    "time_zone": "America/Caracas",
+    "time_start": "18:08",
+    "length_hours": 6,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Brakus LLC",
+    "description": null,
+    "location": "0382 Vidon Court",
+    "time_zone": "America/Lima",
+    "time_start": "15:52",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kohler-Marquardt",
+    "description": null,
+    "location": "91 Roxbury Avenue",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "4:28",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schumm-Kerluke",
+    "description": "Open-architected impactful parallelism",
+    "location": null,
+    "time_zone": "America/Montreal",
+    "time_start": "14:58",
+    "length_hours": 7,
+    "length_minutes": 18
+  },
+  {
+    "subject": "Schultz, Schaefer and Schaefer",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:54",
+    "length_hours": 11,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Bode-Runte",
+    "description": "Re-contextualized even-keeled hierarchy",
+    "location": "2 Jackson Drive",
+    "time_zone": "Europe/London",
+    "time_start": "8:15",
+    "length_hours": 6,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Waters Group",
+    "description": "Monitored bi-directional approach",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "18:03",
+    "length_hours": 6,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Swaniawski Group",
+    "description": null,
+    "location": "1 Jenna Parkway",
+    "time_zone": "Asia/Jerusalem",
+    "time_start": "4:48",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hartmann, Stracke and Schaefer",
+    "description": "Ameliorated cohesive task-force",
+    "location": "9041 Hanover Crossing",
+    "time_zone": "Europe/Kiev",
+    "time_start": "8:31",
+    "length_hours": 7,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Schuster, Stehr and Schaefer",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "9:38",
+    "length_hours": 11,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Hintz-Koepp",
+    "description": "Front-line responsive process improvement",
+    "location": "9 Claremont Lane",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "18:48",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Prosacco-Yundt",
+    "description": "Open-architected regional implementation",
+    "location": "58119 Artisan Pass",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:09",
+    "length_hours": 8,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Leffler Inc",
+    "description": "Self-enabling global orchestration",
+    "location": "95 Old Gate Road",
+    "time_zone": "Europe/Helsinki",
+    "time_start": "15:10",
+    "length_hours": 8,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Bergstrom-Senger",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "9:07",
+    "length_hours": 12,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Sawayn Group",
+    "description": "Switchable 4th generation concept",
+    "location": "76 Spohn Parkway",
+    "time_zone": "Europe/Sarajevo",
+    "time_start": "11:02",
+    "length_hours": 12,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Wuckert, Brakus and Gleichner",
+    "description": "Fully-configurable 4th generation hub",
+    "location": "782 Milwaukee Drive",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:53",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Anderson Inc",
+    "description": "Focused composite definition",
+    "location": "61953 Arrowood Street",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "15:53",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Thiel Inc",
+    "description": null,
+    "location": "1 Utah Parkway",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "22:49",
+    "length_hours": 4,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Satterfield-Prohaska",
+    "description": "Decentralized web-enabled monitoring",
+    "location": "35 Kensington Center",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "11:19",
+    "length_hours": 7,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Bogan-Kreiger",
+    "description": "Progressive 24 hour knowledge base",
+    "location": "615 Oakridge Lane",
+    "time_zone": "Africa/Djibouti",
+    "time_start": "8:06",
+    "length_hours": 4,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Glover, O'Keefe and Hartmann",
+    "description": null,
+    "location": "12790 Farmco Parkway",
+    "time_zone": "America/Caracas",
+    "time_start": "22:56",
+    "length_hours": 4,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Pfannerstill LLC",
+    "description": null,
+    "location": "57 Nevada Junction",
+    "time_zone": "Australia/Sydney",
+    "time_start": "10:03",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Haley Inc",
+    "description": "Progressive encompassing policy",
+    "location": "40224 Carpenter Lane",
+    "time_zone": "Africa/Libreville",
+    "time_start": "14:21",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Halvorson-Renner",
+    "description": null,
+    "location": "8 Derek Circle",
+    "time_zone": "Asia/Makassar",
+    "time_start": "13:31",
+    "length_hours": 5,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Borer Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Bangkok",
+    "time_start": "14:17",
+    "length_hours": 6,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Hauck Group",
+    "description": null,
+    "location": "3 Cottonwood Junction",
+    "time_zone": "America/Asuncion",
+    "time_start": "6:57",
+    "length_hours": 10,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Bahringer, Steuber and Kohler",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "21:17",
+    "length_hours": 8,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Gerlach Group",
+    "description": null,
+    "location": "2 Fulton Park",
+    "time_zone": "Europe/Athens",
+    "time_start": "5:11",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Zieme-Aufderhar",
+    "description": null,
+    "location": "65445 Rusk Trail",
+    "time_zone": "America/Argentina/Cordoba",
+    "time_start": "20:10",
+    "length_hours": 4,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Effertz, Adams and Collier",
+    "description": "Robust mission-critical standardization",
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "17:38",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schoen, Reilly and Hudson",
+    "description": null,
+    "location": "59 Jay Hill",
+    "time_zone": "Asia/Dushanbe",
+    "time_start": "4:20",
+    "length_hours": 10,
+    "length_minutes": 24
+  },
+  {
+    "subject": "McKenzie Inc",
+    "description": null,
+    "location": "367 Summer Ridge Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "12:01",
+    "length_hours": 4,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Langosh-Kohler",
+    "description": "Profit-focused secondary process improvement",
+    "location": "64246 Northridge Place",
+    "time_zone": "America/Caracas",
+    "time_start": "7:52",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Johnston-Murazik",
+    "description": null,
+    "location": "34519 Burrows Street",
+    "time_zone": "Asia/Ashgabat",
+    "time_start": "8:11",
+    "length_hours": 12,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Smitham, Strosin and D'Amore",
+    "description": "Universal next generation middleware",
+    "location": null,
+    "time_zone": "Asia/Muscat",
+    "time_start": "9:18",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Reichert-Osinski",
+    "description": null,
+    "location": "0127 Hauk Pass",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "12:57",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Sawayn, Cole and Herman",
+    "description": "Virtual hybrid task-force",
+    "location": "65 Walton Drive",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "9:20",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Olson-Bayer",
+    "description": "Managed discrete task-force",
+    "location": "0 Melody Junction",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "13:26",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Leuschke, Blick and Kunde",
+    "description": null,
+    "location": "4 Anhalt Alley",
+    "time_zone": "Asia/Manila",
+    "time_start": "12:07",
+    "length_hours": 5,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Russel Inc",
+    "description": "Public-key global access",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "16:22",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Oberbrunner, Frami and McClure",
+    "description": null,
+    "location": "853 Dennis Crossing",
+    "time_zone": "Europe/Riga",
+    "time_start": "21:22",
+    "length_hours": 9,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Weissnat-Spinka",
+    "description": "Reduced actuating analyzer",
+    "location": "336 Hanover Court",
+    "time_zone": "Asia/Baku",
+    "time_start": "7:18",
+    "length_hours": 12,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Lakin, Tremblay and Pfeffer",
+    "description": "Managed stable emulation",
+    "location": null,
+    "time_zone": "Europe/Prague",
+    "time_start": "13:29",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Emmerich LLC",
+    "description": "Cross-platform systemic concept",
+    "location": "42 Brickson Park Park",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "6:50",
+    "length_hours": 12,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Reichel, Barrows and Weissnat",
+    "description": "Customer-focused zero administration collaboration",
+    "location": "52440 Anderson Alley",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "4:33",
+    "length_hours": 6,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Funk, Cronin and Larkin",
+    "description": "Diverse foreground implementation",
+    "location": "9 Northridge Terrace",
+    "time_zone": "Asia/Makassar",
+    "time_start": "5:58",
+    "length_hours": 11,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Kovacek, Davis and Kovacek",
+    "description": "Balanced cohesive conglomeration",
+    "location": "21522 Dorton Plaza",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "12:01",
+    "length_hours": 11,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Wisozk, Powlowski and Hane",
+    "description": "Public-key full-range synergy",
+    "location": "9305 Carey Pass",
+    "time_zone": "America/Argentina/Salta",
+    "time_start": "9:49",
+    "length_hours": 9,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Streich, Romaguera and Parisian",
+    "description": null,
+    "location": "56730 Granby Junction",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:36",
+    "length_hours": 8,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Robel-Predovic",
+    "description": "Polarised responsive product",
+    "location": "37 Moulton Trail",
+    "time_zone": "America/Argentina/Salta",
+    "time_start": "19:53",
+    "length_hours": 8,
+    "length_minutes": 5
+  },
+  {
+    "subject": "White-Spinka",
+    "description": "Synergistic explicit matrix",
+    "location": "3592 Melby Drive",
+    "time_zone": "Asia/Riyadh",
+    "time_start": "22:43",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Boyle Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Tokyo",
+    "time_start": "20:16",
+    "length_hours": 8,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Schiller and Sons",
+    "description": "Front-line systematic protocol",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "11:20",
+    "length_hours": 12,
+    "length_minutes": 57
+  },
+  {
+    "subject": "O'Kon, Roob and Hagenes",
+    "description": "Face to face full-range utilisation",
+    "location": "9682 Ruskin Plaza",
+    "time_zone": "America/Tegucigalpa",
+    "time_start": "17:01",
+    "length_hours": 8,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Torphy, Padberg and Bashirian",
+    "description": "Cloned tangible approach",
+    "location": "898 Melrose Road",
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "9:41",
+    "length_hours": 12,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Bernhard, Koss and Botsford",
+    "description": "Persistent upward-trending infrastructure",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "15:58",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Shields, D'Amore and Ritchie",
+    "description": "Focused radical initiative",
+    "location": "37816 Summer Ridge Crossing",
+    "time_zone": "Africa/Casablanca",
+    "time_start": "11:12",
+    "length_hours": 8,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Boehm-Becker",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "17:03",
+    "length_hours": 8,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Osinski, Kiehn and Purdy",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "9:04",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kohler-Reichert",
+    "description": null,
+    "location": "058 Rockefeller Terrace",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "16:52",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Heller, Walter and Purdy",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "15:03",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Strosin, Parker and Williamson",
+    "description": null,
+    "location": "767 Esch Place",
+    "time_zone": "Europe/Belgrade",
+    "time_start": "15:19",
+    "length_hours": 7,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Mosciski, Torphy and Hamill",
+    "description": "Ameliorated maximized customer loyalty",
+    "location": "66877 Boyd Road",
+    "time_zone": "Asia/Harbin",
+    "time_start": "21:45",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mayert and Sons",
+    "description": null,
+    "location": "9 Heath Crossing",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "17:13",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mohr Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Irkutsk",
+    "time_start": "22:15",
+    "length_hours": 9,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Hermiston-Zemlak",
+    "description": null,
+    "location": "2170 Pond Plaza",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "6:53",
+    "length_hours": 11,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Durgan-Hand",
+    "description": "Mandatory full-range functionalities",
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "7:40",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wunsch-Hermann",
+    "description": "Persistent web-enabled methodology",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "21:17",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Johns, Langosh and Kuphal",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "19:50",
+    "length_hours": 6,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Boehm-Kemmer",
+    "description": "Up-sized systemic implementation",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "5:39",
+    "length_hours": 7,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Schaefer, Fritsch and Jacobson",
+    "description": null,
+    "location": null,
+    "time_zone": "Africa/Kampala",
+    "time_start": "19:07",
+    "length_hours": 11,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Weissnat, Ritchie and Cronin",
+    "description": "Enterprise-wide 4th generation challenge",
+    "location": "700 Express Alley",
+    "time_zone": "Asia/Manila",
+    "time_start": "13:56",
+    "length_hours": 11,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Frami LLC",
+    "description": null,
+    "location": "1653 Duke Street",
+    "time_zone": "Africa/Niamey",
+    "time_start": "22:51",
+    "length_hours": 12,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Feeney-Keeling",
+    "description": "Synchronised secondary software",
+    "location": "3636 Shoshone Junction",
+    "time_zone": "America/Tegucigalpa",
+    "time_start": "14:23",
+    "length_hours": 8,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Gibson, Trantow and Gutmann",
+    "description": null,
+    "location": "43533 Prentice Way",
+    "time_zone": "Africa/Dar_es_Salaam",
+    "time_start": "17:53",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schulist Group",
+    "description": "Persevering stable model",
+    "location": null,
+    "time_zone": "Pacific/Noumea",
+    "time_start": "21:35",
+    "length_hours": 11,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Medhurst-Fahey",
+    "description": "Automated clear-thinking conglomeration",
+    "location": "2 Columbus Way",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "4:29",
+    "length_hours": 12,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Trantow-Krajcik",
+    "description": null,
+    "location": "4 Transport Junction",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "16:24",
+    "length_hours": 12,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Koelpin, Stracke and Koch",
+    "description": "Organized zero administration groupware",
+    "location": "27116 Park Meadow Trail",
+    "time_zone": "America/Managua",
+    "time_start": "10:03",
+    "length_hours": 9,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Schumm LLC",
+    "description": "Synergized contextually-based leverage",
+    "location": "775 2nd Center",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "7:33",
+    "length_hours": 4,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Gerhold-Lemke",
+    "description": "Persistent client-driven internet solution",
+    "location": "26181 Havey Road",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "22:59",
+    "length_hours": 12,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Schimmel LLC",
+    "description": "Synchronised actuating architecture",
+    "location": null,
+    "time_zone": "Europe/Helsinki",
+    "time_start": "19:38",
+    "length_hours": 11,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Shields and Sons",
+    "description": "Expanded responsive toolset",
+    "location": null,
+    "time_zone": "Africa/Bujumbura",
+    "time_start": "14:49",
+    "length_hours": 8,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Kub Inc",
+    "description": "Compatible 6th generation time-frame",
+    "location": null,
+    "time_zone": "America/Detroit",
+    "time_start": "11:40",
+    "length_hours": 11,
+    "length_minutes": 37
+  },
+  {
+    "subject": "Kihn, Mosciski and Heidenreich",
+    "description": "Cross-group full-range algorithm",
+    "location": "22 Farwell Place",
+    "time_zone": "Asia/Hebron",
+    "time_start": "21:14",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Harris-Bayer",
+    "description": "Horizontal stable process improvement",
+    "location": "7 Barnett Avenue",
+    "time_zone": "Europe/Uzhgorod",
+    "time_start": "19:56",
+    "length_hours": 9,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Reinger Group",
+    "description": "Synergized client-driven leverage",
+    "location": "57 Straubel Way",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "11:00",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Towne LLC",
+    "description": null,
+    "location": "70 Mitchell Avenue",
+    "time_zone": "Europe/Uzhgorod",
+    "time_start": "19:12",
+    "length_hours": 8,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Rohan, Breitenberg and Volkman",
+    "description": null,
+    "location": null,
+    "time_zone": "America/New_York",
+    "time_start": "22:33",
+    "length_hours": 9,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Hilll, Altenwerth and Hermann",
+    "description": "Grass-roots intangible model",
+    "location": "66 Hintze Junction",
+    "time_zone": "Asia/Manila",
+    "time_start": "8:53",
+    "length_hours": 6,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Howell and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "20:56",
+    "length_hours": 11,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Hoppe-Koelpin",
+    "description": "Sharable 5th generation emulation",
+    "location": "78148 Vahlen Crossing",
+    "time_zone": "Europe/Paris",
+    "time_start": "15:13",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Langosh-Beatty",
+    "description": "Sharable foreground hub",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "14:22",
+    "length_hours": 11,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Casper, Hegmann and D'Amore",
+    "description": "Upgradable object-oriented process improvement",
+    "location": "2628 Calypso Street",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "17:59",
+    "length_hours": 9,
+    "length_minutes": 33
+  },
+  {
+    "subject": "O'Kon, Hintz and Boehm",
+    "description": "Monitored real-time utilisation",
+    "location": "42917 Waxwing Center",
+    "time_zone": "Europe/Simferopol",
+    "time_start": "19:31",
+    "length_hours": 6,
+    "length_minutes": 54
+  },
+  {
+    "subject": "Hermann-Gerhold",
+    "description": null,
+    "location": "091 Tennessee Hill",
+    "time_zone": "America/Toronto",
+    "time_start": "14:13",
+    "length_hours": 10,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Hayes, Blanda and Gusikowski",
+    "description": "Customer-focused tangible knowledge base",
+    "location": "0985 Knutson Crossing",
+    "time_zone": "Europe/Berlin",
+    "time_start": "17:20",
+    "length_hours": 11,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Blanda, Hahn and Franecki",
+    "description": "Front-line explicit paradigm",
+    "location": "7461 Toban Point",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "6:46",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Rowe LLC",
+    "description": "Advanced attitude-oriented alliance",
+    "location": null,
+    "time_zone": "Indian/Antananarivo",
+    "time_start": "14:05",
+    "length_hours": 9,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Stehr-Rice",
+    "description": "Programmable optimizing hub",
+    "location": "5129 Claremont Street",
+    "time_zone": "Asia/Yekaterinburg",
+    "time_start": "5:30",
+    "length_hours": 4,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Waters-Blick",
+    "description": "Fundamental client-server moderator",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "19:16",
+    "length_hours": 6,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Wehner-Heathcote",
+    "description": "Devolved homogeneous extranet",
+    "location": "38260 Mesta Parkway",
+    "time_zone": "Asia/Manila",
+    "time_start": "14:00",
+    "length_hours": 11,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Weimann Inc",
+    "description": "Profit-focused dynamic algorithm",
+    "location": "58 South Junction",
+    "time_zone": "Asia/Taipei",
+    "time_start": "8:34",
+    "length_hours": 7,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Altenwerth-Vandervort",
+    "description": "Re-contextualized needs-based methodology",
+    "location": "9558 Cambridge Court",
+    "time_zone": "Europe/Athens",
+    "time_start": "11:37",
+    "length_hours": 12,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Nitzsche-Ondricka",
+    "description": "Synergized systemic forecast",
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "4:18",
+    "length_hours": 7,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Dickinson Inc",
+    "description": null,
+    "location": "852 Portage Court",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "18:02",
+    "length_hours": 6,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Kassulke, Von and Goyette",
+    "description": "Face to face transitional strategy",
+    "location": null,
+    "time_zone": "America/Caracas",
+    "time_start": "22:29",
+    "length_hours": 7,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Medhurst Inc",
+    "description": "Automated eco-centric info-mediaries",
+    "location": null,
+    "time_zone": "Europe/Zurich",
+    "time_start": "7:20",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Durgan, Hickle and Ebert",
+    "description": "Digitized dynamic challenge",
+    "location": "826 Logan Road",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "6:45",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Conn, Ondricka and Muller",
+    "description": "Organic multi-tasking pricing structure",
+    "location": "81 Westport Hill",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "14:16",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "D'Amore-Parker",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Tokyo",
+    "time_start": "19:01",
+    "length_hours": 11,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Ortiz, Bednar and Quigley",
+    "description": "Monitored modular methodology",
+    "location": "60057 Luster Alley",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "16:08",
+    "length_hours": 5,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Medhurst, Walker and Carter",
+    "description": "Multi-lateral static time-frame",
+    "location": "9 Ohio Plaza",
+    "time_zone": "Europe/Uzhgorod",
+    "time_start": "9:54",
+    "length_hours": 4,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Carter Inc",
+    "description": "Centralized foreground parallelism",
+    "location": "247 Twin Pines Trail",
+    "time_zone": "America/Bogota",
+    "time_start": "6:59",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Feeney Inc",
+    "description": null,
+    "location": "0 Warbler Place",
+    "time_zone": "Europe/Paris",
+    "time_start": "16:46",
+    "length_hours": 10,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Upton, Hirthe and Lynch",
+    "description": null,
+    "location": "93 Kings Pass",
+    "time_zone": "Europe/Moscow",
+    "time_start": "6:41",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kovacek Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Kabul",
+    "time_start": "4:23",
+    "length_hours": 4,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Goyette, Lehner and Quigley",
+    "description": "De-engineered bottom-line knowledge user",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "10:07",
+    "length_hours": 9,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Mertz, Thiel and Hammes",
+    "description": "Adaptive demand-driven extranet",
+    "location": "9207 Crest Line Junction",
+    "time_zone": "Europe/Athens",
+    "time_start": "9:44",
+    "length_hours": 8,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Marquardt-Green",
+    "description": "Compatible mobile portal",
+    "location": "3863 Carpenter Drive",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "16:38",
+    "length_hours": 12,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Frami Group",
+    "description": "Customizable demand-driven paradigm",
+    "location": "2 Milwaukee Drive",
+    "time_zone": "Europe/Amsterdam",
+    "time_start": "21:47",
+    "length_hours": 11,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Veum, Vandervort and Nikolaus",
+    "description": null,
+    "location": "208 Lyons Alley",
+    "time_zone": "Asia/Makassar",
+    "time_start": "16:11",
+    "length_hours": 12,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Gutkowski-McGlynn",
+    "description": "Synergized coherent adapter",
+    "location": "21331 Troy Junction",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:18",
+    "length_hours": 10,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Bergstrom, Kerluke and Yundt",
+    "description": "Decentralized scalable superstructure",
+    "location": "0230 Heffernan Crossing",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "16:05",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gaylord, Haag and Bernier",
+    "description": null,
+    "location": "57066 Calypso Road",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "14:09",
+    "length_hours": 11,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Hyatt-Gleichner",
+    "description": "Focused multimedia architecture",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "7:07",
+    "length_hours": 12,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Crooks-Trantow",
+    "description": null,
+    "location": "6490 Algoma Point",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "18:35",
+    "length_hours": 5,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Green, Roberts and Hand",
+    "description": "Universal client-driven instruction set",
+    "location": "2905 Stephen Lane",
+    "time_zone": "Europe/Berlin",
+    "time_start": "14:09",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Stamm LLC",
+    "description": "Vision-oriented methodical infrastructure",
+    "location": "3369 Cody Court",
+    "time_zone": "Europe/Moscow",
+    "time_start": "18:24",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hudson-Schmidt",
+    "description": null,
+    "location": "52 Clove Park",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:54",
+    "length_hours": 8,
+    "length_minutes": 44
+  },
+  {
+    "subject": "Erdman, Hickle and Purdy",
+    "description": "Front-line radical frame",
+    "location": "84834 Derek Pass",
+    "time_zone": "Asia/Yakutsk",
+    "time_start": "8:10",
+    "length_hours": 5,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Hackett-Bergstrom",
+    "description": null,
+    "location": "82 Maywood Plaza",
+    "time_zone": "Asia/Makassar",
+    "time_start": "6:55",
+    "length_hours": 11,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Sanford and Sons",
+    "description": "Upgradable tertiary artificial intelligence",
+    "location": "04 Anhalt Center",
+    "time_zone": "Asia/Manila",
+    "time_start": "21:50",
+    "length_hours": 9,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Stamm-Hoppe",
+    "description": "Digitized regional flexibility",
+    "location": "20 Calypso Point",
+    "time_zone": "Africa/Kampala",
+    "time_start": "22:17",
+    "length_hours": 12,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Hilll-Moen",
+    "description": "Cross-group non-volatile moderator",
+    "location": "4 8th Drive",
+    "time_zone": "America/Bogota",
+    "time_start": "7:42",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Jones LLC",
+    "description": "Right-sized global model",
+    "location": "24 Union Avenue",
+    "time_zone": "America/Lima",
+    "time_start": "16:21",
+    "length_hours": 9,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Ortiz, Schmeler and Hoeger",
+    "description": "Team-oriented bandwidth-monitored implementation",
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "5:53",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gerhold and Sons",
+    "description": "Re-engineered fault-tolerant throughput",
+    "location": "52928 Moose Point",
+    "time_zone": "Europe/Paris",
+    "time_start": "22:44",
+    "length_hours": 4,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Johnston Inc",
+    "description": null,
+    "location": "3 Memorial Alley",
+    "time_zone": "Europe/Prague",
+    "time_start": "7:16",
+    "length_hours": 8,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Bosco, Schuppe and Walter",
+    "description": "Upgradable methodical info-mediaries",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "21:02",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Grady, Huel and McKenzie",
+    "description": "User-friendly system-worthy forecast",
+    "location": "3047 Fordem Terrace",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "14:44",
+    "length_hours": 7,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Jast LLC",
+    "description": null,
+    "location": "7452 Goodland Center",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "22:37",
+    "length_hours": 10,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Koch-Baumbach",
+    "description": "Cross-platform hybrid matrix",
+    "location": "77721 Heath Park",
+    "time_zone": "Asia/Makassar",
+    "time_start": "18:14",
+    "length_hours": 12,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Konopelski LLC",
+    "description": null,
+    "location": "9458 Lukken Way",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "18:59",
+    "length_hours": 10,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Simonis, Bode and McLaughlin",
+    "description": "User-centric asynchronous flexibility",
+    "location": "69709 Becker Lane",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "18:16",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hauck-Rosenbaum",
+    "description": "Phased background synergy",
+    "location": "44 Express Avenue",
+    "time_zone": "Asia/Pyongyang",
+    "time_start": "15:57",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kessler-Mosciski",
+    "description": "Total responsive service-desk",
+    "location": "8540 Atwood Junction",
+    "time_zone": "Africa/Accra",
+    "time_start": "21:54",
+    "length_hours": 12,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Roberts-Koepp",
+    "description": "Synchronised interactive extranet",
+    "location": "11 Stone Corner Center",
+    "time_zone": "Asia/Hebron",
+    "time_start": "20:15",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Simonis, Huels and Kuhlman",
+    "description": "Quality-focused empowering standardization",
+    "location": "48559 Hintze Junction",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "8:52",
+    "length_hours": 10,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Turcotte LLC",
+    "description": "Reactive regional solution",
+    "location": "4 Elgar Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "9:47",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Tromp LLC",
+    "description": "Multi-lateral maximized open system",
+    "location": "12 Petterle Center",
+    "time_zone": "America/Fortaleza",
+    "time_start": "21:50",
+    "length_hours": 6,
+    "length_minutes": 3
+  },
+  {
+    "subject": "O'Kon LLC",
+    "description": "Enterprise-wide intermediate database",
+    "location": "9 Pankratz Court",
+    "time_zone": "Europe/Paris",
+    "time_start": "15:22",
+    "length_hours": 4,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Breitenberg, Parisian and Leuschke",
+    "description": null,
+    "location": "15418 Kennedy Park",
+    "time_zone": "Asia/Yekaterinburg",
+    "time_start": "9:40",
+    "length_hours": 5,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Aufderhar, Rowe and Mills",
+    "description": null,
+    "location": "386 Little Fleur Alley",
+    "time_zone": "Pacific/Majuro",
+    "time_start": "11:59",
+    "length_hours": 12,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Padberg LLC",
+    "description": "Diverse exuding parallelism",
+    "location": null,
+    "time_zone": "America/Halifax",
+    "time_start": "6:49",
+    "length_hours": 6,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Gutkowski LLC",
+    "description": null,
+    "location": "46 Division Alley",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "12:38",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Beer, Hilpert and Haley",
+    "description": null,
+    "location": "56 Drewry Alley",
+    "time_zone": "Europe/Sarajevo",
+    "time_start": "15:49",
+    "length_hours": 8,
+    "length_minutes": 14
+  },
+  {
+    "subject": "O'Kon-Adams",
+    "description": null,
+    "location": "6 Rusk Pass",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "9:51",
+    "length_hours": 6,
+    "length_minutes": 44
+  },
+  {
+    "subject": "Walker Group",
+    "description": "Progressive leading edge architecture",
+    "location": "08640 Westport Avenue",
+    "time_zone": "Asia/Manila",
+    "time_start": "11:46",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Fahey LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "12:16",
+    "length_hours": 11,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Emard, Jerde and Kerluke",
+    "description": "Extended static model",
+    "location": "60704 Monument Plaza",
+    "time_zone": "Asia/Manila",
+    "time_start": "17:23",
+    "length_hours": 12,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Stamm-Monahan",
+    "description": null,
+    "location": "11 Continental Way",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:37",
+    "length_hours": 4,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Wintheiser-Murray",
+    "description": "Secured zero defect standardization",
+    "location": "353 Glendale Plaza",
+    "time_zone": "America/Guatemala",
+    "time_start": "14:23",
+    "length_hours": 11,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Collier LLC",
+    "description": "Polarised transitional time-frame",
+    "location": "878 Stone Corner Way",
+    "time_zone": "Asia/Kuala_Lumpur",
+    "time_start": "5:43",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Berge Group",
+    "description": null,
+    "location": "94353 Victoria Parkway",
+    "time_zone": "Asia/Makassar",
+    "time_start": "19:16",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Roob-Jacobi",
+    "description": "Customizable 3rd generation secured line",
+    "location": "1430 Anzinger Alley",
+    "time_zone": "Europe/Amsterdam",
+    "time_start": "7:01",
+    "length_hours": 12,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Gerhold and Sons",
+    "description": null,
+    "location": "928 Del Sol Alley",
+    "time_zone": "Asia/Yerevan",
+    "time_start": "12:33",
+    "length_hours": 7,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Homenick-Quigley",
+    "description": "Virtual local internet solution",
+    "location": "697 Elgar Hill",
+    "time_zone": "Asia/Kuala_Lumpur",
+    "time_start": "8:33",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Huels, Larkin and Krajcik",
+    "description": null,
+    "location": "542 Marcy Street",
+    "time_zone": "Europe/Helsinki",
+    "time_start": "19:35",
+    "length_hours": 9,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Jacobi Group",
+    "description": "Persistent 5th generation extranet",
+    "location": null,
+    "time_zone": "Asia/Urumqi",
+    "time_start": "11:37",
+    "length_hours": 7,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Sawayn-Hessel",
+    "description": "Extended tertiary process improvement",
+    "location": "54403 Meadow Vale Trail",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "19:18",
+    "length_hours": 9,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Koepp-Blanda",
+    "description": "Decentralized intermediate methodology",
+    "location": "132 Alpine Lane",
+    "time_zone": "America/Santo_Domingo",
+    "time_start": "8:13",
+    "length_hours": 10,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Johns-Gulgowski",
+    "description": "Persistent static projection",
+    "location": "2885 Hoffman Terrace",
+    "time_zone": "America/Lima",
+    "time_start": "4:16",
+    "length_hours": 5,
+    "length_minutes": 41
+  },
+  {
+    "subject": "VonRueden Group",
+    "description": "Fundamental fresh-thinking parallelism",
+    "location": "9706 Schlimgen Way",
+    "time_zone": "Asia/Riyadh",
+    "time_start": "6:28",
+    "length_hours": 11,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Sanford-Lowe",
+    "description": null,
+    "location": "61 Nancy Avenue",
+    "time_zone": "Asia/Manila",
+    "time_start": "8:51",
+    "length_hours": 4,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Lakin Inc",
+    "description": null,
+    "location": "4 Mosinee Place",
+    "time_zone": "Europe/Belgrade",
+    "time_start": "21:38",
+    "length_hours": 7,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Toy, Schaefer and Emmerich",
+    "description": null,
+    "location": "225 Sommers Pass",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "20:19",
+    "length_hours": 5,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Shields, Stehr and Rogahn",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "17:00",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Watsica, Glover and Witting",
+    "description": null,
+    "location": "45737 Westend Terrace",
+    "time_zone": "America/Campo_Grande",
+    "time_start": "4:25",
+    "length_hours": 11,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Sauer, Donnelly and Hilpert",
+    "description": "Optional client-server firmware",
+    "location": "802 Maryland Pass",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:30",
+    "length_hours": 8,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Heller LLC",
+    "description": "Monitored system-worthy architecture",
+    "location": "91960 Butterfield Terrace",
+    "time_zone": "America/Godthab",
+    "time_start": "22:47",
+    "length_hours": 10,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Orn Inc",
+    "description": null,
+    "location": "5450 Bellgrove Hill",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:17",
+    "length_hours": 8,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Nikolaus Group",
+    "description": null,
+    "location": "25 Stang Circle",
+    "time_zone": "Europe/Prague",
+    "time_start": "11:27",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Rath LLC",
+    "description": "Devolved responsive open architecture",
+    "location": "858 Morrow Parkway",
+    "time_zone": "Africa/Dar_es_Salaam",
+    "time_start": "13:34",
+    "length_hours": 4,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Jacobson-Mraz",
+    "description": "Re-contextualized system-worthy superstructure",
+    "location": "6075 Bluejay Crossing",
+    "time_zone": "Asia/Makassar",
+    "time_start": "6:20",
+    "length_hours": 7,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Hartmann, Barton and Homenick",
+    "description": "Multi-tiered client-driven architecture",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "6:25",
+    "length_hours": 8,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Kuvalis-DuBuque",
+    "description": "Secured discrete attitude",
+    "location": null,
+    "time_zone": "Europe/Athens",
+    "time_start": "17:20",
+    "length_hours": 10,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Stanton, Fahey and Streich",
+    "description": "Integrated demand-driven architecture",
+    "location": null,
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "4:45",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Stracke Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "10:33",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mueller-Conn",
+    "description": "Realigned bifurcated implementation",
+    "location": "797 Main Junction",
+    "time_zone": "Europe/Moscow",
+    "time_start": "17:14",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ondricka LLC",
+    "description": null,
+    "location": "529 Fallview Trail",
+    "time_zone": "Europe/Prague",
+    "time_start": "12:49",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Konopelski-Nader",
+    "description": null,
+    "location": "0 Linden Circle",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:28",
+    "length_hours": 12,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Simonis-O'Keefe",
+    "description": "Multi-channelled modular array",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "19:17",
+    "length_hours": 4,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Heaney and Sons",
+    "description": "Expanded intermediate model",
+    "location": "522 Nevada Crossing",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "16:16",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Greenfelder-Larson",
+    "description": null,
+    "location": "52131 Basil Trail",
+    "time_zone": "Europe/Prague",
+    "time_start": "8:49",
+    "length_hours": 4,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Krajcik, Jaskolski and Labadie",
+    "description": "Versatile multi-tasking artificial intelligence",
+    "location": "575 Mcguire Point",
+    "time_zone": "Asia/Manila",
+    "time_start": "12:02",
+    "length_hours": 10,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Schimmel, Keebler and Grady",
+    "description": "Optional logistical analyzer",
+    "location": "2 Hauk Crossing",
+    "time_zone": "America/Tijuana",
+    "time_start": "11:27",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Berge and Sons",
+    "description": null,
+    "location": "99 Golden Leaf Center",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "6:08",
+    "length_hours": 11,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Aufderhar LLC",
+    "description": "Upgradable background definition",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "22:20",
+    "length_hours": 8,
+    "length_minutes": 53
+  },
+  {
+    "subject": "D'Amore and Sons",
+    "description": "Reactive high-level attitude",
+    "location": null,
+    "time_zone": "America/Asuncion",
+    "time_start": "14:10",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Weissnat Inc",
+    "description": "Synchronised scalable knowledge base",
+    "location": "44 Namekagon Pass",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "17:24",
+    "length_hours": 6,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Sipes, Von and Reichel",
+    "description": "Expanded neutral attitude",
+    "location": "3 Montana Plaza",
+    "time_zone": "Europe/Prague",
+    "time_start": "18:07",
+    "length_hours": 12,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Kuhic Group",
+    "description": "Managed object-oriented flexibility",
+    "location": null,
+    "time_zone": "Europe/Belgrade",
+    "time_start": "12:42",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Smith, Goodwin and Nader",
+    "description": "Sharable heuristic archive",
+    "location": "2 Shelley Way",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "17:44",
+    "length_hours": 6,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Waters, Jaskolski and Collier",
+    "description": "Business-focused needs-based encryption",
+    "location": "51 Mosinee Plaza",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "6:42",
+    "length_hours": 12,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Gaylord-Gerlach",
+    "description": "Multi-channelled multi-tasking secured line",
+    "location": "10 Esch Crossing",
+    "time_zone": "Africa/Lagos",
+    "time_start": "11:30",
+    "length_hours": 10,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Koss Inc",
+    "description": "Reduced coherent database",
+    "location": "5 Longview Center",
+    "time_zone": "Asia/Makassar",
+    "time_start": "4:45",
+    "length_hours": 11,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Ebert and Sons",
+    "description": "Expanded stable leverage",
+    "location": "14 Fairfield Center",
+    "time_zone": "Asia/Yerevan",
+    "time_start": "11:43",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kunde, Nitzsche and Schinner",
+    "description": null,
+    "location": "684 Warrior Trail",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "22:07",
+    "length_hours": 6,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Emmerich, Bayer and Kohler",
+    "description": "Horizontal demand-driven access",
+    "location": "6510 Loomis Circle",
+    "time_zone": "America/Chicago",
+    "time_start": "17:04",
+    "length_hours": 11,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Bode LLC",
+    "description": "Polarised holistic matrix",
+    "location": "986 Larry Park",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "12:32",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Johns LLC",
+    "description": "Optional 4th generation success",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "13:38",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schroeder Inc",
+    "description": "Intuitive intermediate hub",
+    "location": "1 Utah Hill",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "22:47",
+    "length_hours": 12,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Klein, Koelpin and Koelpin",
+    "description": "User-friendly bi-directional data-warehouse",
+    "location": "73 Fremont Circle",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "9:08",
+    "length_hours": 6,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Reichert, Murray and Rodriguez",
+    "description": "Polarised stable parallelism",
+    "location": "37384 Anthes Terrace",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:06",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Turner Group",
+    "description": "Grass-roots disintermediate neural-net",
+    "location": "57 Division Park",
+    "time_zone": "Asia/Almaty",
+    "time_start": "18:40",
+    "length_hours": 5,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Howe-Reynolds",
+    "description": "Multi-layered global synergy",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "7:16",
+    "length_hours": 8,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Kiehn-Renner",
+    "description": "Down-sized interactive intranet",
+    "location": "668 Holmberg Alley",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "8:13",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mayer, Ratke and Zulauf",
+    "description": null,
+    "location": "46 Brown Avenue",
+    "time_zone": "Africa/Bamako",
+    "time_start": "7:28",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Emmerich-Bogisich",
+    "description": "Exclusive transitional focus group",
+    "location": null,
+    "time_zone": "Asia/Thimphu",
+    "time_start": "21:55",
+    "length_hours": 11,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Fay, Cassin and Mraz",
+    "description": "Down-sized leading edge matrix",
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "4:41",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Johnston Group",
+    "description": "Exclusive well-modulated function",
+    "location": "79 Green Ridge Parkway",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "4:56",
+    "length_hours": 11,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Price Inc",
+    "description": "Implemented even-keeled framework",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "16:49",
+    "length_hours": 11,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Greenholt, Abernathy and Schumm",
+    "description": null,
+    "location": "13 Village Green Park",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "9:51",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Roberts, Flatley and Waelchi",
+    "description": null,
+    "location": "552 Fallview Drive",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "12:26",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Feil-Rath",
+    "description": "Team-oriented cohesive pricing structure",
+    "location": "73800 Dennis Terrace",
+    "time_zone": "Europe/Prague",
+    "time_start": "13:03",
+    "length_hours": 7,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Hammes LLC",
+    "description": "De-engineered discrete policy",
+    "location": null,
+    "time_zone": "Europe/Tirane",
+    "time_start": "19:36",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Dare, Walter and Bechtelar",
+    "description": null,
+    "location": "0869 Pankratz Center",
+    "time_zone": "America/Montreal",
+    "time_start": "13:12",
+    "length_hours": 12,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Kunze-Treutel",
+    "description": "Fundamental static emulation",
+    "location": "380 Derek Junction",
+    "time_zone": "Indian/Mauritius",
+    "time_start": "16:42",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Smitham, Sipes and Crist",
+    "description": null,
+    "location": "29686 Larry Circle",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "19:58",
+    "length_hours": 10,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Stamm Group",
+    "description": "Polarised directional project",
+    "location": null,
+    "time_zone": "America/Chicago",
+    "time_start": "9:09",
+    "length_hours": 7,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Lehner and Sons",
+    "description": null,
+    "location": "82339 Spohn Terrace",
+    "time_zone": "Europe/Samara",
+    "time_start": "17:17",
+    "length_hours": 4,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Labadie, Cruickshank and Bogan",
+    "description": "Synchronised regional open architecture",
+    "location": "1058 Packers Lane",
+    "time_zone": "Europe/Moscow",
+    "time_start": "21:31",
+    "length_hours": 8,
+    "length_minutes": 17
+  },
+  {
+    "subject": "McGlynn-Collier",
+    "description": null,
+    "location": "3 Fuller Circle",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "20:10",
+    "length_hours": 10,
+    "length_minutes": 18
+  },
+  {
+    "subject": "Ullrich-Spinka",
+    "description": "Innovative leading edge internet solution",
+    "location": "3 Sage Alley",
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "6:11",
+    "length_hours": 4,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Wyman, Cartwright and Wilderman",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "17:22",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kreiger, Jakubowski and Cummings",
+    "description": "Assimilated exuding data-warehouse",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "10:55",
+    "length_hours": 10,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Stiedemann, Waters and Monahan",
+    "description": "Integrated cohesive info-mediaries",
+    "location": "904 Victoria Street",
+    "time_zone": "Europe/Helsinki",
+    "time_start": "19:01",
+    "length_hours": 5,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Fadel, Gerlach and Erdman",
+    "description": null,
+    "location": "946 Debs Circle",
+    "time_zone": "Asia/Harbin",
+    "time_start": "7:24",
+    "length_hours": 4,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Kuhic Inc",
+    "description": null,
+    "location": "3 Main Alley",
+    "time_zone": "Africa/Porto-Novo",
+    "time_start": "13:58",
+    "length_hours": 5,
+    "length_minutes": 37
+  },
+  {
+    "subject": "Zieme-Romaguera",
+    "description": "Fully-configurable next generation protocol",
+    "location": "031 Lighthouse Bay Way",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "8:42",
+    "length_hours": 12,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Spencer Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "21:41",
+    "length_hours": 5,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Jacobs Inc",
+    "description": "Reduced neutral knowledge base",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "4:19",
+    "length_hours": 11,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Rippin, Rath and Beatty",
+    "description": "Profound hybrid service-desk",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "22:41",
+    "length_hours": 4,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Pfeffer-Morissette",
+    "description": "Enterprise-wide composite system engine",
+    "location": "56228 Clove Pass",
+    "time_zone": "America/Jamaica",
+    "time_start": "11:04",
+    "length_hours": 10,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Ondricka-Becker",
+    "description": "Streamlined web-enabled structure",
+    "location": null,
+    "time_zone": "Asia/Damascus",
+    "time_start": "15:00",
+    "length_hours": 10,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Bechtelar, Ledner and Padberg",
+    "description": null,
+    "location": "39461 Sheridan Drive",
+    "time_zone": "Asia/Manila",
+    "time_start": "8:23",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Brakus-Beatty",
+    "description": "Self-enabling cohesive help-desk",
+    "location": "6 Steensland Junction",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "18:40",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Beahan Inc",
+    "description": "Down-sized cohesive parallelism",
+    "location": "136 4th Place",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "15:15",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Block, Frami and Price",
+    "description": "Inverse context-sensitive structure",
+    "location": "29 Johnson Street",
+    "time_zone": "Europe/Berlin",
+    "time_start": "17:06",
+    "length_hours": 7,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Runolfsson LLC",
+    "description": "Operative 24 hour migration",
+    "location": "425 Maple Wood Way",
+    "time_zone": "Asia/Ashgabat",
+    "time_start": "10:55",
+    "length_hours": 8,
+    "length_minutes": 37
+  },
+  {
+    "subject": "Kuphal, Marvin and Dickinson",
+    "description": "Business-focused needs-based benchmark",
+    "location": "7774 Myrtle Plaza",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:05",
+    "length_hours": 4,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Barton-Schuppe",
+    "description": null,
+    "location": "22 Holmberg Court",
+    "time_zone": "Indian/Antananarivo",
+    "time_start": "20:35",
+    "length_hours": 11,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Turner, Nicolas and Ferry",
+    "description": "Enterprise-wide holistic orchestration",
+    "location": "31402 Charing Cross Hill",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:44",
+    "length_hours": 10,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Crist Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Africa/Dar_es_Salaam",
+    "time_start": "13:44",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Haag, Gulgowski and Fadel",
+    "description": "Progressive leading edge implementation",
+    "location": "836 Pearson Drive",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "8:12",
+    "length_hours": 4,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Hintz Group",
+    "description": null,
+    "location": "2233 Del Sol Trail",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "9:50",
+    "length_hours": 8,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Friesen Inc",
+    "description": "Networked multimedia adapter",
+    "location": "36 Karstens Alley",
+    "time_zone": "America/Chicago",
+    "time_start": "6:52",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Feest Group",
+    "description": "Exclusive 4th generation forecast",
+    "location": "4 Veith Pass",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "19:00",
+    "length_hours": 12,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Lang-Kohler",
+    "description": null,
+    "location": "679 High Crossing Plaza",
+    "time_zone": "Asia/Seoul",
+    "time_start": "5:21",
+    "length_hours": 10,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Kilback Group",
+    "description": null,
+    "location": "5 Carey Road",
+    "time_zone": "America/Caracas",
+    "time_start": "22:32",
+    "length_hours": 10,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Weimann, Senger and Deckow",
+    "description": null,
+    "location": "8341 Arkansas Road",
+    "time_zone": "Europe/Amsterdam",
+    "time_start": "18:26",
+    "length_hours": 5,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Hickle Inc",
+    "description": "Advanced stable collaboration",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "14:50",
+    "length_hours": 9,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Ebert and Sons",
+    "description": "Balanced didactic task-force",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "22:42",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Treutel LLC",
+    "description": "Public-key background hardware",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "15:28",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Langosh, Swift and Bode",
+    "description": null,
+    "location": "41 Autumn Leaf Crossing",
+    "time_zone": "Asia/Almaty",
+    "time_start": "11:46",
+    "length_hours": 7,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Leffler-Kertzmann",
+    "description": null,
+    "location": "6 Eggendart Trail",
+    "time_zone": "America/Edmonton",
+    "time_start": "22:41",
+    "length_hours": 12,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Flatley, Stanton and Ryan",
+    "description": "Face to face client-server model",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "22:22",
+    "length_hours": 5,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Ferry LLC",
+    "description": "Profit-focused disintermediate product",
+    "location": "8739 Larry Park",
+    "time_zone": "America/Lima",
+    "time_start": "15:54",
+    "length_hours": 8,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Hettinger Inc",
+    "description": "Operative 24/7 utilisation",
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "20:54",
+    "length_hours": 6,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Predovic, Rowe and O'Hara",
+    "description": "Configurable actuating productivity",
+    "location": "60 Towne Street",
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "16:59",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "White, Kirlin and Hansen",
+    "description": "Secured eco-centric synergy",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "18:34",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wisozk-Breitenberg",
+    "description": "Networked hybrid project",
+    "location": "5663 Sachtjen Park",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "9:42",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Barton Inc",
+    "description": "Front-line 3rd generation system engine",
+    "location": null,
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "14:19",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ratke, Adams and Maggio",
+    "description": "Up-sized intermediate algorithm",
+    "location": "267 Glendale Junction",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "6:51",
+    "length_hours": 9,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Frami-Heidenreich",
+    "description": "Optimized radical capability",
+    "location": "4 Kipling Drive",
+    "time_zone": "America/Argentina/Cordoba",
+    "time_start": "5:43",
+    "length_hours": 6,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Jast, Borer and Hermiston",
+    "description": null,
+    "location": "95 Crescent Oaks Trail",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "14:23",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Durgan, Hermiston and Bauch",
+    "description": "Seamless leading edge model",
+    "location": "45749 Sachs Point",
+    "time_zone": "America/Santiago",
+    "time_start": "9:33",
+    "length_hours": 12,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Dibbert Group",
+    "description": null,
+    "location": "19 Rusk Trail",
+    "time_zone": "Asia/Tashkent",
+    "time_start": "12:36",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kassulke-O'Hara",
+    "description": "Digitized needs-based forecast",
+    "location": "50 Butterfield Drive",
+    "time_zone": "Europe/Moscow",
+    "time_start": "14:41",
+    "length_hours": 6,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Kunze LLC",
+    "description": "Advanced system-worthy installation",
+    "location": "54636 Division Park",
+    "time_zone": "Europe/Moscow",
+    "time_start": "16:57",
+    "length_hours": 10,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Krajcik, Lueilwitz and Carter",
+    "description": "Enterprise-wide empowering support",
+    "location": "829 Lindbergh Lane",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "8:16",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schmitt-Braun",
+    "description": "Organized intangible product",
+    "location": "89597 Bunting Circle",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "21:16",
+    "length_hours": 7,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Greenholt and Sons",
+    "description": "Profound tertiary budgetary management",
+    "location": null,
+    "time_zone": "America/Bogota",
+    "time_start": "11:09",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "McClure Group",
+    "description": "Self-enabling intermediate hardware",
+    "location": "5790 Anthes Court",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:02",
+    "length_hours": 9,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Kautzer Inc",
+    "description": null,
+    "location": "44 Golf Park",
+    "time_zone": "America/Bogota",
+    "time_start": "8:12",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schroeder LLC",
+    "description": "Phased asynchronous process improvement",
+    "location": "3169 Gina Alley",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "15:31",
+    "length_hours": 12,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Kemmer, Purdy and Murray",
+    "description": "Synergistic client-driven leverage",
+    "location": "528 Holmberg Junction",
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "9:20",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Purdy-Sawayn",
+    "description": null,
+    "location": "61479 South Terrace",
+    "time_zone": "America/Bogota",
+    "time_start": "22:00",
+    "length_hours": 9,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Bergstrom, Bradtke and Volkman",
+    "description": null,
+    "location": "32 Kings Point",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "8:06",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hudson-Ritchie",
+    "description": "Decentralized context-sensitive monitoring",
+    "location": "82 Dennis Pass",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "6:11",
+    "length_hours": 12,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Conn, Swift and Mohr",
+    "description": "Universal real-time success",
+    "location": null,
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "10:12",
+    "length_hours": 6,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Gorczany-Fadel",
+    "description": null,
+    "location": "6342 Artisan Terrace",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:47",
+    "length_hours": 4,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Hermiston-Strosin",
+    "description": "Adaptive national success",
+    "location": "81 Scofield Crossing",
+    "time_zone": "Asia/Makassar",
+    "time_start": "15:16",
+    "length_hours": 5,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Ratke-Hyatt",
+    "description": "Monitored homogeneous matrix",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:09",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Jenkins Group",
+    "description": null,
+    "location": "39 Homewood Circle",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "8:23",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Considine-Kautzer",
+    "description": "Cloned well-modulated contingency",
+    "location": "450 Orin Lane",
+    "time_zone": "Europe/Paris",
+    "time_start": "17:33",
+    "length_hours": 8,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Welch Inc",
+    "description": null,
+    "location": "1943 Grover Court",
+    "time_zone": "Asia/Yekaterinburg",
+    "time_start": "13:15",
+    "length_hours": 10,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Wiegand LLC",
+    "description": "Cloned holistic encryption",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "14:48",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wintheiser-King",
+    "description": null,
+    "location": "37 Brentwood Street",
+    "time_zone": "Asia/Kuala_Lumpur",
+    "time_start": "5:11",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Rippin LLC",
+    "description": "Team-oriented 4th generation solution",
+    "location": "6 Dawn Court",
+    "time_zone": "America/Argentina/Jujuy",
+    "time_start": "21:44",
+    "length_hours": 11,
+    "length_minutes": 20
+  },
+  {
+    "subject": "O'Hara-Purdy",
+    "description": null,
+    "location": "1 5th Way",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "20:09",
+    "length_hours": 7,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Maggio and Sons",
+    "description": "Front-line full-range implementation",
+    "location": "1 Merry Lane",
+    "time_zone": "Asia/Aden",
+    "time_start": "22:22",
+    "length_hours": 6,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Green Group",
+    "description": null,
+    "location": "854 Buell Pass",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "18:40",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Sauer Inc",
+    "description": "Synergized user-facing hierarchy",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "12:11",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bartoletti, Hilpert and Lemke",
+    "description": "Intuitive actuating protocol",
+    "location": "79074 Onsgard Way",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "16:54",
+    "length_hours": 10,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Mosciski, Goyette and Cassin",
+    "description": null,
+    "location": "13 Transport Pass",
+    "time_zone": "Asia/Irkutsk",
+    "time_start": "9:21",
+    "length_hours": 7,
+    "length_minutes": 47
+  },
+  {
+    "subject": "McKenzie and Sons",
+    "description": null,
+    "location": "15828 Fairview Center",
+    "time_zone": "Europe/Paris",
+    "time_start": "8:42",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Torp-Harvey",
+    "description": "Configurable human-resource hierarchy",
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "10:31",
+    "length_hours": 7,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Morissette-Daniel",
+    "description": "Configurable optimal moderator",
+    "location": "0456 Schlimgen Hill",
+    "time_zone": "Asia/Harbin",
+    "time_start": "5:11",
+    "length_hours": 7,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Conroy-Wolf",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Chicago",
+    "time_start": "11:56",
+    "length_hours": 11,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Konopelski, Crooks and Hauck",
+    "description": "Distributed background website",
+    "location": "5183 Luster Terrace",
+    "time_zone": "Europe/Madrid",
+    "time_start": "22:39",
+    "length_hours": 8,
+    "length_minutes": 44
+  },
+  {
+    "subject": "Walter-Rosenbaum",
+    "description": null,
+    "location": "13385 Russell Center",
+    "time_zone": "Asia/Makassar",
+    "time_start": "8:28",
+    "length_hours": 4,
+    "length_minutes": 18
+  },
+  {
+    "subject": "Conroy, Sipes and Stiedemann",
+    "description": "Distributed executive attitude",
+    "location": "04019 Coleman Lane",
+    "time_zone": "Asia/Urumqi",
+    "time_start": "18:05",
+    "length_hours": 6,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Lakin Group",
+    "description": "Reduced incremental paradigm",
+    "location": "52 Harbort Park",
+    "time_zone": "Asia/Krasnoyarsk",
+    "time_start": "14:43",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Parker Inc",
+    "description": null,
+    "location": "5776 Bobwhite Point",
+    "time_zone": "Asia/Harbin",
+    "time_start": "10:14",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Boyle, Windler and Orn",
+    "description": "Diverse exuding benchmark",
+    "location": "02795 Holy Cross Terrace",
+    "time_zone": "Asia/Harbin",
+    "time_start": "4:34",
+    "length_hours": 6,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Leannon, Morar and Gaylord",
+    "description": "User-friendly next generation superstructure",
+    "location": "425 Menomonie Circle",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "15:29",
+    "length_hours": 12,
+    "length_minutes": 15
+  },
+  {
+    "subject": "McDermott, Johnson and Senger",
+    "description": "Vision-oriented mobile website",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "13:52",
+    "length_hours": 8,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Koch, Mohr and Lehner",
+    "description": null,
+    "location": "9 Lyons Hill",
+    "time_zone": "Europe/Zagreb",
+    "time_start": "7:50",
+    "length_hours": 4,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Borer, Rogahn and Nolan",
+    "description": "Realigned responsive structure",
+    "location": "8640 Riverside Park",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "13:48",
+    "length_hours": 6,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Tillman-Price",
+    "description": null,
+    "location": "8385 Jackson Junction",
+    "time_zone": "Europe/Moscow",
+    "time_start": "9:21",
+    "length_hours": 7,
+    "length_minutes": 44
+  },
+  {
+    "subject": "Schumm, Nitzsche and Rodriguez",
+    "description": null,
+    "location": "26 Upham Place",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "4:45",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ward LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "5:37",
+    "length_hours": 11,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Ullrich Group",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Argentina/Cordoba",
+    "time_start": "17:50",
+    "length_hours": 5,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Tromp, Skiles and Gleichner",
+    "description": "Decentralized user-facing matrix",
+    "location": "43945 Fairview Park",
+    "time_zone": "Europe/Zaporozhye",
+    "time_start": "5:27",
+    "length_hours": 7,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Rodriguez-Hilll",
+    "description": "Customer-focused attitude-oriented encryption",
+    "location": "4050 Nelson Drive",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "15:15",
+    "length_hours": 5,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Littel, Ward and Robel",
+    "description": "Profit-focused bandwidth-monitored artificial intelligence",
+    "location": "988 Hayes Pass",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "13:34",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Jones-Lockman",
+    "description": "Reduced methodical Graphic Interface",
+    "location": "435 Dwight Hill",
+    "time_zone": "America/Santiago",
+    "time_start": "14:35",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Larkin-Rau",
+    "description": null,
+    "location": "53998 Village Road",
+    "time_zone": "Indian/Comoro",
+    "time_start": "9:14",
+    "length_hours": 4,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Little-Muller",
+    "description": "Persistent secondary portal",
+    "location": null,
+    "time_zone": "Europe/Helsinki",
+    "time_start": "15:10",
+    "length_hours": 9,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Ernser, Huel and Fadel",
+    "description": "Adaptive foreground paradigm",
+    "location": "70066 Continental Lane",
+    "time_zone": "Asia/Kathmandu",
+    "time_start": "13:02",
+    "length_hours": 7,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Glover, Ondricka and Balistreri",
+    "description": "Expanded non-volatile Graphical User Interface",
+    "location": "31502 Little Fleur Street",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "17:30",
+    "length_hours": 11,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Stokes-Boehm",
+    "description": null,
+    "location": "0 Moulton Junction",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "14:22",
+    "length_hours": 9,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Purdy LLC",
+    "description": null,
+    "location": "4 Pennsylvania Hill",
+    "time_zone": "Pacific/Auckland",
+    "time_start": "10:39",
+    "length_hours": 9,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Wiegand Inc",
+    "description": null,
+    "location": "1 Goodland Alley",
+    "time_zone": "Europe/Moscow",
+    "time_start": "8:40",
+    "length_hours": 11,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Reinger, Weber and Friesen",
+    "description": "Persevering multi-state standardization",
+    "location": "99 Badeau Drive",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "11:43",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bechtelar, Hudson and Wunsch",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "11:01",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schuster-Monahan",
+    "description": "Managed value-added ability",
+    "location": null,
+    "time_zone": "Europe/Prague",
+    "time_start": "16:57",
+    "length_hours": 5,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Hegmann, Lindgren and Hettinger",
+    "description": null,
+    "location": "507 Knutson Parkway",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "11:06",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Emmerich, Hills and Howell",
+    "description": "Face to face well-modulated flexibility",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "16:04",
+    "length_hours": 7,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Hoeger, Cole and Grady",
+    "description": "Multi-tiered tertiary collaboration",
+    "location": "2 Hooker Avenue",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "13:00",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Stamm, Monahan and Rolfson",
+    "description": null,
+    "location": "61009 Sycamore Court",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "13:08",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Turcotte, Pfannerstill and Goldner",
+    "description": "Re-engineered systematic pricing structure",
+    "location": "36057 Spohn Parkway",
+    "time_zone": "America/Mexico_City",
+    "time_start": "17:58",
+    "length_hours": 5,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Mante-Dickens",
+    "description": "Open-architected secondary concept",
+    "location": "3 Barby Park",
+    "time_zone": "Europe/Prague",
+    "time_start": "22:34",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Becker-Adams",
+    "description": "Progressive didactic attitude",
+    "location": "0 Stuart Avenue",
+    "time_zone": "America/Havana",
+    "time_start": "12:04",
+    "length_hours": 6,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Ferry, Prosacco and Lindgren",
+    "description": "Diverse value-added interface",
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "4:03",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Roob Inc",
+    "description": null,
+    "location": "6207 Longview Pass",
+    "time_zone": "Europe/Paris",
+    "time_start": "11:08",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "McDermott, Graham and Effertz",
+    "description": null,
+    "location": "69 Parkside Point",
+    "time_zone": "Asia/Harbin",
+    "time_start": "17:31",
+    "length_hours": 5,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Beer-Lueilwitz",
+    "description": "Organized zero tolerance protocol",
+    "location": null,
+    "time_zone": "Europe/Athens",
+    "time_start": "5:43",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Jakubowski, Rolfson and Mueller",
+    "description": "Integrated exuding approach",
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "10:44",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Feest Inc",
+    "description": null,
+    "location": "33372 Del Sol Pass",
+    "time_zone": "America/Denver",
+    "time_start": "9:51",
+    "length_hours": 10,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Watsica LLC",
+    "description": "Pre-emptive solution-oriented portal",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "12:46",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Crona-Aufderhar",
+    "description": "Synergistic intangible adapter",
+    "location": "6623 Fordem Street",
+    "time_zone": "Europe/Ljubljana",
+    "time_start": "5:34",
+    "length_hours": 5,
+    "length_minutes": 37
+  },
+  {
+    "subject": "Mills-Bode",
+    "description": "Assimilated grid-enabled parallelism",
+    "location": "16 Rutledge Plaza",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:34",
+    "length_hours": 7,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Yost and Sons",
+    "description": "Re-engineered upward-trending product",
+    "location": null,
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "4:41",
+    "length_hours": 12,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Reilly Inc",
+    "description": "Visionary leading edge time-frame",
+    "location": "180 Carey Junction",
+    "time_zone": "America/Toronto",
+    "time_start": "15:35",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kreiger, Reichert and Huel",
+    "description": "Stand-alone bi-directional collaboration",
+    "location": "8 Boyd Point",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "21:41",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Block, Pfeffer and Koepp",
+    "description": "Virtual maximized product",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "20:36",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Rutherford-Raynor",
+    "description": "Fundamental optimizing application",
+    "location": null,
+    "time_zone": "America/Nassau",
+    "time_start": "12:10",
+    "length_hours": 9,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Kautzer, Wolf and Collins",
+    "description": "Reactive 24/7 attitude",
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "6:47",
+    "length_hours": 6,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Reichert, Bahringer and Koss",
+    "description": null,
+    "location": "1 Buhler Road",
+    "time_zone": "Europe/Prague",
+    "time_start": "19:46",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Stoltenberg, Hickle and Hauck",
+    "description": null,
+    "location": "62121 Eliot Drive",
+    "time_zone": "Europe/Moscow",
+    "time_start": "22:34",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Glover-Cassin",
+    "description": "Upgradable 3rd generation alliance",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "19:36",
+    "length_hours": 4,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Morar Inc",
+    "description": "Organic logistical toolset",
+    "location": null,
+    "time_zone": "Africa/Bamako",
+    "time_start": "13:47",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Morissette-Lebsack",
+    "description": null,
+    "location": "7554 Drewry Alley",
+    "time_zone": "Asia/Makassar",
+    "time_start": "9:59",
+    "length_hours": 4,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Upton LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Africa/Dar_es_Salaam",
+    "time_start": "18:02",
+    "length_hours": 5,
+    "length_minutes": 54
+  },
+  {
+    "subject": "Jast, Balistreri and Kris",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "12:06",
+    "length_hours": 12,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Bode-Breitenberg",
+    "description": null,
+    "location": "43560 Village Green Plaza",
+    "time_zone": "Asia/Manila",
+    "time_start": "20:40",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Vandervort-Wyman",
+    "description": "Customizable user-facing functionalities",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "22:49",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "McKenzie, Gaylord and Kerluke",
+    "description": "Fully-configurable secondary budgetary management",
+    "location": "7 Mccormick Parkway",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:41",
+    "length_hours": 5,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Green-Yost",
+    "description": "Focused 24 hour utilisation",
+    "location": "8 Quincy Park",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "9:30",
+    "length_hours": 10,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Abernathy and Sons",
+    "description": null,
+    "location": "2 Cascade Street",
+    "time_zone": "America/Bogota",
+    "time_start": "8:51",
+    "length_hours": 4,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Prohaska LLC",
+    "description": "Progressive 4th generation monitoring",
+    "location": "656 Norway Maple Plaza",
+    "time_zone": "America/Bogota",
+    "time_start": "15:40",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kulas-Reynolds",
+    "description": "Reactive multi-state installation",
+    "location": "46384 Merry Hill",
+    "time_zone": "Europe/Paris",
+    "time_start": "14:51",
+    "length_hours": 5,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Brakus LLC",
+    "description": "Function-based contextually-based open system",
+    "location": null,
+    "time_zone": "America/Moncton",
+    "time_start": "4:49",
+    "length_hours": 6,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Turner-Goyette",
+    "description": "Phased responsive customer loyalty",
+    "location": null,
+    "time_zone": "Asia/Damascus",
+    "time_start": "7:01",
+    "length_hours": 12,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Mraz, Daniel and Blanda",
+    "description": "Future-proofed reciprocal groupware",
+    "location": "68734 Homewood Court",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "5:57",
+    "length_hours": 8,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Boyle-Strosin",
+    "description": "Cross-platform executive archive",
+    "location": "8 Rockefeller Drive",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "14:54",
+    "length_hours": 4,
+    "length_minutes": 54
+  },
+  {
+    "subject": "Kassulke, Keebler and Walter",
+    "description": "Proactive zero administration algorithm",
+    "location": "4811 Jenna Way",
+    "time_zone": "Africa/Maputo",
+    "time_start": "17:15",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Boyer, Lesch and Bauch",
+    "description": "Innovative secondary analyzer",
+    "location": "1 Manley Alley",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "5:23",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "D'Amore-Hackett",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "22:22",
+    "length_hours": 10,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Maggio LLC",
+    "description": "Enterprise-wide eco-centric ability",
+    "location": "689 Pine View Street",
+    "time_zone": "Europe/Moscow",
+    "time_start": "19:27",
+    "length_hours": 8,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Wehner-MacGyver",
+    "description": "Optional exuding function",
+    "location": "24790 Bluejay Center",
+    "time_zone": "Europe/Moscow",
+    "time_start": "10:51",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Grant-Johns",
+    "description": "Versatile real-time capacity",
+    "location": "98571 Sundown Lane",
+    "time_zone": "Europe/Athens",
+    "time_start": "16:34",
+    "length_hours": 5,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Trantow, Johnston and Stokes",
+    "description": null,
+    "location": "26904 Reindahl Terrace",
+    "time_zone": "Europe/Moscow",
+    "time_start": "12:14",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Keeling, Deckow and Williamson",
+    "description": "Persistent attitude-oriented concept",
+    "location": "5 Bluestem Pass",
+    "time_zone": "Africa/Nairobi",
+    "time_start": "10:05",
+    "length_hours": 4,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Jaskolski, Yundt and Vandervort",
+    "description": "Organic client-server product",
+    "location": "779 Sachtjen Street",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "10:18",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mann Group",
+    "description": null,
+    "location": "7 Hanson Drive",
+    "time_zone": "Africa/Kampala",
+    "time_start": "15:57",
+    "length_hours": 4,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Wiegand-Mante",
+    "description": "Focused client-driven pricing structure",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "4:51",
+    "length_hours": 8,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Kuhn LLC",
+    "description": null,
+    "location": "19222 Northfield Crossing",
+    "time_zone": "Asia/Qyzylorda",
+    "time_start": "21:07",
+    "length_hours": 10,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Reichel-Kuhn",
+    "description": "Multi-layered 24/7 adapter",
+    "location": null,
+    "time_zone": "Europe/Tirane",
+    "time_start": "18:57",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Larkin Group",
+    "description": "Persevering intermediate benchmark",
+    "location": null,
+    "time_zone": "Asia/Krasnoyarsk",
+    "time_start": "10:32",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mraz-Mann",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Montreal",
+    "time_start": "10:57",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hartmann Inc",
+    "description": "Robust background archive",
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "7:30",
+    "length_hours": 6,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Wisoky, Quigley and Osinski",
+    "description": "Inverse modular synergy",
+    "location": "5630 Basil Crossing",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "11:07",
+    "length_hours": 5,
+    "length_minutes": 54
+  },
+  {
+    "subject": "Lockman LLC",
+    "description": null,
+    "location": "61829 Dakota Crossing",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:04",
+    "length_hours": 5,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Dibbert-Breitenberg",
+    "description": "Integrated client-driven adapter",
+    "location": "23 Superior Road",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:48",
+    "length_hours": 4,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Weissnat, Wisozk and Roob",
+    "description": "Object-based impactful policy",
+    "location": "3 Amoth Circle",
+    "time_zone": "Africa/Addis_Ababa",
+    "time_start": "21:54",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bruen LLC",
+    "description": "Fully-configurable asynchronous definition",
+    "location": null,
+    "time_zone": "Asia/Baku",
+    "time_start": "9:57",
+    "length_hours": 4,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Tillman Group",
+    "description": "Virtual multi-tasking encryption",
+    "location": "15 Esker Junction",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "12:43",
+    "length_hours": 8,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Nienow, Lueilwitz and Stehr",
+    "description": "Pre-emptive optimizing installation",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "21:27",
+    "length_hours": 9,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Eichmann, Little and Tremblay",
+    "description": null,
+    "location": null,
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "20:05",
+    "length_hours": 10,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Leuschke, Gorczany and McKenzie",
+    "description": "Digitized non-volatile internet solution",
+    "location": null,
+    "time_zone": "Europe/Athens",
+    "time_start": "9:03",
+    "length_hours": 8,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Runte, Mitchell and Carroll",
+    "description": "Re-contextualized explicit archive",
+    "location": "09240 Katie Junction",
+    "time_zone": "Europe/Athens",
+    "time_start": "16:29",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Cartwright Group",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Bahia",
+    "time_start": "6:14",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Maggio and Sons",
+    "description": "De-engineered multi-tasking artificial intelligence",
+    "location": "5 Wayridge Junction",
+    "time_zone": "Europe/Prague",
+    "time_start": "22:18",
+    "length_hours": 4,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Gleichner Inc",
+    "description": "Ergonomic solution-oriented open architecture",
+    "location": "06 Fairfield Hill",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "21:23",
+    "length_hours": 11,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Abshire and Sons",
+    "description": null,
+    "location": "22 Mandrake Court",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "12:13",
+    "length_hours": 5,
+    "length_minutes": 18
+  },
+  {
+    "subject": "Nienow Group",
+    "description": "Devolved fault-tolerant software",
+    "location": null,
+    "time_zone": "Asia/Tokyo",
+    "time_start": "22:05",
+    "length_hours": 6,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Cormier LLC",
+    "description": "Polarised tangible focus group",
+    "location": "51981 Talmadge Court",
+    "time_zone": "Europe/Paris",
+    "time_start": "13:10",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gleichner, Padberg and Wiegand",
+    "description": null,
+    "location": "3 Gateway Way",
+    "time_zone": "America/Port-au-Prince",
+    "time_start": "6:27",
+    "length_hours": 12,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Zboncak Inc",
+    "description": "Multi-layered context-sensitive matrices",
+    "location": "809 Meadow Vale Avenue",
+    "time_zone": "America/New_York",
+    "time_start": "8:01",
+    "length_hours": 10,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Little-Terry",
+    "description": "Extended dedicated definition",
+    "location": "14001 Rieder Way",
+    "time_zone": "Asia/Vladivostok",
+    "time_start": "12:38",
+    "length_hours": 11,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Nader-Ernser",
+    "description": "Mandatory mission-critical throughput",
+    "location": "47 Kingsford Lane",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "20:54",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lueilwitz, Bartell and Wisoky",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Yekaterinburg",
+    "time_start": "7:57",
+    "length_hours": 12,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Harris and Sons",
+    "description": "Vision-oriented human-resource collaboration",
+    "location": "89 Orin Junction",
+    "time_zone": "Europe/Istanbul",
+    "time_start": "14:13",
+    "length_hours": 11,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Bergnaum and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "7:55",
+    "length_hours": 7,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Carter, Becker and Schuppe",
+    "description": "Horizontal optimal pricing structure",
+    "location": "604 Montana Drive",
+    "time_zone": "Europe/Paris",
+    "time_start": "7:03",
+    "length_hours": 8,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Marquardt Group",
+    "description": null,
+    "location": "088 Nova Junction",
+    "time_zone": "America/Mexico_City",
+    "time_start": "10:37",
+    "length_hours": 10,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Kautzer-Bogan",
+    "description": "Horizontal contextually-based functionalities",
+    "location": "54 Donald Street",
+    "time_zone": "America/Guatemala",
+    "time_start": "5:40",
+    "length_hours": 10,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Sauer Inc",
+    "description": "Open-source optimal synergy",
+    "location": "4612 Nelson Center",
+    "time_zone": "America/New_York",
+    "time_start": "11:17",
+    "length_hours": 5,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Jacobs and Sons",
+    "description": "Realigned full-range infrastructure",
+    "location": "7018 Farmco Alley",
+    "time_zone": "Asia/Makassar",
+    "time_start": "5:59",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hegmann and Sons",
+    "description": "User-centric empowering support",
+    "location": null,
+    "time_zone": "Asia/Seoul",
+    "time_start": "20:56",
+    "length_hours": 10,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Anderson-Aufderhar",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "12:09",
+    "length_hours": 11,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Toy, Wyman and Weimann",
+    "description": "Open-source 6th generation customer loyalty",
+    "location": "65 Manley Way",
+    "time_zone": "Europe/Moscow",
+    "time_start": "18:41",
+    "length_hours": 10,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Koss LLC",
+    "description": "Organic grid-enabled moderator",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "20:21",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Monahan, Kunde and Douglas",
+    "description": "Decentralized disintermediate algorithm",
+    "location": "149 Dayton Street",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:43",
+    "length_hours": 11,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Howell-Prohaska",
+    "description": "Innovative discrete hub",
+    "location": "18357 Badeau Crossing",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "20:42",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Marquardt-Homenick",
+    "description": "Managed systematic encryption",
+    "location": "040 Meadow Vale Road",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "7:39",
+    "length_hours": 10,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Runolfsson-Dicki",
+    "description": "Self-enabling hybrid parallelism",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "17:08",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schmitt, Krajcik and Kunze",
+    "description": null,
+    "location": "3829 Esker Alley",
+    "time_zone": "America/Santo_Domingo",
+    "time_start": "16:55",
+    "length_hours": 6,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Boehm and Sons",
+    "description": null,
+    "location": "788 Ohio Court",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "6:57",
+    "length_hours": 4,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Littel LLC",
+    "description": "Optimized reciprocal challenge",
+    "location": null,
+    "time_zone": "Europe/Zaporozhye",
+    "time_start": "17:15",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "McClure-Wilkinson",
+    "description": "Visionary neutral product",
+    "location": "45 Bultman Lane",
+    "time_zone": "Asia/Yekaterinburg",
+    "time_start": "4:29",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Sawayn, Paucek and Collier",
+    "description": "Cloned local initiative",
+    "location": "4754 Lunder Street",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "12:13",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Adams LLC",
+    "description": "Expanded bottom-line analyzer",
+    "location": null,
+    "time_zone": "America/Guatemala",
+    "time_start": "22:19",
+    "length_hours": 4,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Green-Lueilwitz",
+    "description": "Configurable solution-oriented capacity",
+    "location": "81 Karstens Avenue",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "22:03",
+    "length_hours": 8,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Schneider and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "America/La_Paz",
+    "time_start": "21:25",
+    "length_hours": 8,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Collins, O'Hara and Klein",
+    "description": null,
+    "location": "01458 Banding Point",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "9:49",
+    "length_hours": 10,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Jenkins, Goodwin and Durgan",
+    "description": "Inverse systemic website",
+    "location": "68809 Springview Street",
+    "time_zone": "Asia/Yakutsk",
+    "time_start": "20:24",
+    "length_hours": 5,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Anderson, Morissette and Dare",
+    "description": null,
+    "location": "49754 Raven Hill",
+    "time_zone": "Asia/Baghdad",
+    "time_start": "22:07",
+    "length_hours": 12,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Lockman-Dickens",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "7:25",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kuhn, Runte and Wiegand",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "13:53",
+    "length_hours": 9,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Lubowitz Group",
+    "description": "Open-architected non-volatile array",
+    "location": null,
+    "time_zone": "Asia/Tashkent",
+    "time_start": "17:37",
+    "length_hours": 6,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Bernier LLC",
+    "description": "Assimilated stable task-force",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "21:24",
+    "length_hours": 4,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Pfeffer Inc",
+    "description": "Exclusive multimedia interface",
+    "location": "408 Hayes Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "20:47",
+    "length_hours": 4,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Kris-Zulauf",
+    "description": "User-friendly content-based implementation",
+    "location": "59 Macpherson Place",
+    "time_zone": "Asia/Manila",
+    "time_start": "14:41",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schulist Inc",
+    "description": "Customizable directional infrastructure",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "9:57",
+    "length_hours": 5,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Ullrich Group",
+    "description": "Assimilated motivating benchmark",
+    "location": null,
+    "time_zone": "Pacific/Pago_Pago",
+    "time_start": "14:48",
+    "length_hours": 7,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Schiller, Boehm and Goldner",
+    "description": "Cross-group methodical open architecture",
+    "location": "5 Bluejay Lane",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "15:15",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Marks, Labadie and Lowe",
+    "description": "Total empowering process improvement",
+    "location": "69382 Novick Crossing",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "10:04",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Price-Feest",
+    "description": "Diverse optimal portal",
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "12:31",
+    "length_hours": 4,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Rippin and Sons",
+    "description": "Persistent maximized parallelism",
+    "location": "998 Swallow Lane",
+    "time_zone": "Asia/Makassar",
+    "time_start": "18:54",
+    "length_hours": 9,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Boyer, Bergstrom and Rolfson",
+    "description": "Streamlined multi-state flexibility",
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "17:07",
+    "length_hours": 8,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Hegmann-Gutkowski",
+    "description": "Right-sized 6th generation focus group",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "11:57",
+    "length_hours": 10,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Littel, Champlin and Ebert",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "18:04",
+    "length_hours": 5,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Denesik-Conroy",
+    "description": "Optional zero defect help-desk",
+    "location": "11737 Mallory Circle",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:56",
+    "length_hours": 7,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Rohan Inc",
+    "description": "Monitored modular policy",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "11:56",
+    "length_hours": 7,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Rodriguez, Jast and Bayer",
+    "description": "Configurable full-range info-mediaries",
+    "location": "81845 Summerview Court",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "20:18",
+    "length_hours": 8,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Schuster, Crist and Balistreri",
+    "description": null,
+    "location": "7839 Charing Cross Point",
+    "time_zone": "Europe/Sofia",
+    "time_start": "4:29",
+    "length_hours": 7,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Heaney Inc",
+    "description": "Multi-channelled full-range installation",
+    "location": "3989 Loeprich Crossing",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "12:28",
+    "length_hours": 9,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Herzog-Stark",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Seoul",
+    "time_start": "9:21",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wilkinson-Sauer",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "10:18",
+    "length_hours": 10,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Considine, Nienow and Cronin",
+    "description": "Intuitive asynchronous archive",
+    "location": "048 Tennessee Point",
+    "time_zone": "America/Tegucigalpa",
+    "time_start": "18:17",
+    "length_hours": 6,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Kemmer-Schultz",
+    "description": "Fundamental encompassing knowledge base",
+    "location": "02711 Arkansas Hill",
+    "time_zone": "Europe/Athens",
+    "time_start": "18:32",
+    "length_hours": 4,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Wyman-Parker",
+    "description": "Decentralized fault-tolerant methodology",
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "14:22",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bosco, Raynor and Boehm",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Bishkek",
+    "time_start": "22:05",
+    "length_hours": 5,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Larkin, Leffler and Reichel",
+    "description": null,
+    "location": null,
+    "time_zone": "Africa/Maseru",
+    "time_start": "16:37",
+    "length_hours": 7,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Stroman, Johnson and Goyette",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Phoenix",
+    "time_start": "4:36",
+    "length_hours": 7,
+    "length_minutes": 26
+  },
+  {
+    "subject": "O'Hara, Hackett and Hauck",
+    "description": "Vision-oriented impactful strategy",
+    "location": null,
+    "time_zone": "Europe/Volgograd",
+    "time_start": "8:57",
+    "length_hours": 7,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Keebler LLC",
+    "description": "Self-enabling foreground data-warehouse",
+    "location": "213 Debra Plaza",
+    "time_zone": "America/Lima",
+    "time_start": "21:09",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Cruickshank-Grady",
+    "description": "Switchable multi-state knowledge user",
+    "location": "40685 Daystar Pass",
+    "time_zone": "Asia/Manila",
+    "time_start": "9:34",
+    "length_hours": 8,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Schoen Group",
+    "description": "Versatile methodical benchmark",
+    "location": "8385 Tony Plaza",
+    "time_zone": "Asia/Taipei",
+    "time_start": "4:30",
+    "length_hours": 11,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Botsford Inc",
+    "description": "Object-based radical alliance",
+    "location": "0847 Bay Street",
+    "time_zone": "Europe/Moscow",
+    "time_start": "9:40",
+    "length_hours": 5,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Bosco-Metz",
+    "description": "User-centric maximized project",
+    "location": "95 Jenna Place",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "13:49",
+    "length_hours": 4,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Collins LLC",
+    "description": "Customizable well-modulated instruction set",
+    "location": "75 Waxwing Street",
+    "time_zone": "America/Lima",
+    "time_start": "7:08",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gibson and Sons",
+    "description": "Customer-focused foreground structure",
+    "location": null,
+    "time_zone": "America/Havana",
+    "time_start": "22:44",
+    "length_hours": 10,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Bailey-Bode",
+    "description": "Enterprise-wide eco-centric application",
+    "location": "519 Huxley Drive",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:55",
+    "length_hours": 11,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Toy and Sons",
+    "description": "Virtual dynamic archive",
+    "location": "5 Donald Center",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "21:27",
+    "length_hours": 10,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Schumm LLC",
+    "description": "Face to face asynchronous initiative",
+    "location": null,
+    "time_zone": "Asia/Bangkok",
+    "time_start": "19:09",
+    "length_hours": 4,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Green-Olson",
+    "description": null,
+    "location": "691 Hudson Junction",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "7:40",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "O'Connell, Hills and Hegmann",
+    "description": "Up-sized web-enabled process improvement",
+    "location": "2872 Butternut Point",
+    "time_zone": "Asia/Tehran",
+    "time_start": "22:01",
+    "length_hours": 7,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Hudson Group",
+    "description": null,
+    "location": "847 Sunnyside Center",
+    "time_zone": "Europe/Samara",
+    "time_start": "16:36",
+    "length_hours": 9,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Moore Group",
+    "description": "Upgradable well-modulated circuit",
+    "location": "06005 Elgar Drive",
+    "time_zone": "Asia/Makassar",
+    "time_start": "21:23",
+    "length_hours": 9,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Mohr, Carter and Von",
+    "description": "Synchronised impactful open system",
+    "location": "124 New Castle Street",
+    "time_zone": "Europe/Skopje",
+    "time_start": "15:03",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Friesen, Brakus and Lakin",
+    "description": "Cross-group discrete alliance",
+    "location": "0 Anhalt Way",
+    "time_zone": "Europe/Tirane",
+    "time_start": "10:47",
+    "length_hours": 12,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Kuhic, Hahn and Kohler",
+    "description": "Vision-oriented 5th generation collaboration",
+    "location": "8 Thompson Drive",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "12:36",
+    "length_hours": 7,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Torphy Inc",
+    "description": "Ameliorated attitude-oriented standardization",
+    "location": "0 Springview Street",
+    "time_zone": "Africa/Lagos",
+    "time_start": "12:19",
+    "length_hours": 9,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Bosco-Collier",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:34",
+    "length_hours": 6,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Schoen-Schuppe",
+    "description": "Reduced demand-driven internet solution",
+    "location": "2 Merry Circle",
+    "time_zone": "Europe/Moscow",
+    "time_start": "4:27",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Farrell Group",
+    "description": "Monitored 24/7 analyzer",
+    "location": "02779 Butterfield Crossing",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "6:43",
+    "length_hours": 10,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Medhurst-Gerhold",
+    "description": null,
+    "location": "5768 Ludington Street",
+    "time_zone": "Europe/Bucharest",
+    "time_start": "12:32",
+    "length_hours": 7,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Buckridge, Runolfsdottir and Hodkiewicz",
+    "description": "Balanced logistical circuit",
+    "location": null,
+    "time_zone": "Asia/Muscat",
+    "time_start": "16:53",
+    "length_hours": 8,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Ziemann-McDermott",
+    "description": "Decentralized multi-tasking extranet",
+    "location": "55 Golf Course Center",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "4:49",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hand, Batz and Fay",
+    "description": "Synergized multi-state instruction set",
+    "location": null,
+    "time_zone": "America/Guayaquil",
+    "time_start": "20:43",
+    "length_hours": 12,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Welch Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "6:18",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schmitt-Baumbach",
+    "description": null,
+    "location": "07770 Cordelia Pass",
+    "time_zone": "Asia/Manila",
+    "time_start": "8:20",
+    "length_hours": 7,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Reilly-Dickens",
+    "description": "Function-based holistic success",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:22",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wuckert and Sons",
+    "description": null,
+    "location": "05 Loftsgordon Point",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "10:28",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Volkman-Gleichner",
+    "description": "Object-based homogeneous synergy",
+    "location": null,
+    "time_zone": "Asia/Tokyo",
+    "time_start": "16:46",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schumm-Homenick",
+    "description": null,
+    "location": "897 Thackeray Alley",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "9:59",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Koss-Heidenreich",
+    "description": "Customer-focused logistical artificial intelligence",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "20:28",
+    "length_hours": 6,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Ledner, Powlowski and Mitchell",
+    "description": "Proactive cohesive service-desk",
+    "location": null,
+    "time_zone": "Asia/Pyongyang",
+    "time_start": "13:30",
+    "length_hours": 6,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Schimmel and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "13:58",
+    "length_hours": 5,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Wisoky-Turcotte",
+    "description": null,
+    "location": "169 Lindbergh Avenue",
+    "time_zone": "Europe/Zagreb",
+    "time_start": "13:13",
+    "length_hours": 8,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Ward and Sons",
+    "description": "Organized dynamic functionalities",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "14:25",
+    "length_hours": 7,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Kovacek-Walter",
+    "description": "Versatile bottom-line info-mediaries",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "6:15",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "McClure-Russel",
+    "description": "Focused mobile paradigm",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "18:57",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Strosin, O'Kon and Schuster",
+    "description": "Switchable bi-directional focus group",
+    "location": "560 Boyd Parkway",
+    "time_zone": "Europe/Dublin",
+    "time_start": "15:35",
+    "length_hours": 9,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Adams and Sons",
+    "description": null,
+    "location": "3 Charing Cross Alley",
+    "time_zone": "Asia/Manila",
+    "time_start": "13:01",
+    "length_hours": 8,
+    "length_minutes": 52
+  },
+  {
+    "subject": "Padberg LLC",
+    "description": "Integrated empowering installation",
+    "location": "00 Coleman Court",
+    "time_zone": "Europe/Paris",
+    "time_start": "7:25",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hermann-Von",
+    "description": "Universal 24 hour methodology",
+    "location": "52 Duke Lane",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "14:51",
+    "length_hours": 7,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Hayes Inc",
+    "description": null,
+    "location": "2 Summit Terrace",
+    "time_zone": "America/Bahia",
+    "time_start": "16:15",
+    "length_hours": 11,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Jast-Collier",
+    "description": null,
+    "location": "75 Melody Place",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "14:33",
+    "length_hours": 9,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Dickinson-Ernser",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "9:21",
+    "length_hours": 5,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Nikolaus-Kshlerin",
+    "description": "Seamless multi-tasking process improvement",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "11:42",
+    "length_hours": 12,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Pfeffer, Kuhlman and Nikolaus",
+    "description": null,
+    "location": null,
+    "time_zone": "America/New_York",
+    "time_start": "18:51",
+    "length_hours": 9,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Sporer, Moen and Paucek",
+    "description": "Fundamental bifurcated standardization",
+    "location": null,
+    "time_zone": "Europe/Amsterdam",
+    "time_start": "10:08",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gerlach and Sons",
+    "description": null,
+    "location": "76 Waxwing Drive",
+    "time_zone": "Europe/Paris",
+    "time_start": "13:42",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Herzog, Senger and Gleichner",
+    "description": "Phased content-based superstructure",
+    "location": null,
+    "time_zone": "Europe/Uzhgorod",
+    "time_start": "20:10",
+    "length_hours": 10,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Huels-Hills",
+    "description": "Universal analyzing paradigm",
+    "location": null,
+    "time_zone": "America/Mexico_City",
+    "time_start": "9:57",
+    "length_hours": 4,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Senger, Simonis and Bradtke",
+    "description": "Reduced tangible parallelism",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "9:47",
+    "length_hours": 12,
+    "length_minutes": 43
+  },
+  {
+    "subject": "McDermott, Walter and Goldner",
+    "description": "Mandatory systemic workforce",
+    "location": "0250 Forest Dale Plaza",
+    "time_zone": "Europe/Paris",
+    "time_start": "19:49",
+    "length_hours": 6,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Gusikowski, Boyer and Sauer",
+    "description": "Sharable content-based utilisation",
+    "location": "09 Little Fleur Junction",
+    "time_zone": "Europe/Paris",
+    "time_start": "18:26",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Krajcik and Sons",
+    "description": null,
+    "location": "075 Mosinee Crossing",
+    "time_zone": "Asia/Manila",
+    "time_start": "15:24",
+    "length_hours": 7,
+    "length_minutes": 58
+  },
+  {
+    "subject": "Blick, Spencer and Muller",
+    "description": "Balanced non-volatile neural-net",
+    "location": "46897 Columbus Alley",
+    "time_zone": "Europe/Simferopol",
+    "time_start": "7:59",
+    "length_hours": 7,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Bogan-Baumbach",
+    "description": "Visionary motivating architecture",
+    "location": "46 Mandrake Road",
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "14:56",
+    "length_hours": 12,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Mills, Ward and Becker",
+    "description": null,
+    "location": null,
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "16:12",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Marquardt-Brown",
+    "description": "Ameliorated fresh-thinking archive",
+    "location": "33543 Pine View Park",
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "14:33",
+    "length_hours": 12,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Gislason, Thompson and Wunsch",
+    "description": null,
+    "location": "56 Granby Alley",
+    "time_zone": "Asia/Jayapura",
+    "time_start": "18:46",
+    "length_hours": 7,
+    "length_minutes": 45
+  },
+  {
+    "subject": "McDermott, Dietrich and Sawayn",
+    "description": "Stand-alone impactful emulation",
+    "location": "142 Canary Pass",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "17:27",
+    "length_hours": 8,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Lang Inc",
+    "description": "Down-sized bottom-line pricing structure",
+    "location": "093 American Ash Park",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "15:54",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Heller, Effertz and Larkin",
+    "description": "Customizable exuding info-mediaries",
+    "location": "6867 Duke Alley",
+    "time_zone": "Asia/Harbin",
+    "time_start": "10:25",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Stamm Inc",
+    "description": "De-engineered national array",
+    "location": "8 Grover Avenue",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "19:22",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Funk-Hagenes",
+    "description": "Business-focused homogeneous hardware",
+    "location": "3 Badeau Pass",
+    "time_zone": "Europe/Prague",
+    "time_start": "13:10",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Armstrong-Hilll",
+    "description": "Open-architected clear-thinking paradigm",
+    "location": null,
+    "time_zone": "America/Bahia",
+    "time_start": "6:20",
+    "length_hours": 12,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Nitzsche Inc",
+    "description": "Re-engineered hybrid project",
+    "location": "18454 Dryden Terrace",
+    "time_zone": "Europe/Moscow",
+    "time_start": "16:22",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Herzog-Bergstrom",
+    "description": "Optimized context-sensitive challenge",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "18:17",
+    "length_hours": 5,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Brakus Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "19:25",
+    "length_hours": 10,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Crona-D'Amore",
+    "description": "Focused fresh-thinking monitoring",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "16:10",
+    "length_hours": 10,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Krajcik-Schmitt",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:38",
+    "length_hours": 6,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Turcotte Inc",
+    "description": "Visionary context-sensitive methodology",
+    "location": null,
+    "time_zone": "Europe/Belgrade",
+    "time_start": "13:51",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wunsch, Ruecker and Stracke",
+    "description": null,
+    "location": "3 Clarendon Crossing",
+    "time_zone": "Asia/Pyongyang",
+    "time_start": "22:19",
+    "length_hours": 4,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Lesch Inc",
+    "description": "Innovative mission-critical functionalities",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "22:39",
+    "length_hours": 12,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Nitzsche Inc",
+    "description": "Open-source coherent capability",
+    "location": "972 Toban Street",
+    "time_zone": "Asia/Harbin",
+    "time_start": "20:21",
+    "length_hours": 9,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Ledner Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "9:57",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Emard and Sons",
+    "description": "Secured client-driven moderator",
+    "location": "64594 South Lane",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "7:36",
+    "length_hours": 7,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Farrell, Hoppe and Weber",
+    "description": "Public-key asymmetric capability",
+    "location": "00621 Coolidge Place",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:29",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "D'Amore, Weber and Ruecker",
+    "description": "Grass-roots full-range internet solution",
+    "location": "4 Westport Avenue",
+    "time_zone": "Europe/Sarajevo",
+    "time_start": "20:14",
+    "length_hours": 6,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Auer, Feest and Gutmann",
+    "description": "Compatible reciprocal hardware",
+    "location": null,
+    "time_zone": "Europe/Kiev",
+    "time_start": "21:02",
+    "length_hours": 10,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Nienow Group",
+    "description": "Switchable eco-centric throughput",
+    "location": "534 Starling Road",
+    "time_zone": "Europe/Prague",
+    "time_start": "13:45",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Marks, Wolf and Schmidt",
+    "description": null,
+    "location": "24 Riverside Street",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "18:49",
+    "length_hours": 12,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Bogan, Bashirian and McLaughlin",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Athens",
+    "time_start": "6:48",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Miller Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "18:27",
+    "length_hours": 8,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Walker, Cummings and Yost",
+    "description": "Right-sized composite framework",
+    "location": null,
+    "time_zone": "Africa/Casablanca",
+    "time_start": "6:19",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Morissette-Bednar",
+    "description": "Organic full-range encryption",
+    "location": "59382 Towne Circle",
+    "time_zone": "Europe/Vilnius",
+    "time_start": "6:23",
+    "length_hours": 7,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Bogisich, Fahey and Schamberger",
+    "description": "Reverse-engineered 6th generation encoding",
+    "location": "94955 Bowman Alley",
+    "time_zone": "Africa/Nairobi",
+    "time_start": "5:50",
+    "length_hours": 6,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Romaguera Inc",
+    "description": "Face to face methodical initiative",
+    "location": "133 Talmadge Way",
+    "time_zone": "Asia/Harbin",
+    "time_start": "11:23",
+    "length_hours": 12,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Torphy, Nader and Kilback",
+    "description": "Expanded optimal approach",
+    "location": "05 Monterey Crossing",
+    "time_zone": "Africa/Lagos",
+    "time_start": "14:12",
+    "length_hours": 10,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Johnson and Sons",
+    "description": null,
+    "location": "1222 Eagle Crest Crossing",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "22:51",
+    "length_hours": 5,
+    "length_minutes": 37
+  },
+  {
+    "subject": "Morar, Stark and Hartmann",
+    "description": "Digitized mobile intranet",
+    "location": "3 Surrey Lane",
+    "time_zone": "Asia/Damascus",
+    "time_start": "17:20",
+    "length_hours": 11,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Torp, Blanda and Nienow",
+    "description": null,
+    "location": "134 Schmedeman Court",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "19:01",
+    "length_hours": 5,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Doyle-Daniel",
+    "description": "Object-based system-worthy frame",
+    "location": "6618 Crest Line Trail",
+    "time_zone": "Europe/Moscow",
+    "time_start": "15:00",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hauck, Berge and Reynolds",
+    "description": "Multi-layered even-keeled infrastructure",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "13:44",
+    "length_hours": 8,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Zulauf LLC",
+    "description": "Public-key analyzing access",
+    "location": "6766 Monument Alley",
+    "time_zone": "Europe/Rome",
+    "time_start": "16:46",
+    "length_hours": 4,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Lang-VonRueden",
+    "description": "Balanced heuristic attitude",
+    "location": "171 Eagle Crest Circle",
+    "time_zone": "Europe/Helsinki",
+    "time_start": "8:56",
+    "length_hours": 12,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Hills-Emard",
+    "description": "Distributed regional customer loyalty",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "12:27",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hayes and Sons",
+    "description": "Team-oriented static projection",
+    "location": "903 Schiller Terrace",
+    "time_zone": "Europe/Ljubljana",
+    "time_start": "9:28",
+    "length_hours": 11,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Tillman, Tromp and Harber",
+    "description": "User-centric needs-based interface",
+    "location": "311 Maywood Center",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "12:32",
+    "length_hours": 8,
+    "length_minutes": 54
+  },
+  {
+    "subject": "Conroy Inc",
+    "description": "Stand-alone grid-enabled middleware",
+    "location": null,
+    "time_zone": "Asia/Almaty",
+    "time_start": "7:10",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Dicki-Lang",
+    "description": "Monitored even-keeled core",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "14:33",
+    "length_hours": 4,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Carroll, Wolf and Heller",
+    "description": "Seamless leading edge process improvement",
+    "location": null,
+    "time_zone": "Europe/Tallinn",
+    "time_start": "8:15",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Braun Group",
+    "description": "Innovative real-time middleware",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "15:49",
+    "length_hours": 7,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Turner and Sons",
+    "description": "Customizable zero administration time-frame",
+    "location": "2409 Pleasure Road",
+    "time_zone": "Europe/Paris",
+    "time_start": "15:11",
+    "length_hours": 9,
+    "length_minutes": 56
+  },
+  {
+    "subject": "Walter-Bayer",
+    "description": null,
+    "location": "3 Pawling Park",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "22:31",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mayert, Heller and Quigley",
+    "description": "Down-sized clear-thinking database",
+    "location": "990 Burning Wood Trail",
+    "time_zone": "America/Bogota",
+    "time_start": "13:07",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Gerhold LLC",
+    "description": "Enterprise-wide tertiary intranet",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "12:21",
+    "length_hours": 4,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Johns Group",
+    "description": "Customer-focused coherent productivity",
+    "location": "7 Riverside Court",
+    "time_zone": "Africa/Kampala",
+    "time_start": "14:33",
+    "length_hours": 8,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Schulist, Torp and Beahan",
+    "description": null,
+    "location": "716 Sunbrook Court",
+    "time_zone": "Europe/Zagreb",
+    "time_start": "10:24",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Will, Heathcote and Altenwerth",
+    "description": null,
+    "location": "10165 Grim Place",
+    "time_zone": "Europe/Moscow",
+    "time_start": "19:15",
+    "length_hours": 12,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Schimmel-Nitzsche",
+    "description": "Centralized zero tolerance time-frame",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "5:56",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Herzog-Schuster",
+    "description": "Mandatory holistic encoding",
+    "location": null,
+    "time_zone": "Europe/Prague",
+    "time_start": "17:03",
+    "length_hours": 8,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Zieme-Rogahn",
+    "description": null,
+    "location": "51954 Nobel Lane",
+    "time_zone": "Europe/Berlin",
+    "time_start": "12:58",
+    "length_hours": 11,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Smith, Miller and Wolff",
+    "description": "Focused static capability",
+    "location": null,
+    "time_zone": "America/Caracas",
+    "time_start": "12:11",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schmeler-Breitenberg",
+    "description": "Function-based leading edge core",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "22:03",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Williamson and Sons",
+    "description": "Public-key eco-centric policy",
+    "location": "9727 Elmside Park",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "17:15",
+    "length_hours": 11,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Monahan-Stanton",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "21:39",
+    "length_hours": 7,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Wisoky, Pouros and Lynch",
+    "description": null,
+    "location": "628 Dwight Way",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "19:24",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hilpert, Leuschke and Hagenes",
+    "description": null,
+    "location": "114 Comanche Avenue",
+    "time_zone": "America/Lima",
+    "time_start": "13:03",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Raynor, Schultz and Wehner",
+    "description": "Intuitive web-enabled flexibility",
+    "location": "77896 Katie Circle",
+    "time_zone": "Indian/Antananarivo",
+    "time_start": "18:15",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Keebler, Wiza and King",
+    "description": "Compatible intermediate superstructure",
+    "location": "60 Banding Center",
+    "time_zone": "America/Fortaleza",
+    "time_start": "7:47",
+    "length_hours": 10,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Kirlin, Trantow and Shanahan",
+    "description": "Switchable interactive frame",
+    "location": "540 Harper Way",
+    "time_zone": "Europe/Moscow",
+    "time_start": "20:18",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lemke-Satterfield",
+    "description": "Automated mobile analyzer",
+    "location": "96 Welch Junction",
+    "time_zone": "Asia/Manila",
+    "time_start": "16:30",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Braun, Windler and Wuckert",
+    "description": null,
+    "location": "2502 School Pass",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "17:10",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Powlowski-Rowe",
+    "description": null,
+    "location": "690 Linden Circle",
+    "time_zone": "America/Cuiaba",
+    "time_start": "12:35",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Herman Inc",
+    "description": "Customer-focused multi-state hierarchy",
+    "location": "78181 Mitchell Terrace",
+    "time_zone": "America/Manaus",
+    "time_start": "13:34",
+    "length_hours": 11,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Jacobson LLC",
+    "description": "Fundamental mobile function",
+    "location": "164 Hauk Hill",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "8:42",
+    "length_hours": 6,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Lakin LLC",
+    "description": "Function-based optimizing alliance",
+    "location": "88723 Pierstorff Hill",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "11:26",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hoeger, Doyle and Vandervort",
+    "description": "Programmable disintermediate algorithm",
+    "location": null,
+    "time_zone": "Asia/Krasnoyarsk",
+    "time_start": "4:54",
+    "length_hours": 4,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Altenwerth, Vandervort and Baumbach",
+    "description": "User-friendly multi-state open system",
+    "location": "4 Parkside Lane",
+    "time_zone": "Europe/London",
+    "time_start": "13:20",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bartell Inc",
+    "description": "Persistent demand-driven pricing structure",
+    "location": null,
+    "time_zone": "Europe/Helsinki",
+    "time_start": "22:08",
+    "length_hours": 6,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Breitenberg, Lind and Schaden",
+    "description": "User-centric 24/7 circuit",
+    "location": "295 Badeau Circle",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "5:15",
+    "length_hours": 11,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Botsford and Sons",
+    "description": null,
+    "location": "75785 Sunfield Crossing",
+    "time_zone": "Europe/Moscow",
+    "time_start": "10:42",
+    "length_hours": 9,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Bins LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Damascus",
+    "time_start": "13:00",
+    "length_hours": 4,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Hirthe-Purdy",
+    "description": "Seamless regional functionalities",
+    "location": "7 Forster Place",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "16:32",
+    "length_hours": 9,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Price Group",
+    "description": "Sharable heuristic flexibility",
+    "location": "624 Moose Junction",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "4:02",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Heidenreich, Mraz and Jones",
+    "description": "Versatile multi-state solution",
+    "location": "167 Mifflin Place",
+    "time_zone": "Africa/Abidjan",
+    "time_start": "10:14",
+    "length_hours": 12,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Schmidt, Hettinger and Marquardt",
+    "description": "Ergonomic intermediate open system",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "9:52",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Altenwerth-Price",
+    "description": null,
+    "location": "19 Coleman Street",
+    "time_zone": "America/Toronto",
+    "time_start": "15:49",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hane, Larson and Corkery",
+    "description": null,
+    "location": "3 Butterfield Hill",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "20:01",
+    "length_hours": 5,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Von, Hermann and Corwin",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "6:50",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schneider Group",
+    "description": "Fundamental attitude-oriented middleware",
+    "location": "6528 Northridge Street",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "12:26",
+    "length_hours": 4,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Boyle-Kuphal",
+    "description": null,
+    "location": "45360 Basil Lane",
+    "time_zone": "Asia/Manila",
+    "time_start": "18:22",
+    "length_hours": 7,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Toy Inc",
+    "description": "Switchable holistic functionalities",
+    "location": "9613 Bartelt Road",
+    "time_zone": "America/Havana",
+    "time_start": "6:16",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lindgren, Hettinger and Kozey",
+    "description": "Synchronised high-level middleware",
+    "location": "16 Hanover Drive",
+    "time_zone": "America/Mexico_City",
+    "time_start": "10:20",
+    "length_hours": 5,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Walker, Mertz and Oberbrunner",
+    "description": "Monitored logistical standardization",
+    "location": "2 Cody Avenue",
+    "time_zone": "America/Bogota",
+    "time_start": "13:21",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kiehn LLC",
+    "description": "Persistent 24 hour monitoring",
+    "location": "01 Debs Junction",
+    "time_zone": "America/La_Paz",
+    "time_start": "20:06",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Auer and Sons",
+    "description": "Innovative heuristic challenge",
+    "location": null,
+    "time_zone": "Asia/Kabul",
+    "time_start": "11:58",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Nader, Welch and Goyette",
+    "description": null,
+    "location": "3693 Mesta Hill",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "18:51",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kautzer-Hagenes",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "13:58",
+    "length_hours": 5,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Cummerata and Sons",
+    "description": "Triple-buffered well-modulated utilisation",
+    "location": "7848 Twin Pines Road",
+    "time_zone": "Asia/Harbin",
+    "time_start": "14:34",
+    "length_hours": 9,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Dickinson, Davis and Hand",
+    "description": "Innovative mobile intranet",
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "19:38",
+    "length_hours": 9,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Heathcote, Marquardt and Kunde",
+    "description": "Realigned hybrid function",
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "17:49",
+    "length_hours": 4,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Halvorson and Sons",
+    "description": null,
+    "location": "3 Muir Junction",
+    "time_zone": "Asia/Karachi",
+    "time_start": "21:04",
+    "length_hours": 4,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Reichel and Sons",
+    "description": "Reactive attitude-oriented adapter",
+    "location": "5042 Walton Place",
+    "time_zone": "America/Monterrey",
+    "time_start": "14:07",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hyatt Group",
+    "description": "Ameliorated contextually-based standardization",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:19",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Koch, MacGyver and Bernhard",
+    "description": "Reverse-engineered dynamic parallelism",
+    "location": null,
+    "time_zone": "America/Mexico_City",
+    "time_start": "16:08",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Labadie Group",
+    "description": "Open-architected even-keeled matrix",
+    "location": "64 Manley Avenue",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "16:21",
+    "length_hours": 4,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Powlowski-Volkman",
+    "description": "Function-based real-time system engine",
+    "location": "4 Meadow Valley Road",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "6:13",
+    "length_hours": 8,
+    "length_minutes": 16
+  },
+  {
+    "subject": "Johnston, Barrows and Morissette",
+    "description": "Advanced reciprocal secured line",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "10:16",
+    "length_hours": 5,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Kulas-Halvorson",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Oslo",
+    "time_start": "7:50",
+    "length_hours": 4,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Bahringer Inc",
+    "description": null,
+    "location": "0770 Golf Alley",
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "14:26",
+    "length_hours": 5,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Bogisich-Willms",
+    "description": null,
+    "location": "78 Warbler Crossing",
+    "time_zone": "Asia/Gaza",
+    "time_start": "20:08",
+    "length_hours": 11,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Sauer-Bartoletti",
+    "description": "Persistent homogeneous portal",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "22:16",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lowe-White",
+    "description": "Focused heuristic leverage",
+    "location": "155 Pond Parkway",
+    "time_zone": "Africa/Accra",
+    "time_start": "14:38",
+    "length_hours": 11,
+    "length_minutes": 13
+  },
+  {
+    "subject": "Sipes, Mosciski and Ondricka",
+    "description": "Open-source 3rd generation standardization",
+    "location": "1616 Kenwood Place",
+    "time_zone": "Europe/Berlin",
+    "time_start": "15:20",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Dickens-Howe",
+    "description": "Expanded dynamic strategy",
+    "location": "62 Fuller Avenue",
+    "time_zone": "Asia/Makassar",
+    "time_start": "12:41",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kirlin LLC",
+    "description": "Ergonomic bi-directional concept",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "8:30",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ledner-Farrell",
+    "description": "Automated composite structure",
+    "location": "2 Rutledge Crossing",
+    "time_zone": "Europe/Amsterdam",
+    "time_start": "10:28",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Yundt-Hermann",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Fortaleza",
+    "time_start": "14:54",
+    "length_hours": 11,
+    "length_minutes": 45
+  },
+  {
+    "subject": "Halvorson, Daugherty and Pfannerstill",
+    "description": null,
+    "location": "4 Manitowish Pass",
+    "time_zone": "Asia/Manila",
+    "time_start": "5:11",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kessler, Fisher and Crist",
+    "description": "Vision-oriented next generation array",
+    "location": null,
+    "time_zone": "America/Santo_Domingo",
+    "time_start": "21:01",
+    "length_hours": 7,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Kuvalis Inc",
+    "description": null,
+    "location": "30 Atwood Hill",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "17:44",
+    "length_hours": 10,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Graham-Prohaska",
+    "description": null,
+    "location": "148 Pawling Park",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "4:03",
+    "length_hours": 4,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Berge, Swift and Koch",
+    "description": "Persistent discrete structure",
+    "location": "3732 Monument Junction",
+    "time_zone": "Asia/Harbin",
+    "time_start": "4:50",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Cassin and Sons",
+    "description": "Multi-lateral zero administration implementation",
+    "location": "1970 Orin Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "21:37",
+    "length_hours": 7,
+    "length_minutes": 42
+  },
+  {
+    "subject": "Schroeder-Oberbrunner",
+    "description": "Upgradable 5th generation model",
+    "location": null,
+    "time_zone": "America/Toronto",
+    "time_start": "16:25",
+    "length_hours": 8,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Bailey Inc",
+    "description": "Cross-platform disintermediate leverage",
+    "location": null,
+    "time_zone": "Europe/Zaporozhye",
+    "time_start": "7:44",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kohler LLC",
+    "description": "Virtual tangible website",
+    "location": "5 Caliangt Crossing",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "10:46",
+    "length_hours": 11,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Dickens and Sons",
+    "description": "Function-based zero defect data-warehouse",
+    "location": "57633 Westridge Court",
+    "time_zone": "Asia/Damascus",
+    "time_start": "12:41",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lehner, Christiansen and Greenfelder",
+    "description": "Right-sized motivating project",
+    "location": "79448 Jana Plaza",
+    "time_zone": "Asia/Harbin",
+    "time_start": "16:06",
+    "length_hours": 4,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Batz-Kris",
+    "description": "Virtual optimizing adapter",
+    "location": null,
+    "time_zone": "Asia/Irkutsk",
+    "time_start": "12:09",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hodkiewicz-Wiza",
+    "description": "Distributed scalable core",
+    "location": null,
+    "time_zone": "Asia/Colombo",
+    "time_start": "12:39",
+    "length_hours": 9,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Doyle, Stokes and Cormier",
+    "description": "Ergonomic human-resource knowledge user",
+    "location": "3298 Talisman Plaza",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "15:21",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bruen and Sons",
+    "description": "Persistent multi-tasking matrix",
+    "location": null,
+    "time_zone": "America/Santiago",
+    "time_start": "14:01",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Nienow-Yundt",
+    "description": "Function-based empowering intranet",
+    "location": "891 Texas Park",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "9:09",
+    "length_hours": 11,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Leffler-Schaefer",
+    "description": "Innovative multi-tasking support",
+    "location": "9125 Kensington Court",
+    "time_zone": "America/Bogota",
+    "time_start": "16:40",
+    "length_hours": 6,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Gutkowski LLC",
+    "description": "Function-based background data-warehouse",
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "6:41",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Torp, O'Kon and Raynor",
+    "description": "Multi-lateral intermediate help-desk",
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "20:29",
+    "length_hours": 12,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Cruickshank-Jones",
+    "description": "Expanded 24 hour installation",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:01",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kemmer-Treutel",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "16:29",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Douglas-Walker",
+    "description": "Re-engineered background adapter",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "16:48",
+    "length_hours": 11,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Bechtelar, Kertzmann and Beahan",
+    "description": "Diverse tertiary definition",
+    "location": "49598 Clarendon Point",
+    "time_zone": "America/Bogota",
+    "time_start": "9:01",
+    "length_hours": 7,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Leuschke, Becker and Brown",
+    "description": "User-friendly mission-critical parallelism",
+    "location": "1229 Carioca Avenue",
+    "time_zone": "Asia/Manila",
+    "time_start": "11:52",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "O'Reilly, Reichel and Erdman",
+    "description": "Customizable radical focus group",
+    "location": "04 Kensington Road",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "17:55",
+    "length_hours": 9,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Ziemann, Keeling and Wintheiser",
+    "description": "Exclusive methodical migration",
+    "location": "1 Riverside Terrace",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "12:30",
+    "length_hours": 11,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Conn and Sons",
+    "description": "Reverse-engineered asynchronous standardization",
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "6:25",
+    "length_hours": 5,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Hayes Inc",
+    "description": "Sharable regional installation",
+    "location": "431 Kensington Plaza",
+    "time_zone": "America/Argentina/Salta",
+    "time_start": "15:16",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ondricka LLC",
+    "description": "De-engineered maximized success",
+    "location": "12189 Welch Center",
+    "time_zone": "Europe/Kiev",
+    "time_start": "11:31",
+    "length_hours": 11,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Weber and Sons",
+    "description": "Profit-focused tertiary concept",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "13:16",
+    "length_hours": 8,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Rohan-Ernser",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "9:50",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Spinka, Schoen and Buckridge",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "17:41",
+    "length_hours": 11,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Leuschke-Carter",
+    "description": "Virtual national monitoring",
+    "location": "86460 Oak Valley Alley",
+    "time_zone": "Asia/Makassar",
+    "time_start": "18:45",
+    "length_hours": 8,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Fay Group",
+    "description": null,
+    "location": "6062 Ruskin Alley",
+    "time_zone": "Asia/Makassar",
+    "time_start": "17:32",
+    "length_hours": 8,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Quigley, Dare and Deckow",
+    "description": null,
+    "location": "91 Truax Trail",
+    "time_zone": "Europe/Paris",
+    "time_start": "22:25",
+    "length_hours": 8,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Ziemann-Kirlin",
+    "description": null,
+    "location": "14 Weeping Birch Plaza",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "12:59",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ernser, Kunde and Leffler",
+    "description": null,
+    "location": "50061 Basil Road",
+    "time_zone": "America/Port-au-Prince",
+    "time_start": "15:35",
+    "length_hours": 10,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Krajcik-Jones",
+    "description": "Expanded 5th generation open system",
+    "location": "745 Florence Plaza",
+    "time_zone": "Africa/Windhoek",
+    "time_start": "13:07",
+    "length_hours": 10,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Strosin and Sons",
+    "description": null,
+    "location": "70 Wayridge Drive",
+    "time_zone": "Africa/Cairo",
+    "time_start": "17:19",
+    "length_hours": 9,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Emard Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "17:23",
+    "length_hours": 11,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Windler-Kohler",
+    "description": "Compatible hybrid methodology",
+    "location": "76027 Brickson Park Street",
+    "time_zone": "Europe/Paris",
+    "time_start": "10:23",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Emmerich Group",
+    "description": null,
+    "location": "1 Muir Trail",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "15:28",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Rippin Inc",
+    "description": null,
+    "location": "74522 Rutledge Circle",
+    "time_zone": "Europe/London",
+    "time_start": "14:40",
+    "length_hours": 7,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Lowe-Aufderhar",
+    "description": "Reactive fault-tolerant concept",
+    "location": "3871 School Hill",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "4:46",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Abbott Inc",
+    "description": "Grass-roots attitude-oriented portal",
+    "location": "10 Walton Hill",
+    "time_zone": "Asia/Almaty",
+    "time_start": "14:20",
+    "length_hours": 12,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Goldner-Robel",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "12:51",
+    "length_hours": 9,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Hilll, Murray and Kautzer",
+    "description": null,
+    "location": "519 Namekagon Alley",
+    "time_zone": "Africa/Khartoum",
+    "time_start": "17:01",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hyatt, Kihn and Fisher",
+    "description": "Innovative tangible artificial intelligence",
+    "location": "7 Bunker Hill Court",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "14:49",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Koss LLC",
+    "description": "Enhanced optimizing frame",
+    "location": "73 Fairfield Drive",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "7:58",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Botsford LLC",
+    "description": "Re-engineered directional standardization",
+    "location": "7878 Heath Hill",
+    "time_zone": "Europe/Moscow",
+    "time_start": "8:29",
+    "length_hours": 9,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Kertzmann, Cartwright and Braun",
+    "description": "Mandatory solution-oriented initiative",
+    "location": "91 Jenna Way",
+    "time_zone": "Asia/Kabul",
+    "time_start": "19:28",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Koepp, Ledner and Mertz",
+    "description": "Up-sized reciprocal architecture",
+    "location": "6431 Saint Paul Point",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "5:50",
+    "length_hours": 12,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Quigley-Renner",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "9:33",
+    "length_hours": 5,
+    "length_minutes": 54
+  },
+  {
+    "subject": "Bergstrom, Blick and Bergstrom",
+    "description": null,
+    "location": "0 Marquette Way",
+    "time_zone": "America/Jamaica",
+    "time_start": "21:16",
+    "length_hours": 5,
+    "length_minutes": 37
+  },
+  {
+    "subject": "McDermott LLC",
+    "description": null,
+    "location": "97 Burrows Hill",
+    "time_zone": "Europe/Tallinn",
+    "time_start": "5:34",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Cremin Group",
+    "description": "Reverse-engineered motivating analyzer",
+    "location": null,
+    "time_zone": "Asia/Sakhalin",
+    "time_start": "4:23",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Hauck, Lockman and Mayer",
+    "description": null,
+    "location": "217 Shoshone Court",
+    "time_zone": "Europe/Paris",
+    "time_start": "19:12",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Balistreri Group",
+    "description": "Fully-configurable didactic analyzer",
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "9:30",
+    "length_hours": 11,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Muller Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Bangkok",
+    "time_start": "9:35",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Muller Group",
+    "description": null,
+    "location": "04 Acker Point",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "14:32",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Sauer, Hane and Beier",
+    "description": null,
+    "location": "4 Bluejay Place",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "5:17",
+    "length_hours": 5,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Thiel-Prosacco",
+    "description": "Synergistic explicit archive",
+    "location": "102 Northland Pass",
+    "time_zone": "Africa/Dar_es_Salaam",
+    "time_start": "4:55",
+    "length_hours": 8,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Gleichner Inc",
+    "description": "Organic tertiary archive",
+    "location": "16414 Kingsford Terrace",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "20:33",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Tillman and Sons",
+    "description": "Upgradable systemic orchestration",
+    "location": "19584 Derek Drive",
+    "time_zone": "America/Bogota",
+    "time_start": "10:09",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Murazik-Brown",
+    "description": "Cross-group 5th generation complexity",
+    "location": "109 Mendota Terrace",
+    "time_zone": "Europe/Moscow",
+    "time_start": "22:14",
+    "length_hours": 7,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Williamson Group",
+    "description": null,
+    "location": "4832 Waubesa Alley",
+    "time_zone": "Africa/Kinshasa",
+    "time_start": "9:27",
+    "length_hours": 10,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Grady-Gottlieb",
+    "description": "Ameliorated coherent hardware",
+    "location": "74 Old Shore Court",
+    "time_zone": "Europe/Stockholm",
+    "time_start": "6:12",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Farrell-Nicolas",
+    "description": "Customer-focused leading edge alliance",
+    "location": "7 Dawn Court",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "21:54",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mertz-Kiehn",
+    "description": null,
+    "location": "80090 Summit Crossing",
+    "time_zone": "Europe/Moscow",
+    "time_start": "14:12",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Goyette-Mayert",
+    "description": "Persevering optimal flexibility",
+    "location": "108 Eliot Hill",
+    "time_zone": "Europe/Moscow",
+    "time_start": "18:41",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "MacGyver-Kuhlman",
+    "description": "Triple-buffered zero defect interface",
+    "location": "774 Dawn Circle",
+    "time_zone": "Europe/Athens",
+    "time_start": "6:26",
+    "length_hours": 8,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Mann, Hackett and Ritchie",
+    "description": "Persevering systematic process improvement",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "6:42",
+    "length_hours": 8,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Zboncak-Gottlieb",
+    "description": "Reduced human-resource customer loyalty",
+    "location": null,
+    "time_zone": "Asia/Riyadh",
+    "time_start": "17:43",
+    "length_hours": 6,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Padberg, Reinger and Raynor",
+    "description": "Function-based real-time data-warehouse",
+    "location": "3 Coolidge Pass",
+    "time_zone": "Europe/Sofia",
+    "time_start": "22:09",
+    "length_hours": 6,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Shanahan Inc",
+    "description": "Switchable didactic neural-net",
+    "location": null,
+    "time_zone": "Europe/Lisbon",
+    "time_start": "11:52",
+    "length_hours": 6,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Flatley, Hegmann and Kunde",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Sarajevo",
+    "time_start": "22:48",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Conn Group",
+    "description": null,
+    "location": "76 Ronald Regan Way",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "14:22",
+    "length_hours": 10,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Keeling-Marks",
+    "description": "Self-enabling maximized complexity",
+    "location": "73755 Maryland Circle",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "18:57",
+    "length_hours": 10,
+    "length_minutes": 8
+  },
+  {
+    "subject": "Tillman, Dooley and Johnson",
+    "description": "Synergized transitional data-warehouse",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:23",
+    "length_hours": 9,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Jones-Emmerich",
+    "description": "Cross-group impactful policy",
+    "location": null,
+    "time_zone": "Asia/Kathmandu",
+    "time_start": "10:48",
+    "length_hours": 11,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Schimmel-Murray",
+    "description": "Mandatory impactful infrastructure",
+    "location": "4 Messerschmidt Way",
+    "time_zone": "America/New_York",
+    "time_start": "10:43",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Cronin, Prosacco and Christiansen",
+    "description": "Synergized holistic open architecture",
+    "location": "4331 Continental Court",
+    "time_zone": "Europe/Uzhgorod",
+    "time_start": "5:17",
+    "length_hours": 8,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Willms-Strosin",
+    "description": "Progressive background budgetary management",
+    "location": "96907 Beilfuss Drive",
+    "time_zone": "Asia/Manila",
+    "time_start": "16:20",
+    "length_hours": 6,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Nikolaus, Streich and Erdman",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "13:47",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Weissnat Inc",
+    "description": "Digitized 4th generation service-desk",
+    "location": "128 Fairview Way",
+    "time_zone": "Europe/Paris",
+    "time_start": "7:39",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Orn, Schroeder and Cummerata",
+    "description": "Focused bandwidth-monitored complexity",
+    "location": "539 Graedel Junction",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:08",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wuckert, Jaskolski and Franecki",
+    "description": "Object-based 5th generation contingency",
+    "location": "842 Golf Course Drive",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "22:53",
+    "length_hours": 6,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Jast-Satterfield",
+    "description": "Mandatory attitude-oriented workforce",
+    "location": "7598 Meadow Valley Lane",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "17:21",
+    "length_hours": 5,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Mraz and Sons",
+    "description": null,
+    "location": "06484 Novick Plaza",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "5:27",
+    "length_hours": 6,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Mayer Inc",
+    "description": "Optional needs-based alliance",
+    "location": "322 Eagan Place",
+    "time_zone": "Asia/Makassar",
+    "time_start": "11:04",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kohler, Bruen and Roberts",
+    "description": "Extended discrete intranet",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "6:51",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Pollich Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Manila",
+    "time_start": "20:24",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Tremblay-Maggio",
+    "description": "Virtual real-time analyzer",
+    "location": "504 Heath Pass",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "7:02",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Homenick, Bailey and Friesen",
+    "description": "Triple-buffered tangible toolset",
+    "location": "19 Vahlen Lane",
+    "time_zone": "Europe/Moscow",
+    "time_start": "15:08",
+    "length_hours": 11,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Schuppe Inc",
+    "description": "Profit-focused client-driven parallelism",
+    "location": "546 Utah Court",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "4:19",
+    "length_hours": 6,
+    "length_minutes": 46
+  },
+  {
+    "subject": "Anderson LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "22:16",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Langworth-Lowe",
+    "description": "Centralized full-range flexibility",
+    "location": "73 Sachs Drive",
+    "time_zone": "Asia/Tehran",
+    "time_start": "10:05",
+    "length_hours": 7,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Hirthe, Bechtelar and Waelchi",
+    "description": "Synergized motivating migration",
+    "location": "50803 Haas Hill",
+    "time_zone": "America/Lima",
+    "time_start": "6:26",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Price Inc",
+    "description": "Universal static portal",
+    "location": "50759 Ridge Oak Trail",
+    "time_zone": "Asia/Manila",
+    "time_start": "9:57",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Feest-Wilderman",
+    "description": null,
+    "location": "01596 Waubesa Center",
+    "time_zone": "Europe/Zagreb",
+    "time_start": "21:37",
+    "length_hours": 9,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Bradtke-Barton",
+    "description": "Diverse neutral collaboration",
+    "location": "34547 Ridgeview Terrace",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "15:04",
+    "length_hours": 7,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Langworth Inc",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Tirane",
+    "time_start": "13:17",
+    "length_hours": 8,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Miller, Stroman and Emard",
+    "description": "Enhanced zero tolerance hardware",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "5:37",
+    "length_hours": 11,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Lakin and Sons",
+    "description": "Versatile 24 hour ability",
+    "location": "9552 Lillian Circle",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "8:38",
+    "length_hours": 7,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Dach-Cartwright",
+    "description": "Horizontal didactic open system",
+    "location": "57 Lawn Alley",
+    "time_zone": "Asia/Makassar",
+    "time_start": "15:51",
+    "length_hours": 8,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Harris, O'Keefe and Kirlin",
+    "description": "Inverse discrete collaboration",
+    "location": "8 Mendota Court",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "12:42",
+    "length_hours": 12,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Keebler Group",
+    "description": "Profound even-keeled portal",
+    "location": "9 Gina Place",
+    "time_zone": "Asia/Ho_Chi_Minh",
+    "time_start": "16:29",
+    "length_hours": 11,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Sporer, Moore and Reynolds",
+    "description": "Reactive well-modulated parallelism",
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "5:57",
+    "length_hours": 6,
+    "length_minutes": 15
+  },
+  {
+    "subject": "Bauch and Sons",
+    "description": null,
+    "location": "97 Stoughton Center",
+    "time_zone": "Asia/Karachi",
+    "time_start": "4:29",
+    "length_hours": 11,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Harvey Group",
+    "description": "Customizable contextually-based definition",
+    "location": "30559 Lunder Trail",
+    "time_zone": "Asia/Makassar",
+    "time_start": "19:13",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Rodriguez, Nikolaus and Jones",
+    "description": "Customizable reciprocal artificial intelligence",
+    "location": null,
+    "time_zone": "America/New_York",
+    "time_start": "17:29",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Funk Group",
+    "description": "Vision-oriented background Graphic Interface",
+    "location": null,
+    "time_zone": "Europe/Stockholm",
+    "time_start": "16:54",
+    "length_hours": 6,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Collier-Hilll",
+    "description": "Enhanced methodical firmware",
+    "location": "0625 Macpherson Pass",
+    "time_zone": "America/Bogota",
+    "time_start": "5:27",
+    "length_hours": 5,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Greenfelder-Padberg",
+    "description": "Synergistic leading edge leverage",
+    "location": null,
+    "time_zone": "Asia/Seoul",
+    "time_start": "21:18",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mante-Daugherty",
+    "description": "Advanced systematic solution",
+    "location": "5 Transport Street",
+    "time_zone": "Asia/Nicosia",
+    "time_start": "6:57",
+    "length_hours": 8,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Purdy, Nader and Beahan",
+    "description": "Diverse homogeneous architecture",
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:25",
+    "length_hours": 8,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Graham, Quigley and Schmidt",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "21:05",
+    "length_hours": 10,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Balistreri-Gutmann",
+    "description": "Multi-channelled human-resource flexibility",
+    "location": "3 Stephen Alley",
+    "time_zone": "America/Grenada",
+    "time_start": "9:44",
+    "length_hours": 4,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Olson LLC",
+    "description": "Automated reciprocal open system",
+    "location": "08513 Anderson Alley",
+    "time_zone": "Asia/Manila",
+    "time_start": "17:09",
+    "length_hours": 6,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Ullrich-Funk",
+    "description": "Fully-configurable eco-centric local area network",
+    "location": "76 Jenifer Junction",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "11:34",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Barrows Group",
+    "description": "Expanded 4th generation toolset",
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "6:58",
+    "length_hours": 10,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Goyette, Boyle and Wyman",
+    "description": "Face to face real-time standardization",
+    "location": "83 Cody Trail",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "14:22",
+    "length_hours": 4,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Kertzmann, Runolfsdottir and Dickinson",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Bogota",
+    "time_start": "11:20",
+    "length_hours": 8,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Farrell, Heidenreich and Doyle",
+    "description": "Front-line secondary concept",
+    "location": "01251 Erie Terrace",
+    "time_zone": "Asia/Krasnoyarsk",
+    "time_start": "14:07",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Wuckert Group",
+    "description": null,
+    "location": "15060 Hauk Hill",
+    "time_zone": "Asia/Manila",
+    "time_start": "18:08",
+    "length_hours": 10,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Hamill-Wolf",
+    "description": "Digitized maximized interface",
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "14:26",
+    "length_hours": 4,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Ritchie Group",
+    "description": "Phased uniform utilisation",
+    "location": "05471 Dakota Street",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "21:35",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "West Group",
+    "description": null,
+    "location": "8 Hovde Parkway",
+    "time_zone": "Europe/Paris",
+    "time_start": "19:56",
+    "length_hours": 4,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Thiel, Wyman and Stamm",
+    "description": "Upgradable empowering moderator",
+    "location": null,
+    "time_zone": "America/Boise",
+    "time_start": "19:04",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Nolan, Stark and Haley",
+    "description": null,
+    "location": "8 Mcguire Junction",
+    "time_zone": "America/Santarem",
+    "time_start": "14:03",
+    "length_hours": 6,
+    "length_minutes": 10
+  },
+  {
+    "subject": "Mraz and Sons",
+    "description": null,
+    "location": "7010 Paget Court",
+    "time_zone": "Europe/Warsaw",
+    "time_start": "15:04",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Macejkovic-Turcotte",
+    "description": null,
+    "location": "5 Eagan Street",
+    "time_zone": "Asia/Manila",
+    "time_start": "13:47",
+    "length_hours": 8,
+    "length_minutes": 50
+  },
+  {
+    "subject": "Pollich-Mohr",
+    "description": "Reverse-engineered 5th generation encoding",
+    "location": "892 Donald Point",
+    "time_zone": "Asia/Makassar",
+    "time_start": "10:19",
+    "length_hours": 10,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Graham, Hammes and Kirlin",
+    "description": "Function-based hybrid hierarchy",
+    "location": "85 Comanche Road",
+    "time_zone": "Asia/Makassar",
+    "time_start": "19:21",
+    "length_hours": 12,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Terry and Sons",
+    "description": null,
+    "location": "410 Michigan Pass",
+    "time_zone": "Europe/Paris",
+    "time_start": "15:28",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schmitt-Yundt",
+    "description": "Organic zero defect strategy",
+    "location": "4 Delaware Way",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "18:20",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mann, Rau and Lubowitz",
+    "description": null,
+    "location": "9670 Ludington Trail",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "5:14",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Weissnat LLC",
+    "description": "User-friendly static productivity",
+    "location": "78 Haas Way",
+    "time_zone": "Africa/Luanda",
+    "time_start": "6:26",
+    "length_hours": 5,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Gorczany, Mante and Greenfelder",
+    "description": null,
+    "location": "5978 Becker Way",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "11:44",
+    "length_hours": 9,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Considine-McClure",
+    "description": null,
+    "location": null,
+    "time_zone": "Pacific/Guam",
+    "time_start": "22:50",
+    "length_hours": 4,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Runolfsdottir, Hane and DuBuque",
+    "description": "Streamlined background hub",
+    "location": null,
+    "time_zone": "Africa/Ndjamena",
+    "time_start": "21:09",
+    "length_hours": 6,
+    "length_minutes": 59
+  },
+  {
+    "subject": "King LLC",
+    "description": null,
+    "location": "64 Parkside Center",
+    "time_zone": "Asia/Makassar",
+    "time_start": "4:24",
+    "length_hours": 4,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Funk-Larkin",
+    "description": "De-engineered optimal knowledge user",
+    "location": null,
+    "time_zone": "Asia/Bangkok",
+    "time_start": "21:53",
+    "length_hours": 12,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Gibson LLC",
+    "description": "Triple-buffered real-time software",
+    "location": "21395 East Terrace",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "10:38",
+    "length_hours": 5,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Langosh, Daugherty and Hegmann",
+    "description": "Down-sized contextually-based parallelism",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:39",
+    "length_hours": 9,
+    "length_minutes": 6
+  },
+  {
+    "subject": "Emmerich LLC",
+    "description": "Stand-alone contextually-based project",
+    "location": null,
+    "time_zone": "Africa/Bamako",
+    "time_start": "15:07",
+    "length_hours": 11,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Treutel-Schuster",
+    "description": "Assimilated logistical strategy",
+    "location": "9419 Riverside Way",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "16:14",
+    "length_hours": 11,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Walsh, Willms and Homenick",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Caracas",
+    "time_start": "13:28",
+    "length_hours": 6,
+    "length_minutes": 47
+  },
+  {
+    "subject": "Wiza, Schuster and Christiansen",
+    "description": null,
+    "location": "79 Gina Center",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "17:45",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Leannon, Morar and Hartmann",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Jakarta",
+    "time_start": "19:17",
+    "length_hours": 9,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Dooley, Roob and Predovic",
+    "description": "Self-enabling system-worthy data-warehouse",
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "19:04",
+    "length_hours": 11,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Murazik Group",
+    "description": "Reactive actuating structure",
+    "location": null,
+    "time_zone": "Africa/Kampala",
+    "time_start": "4:30",
+    "length_hours": 11,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Harber-Gerlach",
+    "description": "Optional background data-warehouse",
+    "location": "79 Wayridge Alley",
+    "time_zone": "Indian/Mauritius",
+    "time_start": "11:06",
+    "length_hours": 4,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Maggio, Schaefer and Balistreri",
+    "description": null,
+    "location": "4403 Miller Crossing",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "10:09",
+    "length_hours": 5,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Lebsack, Mayer and Daniel",
+    "description": "Down-sized multi-tasking superstructure",
+    "location": "67 Cordelia Road",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "11:28",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bergnaum and Sons",
+    "description": "Expanded attitude-oriented collaboration",
+    "location": "8387 Norway Maple Lane",
+    "time_zone": "Europe/Athens",
+    "time_start": "6:16",
+    "length_hours": 9,
+    "length_minutes": 29
+  },
+  {
+    "subject": "McLaughlin, West and Wolf",
+    "description": null,
+    "location": "6866 Lunder Alley",
+    "time_zone": "Asia/Manila",
+    "time_start": "18:55",
+    "length_hours": 6,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Fahey, Hermiston and Skiles",
+    "description": "Focused intermediate customer loyalty",
+    "location": null,
+    "time_zone": "Indian/Comoro",
+    "time_start": "12:16",
+    "length_hours": 6,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Kertzmann LLC",
+    "description": "Proactive dynamic encoding",
+    "location": "584 Waywood Terrace",
+    "time_zone": "Europe/Volgograd",
+    "time_start": "17:07",
+    "length_hours": 5,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Barton Group",
+    "description": "Cross-platform zero defect strategy",
+    "location": "8 Haas Hill",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "15:38",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Ryan Inc",
+    "description": "Quality-focused intermediate encoding",
+    "location": null,
+    "time_zone": "America/Bogota",
+    "time_start": "11:17",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mann-Welch",
+    "description": "Grass-roots needs-based initiative",
+    "location": "7 Vidon Circle",
+    "time_zone": "Europe/Rome",
+    "time_start": "13:00",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Boyle-Denesik",
+    "description": "Up-sized fault-tolerant contingency",
+    "location": "10979 Ilene Terrace",
+    "time_zone": "Africa/Dakar",
+    "time_start": "4:45",
+    "length_hours": 4,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Grimes, Corkery and Pfannerstill",
+    "description": null,
+    "location": "9 Homewood Road",
+    "time_zone": "Asia/Manila",
+    "time_start": "14:40",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Beier, Collier and Schmeler",
+    "description": "Object-based non-volatile installation",
+    "location": "8 Kennedy Park",
+    "time_zone": "America/Argentina/Cordoba",
+    "time_start": "15:38",
+    "length_hours": 6,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Cremin and Sons",
+    "description": "Operative analyzing time-frame",
+    "location": "6 Packers Center",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "15:24",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Johnson LLC",
+    "description": "Up-sized system-worthy artificial intelligence",
+    "location": "92 Blue Bill Park Lane",
+    "time_zone": "Europe/Moscow",
+    "time_start": "17:59",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Sawayn Inc",
+    "description": null,
+    "location": "04 Derek Drive",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "6:20",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Legros Inc",
+    "description": null,
+    "location": "0464 Harbort Alley",
+    "time_zone": "Europe/Prague",
+    "time_start": "4:06",
+    "length_hours": 12,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Turcotte-Cruickshank",
+    "description": "Advanced reciprocal moratorium",
+    "location": null,
+    "time_zone": "Europe/Kiev",
+    "time_start": "20:32",
+    "length_hours": 11,
+    "length_minutes": 40
+  },
+  {
+    "subject": "Torp Inc",
+    "description": "Focused radical hub",
+    "location": "26654 Eagle Crest Avenue",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "4:17",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schaden, Kessler and Walsh",
+    "description": "Grass-roots homogeneous artificial intelligence",
+    "location": null,
+    "time_zone": "America/Bahia",
+    "time_start": "14:42",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Frami, Lindgren and O'Hara",
+    "description": "Face to face grid-enabled framework",
+    "location": null,
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "12:27",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Armstrong, Bayer and Metz",
+    "description": "Switchable well-modulated data-warehouse",
+    "location": "2 Spaight Junction",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "20:13",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Medhurst-Quitzon",
+    "description": "Grass-roots content-based open system",
+    "location": "0 Redwing Way",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "21:52",
+    "length_hours": 5,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Cummings-Mann",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Simferopol",
+    "time_start": "8:23",
+    "length_hours": 7,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Steuber Group",
+    "description": "Public-key holistic capacity",
+    "location": "808 Duke Trail",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "14:26",
+    "length_hours": 11,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Torp, Reichert and Daniel",
+    "description": "Grass-roots static workforce",
+    "location": "79434 Merry Court",
+    "time_zone": "Asia/Tehran",
+    "time_start": "20:16",
+    "length_hours": 5,
+    "length_minutes": 17
+  },
+  {
+    "subject": "Schuster Group",
+    "description": "User-centric hybrid instruction set",
+    "location": "2 Waubesa Place",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "8:58",
+    "length_hours": 9,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Cremin-Rempel",
+    "description": "Configurable content-based capability",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:21",
+    "length_hours": 10,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Keeling Inc",
+    "description": "Organic optimizing utilisation",
+    "location": null,
+    "time_zone": "Asia/Ashgabat",
+    "time_start": "17:11",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Windler, Smitham and Hoeger",
+    "description": "Extended zero administration alliance",
+    "location": "63885 Victoria Street",
+    "time_zone": "Europe/Rome",
+    "time_start": "20:15",
+    "length_hours": 10,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Dickens-Conroy",
+    "description": null,
+    "location": "622 Badeau Park",
+    "time_zone": "Europe/Vilnius",
+    "time_start": "10:55",
+    "length_hours": 12,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Sawayn, Windler and Lynch",
+    "description": "Down-sized stable portal",
+    "location": null,
+    "time_zone": "America/Lima",
+    "time_start": "7:47",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Moore-Thompson",
+    "description": "Expanded object-oriented encoding",
+    "location": null,
+    "time_zone": "Asia/Riyadh",
+    "time_start": "6:03",
+    "length_hours": 7,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Feeney, Lakin and Aufderhar",
+    "description": null,
+    "location": "49630 Forest Dale Trail",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "4:30",
+    "length_hours": 4,
+    "length_minutes": null
+  },
+  {
+    "subject": "Muller Group",
+    "description": "Multi-layered attitude-oriented adapter",
+    "location": "209 Oriole Alley",
+    "time_zone": "America/Lima",
+    "time_start": "20:22",
+    "length_hours": 8,
+    "length_minutes": 20
+  },
+  {
+    "subject": "Homenick-Schoen",
+    "description": "User-friendly high-level adapter",
+    "location": "793 5th Parkway",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "10:47",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lang, Littel and Cronin",
+    "description": "Configurable even-keeled firmware",
+    "location": "6 Claremont Trail",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "6:38",
+    "length_hours": 8,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Nolan, Harber and Fay",
+    "description": "Organic fresh-thinking concept",
+    "location": null,
+    "time_zone": "Asia/Dili",
+    "time_start": "7:35",
+    "length_hours": 12,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Jerde-Gerlach",
+    "description": null,
+    "location": "53330 Center Crossing",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "8:10",
+    "length_hours": 5,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Douglas and Sons",
+    "description": null,
+    "location": "3619 Anderson Way",
+    "time_zone": "America/Chicago",
+    "time_start": "13:08",
+    "length_hours": 8,
+    "length_minutes": 9
+  },
+  {
+    "subject": "Durgan-Spinka",
+    "description": null,
+    "location": "90590 Hooker Terrace",
+    "time_zone": "America/La_Paz",
+    "time_start": "21:20",
+    "length_hours": 5,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Smith, Corkery and Farrell",
+    "description": "Switchable 24 hour budgetary management",
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "18:47",
+    "length_hours": 8,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Abshire LLC",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Makassar",
+    "time_start": "12:54",
+    "length_hours": 11,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Kertzmann LLC",
+    "description": null,
+    "location": "3 Nelson Point",
+    "time_zone": "Asia/Jerusalem",
+    "time_start": "20:16",
+    "length_hours": 6,
+    "length_minutes": 22
+  },
+  {
+    "subject": "Hansen, Wunsch and Balistreri",
+    "description": "Diverse non-volatile projection",
+    "location": "733 Anthes Junction",
+    "time_zone": "America/Asuncion",
+    "time_start": "12:28",
+    "length_hours": 8,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Sporer-Hoppe",
+    "description": "Synergized asymmetric utilisation",
+    "location": "2953 Village Green Road",
+    "time_zone": "Asia/Urumqi",
+    "time_start": "14:33",
+    "length_hours": 4,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Bayer-Swaniawski",
+    "description": "Right-sized intermediate analyzer",
+    "location": "85 Caliangt Pass",
+    "time_zone": "Asia/Tokyo",
+    "time_start": "8:12",
+    "length_hours": 10,
+    "length_minutes": 24
+  },
+  {
+    "subject": "Mohr-Roob",
+    "description": "Vision-oriented non-volatile hardware",
+    "location": "2 Lakeland Trail",
+    "time_zone": "Europe/Paris",
+    "time_start": "21:54",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Hirthe and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Tokyo",
+    "time_start": "9:30",
+    "length_hours": 12,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Rogahn, Hammes and Feeney",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Toronto",
+    "time_start": "5:37",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Jacobson Inc",
+    "description": null,
+    "location": "34902 Banding Junction",
+    "time_zone": "Asia/Manila",
+    "time_start": "16:15",
+    "length_hours": 10,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Beatty Group",
+    "description": "Grass-roots tertiary productivity",
+    "location": "828 Magdeline Avenue",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "13:59",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Emmerich LLC",
+    "description": null,
+    "location": "90 Mariners Cove Point",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "10:02",
+    "length_hours": 5,
+    "length_minutes": 7
+  },
+  {
+    "subject": "Little LLC",
+    "description": null,
+    "location": "3997 Saint Paul Terrace",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "14:23",
+    "length_hours": 12,
+    "length_minutes": 34
+  },
+  {
+    "subject": "Abshire Inc",
+    "description": "Team-oriented dynamic software",
+    "location": "55 Nevada Alley",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "9:01",
+    "length_hours": 5,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Orn-Dicki",
+    "description": "Monitored even-keeled product",
+    "location": "4 Tennessee Parkway",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "6:48",
+    "length_hours": 10,
+    "length_minutes": 26
+  },
+  {
+    "subject": "Feest, Pfannerstill and Nader",
+    "description": "Devolved empowering methodology",
+    "location": "4 Maple Way",
+    "time_zone": "Europe/Moscow",
+    "time_start": "22:36",
+    "length_hours": 7,
+    "length_minutes": 36
+  },
+  {
+    "subject": "Nicolas, Waelchi and Raynor",
+    "description": null,
+    "location": "1923 Rutledge Trail",
+    "time_zone": "Asia/Makassar",
+    "time_start": "9:11",
+    "length_hours": 7,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Bradtke-Borer",
+    "description": "Synchronised empowering toolset",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "19:22",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Carter and Sons",
+    "description": "Ergonomic discrete open system",
+    "location": null,
+    "time_zone": "Europe/Madrid",
+    "time_start": "13:37",
+    "length_hours": 9,
+    "length_minutes": 27
+  },
+  {
+    "subject": "Gerhold Group",
+    "description": "Cross-group content-based architecture",
+    "location": null,
+    "time_zone": "Europe/Moscow",
+    "time_start": "20:40",
+    "length_hours": 6,
+    "length_minutes": 39
+  },
+  {
+    "subject": "Marvin-Rohan",
+    "description": "Self-enabling human-resource moderator",
+    "location": "4 Charing Cross Place",
+    "time_zone": "Asia/Muscat",
+    "time_start": "20:54",
+    "length_hours": 9,
+    "length_minutes": 28
+  },
+  {
+    "subject": "Lakin, Kertzmann and Toy",
+    "description": "Advanced systematic throughput",
+    "location": null,
+    "time_zone": "Africa/Dar_es_Salaam",
+    "time_start": "12:36",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bogisich Inc",
+    "description": "Visionary heuristic workforce",
+    "location": null,
+    "time_zone": "Asia/Shanghai",
+    "time_start": "6:50",
+    "length_hours": 10,
+    "length_minutes": 25
+  },
+  {
+    "subject": "Bednar Group",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "13:39",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bartoletti-Murray",
+    "description": null,
+    "location": "36 Forest Dale Parkway",
+    "time_zone": "Europe/Helsinki",
+    "time_start": "13:52",
+    "length_hours": 7,
+    "length_minutes": 21
+  },
+  {
+    "subject": "Streich and Sons",
+    "description": null,
+    "location": "2 Lillian Park",
+    "time_zone": "America/Argentina/Buenos_Aires",
+    "time_start": "15:31",
+    "length_hours": 9,
+    "length_minutes": 2
+  },
+  {
+    "subject": "Wiza, Leannon and Hills",
+    "description": "Right-sized reciprocal implementation",
+    "location": "65410 Bellgrove Drive",
+    "time_zone": "Asia/Bangkok",
+    "time_start": "13:29",
+    "length_hours": 10,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Goyette and Sons",
+    "description": "Devolved 6th generation hub",
+    "location": null,
+    "time_zone": "America/Caracas",
+    "time_start": "9:18",
+    "length_hours": 11,
+    "length_minutes": 5
+  },
+  {
+    "subject": "Gusikowski-Beahan",
+    "description": null,
+    "location": "0523 Graedel Terrace",
+    "time_zone": "America/Argentina/Cordoba",
+    "time_start": "21:28",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Considine and Sons",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Tirane",
+    "time_start": "22:56",
+    "length_hours": 6,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Dickinson, Goodwin and Schumm",
+    "description": null,
+    "location": "2 Stuart Place",
+    "time_zone": "America/Mexico_City",
+    "time_start": "15:43",
+    "length_hours": 10,
+    "length_minutes": 3
+  },
+  {
+    "subject": "Wuckert-Streich",
+    "description": null,
+    "location": "32303 Crownhardt Park",
+    "time_zone": "Europe/Moscow",
+    "time_start": "6:04",
+    "length_hours": 11,
+    "length_minutes": 49
+  },
+  {
+    "subject": "Farrell-Wisozk",
+    "description": null,
+    "location": "90518 5th Road",
+    "time_zone": "Africa/Johannesburg",
+    "time_start": "19:30",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Harber Inc",
+    "description": "Advanced zero administration workforce",
+    "location": "55 Farragut Crossing",
+    "time_zone": "America/Port-au-Prince",
+    "time_start": "7:56",
+    "length_hours": 5,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Langosh LLC",
+    "description": "Automated holistic forecast",
+    "location": "44929 Sutteridge Pass",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "21:51",
+    "length_hours": 9,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Doyle-Schamberger",
+    "description": null,
+    "location": "96 Dapin Pass",
+    "time_zone": "America/Chicago",
+    "time_start": "12:12",
+    "length_hours": 9,
+    "length_minutes": 26
+  },
+  {
+    "subject": "DuBuque, Conn and Kuhlman",
+    "description": null,
+    "location": "6829 Brickson Park Junction",
+    "time_zone": "Asia/Kashgar",
+    "time_start": "19:01",
+    "length_hours": 10,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Parker-Considine",
+    "description": null,
+    "location": "52 Memorial Park",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "7:03",
+    "length_hours": 12,
+    "length_minutes": 48
+  },
+  {
+    "subject": "Dare and Sons",
+    "description": null,
+    "location": "27 Waxwing Plaza",
+    "time_zone": "Africa/Monrovia",
+    "time_start": "5:40",
+    "length_hours": 5,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Sanford LLC",
+    "description": "Universal transitional ability",
+    "location": "86135 Service Junction",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "6:55",
+    "length_hours": 9,
+    "length_minutes": 23
+  },
+  {
+    "subject": "Gislason and Sons",
+    "description": "Adaptive systematic matrix",
+    "location": null,
+    "time_zone": "Asia/Omsk",
+    "time_start": "8:34",
+    "length_hours": 6,
+    "length_minutes": 1
+  },
+  {
+    "subject": "Farrell LLC",
+    "description": "Monitored mission-critical orchestration",
+    "location": "824 Fordem Street",
+    "time_zone": "America/Argentina/Buenos_Aires",
+    "time_start": "17:43",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schamberger, Reichert and Rippin",
+    "description": null,
+    "location": "9 Lakewood Gardens Road",
+    "time_zone": "Pacific/Guam",
+    "time_start": "9:30",
+    "length_hours": 6,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Purdy-Feeney",
+    "description": "Multi-channelled asymmetric implementation",
+    "location": "80 Burrows Trail",
+    "time_zone": "Asia/Manila",
+    "time_start": "7:57",
+    "length_hours": 11,
+    "length_minutes": 19
+  },
+  {
+    "subject": "Marvin and Sons",
+    "description": "Seamless heuristic forecast",
+    "location": "084 Sutteridge Plaza",
+    "time_zone": "Asia/Manila",
+    "time_start": "20:01",
+    "length_hours": 6,
+    "length_minutes": 57
+  },
+  {
+    "subject": "Ryan Group",
+    "description": "Visionary analyzing pricing structure",
+    "location": "00064 Blue Bill Park Trail",
+    "time_zone": "America/Mexico_City",
+    "time_start": "7:13",
+    "length_hours": 10,
+    "length_minutes": 43
+  },
+  {
+    "subject": "Jast LLC",
+    "description": null,
+    "location": "13 Buell Street",
+    "time_zone": "Europe/Prague",
+    "time_start": "19:10",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Volkman-Schuppe",
+    "description": null,
+    "location": "2839 Elmside Hill",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "5:56",
+    "length_hours": 11,
+    "length_minutes": 35
+  },
+  {
+    "subject": "Abernathy-Eichmann",
+    "description": "Re-engineered impactful ability",
+    "location": "0 Jana Junction",
+    "time_zone": "Europe/Paris",
+    "time_start": "20:28",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Deckow, Weber and Will",
+    "description": "Centralized grid-enabled standardization",
+    "location": "3850 Talmadge Park",
+    "time_zone": "Europe/Uzhgorod",
+    "time_start": "9:40",
+    "length_hours": 12,
+    "length_minutes": 0
+  },
+  {
+    "subject": "Ankunding LLC",
+    "description": null,
+    "location": "7 Sherman Alley",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "13:10",
+    "length_hours": 6,
+    "length_minutes": 51
+  },
+  {
+    "subject": "Gorczany, Schumm and Bednar",
+    "description": null,
+    "location": "3861 Emmet Junction",
+    "time_zone": "Asia/Harbin",
+    "time_start": "4:25",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Mann, Jaskolski and Jakubowski",
+    "description": "Front-line neutral algorithm",
+    "location": "0 Anthes Road",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "15:46",
+    "length_hours": 8,
+    "length_minutes": 14
+  },
+  {
+    "subject": "Sporer-Muller",
+    "description": "Re-engineered content-based implementation",
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "7:59",
+    "length_hours": 5,
+    "length_minutes": 55
+  },
+  {
+    "subject": "Mills-Murphy",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Dushanbe",
+    "time_start": "7:46",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Doyle, Torphy and Brekke",
+    "description": null,
+    "location": "5584 Hallows Point",
+    "time_zone": "Asia/Makassar",
+    "time_start": "7:45",
+    "length_hours": 11,
+    "length_minutes": 41
+  },
+  {
+    "subject": "Bartoletti Group",
+    "description": "Managed transitional hierarchy",
+    "location": "5 Brentwood Trail",
+    "time_zone": "Asia/Magadan",
+    "time_start": "10:24",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Schmidt Group",
+    "description": null,
+    "location": "8 Riverside Place",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "15:34",
+    "length_hours": 12,
+    "length_minutes": 59
+  },
+  {
+    "subject": "Harvey and Sons",
+    "description": "Sharable methodical data-warehouse",
+    "location": null,
+    "time_zone": "Asia/Jayapura",
+    "time_start": "6:32",
+    "length_hours": 12,
+    "length_minutes": 12
+  },
+  {
+    "subject": "Harvey Group",
+    "description": "Down-sized content-based structure",
+    "location": "93 Spaight Court",
+    "time_zone": "Europe/Dublin",
+    "time_start": "4:55",
+    "length_hours": 6,
+    "length_minutes": 38
+  },
+  {
+    "subject": "Wehner, Mitchell and Lang",
+    "description": "Diverse multi-tasking knowledge base",
+    "location": "5466 Northwestern Drive",
+    "time_zone": "Europe/Paris",
+    "time_start": "4:50",
+    "length_hours": 6,
+    "length_minutes": 4
+  },
+  {
+    "subject": "Leuschke Group",
+    "description": null,
+    "location": null,
+    "time_zone": "America/Mexico_City",
+    "time_start": "16:11",
+    "length_hours": 11,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Cummings, Jenkins and Fadel",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Chongqing",
+    "time_start": "21:38",
+    "length_hours": 8,
+    "length_minutes": 30
+  },
+  {
+    "subject": "West, Homenick and Carroll",
+    "description": null,
+    "location": "91 Eggendart Place",
+    "time_zone": "Europe/Moscow",
+    "time_start": "16:59",
+    "length_hours": 7,
+    "length_minutes": 33
+  },
+  {
+    "subject": "Conroy-Hane",
+    "description": null,
+    "location": "7764 Iowa Alley",
+    "time_zone": "Asia/Harbin",
+    "time_start": "11:20",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Grimes LLC",
+    "description": "Vision-oriented mission-critical policy",
+    "location": "828 Pierstorff Road",
+    "time_zone": "America/Los_Angeles",
+    "time_start": "20:26",
+    "length_hours": 5,
+    "length_minutes": 32
+  },
+  {
+    "subject": "Boyle LLC",
+    "description": "Open-architected web-enabled process improvement",
+    "location": null,
+    "time_zone": "Asia/Bangkok",
+    "time_start": "9:10",
+    "length_hours": 10,
+    "length_minutes": 11
+  },
+  {
+    "subject": "Rogahn Inc",
+    "description": "Triple-buffered web-enabled attitude",
+    "location": "6 Moose Drive",
+    "time_zone": "Asia/Jakarta",
+    "time_start": "21:32",
+    "length_hours": 9,
+    "length_minutes": null
+  },
+  {
+    "subject": "Becker, Vandervort and Blick",
+    "description": null,
+    "location": "46 Jana Drive",
+    "time_zone": "America/Sao_Paulo",
+    "time_start": "11:53",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Kunze, Roob and Will",
+    "description": "Devolved holistic knowledge user",
+    "location": "66694 Pankratz Trail",
+    "time_zone": "Asia/Omsk",
+    "time_start": "22:13",
+    "length_hours": 9,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Herman-Runolfsdottir",
+    "description": "Diverse homogeneous knowledge base",
+    "location": null,
+    "time_zone": "Asia/Tokyo",
+    "time_start": "11:49",
+    "length_hours": 4,
+    "length_minutes": 29
+  },
+  {
+    "subject": "Schimmel and Sons",
+    "description": "Adaptive user-facing forecast",
+    "location": null,
+    "time_zone": "Europe/Paris",
+    "time_start": "11:43",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Reichel, Osinski and Gutmann",
+    "description": "Synergized homogeneous frame",
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "22:05",
+    "length_hours": 8,
+    "length_minutes": null
+  },
+  {
+    "subject": "Crona LLC",
+    "description": "Function-based neutral budgetary management",
+    "location": "0 Becker Drive",
+    "time_zone": "Pacific/Tongatapu",
+    "time_start": "15:09",
+    "length_hours": 10,
+    "length_minutes": null
+  },
+  {
+    "subject": "Romaguera, Rippin and Effertz",
+    "description": null,
+    "location": null,
+    "time_zone": "Europe/Warsaw",
+    "time_start": "7:53",
+    "length_hours": 5,
+    "length_minutes": null
+  },
+  {
+    "subject": "Bogan-Lynch",
+    "description": null,
+    "location": "037 Cottonwood Place",
+    "time_zone": "Asia/Phnom_Penh",
+    "time_start": "19:28",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Fay and Sons",
+    "description": "Self-enabling disintermediate complexity",
+    "location": "11712 Ridgeview Hill",
+    "time_zone": "Asia/Harbin",
+    "time_start": "11:30",
+    "length_hours": 4,
+    "length_minutes": 53
+  },
+  {
+    "subject": "Lind-Cassin",
+    "description": "Inverse systematic circuit",
+    "location": "96479 Sage Junction",
+    "time_zone": "Europe/Moscow",
+    "time_start": "15:12",
+    "length_hours": 6,
+    "length_minutes": 2
+  },
+  {
+    "subject": "O'Hara-Toy",
+    "description": null,
+    "location": null,
+    "time_zone": "Asia/Harbin",
+    "time_start": "17:02",
+    "length_hours": 8,
+    "length_minutes": 30
+  },
+  {
+    "subject": "Mills, Kuhic and Rohan",
+    "description": "Focused disintermediate application",
+    "location": "0993 Dawn Alley",
+    "time_zone": "Asia/Chongqing",
+    "time_start": "4:19",
+    "length_hours": 12,
+    "length_minutes": null
+  },
+  {
+    "subject": "Lang-Kirlin",
+    "description": "Virtual analyzing model",
+    "location": "06335 Village Plaza",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "20:24",
+    "length_hours": 11,
+    "length_minutes": null
+  },
+  {
+    "subject": "Price and Sons",
+    "description": null,
+    "location": "1 Southridge Point",
+    "time_zone": "Europe/Lisbon",
+    "time_start": "5:33",
+    "length_hours": 7,
+    "length_minutes": 31
+  },
+  {
+    "subject": "Bergnaum, Stamm and Leannon",
+    "description": "Configurable bifurcated intranet",
+    "location": null,
+    "time_zone": "Pacific/Port_Moresby",
+    "time_start": "15:42",
+    "length_hours": 6,
+    "length_minutes": null
+  },
+  {
+    "subject": "Runolfsdottir and Sons",
+    "description": "De-engineered 24 hour function",
+    "location": "2877 Lakeland Center",
+    "time_zone": "America/Lima",
+    "time_start": "21:58",
+    "length_hours": 7,
+    "length_minutes": null
+  },
+  {
+    "subject": "Pollich, Goyette and O'Reilly",
+    "description": "Expanded background Graphic Interface",
+    "location": "3012 Chive Place",
+    "time_zone": "Asia/Shanghai",
+    "time_start": "11:04",
+    "length_hours": 10,
+    "length_minutes": 38
+  }
+]
diff --git a/priv/repo/migrations/20210306171754_create_shift_templates.exs b/priv/repo/migrations/20210306171754_create_shift_templates.exs
index b781bd5f..7f0050a5 100644
--- a/priv/repo/migrations/20210306171754_create_shift_templates.exs
+++ b/priv/repo/migrations/20210306171754_create_shift_templates.exs
@@ -4,13 +4,12 @@ defmodule Shift73k.Repo.Migrations.CreateShiftTemplates do
   def change do
     create table(:shift_templates, primary_key: false) do
       add :id, :binary_id, primary_key: true
-      add :subject, :string, null: false
-      add :description, :string
-      add :location, :string
-      add :timezone, :string, null: false
-      add :start_time, :time, null: false
-      add :length_hours, :integer, null: false
-      add :length_minutes, :integer
+      add :subject, :string, size: 280, null: false
+      add :location, :string, size: 280
+      add :description, :text
+      add :time_zone, :string, null: false
+      add :time_start, :time, null: false
+      add :time_end, :time, null: false
       add :user_id, references(:users, on_delete: :nothing, type: :binary_id)
 
       timestamps()
diff --git a/priv/repo/seeds.exs b/priv/repo/seeds.exs
index 1c216ea6..b976d279 100644
--- a/priv/repo/seeds.exs
+++ b/priv/repo/seeds.exs
@@ -75,7 +75,6 @@ mock_users =
 Repo.insert_all(User, mock_users)
 # end
 
-
 #####
 # shift tepmlates
 alias Shift73k.ShiftTemplates.ShiftTemplate
@@ -101,15 +100,18 @@ for user <- Accounts.list_users() do
     |> Enum.map(fn e ->
       seconds_to_add = :rand.uniform(seconds_days_14) + seconds_half_day
       add_dt = NaiveDateTime.add(user.inserted_at, seconds_to_add)
+      time_start = time_from_mock.(e["time_start"])
+      shift_len_min = e["length_minutes"] || 0
+      shift_length = e["length_hours"] * 60 * 60 + shift_len_min * 60
+      time_end = Time.add(time_start, shift_length) |> Time.truncate(:second)
 
       %{
         subject: e["subject"],
         description: e["description"],
         location: e["location"],
-        timezone: (Tzdata.zone_list() |> Enum.random()),
-        start_time: time_from_mock.(e["start_time"]),
-        length_hours: e["length_hours"],
-        length_minutes: e["length_minutes"],
+        time_zone: Tzdata.zone_list() |> Enum.random(),
+        time_start: time_start,
+        time_end: time_end,
         user_id: user.id,
         inserted_at: add_dt,
         updated_at: add_dt
@@ -117,5 +119,4 @@ for user <- Accounts.list_users() do
     end)
 
   Repo.insert_all(ShiftTemplate, user_shifts)
-
 end
diff --git a/test/shift73k/shift_templates_test.exs b/test/shift73k/shift_templates_test.exs
index 85f9d0dd..717390b9 100644
--- a/test/shift73k/shift_templates_test.exs
+++ b/test/shift73k/shift_templates_test.exs
@@ -6,9 +6,9 @@ defmodule Shift73k.ShiftTemplatesTest do
   describe "shift_templates" do
     alias Shift73k.ShiftTemplates.ShiftTemplate
 
-    @valid_attrs %{description: "some description", label: "some label", length_hours: 42, length_minutes: 42, location: "some location", start_time: ~T[14:00:00], subject: "some subject", timezone: "some timezone"}
-    @update_attrs %{description: "some updated description", label: "some updated label", length_hours: 43, length_minutes: 43, location: "some updated location", start_time: ~T[15:01:01], subject: "some updated subject", timezone: "some updated timezone"}
-    @invalid_attrs %{description: nil, label: nil, length_hours: nil, length_minutes: nil, location: nil, start_time: nil, subject: nil, timezone: nil}
+    @valid_attrs %{description: "some description", location: "some location", time_start: ~T[08:00:00], time_end: ~T[16:00:00], subject: "some subject", time_zone: "some time_zone"}
+    @update_attrs %{description: "some updated description", location: "some updated location", time_start: ~T[13:00:00], time_end: ~T[19:30:00], subject: "some updated subject", time_zone: "some updated time_zone"}
+    @invalid_attrs %{description: nil, location: nil, time_start: nil, time_end: nil, subject: nil, time_zone: nil}
 
     def shift_template_fixture(attrs \\ %{}) do
       {:ok, shift_template} =
@@ -32,12 +32,11 @@ defmodule Shift73k.ShiftTemplatesTest do
     test "create_shift_template/1 with valid data creates a shift_template" do
       assert {:ok, %ShiftTemplate{} = shift_template} = ShiftTemplates.create_shift_template(@valid_attrs)
       assert shift_template.description == "some description"
-      assert shift_template.length_hours == 42
-      assert shift_template.length_minutes == 42
       assert shift_template.location == "some location"
-      assert shift_template.start_time == ~T[14:00:00]
+      assert shift_template.time_start == ~T[07:00:00]
+      assert shift_template.time_end == ~T[15:00:00]
       assert shift_template.subject == "some subject"
-      assert shift_template.timezone == "some timezone"
+      assert shift_template.time_zone == "some time_zone"
     end
 
     test "create_shift_template/1 with invalid data returns error changeset" do
@@ -48,12 +47,11 @@ defmodule Shift73k.ShiftTemplatesTest do
       shift_template = shift_template_fixture()
       assert {:ok, %ShiftTemplate{} = shift_template} = ShiftTemplates.update_shift_template(shift_template, @update_attrs)
       assert shift_template.description == "some updated description"
-      assert shift_template.length_hours == 43
-      assert shift_template.length_minutes == 43
       assert shift_template.location == "some updated location"
-      assert shift_template.start_time == ~T[15:01:01]
+      assert shift_template.time_start == ~T[15:00:00]
+      assert shift_template.time_end == ~T[19:30:00]
       assert shift_template.subject == "some updated subject"
-      assert shift_template.timezone == "some updated timezone"
+      assert shift_template.time_zone == "some updated time_zone"
     end
 
     test "update_shift_template/2 with invalid data returns error changeset" do
diff --git a/test/shift73k_web/live/shift_template_live_test.exs b/test/shift73k_web/live/shift_template_live_test.exs
index 75cd2e34..290d762b 100644
--- a/test/shift73k_web/live/shift_template_live_test.exs
+++ b/test/shift73k_web/live/shift_template_live_test.exs
@@ -7,30 +7,27 @@ defmodule Shift73kWeb.ShiftTemplateLiveTest do
 
   @create_attrs %{
     description: "some description",
-    length_hours: 12,
-    length_minutes: 42,
     location: "some location",
-    start_time: ~T[14:00:00],
+    time_start: ~T[08:00:00],
+    time_end: ~T[16:00:00],
     subject: "some subject",
-    timezone: "some timezone"
+    time_zone: "some time_zone"
   }
   @update_attrs %{
     description: "some updated description",
-    length_hours: 12,
-    length_minutes: 43,
     location: "some updated location",
-    start_time: ~T[15:01:01],
+    time_start: ~T[15:00:00],
+    time_end: ~T[19:30:00],
     subject: "some updated subject",
-    timezone: "some updated timezone"
+    time_zone: "some updated time_zone"
   }
   @invalid_attrs %{
     description: nil,
-    length_hours: nil,
-    length_minutes: nil,
     location: nil,
-    start_time: nil,
+    time_start: nil,
+    time_end: nil,
     subject: nil,
-    timezone: nil
+    time_zone: nil
   }
 
   defp fixture(:shift_template) do