1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
|
// Map, wardley map editor for linux
// Copyright (C) 2026 Rubén Beltrán del Río
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Suppress warnings from relm4 view! macro internals
mod actions;
mod components;
mod constants;
mod dialogs;
mod file_registry;
mod handlers;
mod i18n;
mod info;
mod preferences;
mod stages;
mod icon_names {
#![allow(clippy::doc_markdown)] // Generated code from relm4_icons_build
include!(concat!(env!("OUT_DIR"), "/icon_names.rs"));
}
use std::cell::RefCell;
use std::convert::identity;
use std::path::PathBuf;
use crate::actions::Action;
use adw::prelude::*;
use cairo::ImageSurface;
use gtk::glib;
use relm4::actions::{AccelsPlus, RelmAction, RelmActionGroup};
use relm4::prelude::*;
use sourceview5::LanguageManager;
use sourceview5::prelude::*;
use stages::LocalizedStageType;
use wmap_parser::{Map, parse};
use wmap_renderer::{Configuration, StageType, render_to_surface};
use components::footer::{Footer, FooterInit};
use components::header::{Header, HeaderInit};
/// Macro to reduce boilerplate when registering actions with accelerators.
macro_rules! register_action {
($group:expr, $app:expr, $sender:expr, $action_type:ty, $message:expr, $accelerators:expr) => {{
let sender = $sender.clone();
let action: RelmAction<$action_type> = RelmAction::new_stateless(move |_| {
sender.input($message);
});
$group.add_action(action.clone());
$app.set_accelerators_for_action::<$action_type>($accelerators);
action
}};
}
/// Macro to further reduce the boilerplate, by allowing terser registration.
macro_rules! register_actions {
($group:expr, $app:expr, $sender:expr, [
$( $action_type:ty => $message:expr, $accelerators:expr );+ $(;)?
]) => {{
$(
register_action!(
$group, $app, $sender,
$action_type, $message, $accelerators
);
)+
}};
}
// Action group and action type declarations
relm4::new_action_group!(WindowActionGroup, "window");
relm4::new_stateless_action!(NewAction, WindowActionGroup, "new");
relm4::new_stateless_action!(OpenAction, WindowActionGroup, "open");
relm4::new_stateless_action!(SaveAction, WindowActionGroup, "save");
relm4::new_stateless_action!(SaveAsAction, WindowActionGroup, "save-as");
relm4::new_stateless_action!(CloseAction, WindowActionGroup, "close");
relm4::new_stateless_action!(ExportImageAction, WindowActionGroup, "export-image");
relm4::new_stateless_action!(
ChangeOrientationAction,
WindowActionGroup,
"change-orientation"
);
relm4::new_stateless_action!(ZoomInAction, WindowActionGroup, "zoom-in");
relm4::new_stateless_action!(ZoomOutAction, WindowActionGroup, "zoom-out");
relm4::new_stateless_action!(AboutAction, WindowActionGroup, "about");
relm4::new_stateless_action!(PreferencesAction, WindowActionGroup, "preferences");
struct NewFromTemplateAction;
impl relm4::actions::ActionName for NewFromTemplateAction {
type Group = WindowActionGroup;
type Target = String;
type State = ();
const NAME: &'static str = "new-from-template";
}
struct AppInit {
zoom: f64,
orientation: gtk::Orientation,
file_path: Option<PathBuf>,
initial_content: Option<String>,
}
struct AppModel {
orientation: gtk::Orientation,
stage_type: StageType,
source: sourceview5::Buffer,
source_view: sourceview5::View,
map: Map,
zoom: f64,
render_configuration: Configuration,
surface: ImageSurface,
surface_width: i32,
surface_height: i32,
drawing_area: gtk::DrawingArea,
current_file: Option<PathBuf>,
modified: bool,
pending_load_events: RefCell<u32>,
initialized: bool,
window: adw::Window,
preferences: preferences::UserPreferences,
preferences_window: Option<Controller<components::preferences_window::PreferencesWindow>>,
editor_css_provider: gtk::CssProvider,
horizontal_layout_enabled: bool,
// Child Components
header: Controller<Header>,
footer: Controller<Footer>,
}
impl AppModel {
#[allow(clippy::cast_possible_truncation)]
fn update_image(&mut self) {
if let Ok(surface) = render_to_surface(
&self.map,
&self.stage_type.to_localized(),
&self.render_configuration,
) {
self.surface_width = (f64::from(surface.width()) * self.zoom).round() as i32;
self.surface_height = (f64::from(surface.height()) * self.zoom).round() as i32;
self.surface = surface;
let zoom = self.zoom;
let surface_clone = self.surface.clone();
self.drawing_area
.set_draw_func(move |_, cr, _width, _height| {
cr.scale(zoom, zoom);
cr.set_source_surface(&surface_clone, 0.0, 0.0).ok();
cr.paint().ok();
});
self.drawing_area.set_content_width(self.surface_width);
self.drawing_area.set_content_height(self.surface_height);
self.drawing_area.queue_draw();
}
}
fn window_title(&self) -> String {
let default_name = tr!("Untitled");
let filename = self
.current_file
.as_ref()
.and_then(|path| path.file_name())
.and_then(|name| name.to_str())
.unwrap_or(&default_name);
if self.modified {
format!("{}* - {}", filename, tr!("Map"))
} else {
format!("{} - {}", filename, tr!("Map"))
}
}
fn is_empty_document(&self) -> bool {
self.current_file.is_none() && !self.modified && self.source_text().is_empty()
}
fn source_text(&self) -> glib::GString {
self.source
.text(&self.source.start_iter(), &self.source.end_iter(), false)
}
fn set_source_text(&self, content: &str) {
*self.pending_load_events.borrow_mut() += 1;
self.source.set_text(content);
}
#[allow(clippy::cast_possible_truncation)]
fn apply_preferences(&mut self) {
self.source_view
.set_wrap_mode(if self.preferences.soft_wrap_lines {
gtk::WrapMode::Word
} else {
gtk::WrapMode::None
});
let css = if self.preferences.use_custom_editor_font {
self.source_view.set_monospace(false);
format!(
".map-editor {{ font-family: \"{}\"; font-size: {}pt; }}",
self.preferences.custom_editor_font_name, self.preferences.editor_font_size as i32
)
} else {
self.source_view.set_monospace(true);
format!(
".map-editor {{ font-size: {}pt; }}",
self.preferences.editor_font_size as i32
)
};
self.editor_css_provider.load_from_string(&css);
self.render_configuration.options.smart_label_positioning =
self.preferences.use_smart_label_positioning;
self.render_configuration.options.show_background = self.preferences.show_map_background;
if self.preferences.use_custom_font {
self.render_configuration.theme.fonts.face = self.preferences.custom_font_name.clone();
} else {
self.render_configuration.theme.fonts.face = String::from("sans-serif");
}
}
pub fn open_new_window(file_path: Option<PathBuf>, initial_content: Option<String>) {
let controller = AppModel::builder()
.launch(AppInit {
zoom: 1.0,
orientation: gtk::Orientation::Horizontal,
file_path,
initial_content,
})
.detach();
let application = relm4::main_application();
let window = controller.widget();
application.add_window(window);
window.present();
file_registry::store_controller(controller);
}
// Initialize the buffer that will be used to hold and read the source code.
fn init_source_buffer(
init: &AppInit,
sender: &ComponentSender<Self>,
) -> (sourceview5::Buffer, String, Option<PathBuf>) {
let source = sourceview5::Buffer::new(None);
source.set_highlight_syntax(true);
let language_manager = LanguageManager::default();
if let Some(language) = language_manager.language("wmap") {
source.set_language(Some(&language));
}
let (initial_content, current_file) = if let Some(ref path) = init.file_path {
match std::fs::read_to_string(path) {
Ok(content) => (content, Some(path.clone())),
Err(_) => (String::new(), None),
}
} else {
(init.initial_content.clone().unwrap_or_default(), None)
};
source.set_text(&initial_content);
{
let sender = sender.clone();
source.connect_changed(move |_| {
sender.input(Action::SourceChanged);
});
}
(source, initial_content, current_file)
}
// Initializes the Source View that shows the colorized text.
fn init_source_view(source: &sourceview5::Buffer) -> (sourceview5::View, gtk::CssProvider) {
let source_view = sourceview5::View::with_buffer(source);
source_view.set_monospace(true);
let editor_css_provider = gtk::CssProvider::new();
source_view.add_css_class("map-editor");
if let Some(display) = gtk::gdk::Display::default() {
gtk::style_context_add_provider_for_display(
&display,
&editor_css_provider,
gtk::STYLE_PROVIDER_PRIORITY_APPLICATION,
);
}
(source_view, editor_css_provider)
}
// Initializes the drawing area that shows the rendered map.
fn init_drawing_area(
initial_content: &str,
) -> (
gtk::DrawingArea,
Map,
Configuration,
StageType,
ImageSurface,
) {
let drawing_area = gtk::DrawingArea::new();
let map = parse(initial_content);
let mut render_configuration = Configuration::default();
let stage_type = StageType::Activities;
render_configuration.options.smart_label_positioning = true;
let surface = render_to_surface(&map, &stage_type.to_localized(), &render_configuration)
.or_else(|_| ImageSurface::create(cairo::Format::ARgb32, 1, 1))
.unwrap_or_else(|e| {
eprintln!("Fatal: Cairo failed to create surface: {e}");
std::process::exit(1);
});
(drawing_area, map, render_configuration, stage_type, surface)
}
// Initializes the breakpoint logic
fn init_breakpoints(sender: &ComponentSender<Self>, root: &adw::Window) {
let breakpoint = adw::Breakpoint::new(adw::BreakpointCondition::new_length(
adw::BreakpointConditionLengthType::MinWidth,
440.0,
adw::LengthUnit::Sp,
));
{
let sender = sender.clone();
breakpoint.connect_apply(move |_| {
sender.input(Action::EnableHorizontalLayout);
});
}
{
let sender = sender.clone();
breakpoint.connect_unapply(move |_| {
sender.input(Action::DisableHorizontalLayout);
});
}
root.add_breakpoint(breakpoint);
}
}
#[relm4::component]
impl SimpleComponent for AppModel {
type Input = Action;
type Output = ();
type Init = AppInit;
view! {
#[root]
adw::Window {
#[watch]
set_title: Some(&model.window_title()),
set_default_width: constants::DEFAULT_WINDOW_WIDTH,
set_default_height: constants::DEFAULT_WINDOW_HEIGHT,
adw::ToolbarView {
add_top_bar = model.header.widget(),
gtk::Paned {
#[watch]
set_orientation: if model.horizontal_layout_enabled { model.orientation } else { gtk::Orientation::Vertical },
set_expand: true,
#[wrap(Some)]
set_start_child = >k::ScrolledWindow {
#[local_ref]
source_view -> sourceview5::View {
set_expand: true,
set_buffer: Some(&model.source),
set_top_margin: 8,
set_bottom_margin: 8,
set_left_margin: 8,
set_right_margin: 8
}
},
#[wrap(Some)]
set_end_child = >k::ScrolledWindow {
#[local_ref]
drawing_area -> gtk::DrawingArea {
#[watch]
set_content_width: model.surface_width,
#[watch]
set_content_height: model.surface_height
}
}
},
add_bottom_bar = model.footer.widget(),
}
}
}
fn init(
init: Self::Init,
root: Self::Root,
sender: ComponentSender<Self>,
) -> ComponentParts<Self> {
let (source, initial_content, current_file) = Self::init_source_buffer(&init, &sender);
let (source_view, editor_css_provider) = Self::init_source_view(&source);
let (drawing_area, map, render_configuration, stage_type, surface) =
Self::init_drawing_area(&initial_content);
if let Some(ref path) = current_file {
file_registry::register_file(path, &root);
}
let preferences = preferences::storage::load();
let horizontal_layout_enabled = false;
// Actions
let application = relm4::main_application();
let mut action_group = RelmActionGroup::<WindowActionGroup>::new();
register_actions!(action_group, application, sender, [
ZoomInAction => Action::ZoomIn, &["<Primary>equal", "<Primary>plus"];
ZoomOutAction => Action::ZoomOut, &["<Primary>minus"];
ExportImageAction => Action::ExportImage, &["<Primary>e"];
NewAction => Action::New, &["<Primary>n"];
SaveAction => Action::Save { close_after: false }, &["<Primary>s"];
SaveAsAction => Action::SaveAs { close_after: false }, &["<Primary><Shift>s"];
OpenAction => Action::Open, &["<Primary>o"];
CloseAction => Action::CloseWindow, &["<Primary>w"];
AboutAction => Action::OpenAboutDialog, &[];
PreferencesAction => Action::ShowPreferences, &["<Primary>comma"]
]);
let layout_action = register_action!(
action_group,
application,
sender,
ChangeOrientationAction,
Action::ChangeOrientation,
&["<Primary>l"]
);
{
let sender = sender.clone();
let action: RelmAction<NewFromTemplateAction> =
RelmAction::new_with_target_value(move |_, template_id| {
sender.input(Action::NewFromTemplateById(template_id));
});
action_group.add_action(action);
action_group.register_for_widget(&root);
}
// Child Components
let header = Header::builder()
.launch(HeaderInit {
layout_action,
custom_stages: preferences.custom_stages.clone(),
templates: preferences.map_templates.clone(),
orientation: init.orientation,
horizontal_layout_enabled,
})
.forward(sender.input_sender(), identity);
let footer = Footer::builder()
.launch(FooterInit { zoom: init.zoom })
.forward(sender.input_sender(), identity);
let mut model = AppModel {
orientation: init.orientation,
stage_type,
source,
source_view: source_view.clone(),
map,
zoom: init.zoom,
render_configuration,
surface,
surface_width: 0,
surface_height: 0,
drawing_area: drawing_area.clone(),
current_file,
modified: false,
pending_load_events: RefCell::new(0),
initialized: false,
window: root.clone(),
preferences,
preferences_window: None,
editor_css_provider,
horizontal_layout_enabled: true,
header,
footer,
};
model.apply_preferences();
model.update_image();
file_registry::register_sender(sender.input_sender().clone());
{
let sender = sender.clone();
glib::idle_add_local_once(move || {
sender.input(Action::MarkInitialized);
});
}
{
let sender = sender.clone();
root.connect_close_request(move |_| {
sender.input(Action::CloseWindow);
glib::Propagation::Stop
});
}
let widgets = view_output!();
// Breakpoints for Smaller Layouts
Self::init_breakpoints(&sender, &root);
ComponentParts { model, widgets }
}
fn update(&mut self, message: Self::Input, sender: ComponentSender<Self>) {
match message {
Action::ChangeOrientation => handlers::view::change_orientation(self),
Action::StageTypeSelected(stage_type) => {
handlers::view::stage_type_selected(self, stage_type);
}
Action::SourceChanged => {
let pending = *self.pending_load_events.borrow();
if pending > 0 {
*self.pending_load_events.borrow_mut() -= 1;
} else if self.initialized {
self.modified = true;
}
self.map = parse(&self.source_text());
self.update_image();
}
Action::Zoom(level) => handlers::zoom::zoom(self, level),
Action::ZoomIn => handlers::zoom::zoom_in(self),
Action::ZoomOut => handlers::zoom::zoom_out(self),
Action::ExportImage => {
dialogs::show_export_dialog(&self.window, self.current_file.as_ref(), sender);
}
Action::ExportToFile { path, format } => {
handlers::export::export_to_file(self, &path, format);
}
Action::New => {
let content = self
.preferences
.map_templates
.iter()
.find(|t| t.is_default)
.map(|t| t.content.clone());
Self::open_new_window(None, content);
}
Action::NewFromTemplateById(template_id) => {
if let Ok(id) = uuid::Uuid::parse_str(&template_id)
&& let Some(template) =
self.preferences.map_templates.iter().find(|t| t.id == id)
{
Self::open_new_window(None, Some(template.content.clone()));
}
}
Action::Open => {
dialogs::show_open_dialog(&self.window, self.is_empty_document(), sender);
}
Action::Save { close_after } => handlers::file::save(self, close_after, &sender),
Action::SaveAs { close_after } => dialogs::show_save_dialog(
&self.window,
self.current_file.as_ref(),
close_after,
sender,
),
Action::LoadFile(path) => handlers::file::load_file(self, path),
Action::SaveToFile { path, close_after } => {
handlers::file::save_to_file(self, path, close_after);
}
Action::CloseWindow => {
handlers::file::close_window(self, &sender);
}
Action::MarkInitialized => self.initialized = true,
// Layout Transition
Action::DisableHorizontalLayout => {
handlers::view::change_horizontal_layout(self, false);
}
Action::EnableHorizontalLayout => handlers::view::change_horizontal_layout(self, true),
Action::OpenAboutDialog => {
adw::AboutDialog::builder()
.developers(
env!("CARGO_PKG_AUTHORS")
.split(':')
.map(String::from)
.collect::<Vec<_>>(),
)
.comments(about_comment())
.copyright("© 2026 Rubén Beltrán del Río")
.license_type(gtk::License::Agpl30)
.application_icon("systems.tranquil.Map")
.application_name(env!("CARGO_PKG_NAME"))
.version(env!("CARGO_PKG_VERSION"))
.website(env!("CARGO_PKG_HOMEPAGE"))
.issue_url("https://todo.sr.ht/~rbdr/wmap")
.support_url("mailto:wmap@r.bdr.sh")
.visible(true)
.build()
.present(Some(&self.window));
}
// Preferences
Action::ShowPreferences => handlers::preferences::show(self, &sender),
Action::PreferencesChanged(preferences) => {
handlers::preferences::update(self, preferences);
}
Action::PreferencesWindowClosed => handlers::preferences::close(self),
Action::ReloadPreferences => handlers::preferences::reload(self),
Action::ReloadPreferencesWindow => handlers::preferences::reload_window(self, &sender),
}
}
}
fn main() {
i18n::init();
relm4_icons::initialize_icons(icon_names::GRESOURCE_BYTES, icon_names::RESOURCE_PREFIX);
let preferences = preferences::storage::load();
let initial_content = preferences
.map_templates
.iter()
.find(|t| t.is_default)
.map(|t| t.content.clone());
let application = RelmApp::new(info::APP_ID);
application.run::<AppModel>(AppInit {
zoom: 1.0,
orientation: gtk::Orientation::Horizontal,
file_path: None,
initial_content,
});
}
fn about_comment() -> String {
tr!(
r#"Map is a <a href="https://medium.com/wardleymaps">wardley map</a> editor for linux that uses a simple language to easily create and edit maps. Draw components, link dependencies, create groups, write notes, or add inertia and evolution markers, and see your map change in an instant.
<big><b>Language Reference</b></big>
The wmap language is a simple notation to create and edit wardley maps and is easy to pick up:
<b>Components</b>
Components are written as <tt>Name (x,y)</tt>. The name can contain spaces, and the x and y coordinates are a whole or decimal number from 0 to 100 and represent how far from the top left corner the component will be drawn.
By default, components will be drawn as a circle, but you can specify the shape by appending <tt>[Square]</tt>, <tt>[Triangle]</tt>, or <tt>[x]</tt>. Here's some examples:
<tt>Component (1,2)</tt>
<tt>My Cool Component (10.0,21.0)</tt>
<tt>A (1, 2.0) [Square]</tt>
<tt>Rose Wall (44.3, 50.0) [x]</tt>
<b>Dependencies</b>
Dependencies connect two components, and they are written as <tt>Component A -- Component B</tt>. This will draw a simple line between them. If you want an arrow, you can use <tt>Component -> Component</tt> instead.
<tt>Component -- My Cool Component</tt>
<tt>A -> Component</tt>
<b>Inertia</b>
You can place an inertia marker in front of a component by writing <tt>[Inertia] Component</tt>.
<tt>[Inertia] My Cool Component</tt>
<tt>[Inertia] A</tt>
<b>Evolution</b>
Evolution arrows are notated by using <tt>[Evolution] Component +x</tt> or <tt>[Evolution] Component -x</tt>, where x is a whole or decimal number between 0 and 100.
<tt>[Evolution] My Cool Component -10</tt>
<tt>[Evolution] A +15</tt>
<b>Notes</b>
Sometimes it's helpful to add some text clarifying the map. Writing <tt>[Note] (x, y) Text</tt> will create a note block right at those coordinates. Just like components, x and y are numbers between 0 and 100. You can write \n to force a line break.
<tt>[Note] (30, 45) Here we want to call out an explanation or context.</tt>
<tt>[Note] (90, 25) We're close to the edge \n so we can multiline it.</tt>
<b>Groups</b>
You can group components together by using <tt>[Group] ComponentA, ComponentB...</tt>
<tt>[Group] Tinker, Tailor, Soldier</tt>
<tt>[Group] Two Words, Three Words Here</tt>
<b>Resizing Evolution Stages</b>
If you need more space for one of the four stages, you can use <b>[I] x</b>, <b>[II] x</b>, or <b>[III] x</b>. As with other lines, x is a number between 0-100.
<tt>[I] 15</tt>
<tt>[II] 35.5</tt>
<tt>[III] 80</tt>"#
)
}
|