-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathicu_data_loading_redesign.html
1068 lines (1030 loc) · 67.4 KB
/
icu_data_loading_redesign.html
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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<title>ICU Data Loading Redesign</title>
</head>
<body>
<h1>ICU Data Loading Redesign</h1>
<p align="right">Markus Scherer, San José 2002-feb-05</p>
<p>Result of a meeting of the IBM San José ICU team with Yves Arrouye,
RealNames, on 2002-jan-30 at IBM San José. Summary by Markus, followed by <a href="#yves_minutes">minutes
by Yves</a>.</p>
<p>Also <a href="#available_open">below</a>: Meeting minutes of a meeting among
members of the IBM ICU team about, among other things, consistency of
uxyz_getAvailable() vs. uxyz_open().</p>
<h2>Basics & Terminology</h2>
<p>Much of this has been around since ICU 1.4, although we made changes for 1.5
and 2.0. Please see the <a href="http://www.icu-project.org/userguide/icudata.html">ICU
Data</a> chapter in the <a href="http://www.icu-project.org/userguide/">User's
Guide</a>.</p>
<p>The general assumption is that data for both ICU and for ICU applications is
packaged into "common data files" with Tables of Contents, in the form
of either DLLs or .dat files.</p>
<p>Additional data may be supplied in per-data-piece files, up to the extent
that there is no "common" file at all, or only an empty one.</p>
<p>An important item on the API is what we used to call the "basename":
The package name, used as a filename for DLL or .dat, or optionally as a prefix
for single files. The first argument in functions like udata_open() or ures_open()
is a path/basename string. This string is taken apart into the path and the
basename, split at the last separator ('/' or '\' on most platforms).</p>
<p>The udata service caches common data files but not single-data-piece files.
However, Individual data (whereever found) is cached in other services like
resource bundles (ures), collation (ucol), etc.</p>
<p>On the API, the path/basename argument is always NULL for ICU. The
implementation uses the implicit search path (from ICU_DATA/u_setDataDirectory())
and the ICU data basename (like "icudt20b").</p>
<h2>Problems with ICU 2.0 data loading</h2>
<ul>
<li>Too many ways to find and load data</li>
<li>Very few people understand how it works</li>
<li>Extensibility is limited because data is found first in a
"common" file, so that a separate (newer) data piece file cannot
override the packaged data — we did this for performance</li>
<li>Confusing interaction of the ICU_DATA folder setting with application
data, especially when using "files mode" (ICU data in separate
files, not packaged into a "common" file)</li>
</ul>
<h2>Consensus for post-2.0 data loading</h2>
<ul>
<li>There should be one search path for both ICU's and ICU application's data,
with 0 or more folders listed</li>
<li>In terms of finding data, a path is specified if there is a non-empty path
in the data loading arguments, or if the search path is not empty.</li>
<li>ICU will <i>only </i>look in a common file if <i>no </i>path or no
basename is specified.</li>
<li>ICU will look for single-data-piece files <i>before </i>common/package
files, but only if a path and a basename are specified. This allows maximum performance by
not specifying a path.</li>
<li>Single-data files will always have a prefix that is the same as the "basename"
(package name). This roughly mirrors Java RB filenames. </li>
</ul>
<p>Pseudo-code:</p>
<pre>
global variable: searchPath
set with ICU_DATA and/or u_setDataDirectory()
global variable: cache/registry of common files, associates string (path/basename) with data pointer
can be set with udata_setCommonData() for ICU
can be set with udata_setAppData() for application data
otherwise self-registering while loading, see below
udata_open(path_basename, name, type) { // all arguments are char* strings; type="res" for RBs
search for last '/' in path_basename, split into path and basename
// look for single-data-piece file
if(path not empty) {
look for single file "path/basename_name.type"
return it if found, else go on
} else if(searchPath has at least one path) {
for each path in searchPath {
look for single file "path/basename_name.type"
return it if found, else continue loop
}
}
// look for common/packaged file, cache first
if(path_basename in cache/registry of common files) {
common=get from cache
} else if(path not empty) {
look for memory-mappable common file "path/basename.dat"
set common if found
if found, also add ("path/basename", common) to cache/registry
} else if(searchPath has at least one path) {
for each path in searchPath {
look for memory-mappable common file "path/basename.dat"
set common if found and break, else continue loop
if found, also add ("path/basename", common) to cache/registry
}
}
// look in the common file
if(common!=none) {
search common.ToC for "name.type"
return it if found, else go on
}
return not_found
}
</pre>
<h2>Issues with this consensus</h2>
<p>Vladimir brought up the following bootstrapping problem: At ICU build time,
we do not have a common data file yet. Single ICU data files must be built with
the "basename_" prefix. The package name would be
"icudt20b"; a single-data filename would be
"icudt20b_fr_BE.res"; currently, icudt20b.dat contains a ToC entry of
"fr_BE.res".<br>
If we continue to not have the "basename_" prefix in the ToC in the
packaged/common file, then the packaging must be made smart enough to remove the
"basename_". This should not be too hard.<br>
Alternatively, we could keep the "basename_" in the ToC, which means
that all files in a common file have the same such prefix, which is the same as
the package name. Wastes a little bit of space.</p>
<p>Always building with the "basename_" prefix means that we probably
need to have a basename command line option for all build tools to avoid
changing all of the source filenames; changing the source filenames would
actually not work because the ICU data basename contains the ICU version number
and the platform endianness/charset family.</p>
<p>Filename length restrictions: We should keep all filenames, including for
runtime data files that have the "basename_" prefix (9 characters), at
<=31 characters to not break MacOS more than necessary (and for sanity). This
leaves 22 characters not counting the prefix, meaning that source filenames
should typically not be longer than 22 characters.</p>
<h2>Enumerating data pieces</h2>
<p>We are thinking about enumerating ICU data pieces like locale data RBs,
transliterator RBs, etc. In an <a href="#available_open"> IBM ICU-only meeting on
2002-feb-04</a>, we decided
to keep filenames distinguishable. RBs with "t_..." will be used for
transliterators. RBs with locale data will not have "(single
letter)_". Future non-locale data RBs will have filenames that start with a
single letter, followed by an underscore.</p>
<h2><a name="#yves_minutes" href="#yves_minutes">Yves' summary of the meeting</a></h2>
<p>(Email from Yves Arrouye, RealNames, from 2002-jan-30)</p>
<pre>
Thanks for having me. It was interesting and fruitful.
Here's my recap of things.
Goal: design a way to load any kind of ICU-consumed data (resource bundles,
converters, collators, etc..., being packaged or not) that is easy to
understand, simple, and cover the following scenarios:
Scenario 1: An application loads ICU data as well as its own data from the
ICU data directory to which it has access.
Scenario 2: An application loads ICU data from the read-only ICU data
directory, as well as its own data from its own location(s).
Scenario 3: An application provides in its own location(s) some data that
needs to take precedence over the ICU data located in the ICU data
directory. An example is an application wanting to keep ICU's root and fr_BE
locales, but providing its own fr locale.
We took the ures_open() call as the work example. ures_open() is called as
ures_open(name, locale).
After some (much) discussion, we agreed on the following idea:
- As far as data loading goes, there is no difference between ICU owned data
and application data. They both are data that ICU can manipulate, and
treating them separately is hurting more than helping, making interfaces
more complex and confusing.
- The ICU data directory will be turned into a search path that may contain
many directories. This means that applications can simply add to that search
path in order to change where the data are loaded from. For instance, in the
case of scenario 3, the application can simply prepend its own data
directory to the path as well as supply an fr locale to have it found and
shadow the ICU one, which would be found later in the path. Scenario 1 is
covered with the path being simply the ICU data directory, and Scenario 2 is
covered by having the application add its own directory, with the added
flexibility of being able to choose whether it wants to be in front or
behind ICU.
- (We haven't said it but I think it's implicit). The path will have the
syntax of paths on the platform. For instance, they'll be separated by
semicolons on Windows, colons on UNIX, etc...
- ICU will continue to look for individual files as well as packaged data.
This means that the call ures_open("mydata", "fr_BE") will look for a file
named mydata_fr_BE.res or one called mydata.dat that contains an fr_BE
locale. It will also do so in that order, and for each component of the
path. If the first argument is an absolute path, however, that path, and
only that path, will be used for the search.
- Applications that never want the filesystem to be touched will be able to
link against their data, and set the ICU data path to 0 (or NULL for those
who haven't been bitten by NULL yet).
- There is a single cache mapping parameters passed to ures_open() to chunks
of memory (loaded data). That cache is checked first before looking into the
search path (meaning that if the search path is 0, the cache is still
checked). When one register application data (setAppData()) the cache is
filled, so it also serves as a registry in this way. The keys in the cache
are made of a combination of the arguments passed to ures_open().
The following algorithm illustrates the new functionality in
pseudo-whatever:
resource *ures_open(const char *tag, const char *loc) {
resource *res = ures_checkcache(tag, loc); /* look in cache */
if (!res) {
/* try_load() gets a path w/o extension, and a locale,
and returns 0 if cannot find the resource, or the res
if it found it, in which case the cache is updated. */
if (is_absolute_path(tag)) {
res = try_load(tag, tag, loc);
} else {
foreach dir in search_path() {
if (!(res = try_load(dir, tag + "_" + loc, loc))) {
if (res = try_load(dir, tag, loc)) {
break;
}
}
}
}
}
return res;
}
(and since I don't read myself again I may have missed something. But it
*has* to look simple because it *is* simple).
Issues that we haven't discussed, because they are minor:
- What happens if there is a mydata_fr_BE.res file that does not contain an
fr_BE locale. Should ICU continue to look for something, or bail out with an
error? (I assumed the former in the above pseudo code.)
- I personally think that we should keep the name ICU_DATA and let people
make it a path. Not much to gain by forcing them to change the variable
name.
- It would be nice to deprecate u_setDataDirectory() and
u_getDataDirectory() and rename them u_setDataSearchPath() and
u_getDataSearchPath() or something. Now, while they are being deprecated, I
think it is fair to make u_setDataDirectory() an alias to
u_setDataSearchPath(), but that it would also be desirable to keep
u_getDataDirectory()'s behavior to return $ICU_DATA if it is a single
directory, otherwise the place where the ICU data was found in the search
path (or the compile time default if it was linked in). That will make
existing applications that dump stuff in the ICU data and then call
u_getDataDirectory() to refer back to it, still work.
- If you do not want to have this data loading opening handle endianness by
naming convention (by appending something) then I think that we need to
clearly document a preferred naming convention so that one's "mem" bundle,
once transformed into "meme.res" for endianness, does not conflict with my
"meme" bundle for which I forgot about setting the endianness. That is why
it would be nice to have the tools and the data loading do that
automatically for you. But that's minor.
- When applications set the path, they can decide whether to be in front of
behind the previous path. So my application could ship, say, with a
converter, but put its directory *after* the existing path to indicate that
I'd rather use the official ICU one if it exists (say in a later version)
than my own one. Now, when applications link and call setAppData(), they put
the name in the cache, and then there is no search done. I do not know if
it's worth giving them the same flexibility there. (If all they care about
is a before/after relationship, then they should either setAppData()
immediately to be before, or first ures_open() and only setAppData() after
it fails to be after. I think that covers 99% of the cases.)
Again, it was nice to brainstorm with all of you. I'll do that again anytime
you want with great pleasure.
YA
</pre>
<hr>
<p>Related topic:</p>
<p><a name="#available_open" href="#available_open">IBM ICU team meeting about experimental locales</a>,
and about how to keep uxyz_getAvailable() consistent with what uxyz_open() can
find, at least at one point in the lifetime of a process.</p>
<address style="margin-left:3.0pt;text-indent:-26.0pt;mso-list:l0 level1 lfo1;
tab-stops:4.0pt list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">I.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
ZH-TW">Meeting notes (Steven R. Loomis)</span></b><b style="mso-bidi-font-weight:
normal"><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA"><o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:0pt;tab-stops:4.0pt 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">Feb 3, 2002 - Locales,
experimental, etc<o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:39.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 40.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">A.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Issue<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">what locales are we standing behind? <o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">API isssue: either,<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">we dont include the experimental ones, or<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">we have an API that gives you the version<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">3.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Another issue: adding files to installed ICU.<o:p>
</o:p>
</span>
</address>
<address style="margin-left:39.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 40.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">B.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Two issues - want these in sync<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">What things are built?<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">What things are available?<o:p>
</o:p>
</span>
</address>
<address style="margin-left:39.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 40.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">C.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Dont build experimental locales by default<o:p>
</o:p>
</span>
</address>
<address style="margin-left:39.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 40.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">D.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Adding files to installed ICU<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Could iterate across available items.. <o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">In the search path also<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span></b><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">I.e. , look in<span style="mso-spacerun: yes"> </span>udata
, and then in .res files<b style="mso-bidi-font-weight:normal"><o:p>
</o:p>
</b></span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Two models<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Drop in [Option (1)]<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">add x.res- anyplace in S</span><span style="font-size:
10.0pt;font-family:"Palatino Linotype";mso-fareast-language:ZH-TW">earch
</span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">P</span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:ZH-TW">ath</span><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA"><o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Two options<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Available next time ICU starts<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">immediately<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">c.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">undefined<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">3.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Requiremets<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">iterate at runtime over SP<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">4.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Issue <o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Install<span style="mso-spacerun: yes"> </span>[option
(2)]<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">options<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[Option 2alpha] Drop in and edit some index file,
or<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[Option 2Beta] Run some install program<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">c.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[Option 2Gamma] Do at install time, run some
no-UI program, update ICU<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">c.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">registry [ option (3) ]<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">ucnv_register(fr_BF, &data ...)<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Probably want this anyways<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">3.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Ways of making uloc_getAvailable() work<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">use provided list<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">use a cache of things on disk<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">c.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">use a registration model - user can add things in code<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">d.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">If you know the name, and we see it on disk, we can add
it to a runtime supplement<o:p>
</o:p>
</span>
</address>
<address style="margin-left:39.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 40.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">E.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Locale Elements<o:p>
</o:p>
</span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Filenames- <o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">icudt20b_<span style="mso-spacerun: yes"> </span>.....<span style="mso-spacerun: yes">
</span><span style="mso-spacerun:
yes"> </span>.typ<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Name transliterators:<span style="mso-spacerun:
yes"> </span>t_<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">c.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Use script names like Deva instead of Devanagari<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">d.<span style="font:7.0pt "Times New Roman"">
</span></span></b><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Havent released a build with the rename yet, can
change.<b style="mso-bidi-font-weight:normal"><o:p>
</o:p>
</b></span>
</address>
<address style="margin-left:39.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 40.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">F.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">Action Items<o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.1<o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">G.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[<b style="mso-bidi-font-weight:normal">ram</b>]Move
experimental locales to extras<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Graduate selected locales as time permits<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Module<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">extras<o:p>
</o:p>
</span>
</address>
<address style="margin-left:219.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 220.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">code<o:p>
</o:p>
</span>
</address>
<address style="margin-left:255.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 256.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Could put XML converter here<o:p>
</o:p>
</span>
</address>
<address style="margin-left:219.0pt;text-indent:-26.0pt;mso-list:l0 level5 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 220.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">data<o:p>
</o:p>
</span>
</address>
<address style="margin-left:255.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 256.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">translit<o:p>
</o:p>
</span>
</address>
<address style="margin-left:255.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 256.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">locales<o:p>
</o:p>
</span>
</address>
<address style="margin-left:255.0pt;text-indent:-26.0pt;mso-list:l0 level6 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 256.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">c.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">mappings/README - Go look in chardata<o:p>
</o:p>
</span>
</address>
<address style="margin-left:255.0pt;text-indent:1.0pt;tab-stops:36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA"> <o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">H.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[<b style="mso-bidi-font-weight:normal">ram/alan</b>]Rename
translit source files to t_, and possibility shorten by using script
abbreviations.<span style="mso-spacerun: yes"> </span>Keep under 22
chars including<span style="mso-spacerun: yes"> </span>t_<span style="mso-spacerun: yes">
</span>+ .txt<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">( remember:<span style="mso-spacerun: yes"> </span>icudt20b_<span style="mso-spacerun: yes">
</span>goes on the beginning of all output files )<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">I.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[<b style="mso-bidi-font-weight:normal">andy</b>]
Document inconsistency in API and Users Guide <o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Include every type of file, including Translit,
Converters, andLocale Bundles<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA"><span style="mso-spacerun: yes"> </span>say
must update these specific files, and how to do it.<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">3.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Scenarios<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">I cant touch ICU, but I want to add a file<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">b.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">I want to add a file to base ICU<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">4.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[<b style="mso-bidi-font-weight:normal">alan]</b>
Document Format for alias table<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">J.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[<b style="mso-bidi-font-weight:normal">George</b>] <o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">1.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Snapshot users guide, add version # of ICU4C and ICU4J:
2.0<span style="mso-spacerun: yes"> </span>[<b style="mso-bidi-font-weight:
normal">srl</b>] put in footer.<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.<span style="font:7.0pt "Times New Roman"">
</span></span><i style="mso-bidi-font-style:normal"><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">We should have: a publication date , and something that says this
refers to ICU 2.0</span></i><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">.<o:p>
</o:p>
</span>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">3.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">Put Zip of documentation on website<o:p>
</o:p>
</span>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">2.2<o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:147.0pt;text-indent:-26.0pt;mso-list:l0 level3 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 148.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">4.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">[<b style="mso-bidi-font-weight:normal">srl/markus</b>]
Have a function for iterating the directories, implement 1c<o:p>
</o:p>
</span>
</address>
<address style="margin-left:183.0pt;text-indent:-26.0pt;mso-list:l0 level4 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 144.0pt 180.0pt 184.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">a.<span style="font:7.0pt "Times New Roman"">
</span></span></b><span style="font-size:10.0pt;font-family:"Palatino Linotype";
mso-fareast-language:JA">POSIX: use autoconf for dirent, etc.<b style="mso-bidi-font-weight:normal"><o:p>
</o:p>
</b></span>
</address>
<address style="margin-left:75.0pt;text-indent:-26.0pt;mso-list:l0 level1 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 76.0pt 108.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">II.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">Exemplar chars<o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">
<b style="mso-bidi-font-weight:normal"><span style="font-size:10.0pt;font-family:
"Palatino Linotype";mso-fareast-language:JA">A.<span style="font:7.0pt "Times New Roman"">
</span></span><span style="font-size:10.0pt;font-family:"Palatino Linotype";mso-fareast-language:
JA">Ram: where do I get this?<o:p>
</o:p>
</span></b>
</address>
<address style="margin-left:111.0pt;text-indent:-26.0pt;mso-list:l0 level2 lfo1;
tab-stops:list 18.0pt left 36.0pt 72.0pt 108.0pt 112.0pt 144.0pt 180.0pt 216.0pt 252.0pt 288.0pt 324.0pt 360.0pt 396.0pt 432.0pt 468.0pt 504.0pt 540.0pt 576.0pt">