diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/os-aix.h | 2 | ||||
-rw-r--r-- | os/os-freebsd.h | 3 | ||||
-rw-r--r-- | os/os-mac.h | 87 | ||||
-rw-r--r-- | os/os-netbsd.h | 7 | ||||
-rw-r--r-- | os/os-solaris.h | 3 | ||||
-rw-r--r-- | os/os-windows.h | 4 | ||||
-rwxr-xr-x | os/windows/cygwin.wxs | 15724 | ||||
-rwxr-xr-x | os/windows/examples.wxs | 18 | ||||
-rwxr-xr-x | os/windows/fio.sh | 4 | ||||
-rwxr-xr-x | os/windows/fio/Cygwin.bat | 8 | ||||
-rwxr-xr-x | os/windows/install.wxs | 161 |
11 files changed, 2237 insertions, 13784 deletions
diff --git a/os/os-aix.h b/os/os-aix.h index 8e4a71d5..91c8bcda 100644 --- a/os/os-aix.h +++ b/os/os-aix.h @@ -25,7 +25,7 @@ #define OS_MAP_ANON MAP_ANON #define OS_MSG_DONTWAIT 0 -static inline int blockdev_invalidate_cache(struct fio_file fio_unused *f) +static inline int blockdev_invalidate_cache(struct fio_file *f) { return EINVAL; } diff --git a/os/os-freebsd.h b/os/os-freebsd.h index 1f114f8c..7a79dd0f 100644 --- a/os/os-freebsd.h +++ b/os/os-freebsd.h @@ -9,7 +9,6 @@ #define FIO_HAVE_POSIXAIO #define FIO_HAVE_ODIRECT -#define FIO_HAVE_IOPRIO #define FIO_HAVE_STRSEP #define FIO_USE_GENERIC_RAND #define FIO_HAVE_CHARDEV_SIZE @@ -34,7 +33,7 @@ static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) static inline int chardev_size(struct fio_file *f, unsigned long long *bytes) { - return blockdev_size(f->fd, bytes); + return blockdev_size(f, bytes); } static inline int blockdev_invalidate_cache(struct fio_file *f) diff --git a/os/os-mac.h b/os/os-mac.h index 068bc5c8..1a0a8875 100644 --- a/os/os-mac.h +++ b/os/os-mac.h @@ -3,6 +3,9 @@ #include <errno.h> #include <sys/sysctl.h> +#include <sys/time.h> +#include <unistd.h> +#include <signal.h> #include "../file.h" @@ -21,10 +24,90 @@ #define OS_MAP_ANON MAP_ANON -typedef unsigned int clockid_t; typedef off_t off64_t; -static inline int blockdev_invalidate_cache(struct fio_file fio_unused *f) +/* OS X as of 10.6 doesn't have the timer_* functions. + * Emulate the functionality using setitimer and sigaction here + */ + +#define MAX_TIMERS 64 + +typedef unsigned int clockid_t; +typedef unsigned int timer_t; + +struct itimerspec { + struct timespec it_value; + struct timespec it_interval; +}; + +static struct sigevent fio_timers[MAX_TIMERS]; +static unsigned int num_timers = 0; + +static inline int timer_create(clockid_t clockid, struct sigevent *restrict evp, + timer_t *restrict timerid) +{ + int current_timer = num_timers; + fio_timers[current_timer] = *evp; + num_timers++; + + *timerid = current_timer; + return 0; +} + +static void sig_alrm(int signum) +{ + union sigval sv; + + for (int i = 0; i < num_timers; i++) { + if (fio_timers[i].sigev_notify_function == NULL) + continue; + + if (fio_timers[i].sigev_notify == SIGEV_THREAD) + fio_timers[i].sigev_notify_function(sv); + else if (fio_timers[i].sigev_notify == SIGEV_SIGNAL) + kill(getpid(), fio_timers[i].sigev_signo); + } +} + +static inline int timer_settime(timer_t timerid, int flags, + const struct itimerspec *value, struct itimerspec *ovalue) +{ + struct sigaction sa; + struct itimerval tv; + struct itimerval tv_out; + int rc; + + tv.it_interval.tv_sec = value->it_interval.tv_sec; + tv.it_interval.tv_usec = value->it_interval.tv_nsec / 1000; + + tv.it_value.tv_sec = value->it_value.tv_sec; + tv.it_value.tv_usec = value->it_value.tv_nsec / 1000; + + sa.sa_handler = sig_alrm; + sigemptyset(&sa.sa_mask); + sa.sa_flags = 0; + + rc = sigaction(SIGALRM, &sa, NULL); + + if (!rc) + rc = setitimer(ITIMER_REAL, &tv, &tv_out); + + if (!rc && ovalue != NULL) { + ovalue->it_interval.tv_sec = tv_out.it_interval.tv_sec; + ovalue->it_interval.tv_nsec = tv_out.it_interval.tv_usec * 1000; + ovalue->it_value.tv_sec = tv_out.it_value.tv_sec; + ovalue->it_value.tv_nsec = tv_out.it_value.tv_usec * 1000; + } + + return rc; +} + +static inline int timer_delete(timer_t timer) +{ + return 0; +} + +static inline int blockdev_invalidate_cache(struct fio_file *f) { return EINVAL; } diff --git a/os/os-netbsd.h b/os/os-netbsd.h index 6478f30d..8f61ec54 100644 --- a/os/os-netbsd.h +++ b/os/os-netbsd.h @@ -17,7 +17,6 @@ #define FIO_HAVE_ODIRECT #define FIO_HAVE_STRSEP #define FIO_HAVE_FDATASYNC -#define FIO_HAVE_CLOCK_MONOTONIC #define FIO_USE_GENERIC_BDEV_SIZE #define FIO_USE_GENERIC_RAND @@ -25,9 +24,13 @@ #define OS_MAP_ANON MAP_ANON +#ifndef PTHREAD_STACK_MIN +#define PTHREAD_STACK_MIN 4096 +#endif + typedef off_t off64_t; -static inline int blockdev_invalidate_cache(struct fio_file fio_unused *f) +static inline int blockdev_invalidate_cache(struct fio_file *f) { return EINVAL; } diff --git a/os/os-solaris.h b/os/os-solaris.h index e292172d..3e825436 100644 --- a/os/os-solaris.h +++ b/os/os-solaris.h @@ -17,7 +17,6 @@ #define FIO_HAVE_PSHARED_MUTEX #define FIO_USE_GENERIC_BDEV_SIZE #define FIO_HAVE_FDATASYNC -#define FIO_HAVE_CLOCK_MONOTONIC #define OS_MAP_ANON MAP_ANON #define OS_RAND_MAX 2147483648UL @@ -29,7 +28,7 @@ struct solaris_rand_seed { typedef psetid_t os_cpu_mask_t; typedef struct solaris_rand_seed os_random_state_t; -static inline int blockdev_invalidate_cache(struct fio_file fio_unused *f) +static inline int blockdev_invalidate_cache(struct fio_file *f) { return EINVAL; } diff --git a/os/os-windows.h b/os/os-windows.h index f7712a17..9edacf33 100644 --- a/os/os-windows.h +++ b/os/os-windows.h @@ -36,8 +36,8 @@ static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) HANDLE hFile;
if (f->hFile == NULL) {
- hFile = CreateFile(f->file_name, (GENERIC_READ | GENERIC_WRITE),
- (FILE_SHARE_READ | FILE_SHARE_WRITE), NULL, OPEN_EXISTING, 0, NULL);
+ hFile = CreateFile(f->file_name, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
+ NULL, OPEN_EXISTING, 0, NULL);
} else {
hFile = f->hFile;
}
diff --git a/os/windows/cygwin.wxs b/os/windows/cygwin.wxs index 19bc5a3b..f74b422d 100755 --- a/os/windows/cygwin.wxs +++ b/os/windows/cygwin.wxs @@ -1,15301 +1,6405 @@ <?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
- <DirectoryRef Id="cygwin">
- <Component Id="cmp1F75AC87697D1B6ACCADA2AE38952363" Guid="{109FB4B4-5983-4176-BB2C-1546BF36CDC0}">
- <File Id="fil768E4A5318F36C72B9C8462473315777" KeyPath="yes" Source="fio\Cygwin.bat" />
- </Component>
- <Component Id="cmpBF72DF164E03708ACE7CA4BA98CFF1C5" Guid="{46D1259C-3349-452E-B74A-D5F0570ABDBC}">
- <File Id="fil1010542A2DC939945119209AEC2E9C14" KeyPath="yes" Source="fio\Cygwin.ico" />
+ <DirectoryRef Id="cygwin">
+ <Component Id="cmpB647D75194B1BE4C7C89501B755FB631" Guid="{E2B33B68-28C3-46F0-BEFC-E45B43A407BA}">
+ <File Id="fil9D2ED70067E07BD865445EFE277D3BDF" KeyPath="yes" Source="fio\FIO.bat" />
</Component>
<Directory Id="dirE9AB6616E9FF7FABE1320C8159EE8975" Name="bin">
- <Component Id="cmpBC815D2E7673D5F33E0AF4ECC7455B4A" Guid="{BBD5E6A8-3E9E-4AA6-AEE4-F8F697050A22}">
- <File Id="fil3A8D1538CA0B7DD898AC46DAFDE96C52" KeyPath="yes" Source="fio\bin\addftinfo.exe" />
- </Component>
- <Component Id="cmp521BCCF4B23E2C8FD07852F67D1F0C6E" Guid="{CEB60910-6F2C-43AF-9CD4-ABF7E9173C33}">
- <File Id="fil16FB18486DA3B86385AF5A0B80143AB8" KeyPath="yes" Source="fio\bin\afmtodit" />
- </Component>
- <Component Id="cmpC9BD2BFBC72D79D2F4881B858211FC6F" Guid="{3C5070E5-6196-4308-9585-BBC0E7476F16}">
- <File Id="filF732369E0C371C76E530B03B1A6EC8B3" KeyPath="yes" Source="fio\bin\apropos" />
- </Component>
- <Component Id="cmpCDF4B3FE0013F343554E83D22AEEC87D" Guid="{AE3D48F8-29E4-4667-9A7C-F01A9A6529C1}">
- <File Id="filD38FF19529410D73D680B577D5F942AB" KeyPath="yes" Source="fio\bin\arch.exe" />
- </Component>
- <Component Id="cmp731A1AF4EF2E6D7E950DD1C878F33BD0" Guid="{53BD1ABD-68B9-4709-8AB3-1C5A96B1ED51}">
- <File Id="fil9DA78A772A55E1753B267A291A4EF843" KeyPath="yes" Source="fio\bin\ascii.exe" />
- </Component>
- <Component Id="cmp22366F387C0D7FC05DEAF0A8CBB89610" Guid="{78A83F8E-6FAE-4E91-A93F-4B0C2DB87860}">
- <File Id="fil84A9C8C130B94EDC4DC3D0E8D8811A8B" KeyPath="yes" Source="fio\bin\ash.exe" />
- </Component>
- <Component Id="cmp5338A14FBE76D26E60A3FC97F80D67DE" Guid="{886F4892-9E8A-4289-BCE1-30638F535701}">
- <File Id="filB471D45D0E9944C99A08C967E7EDE6CA" KeyPath="yes" Source="fio\bin\awk" />
- </Component>
- <Component Id="cmp330E7035416BC1FFC46815957B564AED" Guid="{FE72BAC4-64DD-4D1C-A0A4-257DBAE66D8F}">
- <File Id="filA2F5F60050181FEA5FF7856F883A6087" KeyPath="yes" Source="fio\bin\banner.exe" />
- </Component>
- <Component Id="cmp8E6D9836D61C8A53140D5100E76C4844" Guid="{E545E682-E906-4015-A88D-CD1F22E041E2}">
- <File Id="fil58786F12714286ACD6A84932D1E87F59" KeyPath="yes" Source="fio\bin\base64.exe" />
- </Component>
- <Component Id="cmpE1F85937BF3D1E32477E8817541ABEF4" Guid="{62A0F8E7-5A8C-4093-8CDC-8369520B45CC}">
- <File Id="filD347C787B0D7D3518F9CFF395867032B" KeyPath="yes" Source="fio\bin\basename.exe" />
- </Component>
- <Component Id="cmp0632DB51E5BC3C2DABB6D68937C68C14" Guid="{F8B71364-99C4-4D99-A5ED-7BA290D0AD04}">
+ <Component Id="cmp0632DB51E5BC3C2DABB6D68937C68C14" Guid="{C64837E9-7D1A-4C10-B362-1EA9CB230D7C}">
<File Id="fil54834565FA9B67CBA8BC221C65323EDE" KeyPath="yes" Source="fio\bin\bash.exe" />
</Component>
- <Component Id="cmp2520C3B383DED7C09A30453F5634E5CC" Guid="{B0158D6D-2B36-46C8-8B23-465174A0F871}">
- <File Id="fil2AF50B2E04ACCD91B59E9FB83CDD4445" KeyPath="yes" Source="fio\bin\bashbug" />
- </Component>
- <Component Id="cmp893CBE2AA9084901DEAE4C0A7027E02F" Guid="{1A240D98-D7E9-4BC9-947B-C229AD388CF4}">
- <File Id="fil50A25D408A213C708409467CFA969487" KeyPath="yes" Source="fio\bin\bunzip2.exe" />
- </Component>
- <Component Id="cmp94163616680C5C9E606D9BE7ED2F3714" Guid="{3A596D53-21EF-4545-896F-FB35EF7895FD}">
- <File Id="filB04F68B6C0E1D50FF48E61770FCB61DC" KeyPath="yes" Source="fio\bin\bzcat.exe" />
- </Component>
- <Component Id="cmp177C9A59B8759F0CA37169D6DB4B3679" Guid="{13749A87-6D7B-46B3-A97F-557EA8FAF1B3}">
- <File Id="fil82F775C75283F928CDE451098168E74C" KeyPath="yes" Source="fio\bin\bzcmp" />
- </Component>
- <Component Id="cmpF10D62C160FBF7FDADE7C3D44680FE1C" Guid="{F64F1AB5-1D12-4942-8376-06BBDB1B197C}">
- <File Id="fil2313E2E843D86BFD632A65FCA5B485A0" KeyPath="yes" Source="fio\bin\bzdiff" />
- </Component>
- <Component Id="cmpB0BB841D38BA7C3B082E804DB7F12C9E" Guid="{DB88517D-4633-4D2D-AED9-D9D72659FD65}">
- <File Id="fil9EDD3973D531F7EEB80BC9AAB3D319D8" KeyPath="yes" Source="fio\bin\bzegrep" />
- </Component>
- <Component Id="cmpDFBBB10ACBFCBFA331F1AC461763E60A" Guid="{4C5754EF-5D6C-46F9-8DFC-95A618ABF2ED}">
- <File Id="filB395C78455C0FC7712D2AE64A63D068D" KeyPath="yes" Source="fio\bin\bzfgrep" />
- </Component>
- <Component Id="cmp7066066D68FB7D05EA3C937247A7B437" Guid="{9EC755AF-963D-4546-9FD0-027AC65E9755}">
- <File Id="fil65EF4F81FAE897AA73B477A3840A47FF" KeyPath="yes" Source="fio\bin\bzgrep" />
- </Component>
- <Component Id="cmpB4694B9904984C0987998094857A2EB4" Guid="{6A5C5869-0C37-4107-96A5-F1AA3F97FA33}">
- <File Id="filE9C99BE906C7D3428662093950E87148" KeyPath="yes" Source="fio\bin\bzip2.exe" />
- </Component>
- <Component Id="cmp5A5E838EC45F8B322941B5EE3FF5D256" Guid="{CDB70B76-1ACE-4C74-A80A-5845F564A778}">
- <File Id="fil937F60608028C6E26EF2FB25E1A77988" KeyPath="yes" Source="fio\bin\bzip2recover.exe" />
- </Component>
- <Component Id="cmp468E3DC864D4BBA8A1FA1BAA0F2641A0" Guid="{4DB96BCF-DD11-489B-B407-C966C58FDEBB}">
- <File Id="fil4A9CEB3E037D41FCA39D806AC791FC01" KeyPath="yes" Source="fio\bin\bzless" />
- </Component>
- <Component Id="cmp5B67E32DDCA91335530375E79C1A93E6" Guid="{2C938963-E922-46F7-B00C-BDB7A0251143}">
- <File Id="fil3FF0A750D8E885E7F9A0775E1C414DB1" KeyPath="yes" Source="fio\bin\bzmore" />
- </Component>
- <Component Id="cmpDDA43EA5314988397D17DF92B4CA6F7F" Guid="{22C3BCD4-0F38-4683-8BAA-5A263A3D3B2C}">
- <File Id="filAC4875D8C8C4E63D82F7B16750872EB6" KeyPath="yes" Source="fio\bin\cat.exe" />
- </Component>
- <Component Id="cmpB8B81D5F519A62AE4AB8197B5E993D0A" Guid="{42B4F3E9-7C17-4E9D-BDF2-F330313796BF}">
- <File Id="fil552656CBBECA8856E0E8C75A11731DF4" KeyPath="yes" Source="fio\bin\chcon.exe" />
- </Component>
- <Component Id="cmp2101B0196944571EE1F1E718A93E752B" Guid="{EC8280F0-A393-4186-9280-15DD18ED702D}">
- <File Id="filDCBDCB20385E4022B4A86F0FFE6C715E" KeyPath="yes" Source="fio\bin\chem" />
- </Component>
- <Component Id="cmp5D82E1CAF8070F78E47F82D68DF2FCFD" Guid="{82D4D24B-8570-4241-8E8F-11F84C943562}">
- <File Id="filD58AC13703943FE5BED6305F7C35908A" KeyPath="yes" Source="fio\bin\chgrp.exe" />
- </Component>
- <Component Id="cmp2328A35221375E8809950F1ED95E995B" Guid="{F1342DD6-BFEB-4FD4-8F6F-0B837F5C511D}">
- <File Id="fil72A0E3758E4CE5D9F8436B75E3A1330A" KeyPath="yes" Source="fio\bin\chmod.exe" />
- </Component>
- <Component Id="cmp627723C57B6D1734E65A21E79F0B2F84" Guid="{7D6C4B98-4AE7-4630-99AD-923B37003549}">
- <File Id="fil908279C969D4F7E3EC54C727D51B50D7" KeyPath="yes" Source="fio\bin\chown.exe" />
- </Component>
- <Component Id="cmpD2D62F35C708206296867D244E11F10E" Guid="{6DDC7F80-EE54-474D-BECC-48749711B990}">
- <File Id="filF09EDE7F311528B4E7BD1556AEBC8DFA" KeyPath="yes" Source="fio\bin\chroot.exe" />
- </Component>
- <Component Id="cmp92C244CEEDFF017965DCAE9802B505BD" Guid="{15B4AEF4-A4A2-4868-8632-71869A9BA6DA}">
- <File Id="fil161A1D4F14D1357EAA1C0098BBE4082B" KeyPath="yes" Source="fio\bin\cksum.exe" />
- </Component>
- <Component Id="cmp810468BA85CC4C1636669C35981303EF" Guid="{F811659A-65D2-4433-AB5C-8ECA006CD796}">
- <File Id="filAEF9AE78E1E0075D9214B1BEA48CEAF6" KeyPath="yes" Source="fio\bin\cmp.exe" />
- </Component>
- <Component Id="cmp9AFFCEE7FE25FF7DACFAB0AA26309A87" Guid="{666A7F68-9F60-4E34-8D6B-11B9FB9D0D0C}">
- <File Id="fil6097AAD064174ADE8EDBBD7F23A158B0" KeyPath="yes" Source="fio\bin\comm.exe" />
- </Component>
- <Component Id="cmp84EFC93DF3E510BF34E1A12A2861CDCC" Guid="{987A9395-EA84-4BA1-9FB1-6EA2F8363FD9}">
- <File Id="fil3565C3E7155728E7C21C67D4DDD38CCA" KeyPath="yes" Source="fio\bin\conv.exe" />
- </Component>
- <Component Id="cmp10185D803C1B650AEFF55BAA81CE4BCD" Guid="{A41F241C-AA4C-4246-8266-759AC1694156}">
- <File Id="fil88E7EB37DF38377C1272A77B0074E2C5" KeyPath="yes" Source="fio\bin\copy-user-registry-fstab" />
- </Component>
- <Component Id="cmp07BEB71DD499CF61E2F533338E92F4B2" Guid="{4BE40FD3-96BC-44A0-9D41-F3910C3145EB}">
- <File Id="filE2AD7194C70053BFF2C1EA3ACB7E952A" KeyPath="yes" Source="fio\bin\cp.exe" />
- </Component>
- <Component Id="cmpC2EF9BDF7437D302A0BB9FC26B5AE7AB" Guid="{B360AA4C-079F-43F2-8D0F-70267CA69466}">
- <File Id="fil5D5B34BFC7977B2D0B42885F4EA7DC0D" KeyPath="yes" Source="fio\bin\csplit.exe" />
- </Component>
- <Component Id="cmp7E8D4DBA9825EA8F89A4597F4129FAF7" Guid="{D16761EF-7822-40B4-A012-56870B6C0C26}">
- <File Id="filD403E1BB911486C56C5D420B6D0420E2" KeyPath="yes" Source="fio\bin\cut.exe" />
- </Component>
- <Component Id="cmp281554E27C2BD5F35B1099D6454A37FE" Guid="{5F5C476E-34C5-437B-9C29-112DBBD1CE70}">
- <File Id="fil4481E30C7C84DB4E3A424D94C1491266" KeyPath="yes" Source="fio\bin\cygattr-1.dll" />
- </Component>
- <Component Id="cmp6D84ED708C682B533588E1AAF2804FDF" Guid="{4831D66B-C3AD-4E75-8C3E-D9E85B774A14}">
- <File Id="fil59AFF483469B2DA11023640DBB6EA0AD" KeyPath="yes" Source="fio\bin\cygbz2-1.dll" />
- </Component>
- <Component Id="cmpE3156A7CA3C83BDFEECD70780F6F4B5C" Guid="{C664B02E-2159-408A-916C-20681C76DF19}">
- <File Id="fil6E6515599E0478FC60F7BF1D6E953E3C" KeyPath="yes" Source="fio\bin\cygcheck.exe" />
- </Component>
- <Component Id="cmp051186AD26C92ADE9EA8E2A8021454B4" Guid="{563228CE-3240-4A8C-A096-2D01811FFA95}">
- <File Id="fil1A09A238B6AF43E6CA888B33089F47EC" KeyPath="yes" Source="fio\bin\cygdrop.exe" />
- </Component>
- <Component Id="cmp3D00F634E3DDB5E095884B98E522DD22" Guid="{0975B02C-3C16-4FF3-9008-C2E00CC53E80}">
- <File Id="filC290FA15B83BF73FE01341C2C57479D0" KeyPath="yes" Source="fio\bin\cygform-10.dll" />
- </Component>
- <Component Id="cmp77BC621514BF488F5731836E9DEAD639" Guid="{4215F890-2CDF-4EB7-82BA-9A668FD610FA}">
- <File Id="fil7394ADF1C3C55D2D956A2B522A69B8A8" KeyPath="yes" Source="fio\bin\cygform-8.dll" />
- </Component>
- <Component Id="cmpF3A6D6DEDCC70F755EE1E7973B7988C5" Guid="{56912BB9-A10E-49F2-818C-53271A69D373}">
- <File Id="fil46F2B660952D5AF59D1F46B1AC5CBCB0" KeyPath="yes" Source="fio\bin\cygform-9.dll" />
- </Component>
- <Component Id="cmpB4B196A767932EB43E26C3FDB12F34A5" Guid="{676CFE97-8F8B-4F70-9510-3FF08E2679AC}">
+ <Component Id="cmpB4B196A767932EB43E26C3FDB12F34A5" Guid="{648D1C2A-0B31-493F-B6A0-E625178FDA77}">
<File Id="filF9958D2A852FAE208DD9B9E854B546A3" KeyPath="yes" Source="fio\bin\cyggcc_s-1.dll" />
</Component>
- <Component Id="cmpCA53375D4B7F03C12BB79AF830432D28" Guid="{4E46723A-8792-4C36-83ED-119B22833478}">
- <File Id="filE8FC2D4379E685A0581CD258C3B97381" KeyPath="yes" Source="fio\bin\cyggmp-3.dll" />
- </Component>
- <Component Id="cmp274410E9D074A26EEC7DF77B90080AEC" Guid="{07B83A95-6450-42EC-8DAE-F8296F7252D7}">
+ <Component Id="cmp274410E9D074A26EEC7DF77B90080AEC" Guid="{278280E2-B53D-452B-8B61-31B02F1D4894}">
<File Id="filD5B08660D6002F507FBC6918FFD6D12E" KeyPath="yes" Source="fio\bin\cyghistory7.dll" />
</Component>
- <Component Id="cmp426BE94F315430D90C59934ECCE4A484" Guid="{0AFEB687-6FA8-4AC8-A12C-084B9432ED95}">
+ <Component Id="cmp426BE94F315430D90C59934ECCE4A484" Guid="{624193FF-948A-4EC9-8C62-AF89B9B7590F}">
<File Id="fil5FBDFFCBED808E3F8E97EE7DFD0943FB" KeyPath="yes" Source="fio\bin\cygicons-0.dll" />
</Component>
- <Component Id="cmpB233C0A559F9EB1AFE292982562F1ECC" Guid="{B78E1B33-0AF1-4964-B2EE-76CF132750A1}">
+ <Component Id="cmpB233C0A559F9EB1AFE292982562F1ECC" Guid="{710C82A0-FEE9-40AD-B3A3-2A9E5EC82369}">
<File Id="fil53A00911E6010D74B4F70903540C3B19" KeyPath="yes" Source="fio\bin\cygiconv-2.dll" />
</Component>
- <Component Id="cmp229D68D422FB0EB697971491C1475142" Guid="{21EA7B28-7598-4552-9A7B-319BD8B81F0A}">
+ <Component Id="cmp229D68D422FB0EB697971491C1475142" Guid="{027945EC-DA28-41C8-9AFF-7AE1BD0F7078}">
<File Id="fil7FD65A67872AB00D44EE1419EED402F3" KeyPath="yes" Source="fio\bin\cygintl-8.dll" />
</Component>
- <Component Id="cmp6A8331873372949319006FA29BC21387" Guid="{142219D4-65CD-4EA6-AF4E-ECC33EFECCEA}">
- <File Id="filA2A75E3ED3FC359F237B1C28544D660D" KeyPath="yes" Source="fio\bin\cyglsa-config" />
- </Component>
- <Component Id="cmp844C77EE4835751D93D40304A4155D12" Guid="{FFCD0819-09CE-4984-9E96-1A859DDC8C6C}">
- <File Id="filD3D4739BFCD9A6D63C442BA24B162478" KeyPath="yes" Source="fio\bin\cyglsa.dll" />
- </Component>
- <Component Id="cmpD9F59FA81EAA52316CE23FFDE688FE95" Guid="{168E6F6F-216E-47BD-9F3F-18B94293A4A4}">
- <File Id="filF0BC186FA76A0DC824400E43FE70E2D0" KeyPath="yes" Source="fio\bin\cyglsa64.dll" />
- </Component>
- <Component Id="cmp3AB5E5C7E8BB36297E129758F17311E7" Guid="{4FEEF3E8-4497-4A82-B2CD-54198FF4E52B}">
- <File Id="filB226EEB24F240B10456B69B648336E06" KeyPath="yes" Source="fio\bin\cyglzma-1.dll" />
- </Component>
- <Component Id="cmp08ECDCF2E570D4788545C412CC712397" Guid="{2B56AA06-3870-4EC7-BD24-8790F17041BE}">
- <File Id="fil4DBE664EC5A8C1F49D13D08FDD3D7F5E" KeyPath="yes" Source="fio\bin\cygmenu-10.dll" />
- </Component>
- <Component Id="cmp2F673171156E761CAC6C546697D2DD3B" Guid="{93F42599-8613-41F3-A0CA-612631BE3258}">
- <File Id="fil7B4D80BFD24FD835A0DB2834F65B0910" KeyPath="yes" Source="fio\bin\cygmenu-8.dll" />
- </Component>
- <Component Id="cmp67DC212313CA56573FA43C19156939D6" Guid="{42505982-2669-4A8D-8C85-45B6A162B091}">
- <File Id="fil06F0D866DCB62A2E469807045FEC764C" KeyPath="yes" Source="fio\bin\cygmenu-9.dll" />
- </Component>
- <Component Id="cmpF90DED0C6B928598389F23ED90EADEE7" Guid="{60779717-2863-4C9C-83E5-5C9AC8444BD2}">
- <File Id="fil5F0CC91AFA84561BC44AE12EBACEEDC0" KeyPath="yes" Source="fio\bin\cygmp-3.dll" />
- </Component>
- <Component Id="cmp6524A70D9EB46AF65A0E42AC798ACC72" Guid="{D73F778A-F517-479C-86B9-721A7639E827}">
- <File Id="filB5420FFF7C9F32FA5FA81653DA7D5582" KeyPath="yes" Source="fio\bin\cygncurses++-10.dll" />
- </Component>
- <Component Id="cmp5A690A095DB9326379FF44708971C617" Guid="{5B9E2FB5-3189-46D7-9BCD-1F2A34852F5C}">
- <File Id="filD6BA2148E9D5132BF66A93F21EF2A4BE" KeyPath="yes" Source="fio\bin\cygncurses++-8.dll" />
- </Component>
- <Component Id="cmpFCBAB68E4A226C62E32EF283AA1ABC5A" Guid="{DF648D4C-43BE-40E5-AE60-E8A46A95E179}">
+ <Component Id="cmpFCBAB68E4A226C62E32EF283AA1ABC5A" Guid="{2FE224F7-DF14-4D19-8154-77BF6A81B895}">
<File Id="filF29BC713B2D6CF3C73FAC7EBD9E7DA59" KeyPath="yes" Source="fio\bin\cygncurses++-9.dll" />
</Component>
- <Component Id="cmp6BD001CBC8BC6A8ABE162F97A3077EC3" Guid="{8186F072-4564-4AE8-B6DE-98C32DCB4C6A}">
- <File Id="fil870F7CCAB1F30594E23296B097B20020" KeyPath="yes" Source="fio\bin\cygncurses-10.dll" />
- </Component>
- <Component Id="cmp6E0CAB91108EF79C45CC755BE77E6922" Guid="{9A06CC80-4A46-4F22-ACD6-ED84A4388CB9}">
- <File Id="filAD1010B547783F2CEC7C61B4F1144B4E" KeyPath="yes" Source="fio\bin\cygncurses-8.dll" />
- </Component>
- <Component Id="cmp30425E1537382CBE87A8582C3712DA6D" Guid="{A0AF2943-F194-4998-9175-E7B84418DBC1}">
+ <Component Id="cmp30425E1537382CBE87A8582C3712DA6D" Guid="{43895BDD-58DD-4EA9-96A2-A17EADD13C65}">
<File Id="fil346312AAE49BBD0EDE977120B93991EE" KeyPath="yes" Source="fio\bin\cygncurses-9.dll" />
</Component>
- <Component Id="cmp8AAA91A4CCAB61E31F2F0E53CE4024FE" Guid="{7B19B237-934D-45FD-B16E-8190D0A74599}">
- <File Id="fil15B9185CD4CF5989D327C8FF1D96B607" KeyPath="yes" Source="fio\bin\cygpanel-10.dll" />
- </Component>
- <Component Id="cmp0D41FCEADBBADC60E27F6D001D913410" Guid="{26AA5EAC-876B-4C7C-AF8D-9A2DF893ADBD}">
- <File Id="filF45BAB215EC1612BE2788327CBC4BFB5" KeyPath="yes" Source="fio\bin\cygpanel-8.dll" />
- </Component>
- <Component Id="cmp04A50F3FAE6124BA785D9A7D9A4E0FB9" Guid="{F5F591F7-F973-4571-9E80-738037D87A11}">
- <File Id="fil65ECEB0166707ECF2FC2C91FCE5DF204" KeyPath="yes" Source="fio\bin\cygpanel-9.dll" />
- </Component>
- <Component Id="cmpD01F04EA7ED10DFC4EAA68B3DD083767" Guid="{F44243B9-88CA-409A-8265-923F6E8E0D8A}">
- <File Id="filBD96B8E048D506650C52C36242CD70FC" KeyPath="yes" Source="fio\bin\cygpath.exe" />
- </Component>
- <Component Id="cmpD055C0653BE24F37D9C4B12F21E8489A" Guid="{F00D1C93-F0FE-4657-B21D-BAE86513BA00}">
- <File Id="fil35B1C2729763DA50E32C3E0DBDAB2A8A" KeyPath="yes" Source="fio\bin\cygpcre-0.dll" />
- </Component>
- <Component Id="cmpA058262C94611E2AD463C73ADEA770DC" Guid="{608DC334-3213-4EB0-BA30-91346EDEEB4A}">
- <File Id="fil40C1E34365972C28D0EA7020E022AEFE" KeyPath="yes" Source="fio\bin\cygpcreposix-0.dll" />
- </Component>
- <Component Id="cmpF346AA6B07F5C3A2775A20613D5EAC0C" Guid="{2707420F-F58D-4412-9D56-56CDC304C441}">
- <File Id="filDCDB73AE92925079001400F5E405B8A3" KeyPath="yes" Source="fio\bin\cygpopt-0.dll" />
- </Component>
- <Component Id="cmp9B2CF01422C767668980462815CBD1FC" Guid="{C7E0C8E1-223A-41A9-9E64-2E73906BEDFD}">
+ <Component Id="cmp9B2CF01422C767668980462815CBD1FC" Guid="{55DD475C-5E0B-4C46-93BF-6D9E44B44CDC}">
<File Id="filC2E6ED6705CC982EC3E7FE8F1089AD7A" KeyPath="yes" Source="fio\bin\cygreadline7.dll" />
</Component>
- <Component Id="cmp6466E01E0FEC8644DDDDFE482AF37818" Guid="{0E11EAEC-BCB0-4172-A646-2D512A234A84}">
- <File Id="fil87F3F89203092A979B220D519F94C1F5" KeyPath="yes" Source="fio\bin\cygrunsrv.exe" />
- </Component>
- <Component Id="cmp4C71FCACBFF23FEAD4D6E28FD023594C" Guid="{6DA30986-D678-4501-BABD-48F5A55DFDDF}">
- <File Id="fil6306100E80B278CC0DC25AF341878B09" KeyPath="yes" Source="fio\bin\cygserver-config" />
- </Component>
- <Component Id="cmpF04F051EF4B7C676F1989889D664CEBF" Guid="{10700E75-6593-4D9E-A1A5-BAF26BE47258}">
+ <Component Id="cmpF04F051EF4B7C676F1989889D664CEBF" Guid="{470B8CF9-64BB-42D6-BC26-315A1C100562}">
<File Id="fil2D019C58F67A5FC1B93F3914EF1A68FD" KeyPath="yes" Source="fio\bin\cygsigsegv-2.dll" />
</Component>
- <Component Id="cmpD2B37F372746E9DD8F97A18B58BF418B" Guid="{42FB784A-66D9-4229-8DA3-47F413BB00C9}">
- <File Id="filFEA8D1707BE1FDFD60FB4502000348F3" KeyPath="yes" Source="fio\bin\cygstart.exe" />
- </Component>
- <Component Id="cmp09FAD0258982DB8C1B949DD0B0A29756" Guid="{961D091E-BAF6-4CCE-B8A1-2FAEA8DC4261}">
- <File Id="fil661D4B6036DEEA657FE576F435CD2029" KeyPath="yes" Source="fio\bin\cygstdc++-6.dll" />
- </Component>
- <Component Id="cmpA4FDA1BB883D213DFD79DDDA5FC69BD8" Guid="{4A5ADEA5-A40B-4539-87C7-7F868D148178}">
- <File Id="fil5CEE8A0BB5959F455641B1644D54CCB9" KeyPath="yes" Source="fio\bin\cygtic-10.dll" />
- </Component>
- <Component Id="cmp78FAB6EF8797499482C255DA30659FFA" Guid="{F1471A9E-7286-4B05-8B0C-E1F89C330985}">
- <File Id="filAFEAD00249AF4C1779A63064F7D23044" KeyPath="yes" Source="fio\bin\cygtic-9.dll" />
- </Component>
- <Component Id="cmp4F6A89C76B1E3DD6AA0CAA0810C90903" Guid="{F6F05657-4483-440A-B85B-8D6E2F6CFA5F}">
- <File Id="fil39DDBDD2647251E254A91FE3A97BC4C8" KeyPath="yes" Source="fio\bin\cygwin-console-helper.exe" />
- </Component>
- <Component Id="cmp6B8D3319D753D33FA084D14C712FFE56" Guid="{EDC74C84-1667-4390-A600-0550A2937996}">
+ <Component Id="cmp6B8D3319D753D33FA084D14C712FFE56" Guid="{F9511D7D-4141-4DF1-A293-462B45E54BD4}">
<File Id="fil3465ADFCD7DB240DD170949951999BCA" KeyPath="yes" Source="fio\bin\cygwin1.dll" />
</Component>
- <Component Id="cmp030FE4D18FA72CF83E4D56D3CD8828CC" Guid="{A27C8936-6864-4AEB-B44E-C9C1C1378E4A}">
- <File Id="fil761F13325F6060C62C3D8A9EFB6888EF" KeyPath="yes" Source="fio\bin\cygz.dll" />
- </Component>
- <Component Id="cmpBF77B477C441CD734C4DFF373D0FE53E" Guid="{D6334CBF-A899-4786-B1C5-9013AF881958}">
- <File Id="fil32BA22FA12B772D806C0725DC27C9106" KeyPath="yes" Source="fio\bin\d2u.exe" />
- </Component>
- <Component Id="cmpB8EAE0D7F2D1DE3317DAC756FF0404C5" Guid="{D3D7DDF6-21AC-4AA5-BDE3-207BC6031FDD}">
- <File Id="fil5F768485C5A8BC70A70BBACC1C277EBD" KeyPath="yes" Source="fio\bin\dash.exe" />
- </Component>
- <Component Id="cmpED5ADBC6E904B3C3061171510137B853" Guid="{9D230560-A1B7-466E-832E-1A04ECC4AE8F}">
- <File Id="fil83D7D4E78AEB4B2849DFCC1F06A253C7" KeyPath="yes" Source="fio\bin\date.exe" />
- </Component>
- <Component Id="cmp8614BD16301F6BA9EFD19AC793C939C1" Guid="{BC4518A3-97CC-4CAD-8BA5-17F68DAC7ED0}">
- <File Id="fil2C4EE83C677CB672005CCFED28BAD4B4" KeyPath="yes" Source="fio\bin\dd.exe" />
- </Component>
- <Component Id="cmp7FF6F32585A3C6750E061C695AB54B39" Guid="{57D534EE-AC54-4160-A42E-5ACB489FBEF8}">
- <File Id="fil293A7828B25A39555BD86415632002F3" KeyPath="yes" Source="fio\bin\df.exe" />
- </Component>
- <Component Id="cmpD298B832AAC859503D5B43C5D4FB08ED" Guid="{38DD6934-2658-47D3-93FF-DA949FECAE23}">
- <File Id="fil3FB513F88A57A5BC654810E1CFE3E65E" KeyPath="yes" Source="fio\bin\diff.exe" />
- </Component>
- <Component Id="cmpBD21FA7AE067D5F6A49FF45906E4E6CB" Guid="{2155E39A-7CF5-4761-895F-27B48F4ED2B9}">
- <File Id="fil3DE5DC67E6E4F4B498E67820A6585C59" KeyPath="yes" Source="fio\bin\diff3.exe" />
- </Component>
- <Component Id="cmpA3B0F507863050ED032EC59E5E6E5BCA" Guid="{2BA8BC02-D850-45E0-9C0F-5D54589B40AB}">
+ <Component Id="cmpA3B0F507863050ED032EC59E5E6E5BCA" Guid="{E8A84A1F-2933-4497-9DEF-000A69260D37}">
<File Id="filB530F241247A1FF38C8BA1B51B7F15B0" KeyPath="yes" Source="fio\bin\dir.exe" />
</Component>
- <Component Id="cmp6978D1EC98CE1AAC5AD7F7C07E5038D5" Guid="{868B8F3C-5A3A-4A63-8716-3172719EC9B2}">
- <File Id="fil604512806A2B98F1E8E3D2240D1AE3C6" KeyPath="yes" Source="fio\bin\dircolors.exe" />
- </Component>
- <Component Id="cmpE25642CEC7D33F988A36D82730D03EC5" Guid="{CC06812B-5841-4FDB-8011-0EB13CFC0656}">
- <File Id="fil361385DE03F5F1678C527295825052EB" KeyPath="yes" Source="fio\bin\dirname.exe" />
- </Component>
- <Component Id="cmp9638800CC467CDD057992713303A59A7" Guid="{CD02B6D8-6B5C-4031-B8AB-3745ADDCC9DA}">
- <File Id="fil424A6B337CA05F41EBA3552096D79310" KeyPath="yes" Source="fio\bin\dos2unix.exe" />
- </Component>
- <Component Id="cmp6113E1AF7F8556586D325BC7AB69B9F9" Guid="{0470C45E-B138-45CB-9FE9-88EF3DF33120}">
- <File Id="fil3A41F7B671D5F3311C60837B9CFDF011" KeyPath="yes" Source="fio\bin\du.exe" />
- </Component>
- <Component Id="cmp038B72857ACF295CD512EB582529E4E0" Guid="{7EB4ED34-CD66-4001-90AE-A9742A900EEB}">
- <File Id="filE5DDA8F5BA3ECC49666A4868A5D27726" KeyPath="yes" Source="fio\bin\dump.exe" />
- </Component>
- <Component Id="cmpCF50D2DE6723781A8897670D8604B819" Guid="{DC86963A-19BB-4E20-BF4F-5D34A8624D37}">
- <File Id="filCD4CF7C31A9B74A9A55583E377020676" KeyPath="yes" Source="fio\bin\dumper.exe" />
- </Component>
- <Component Id="cmpA72525CA9E3267185AEC8F3CAEFA3C50" Guid="{109C62EF-D5CF-4107-A198-989AB910FED8}">
+ <Component Id="cmpA72525CA9E3267185AEC8F3CAEFA3C50" Guid="{2C12A5B4-D7A0-4A5A-8FDA-D450955AF89A}">
<File Id="fil3BF37B55EFE198A9F6993DCF39ACB5AC" KeyPath="yes" Source="fio\bin\echo.exe" />
</Component>
- <Component Id="cmp8B28F20F3526E42EC345618C768EC3C5" Guid="{479507FE-4A62-4AC0-9E1F-AC3B2D5A4E5B}">
- <File Id="filBAA8D4D7CBE53DA333BBA3CEF022F122" KeyPath="yes" Source="fio\bin\editrights.exe" />
- </Component>
- <Component Id="cmp525FE9E30144A61D975E1B696FA71C00" Guid="{111F3B3A-AE84-452F-BB2F-7DA86B008232}">
- <File Id="filC369B0C4115F483533B4DB5BC1394486" KeyPath="yes" Source="fio\bin\egrep.exe" />
- </Component>
- <Component Id="cmp85B86CCEB305898592E1AB612301B302" Guid="{BFC851EE-33D2-4630-AE09-10D7684D4005}">
- <File Id="fil7C4D7402FD27C583588C24415A063BCE" KeyPath="yes" Source="fio\bin\env.exe" />
- </Component>
- <Component Id="cmpAC1D9495FBB7BE06F62A80FA28EB83C6" Guid="{03480AD4-9A12-4095-B356-637AC8D0D85C}">
- <File Id="filB17A61C43931675F6F16E0BC02CF14D8" KeyPath="yes" Source="fio\bin\envsubst.exe" />
- </Component>
- <Component Id="cmpFE1381196FF7C5C103ACB48ED6D62039" Guid="{006B2B87-277C-49FC-B9CF-ABC5DB85DC94}">
- <File Id="filEFCD76D10751E751B8A237F376C6BD48" KeyPath="yes" Source="fio\bin\eqn.exe" />
- </Component>
- <Component Id="cmpC2632C79715003B47ED6F9D81F38DAA0" Guid="{79147397-BA66-4D3F-B448-2F43F9670D06}">
- <File Id="filB33C1D759711366FD3F5F0D78514FAA0" KeyPath="yes" Source="fio\bin\eqn2graph" />
- </Component>
- <Component Id="cmp83A84CEA355A96EF51800B834FCDA2B8" Guid="{BB5A7690-776B-496D-80A5-DA67480A92DD}">
- <File Id="fil23A7A9B8019EE601F0E8083DF8B5922A" KeyPath="yes" Source="fio\bin\expand.exe" />
- </Component>
- <Component Id="cmp53ADB11C98799410771AE1760F08FDB6" Guid="{E8F84437-77C1-4061-8A8C-A0ABB65B2043}">
- <File Id="filC01CB195C3DEA847758938DEC7277F18" KeyPath="yes" Source="fio\bin\expr.exe" />
- </Component>
- <Component Id="cmp122E983DE8E5B875601AA39B1671BF7A" Guid="{C82F6258-5FCE-45CE-BE94-4BD8D546969F}">
- <File Id="filA639B3699E3CDDD5B6AD48C99CF5CD42" KeyPath="yes" Source="fio\bin\factor.exe" />
- </Component>
- <Component Id="cmpB8390992991A9F4412DBC0F20FED94BA" Guid="{2321687B-9AA7-40E4-9033-8BCD9D97F2F4}">
- <File Id="fil7AD4159B925765609B1D133AB5EBF01C" KeyPath="yes" Source="fio\bin\false.exe" />
- </Component>
- <Component Id="cmp4AD98C0ECA0FE2050C43EE711F50A7A5" Guid="{5963276A-83B5-45B8-98B8-08C2C5C017B8}">
- <File Id="fil2458C197CBBA43BC130B7F35572CF40D" KeyPath="yes" Source="fio\bin\fgrep.exe" />
- </Component>
- <Component Id="cmp6B27E4B9E92F885C6E1BC737F0904F14" Guid="{1BFEBD05-C28B-48FC-B7AD-0E0B1A2502D5}">
+ <Component Id="cmp6B27E4B9E92F885C6E1BC737F0904F14" Guid="{3C32AD14-89C0-4BEC-9649-F6BBCE3A49B2}">
<File Id="fil10DA107D76DDEDE826A17445C72554E3" KeyPath="yes" Source="fio\bin\find.exe" />
</Component>
- <Component Id="cmpC73A5C34E77C68A613AFE92C49127562" Guid="{01983FA6-C048-4DA6-9020-462781CB02FF}">
- <File Id="fil7E88E26226BED4F088549D66B6B3026D" KeyPath="yes" Source="fio\bin\fmt.exe" />
- </Component>
- <Component Id="cmpA48A5C5051DEC66D6C32C79DCCCC9A8B" Guid="{7DA1ACB9-E04D-4FB0-99D9-81BBCFFB3528}">
- <File Id="fil4D80266875DE6BB54EED7DC880F0D51B" KeyPath="yes" Source="fio\bin\fold.exe" />
- </Component>
- <Component Id="cmp7960AEC80A959B26A486F74318420ABE" Guid="{A824EBC0-DFD5-49B3-A5F8-A53014D5BA56}">
- <File Id="fil42945318DF55F6C457168FAF087F8782" KeyPath="yes" Source="fio\bin\gawk-3.1.8.exe" />
- </Component>
- <Component Id="cmp76F1B915717348B054FCC9A93BE13DF7" Guid="{522626D0-3F4B-465B-9562-56538494230F}">
- <File Id="filFC76D9F981D96E8339C5F73B4B75D365" KeyPath="yes" Source="fio\bin\gawk.exe" />
- </Component>
- <Component Id="cmp68AE51A1830312E41CB9D78B31F882A1" Guid="{5700E819-E553-42D6-9CDF-AC4158510BE7}">
- <File Id="fil9A4E6B3944983ED2C557642AE29FF10C" KeyPath="yes" Source="fio\bin\gdiffmk" />
- </Component>
- <Component Id="cmp2D69963C0BA3D6404ABFA1D4AB2277B8" Guid="{55875BE0-3DDC-404A-AF05-04F6C3224E7F}">
- <File Id="filC68BC0D2184F5773582DA3DD6D957DA2" KeyPath="yes" Source="fio\bin\getclip.exe" />
- </Component>
- <Component Id="cmp00361A3B0B432A6585FA5B527822ECEF" Guid="{DB3129ED-5202-4855-8A2A-18C03C13323A}">
- <File Id="filD1B61CCB7CBAE884D57C6A71FEFB91F8" KeyPath="yes" Source="fio\bin\getfacl.exe" />
- </Component>
- <Component Id="cmpEEF48BB3E40625E98B008B77C11374FC" Guid="{45B6DB13-79F1-428C-8755-52558D95D4AB}">
- <File Id="fil390B749B0EF9336ABB23A53D35E859B5" KeyPath="yes" Source="fio\bin\gettext.exe" />
- </Component>
- <Component Id="cmp45F8E13B1FE1B5BF50BBCB523489E45B" Guid="{8BB35EE7-64DC-444E-AE42-F6F6F050C9F6}">
- <File Id="fil0E3AC243220B94C35EF74A4504D99438" KeyPath="yes" Source="fio\bin\gettext.sh" />
- </Component>
- <Component Id="cmpDE3E8D8DCA5DB909BB8D110EBE12D863" Guid="{BE1D6614-E641-438B-BEB0-FFA73E805A74}">
- <File Id="fil3D406A3662FBBFA318FB1B174B94918C" KeyPath="yes" Source="fio\bin\gkill.exe" />
- </Component>
- <Component Id="cmpCAD8CE1E17EB573C2F4DAAC307374123" Guid="{A56E708F-19C9-4D3B-BDD6-E87745BBDF4D}">
- <File Id="filD8664A382992ED3C2088D109976D67F0" KeyPath="yes" Source="fio\bin\grap2graph" />
- </Component>
- <Component Id="cmpA36D2B5EA5C98A7A1F253A2A397DA1EE" Guid="{DC90DE10-C2CD-40D3-B6B1-1ACA78E5EC76}">
- <File Id="filA8BAED57DC5745BEB68DAC1885104CBB" KeyPath="yes" Source="fio\bin\grep.exe" />
- </Component>
- <Component Id="cmp5B47FCC54EE40D33C3C5BDD21417AC83" Guid="{8D90B9A8-1EC0-4840-ABA6-AB4E084F79DE}">
- <File Id="filBA58E427065536980ACBFA9C70BC21A7" KeyPath="yes" Source="fio\bin\grn.exe" />
- </Component>
- <Component Id="cmpEF2EB930A80FD07EA1F057CBEF1C8EBC" Guid="{6FF72509-78C4-4FAC-9982-11B593C4675A}">
- <File Id="fil11AFDC0F2B9076EBC950BA0C9D19DFDA" KeyPath="yes" Source="fio\bin\grodvi.exe" />
- </Component>
- <Component Id="cmp1E45B31454842730AEF18A01C01D2DB6" Guid="{65A9A1CE-5571-4A5C-8FE9-0DCE2D4A6F16}">
- <File Id="fil95E61F297BFC4299072C00E2A9A31191" KeyPath="yes" Source="fio\bin\groff.exe" />
- </Component>
- <Component Id="cmpB422812727E8F72978EA39355AB610B0" Guid="{FEE70113-96F4-4AC8-9F01-875A268478C5}">
- <File Id="fil149B9740104DE3348B2B65390101931E" KeyPath="yes" Source="fio\bin\groffer" />
- </Component>
- <Component Id="cmp4BA59EBF9E802F76D12360B916CFC5F0" Guid="{CF671DAF-3FB2-4BFB-9B69-89B2A1ABBA48}">
- <File Id="fil5758785AE0CFF3645393C77309752774" KeyPath="yes" Source="fio\bin\grog" />
- </Component>
- <Component Id="cmp2BD4021880AA0B9617AED7B2C325BB9D" Guid="{CF21B607-98C0-48ED-8DA6-BAC5D020F94B}">
- <File Id="filDD18C6094C6EF7BA1FED26E4B06879EE" KeyPath="yes" Source="fio\bin\grolbp.exe" />
- </Component>
- <Component Id="cmp7D8EE62DF6F143C287565693271A6A95" Guid="{9C6732B7-1C98-4433-BA6F-5501717459DC}">
- <File Id="fil27305F998CCFC7E4CE983F4CDC95CA04" KeyPath="yes" Source="fio\bin\grolj4.exe" />
- </Component>
- <Component Id="cmp8B228BD6A49780DE25DFD7B747571CCB" Guid="{A5F8F95E-EE16-4003-9D53-51EE323C4167}">
- <File Id="filC2EF40BCDDA2325E9FF896D0B0FE5A67" KeyPath="yes" Source="fio\bin\grops.exe" />
- </Component>
- <Component Id="cmpE240A039B910B1D3C7FE2E1F56FB7217" Guid="{DFEF5152-E162-4D85-A541-540358A5C0CF}">
- <File Id="filD8EB645E95F65A3F782186FA57F31E73" KeyPath="yes" Source="fio\bin\grotty.exe" />
- </Component>
- <Component Id="cmpDA348834C0574B11048CC89E4DFDC664" Guid="{6F59D8D2-F666-4D7C-96FD-D0250C5BD9C9}">
- <File Id="filDB4653935520C707C7C750F0840C5782" KeyPath="yes" Source="fio\bin\groups.exe" />
- </Component>
- <Component Id="cmp926595265C25FDB3E55C329B5F7D3552" Guid="{6A16FF9B-3A51-4E47-AE0E-E96D0856EA47}">
- <File Id="filFC601A0978374259F071997EA11D3C3F" KeyPath="yes" Source="fio\bin\gunzip" />
- </Component>
- <Component Id="cmpEF6045F0BD8EF1DB47158D70FEAE7D88" Guid="{7F6232D4-F68A-4E67-8BE1-35F30044EE21}">
- <File Id="filBBB9E34923ED658685ACF14EFE17DB41" KeyPath="yes" Source="fio\bin\gzexe" />
- </Component>
- <Component Id="cmpE52F2F51515A784CB061752CF6F1EEEC" Guid="{A9142E13-2134-44A9-8112-4B42C5D96C22}">
- <File Id="fil75FABB7951DE51B5265D3745D999474F" KeyPath="yes" Source="fio\bin\gzip.exe" />
- </Component>
- <Component Id="cmpE5E80AAE1D2DDB5CE5353EE3580A69A1" Guid="{CFD2BDEC-6FAE-41DA-BD1B-E522F68DD3FB}">
- <File Id="fil3A6F954A3C57592C99A6198E730E48E6" KeyPath="yes" Source="fio\bin\head.exe" />
- </Component>
- <Component Id="cmp0447E6D5BFBDE21E0DCD05923C22E2D8" Guid="{07014517-FD34-45AD-8493-B7A469E53EC9}">
- <File Id="fil6F56A0572DC2AA4632C58AB1A0B72AEE" KeyPath="yes" Source="fio\bin\hostid.exe" />
- </Component>
- <Component Id="cmpEFB25FD87938BAFAD0921C2D2BB89CBF" Guid="{3EE69738-3F35-4AD1-A413-112C93F728BF}">
- <File Id="fil05103FEB4D0AA507460726BBE0F7064F" KeyPath="yes" Source="fio\bin\hostname.exe" />
- </Component>
- <Component Id="cmpCBA4913C4C67056F03FCBD9CFDA117CC" Guid="{5CC8C293-A94E-42D3-B7B8-CDD45B821168}">
- <File Id="fil89535C42C014BBE6FF54B979EB977925" KeyPath="yes" Source="fio\bin\hpftodit.exe" />
- </Component>
- <Component Id="cmp6534CE9C6BDF636E59193A96CA9E511C" Guid="{B257F04B-F830-42A2-8710-2A9DB5C8DE94}">
+ <Component Id="cmp6534CE9C6BDF636E59193A96CA9E511C" Guid="{C979AF88-27BC-4629-96C2-323698433436}">
<File Id="fil46F00312A890D99E3AED53461D0FCB28" KeyPath="yes" Source="fio\bin\id.exe" />
</Component>
- <Component Id="cmp61A6CF93BE9C8EC5AC6C08B96A63F664" Guid="{0E610073-BA53-4E04-8448-3880CE623B06}">
- <File Id="fil13D1A8555AFC41CCD4C0775E75256346" KeyPath="yes" Source="fio\bin\igawk" />
- </Component>
- <Component Id="cmpF4C7CA832C4FBF6B037F0BCE4A7EA0D2" Guid="{FFAD709F-2B60-4C31-B804-FB52D628B7E1}">
- <File Id="filCFB956975783E93E6AF5CB607A6C060D" KeyPath="yes" Source="fio\bin\indxbib.exe" />
- </Component>
- <Component Id="cmp9E6C5887A603EF773699600AE706A330" Guid="{225FAF6B-E3EB-4217-9A8D-BC5DC2500F3F}">
- <File Id="fil7CB40595F69ED533743B815C6029A235" KeyPath="yes" Source="fio\bin\info.exe" />
- </Component>
- <Component Id="cmpD8D40E8A35FD8CF73D485C2CD51E22D3" Guid="{177E4836-B763-48A9-B069-F234BC5E7D73}">
- <File Id="filE50AE8B71A42386560C24D2563DC3C9F" KeyPath="yes" Source="fio\bin\infokey.exe" />
- </Component>
- <Component Id="cmp0C98BC5FB9DF0A3A62E6564CD9E09DB7" Guid="{334C9AAD-1F68-4C78-891F-E3287CE6D6F3}">
- <File Id="filD51E7DB212CA8019041C1AF092D5CA6F" KeyPath="yes" Source="fio\bin\install-info.exe" />
- </Component>
- <Component Id="cmp80F74A0DD0B333B7BB4711F766853E5C" Guid="{E12F181F-0B04-4963-A5B7-3948C104A8EF}">
- <File Id="fil19542B0C2A144B8028E02236E7C7C634" KeyPath="yes" Source="fio\bin\install-info.exe.manifest" />
- </Component>
- <Component Id="cmp814824FE3ECE4BF83061E78F2D117DDF" Guid="{12AD857B-E260-4EEF-9F28-912B42E5A1BF}">
+ <Component Id="cmp814824FE3ECE4BF83061E78F2D117DDF" Guid="{DECFF926-0524-4C94-A314-58A517E606F2}">
<File Id="filF880E5121DF1044001E3ACBAB341D3EB" KeyPath="yes" Source="fio\bin\install.exe" />
</Component>
- <Component Id="cmpA2556B41CD799E0298B0645D6D7CD127" Guid="{5BA5A56C-46AE-40CD-87A5-A1142A01121B}">
- <File Id="filBC79E6203688D3E41275F33EE5237D51" KeyPath="yes" Source="fio\bin\install.exe.manifest" />
- </Component>
- <Component Id="cmpBDD9F8CEFAFCDCFC979909CC75CC77E5" Guid="{6AC79110-A27F-4E31-B361-F26569DACF68}">
- <File Id="fil9CDFBB9B23BD9C5F53F312F9BA1A9FD3" KeyPath="yes" Source="fio\bin\ipck" />
- </Component>
- <Component Id="cmp78CD06F4735C62B20B650C6805B2F072" Guid="{20A62CC5-4CC8-4975-A8CA-48C0CC2BE94B}">
+ <Component Id="cmp78CD06F4735C62B20B650C6805B2F072" Guid="{D3409C18-77A8-419A-AAF9-D227FBB285EF}">
<File Id="fil00AC1963D043F8DC6A914EC7035D3976" KeyPath="yes" Source="fio\bin\ipcrm.exe" />
</Component>
- <Component Id="cmpE426DFEDFB708588E3335E3D70526823" Guid="{2C5A2977-1CF8-4D67-B8D4-FDDB84451371}">
+ <Component Id="cmpE426DFEDFB708588E3335E3D70526823" Guid="{24646B9C-75DE-4B3C-871D-69CDD0C98906}">
<File Id="filD0A4D04562ADFF44142699A09BB33CC6" KeyPath="yes" Source="fio\bin\ipcs.exe" />
</Component>
- <Component Id="cmp579659E44E1E0B120FF5D373D589D5EE" Guid="{BAF48A5B-F7D8-4F1D-9B9D-A6348E299296}">
- <File Id="fil50435FD364399652FF29B2C2FE20966A" KeyPath="yes" Source="fio\bin\join.exe" />
- </Component>
- <Component Id="cmp3BE803C960A8C79D2CC6A0F7C632C1C1" Guid="{3A6E78C3-5290-45A2-B895-27BE23377113}">
- <File Id="fil0CEE12ABFD2D6955B58259A64FD190EA" KeyPath="yes" Source="fio\bin\kill.exe" />
- </Component>
- <Component Id="cmp2A7BA5773A9B30640F3FD0EDD373C753" Guid="{62C7C6D5-98F2-4417-B3E4-3ADDF2384810}">
- <File Id="filE2043F1AE7EF73FBCD52C3FD2B6AC26E" KeyPath="yes" Source="fio\bin\ldd.exe" />
- </Component>
- <Component Id="cmpB5FC6F75A6D6093C00B766C2A3DBCBDF" Guid="{1FD606DF-4EDA-4FE7-BF46-E335ED1951B5}">
- <File Id="fil0313C3BAC66ED74FB7D96EE03E2EBB18" KeyPath="yes" Source="fio\bin\ldh.exe" />
- </Component>
- <Component Id="cmp1411760DD2A14E38D717EE066C3603C9" Guid="{30F832ED-3BD8-41A0-B26B-AC8F892D7E1B}">
- <File Id="filEDDE980DFB7933C3914CBECD694D0F91" KeyPath="yes" Source="fio\bin\less.exe" />
- </Component>
- <Component Id="cmp4094EDF7CDDE5621E49F5CBBE4352284" Guid="{E2C46405-CABB-4357-88B6-7D09F8C1FE58}">
- <File Id="fil88DD780A1A2B949ABF261BC1B353B50B" KeyPath="yes" Source="fio\bin\lessecho.exe" />
- </Component>
- <Component Id="cmp6EA5A1A93AE041E6784E803C377693A2" Guid="{7430B6A8-A044-41C2-B430-E60498BD33C1}">
- <File Id="fil17ED55FA4A6F56105B16A124A518CA6D" KeyPath="yes" Source="fio\bin\lesskey.exe" />
- </Component>
- <Component Id="cmp4C5F6D064363BD18709CCB3590818407" Guid="{0D14FF89-AE8D-4DDF-ACD5-9F0713DEDE4C}">
- <File Id="fil03AA7BA045771DF827E64ED4DECE1829" KeyPath="yes" Source="fio\bin\link.exe" />
- </Component>
- <Component Id="cmp5CF41705BD7DFD4FCBD5247F0B615D07" Guid="{03E89ABF-737F-4D73-B17E-BE4F14000CBF}">
- <File Id="fil6DBA00F2A8F0CC139CE3800BA54929F8" KeyPath="yes" Source="fio\bin\lkbib.exe" />
- </Component>
- <Component Id="cmp13CCC07180723DFE2AD9B2ECEFF300B9" Guid="{1C5B34A5-9A5F-4E42-B16A-C581FFE0ADCB}">
- <File Id="filCA36DD1CD43055A74A52F5875B6EDADB" KeyPath="yes" Source="fio\bin\ln.exe" />
- </Component>
- <Component Id="cmp2975B7925A5D54A0E34D471D0B928F04" Guid="{4172A466-A772-4046-84BB-671117150084}">
- <File Id="fil839E6B8846028FE9DD4BD53F31DF8168" KeyPath="yes" Source="fio\bin\locale.exe" />
- </Component>
- <Component Id="cmp6456830E4D5440B6070E542A6533A39F" Guid="{472509CE-0607-49B1-91B6-35176981F3BE}">
- <File Id="fil114404B3510CBEAA1AB3FCCF6CDE6C4F" KeyPath="yes" Source="fio\bin\locate.exe" />
- </Component>
- <Component Id="cmpC031A96D44D0D52F11858A0F0A338149" Guid="{09D29956-673D-44C3-8F9B-D120C55ED3C3}">
+ <Component Id="cmpC031A96D44D0D52F11858A0F0A338149" Guid="{19E1A03C-2523-4B25-B7DB-E97096D4C469}">
<File Id="fil5AB3B5591D5BDD0DC716EC3610881732" KeyPath="yes" Source="fio\bin\login.exe" />
</Component>
- <Component Id="cmp4641D4F4ED711A9B2EEEE122807B3226" Guid="{5A5A5753-5250-48BA-817C-3268A15B3A09}">
- <File Id="filF69A26F5F9B71113FD7E0E52CE5A988C" KeyPath="yes" Source="fio\bin\logname.exe" />
- </Component>
- <Component Id="cmpFB447C945FE1D105E939FDFBBE334DE4" Guid="{D9E362B4-4D4A-492E-AE79-17E9F7A8B58F}">
- <File Id="filC83FE4109F963D347A064B99953152D8" KeyPath="yes" Source="fio\bin\lookbib.exe" />
- </Component>
- <Component Id="cmp6B226D9FA26DD2E1904A5D127596A271" Guid="{5D4BA1FC-1462-4325-B6C6-EDF6C02FCE29}">
- <File Id="filB3AF20F52DBBCFB623C7C1A5BDE039B8" KeyPath="yes" Source="fio\bin\lpr.exe" />
- </Component>
- <Component Id="cmp8084CF859D0E773FFA69F1EDBB93EC1B" Guid="{1D34A983-F168-467E-9F25-F7C3637C9A6D}">
+ <Component Id="cmp8084CF859D0E773FFA69F1EDBB93EC1B" Guid="{42018D70-55F2-4CF7-B6F6-9FE4DD92E5F8}">
<File Id="filF967FF167AC4267976BFE7FB3E809CFB" KeyPath="yes" Source="fio\bin\ls.exe" />
</Component>
- <Component Id="cmpF33363146BEE0ED91118C7E44DEE58FF" Guid="{D0D547E8-EDD7-4671-AC99-83CF731EA21E}">
- <File Id="filE74E5A20BF84665E675EE6719DF3A187" KeyPath="yes" Source="fio\bin\lzcat" />
- </Component>
- <Component Id="cmp05A5267FF4736C6FDBCF0C793F622C7D" Guid="{BD10F4E1-802D-45DE-95B1-3FA752361F65}">
- <File Id="fil15767E937F204947C8F71A56AA44D4BE" KeyPath="yes" Source="fio\bin\lzcmp" />
- </Component>
- <Component Id="cmp59307E4B0FE2347E022E438B776F08CB" Guid="{AA6AD3C6-B820-471F-831F-B84C2287606C}">
- <File Id="filDABEEAF08B0D913420A6F81C8E32C4CB" KeyPath="yes" Source="fio\bin\lzdiff" />
- </Component>
- <Component Id="cmpC80A6CCAF3E6ED0FB2C119584FB04861" Guid="{FE4DF756-318B-41C6-8BB3-1BF836C04A29}">
- <File Id="filD62443BF03FBEB92717A4B6B604588C6" KeyPath="yes" Source="fio\bin\lzegrep" />
- </Component>
- <Component Id="cmp76189D3083C499F1EDFF62C866C2954E" Guid="{3C948337-32A7-4FFA-B20A-7EED5485C592}">
- <File Id="fil5A971983EF97E89873EA053445812C16" KeyPath="yes" Source="fio\bin\lzfgrep" />
- </Component>
- <Component Id="cmpBD0C9F49E7AAC7690D0C5BCC2F6E3DBA" Guid="{68D6ADFD-0337-49FC-9C9F-E4BEB03E78EA}">
- <File Id="filF192A40A52B116FE8071D99D2112304F" KeyPath="yes" Source="fio\bin\lzgrep" />
- </Component>
- <Component Id="cmp9B11907C9F772094A39BCCA441238CFE" Guid="{C469F78A-30BC-45F7-B1D7-FB232E9E31DB}">
- <File Id="fil784E27A6467680487B7BD73A14BC1A0C" KeyPath="yes" Source="fio\bin\lzless" />
- </Component>
- <Component Id="cmpA2FF5E848B5074202DCE38DD93E85CD1" Guid="{ACFE4000-0320-4E52-B3BC-635202DF2C59}">
- <File Id="filB3E6EB58BA31DF8B828613288BDB45E5" KeyPath="yes" Source="fio\bin\lzma" />
- </Component>
- <Component Id="cmp36F719667BD082BCC3E77D4FD6CF37AE" Guid="{740EA9EC-DFAA-4A22-98D2-BDBB84CB6222}">
- <File Id="filFA6C0CB78CDBFBCF94191BCB7D0987E1" KeyPath="yes" Source="fio\bin\lzmadec.exe" />
- </Component>
- <Component Id="cmpDCBBE69E771022F6460B796E0B8D03B0" Guid="{CDEECC60-4BEA-4DF0-9E89-5498A3FE9A2C}">
- <File Id="filF99D89FE58831234D4AA846A5449E889" KeyPath="yes" Source="fio\bin\lzmainfo.exe" />
- </Component>
- <Component Id="cmp593DAE5283282FDDCFA0C4548FCC3711" Guid="{FEB62AF0-6D30-4BC6-ADF3-5AE2A1781497}">
- <File Id="fil65DBCFA7D5CB08EF3135FD2BD53ED7D8" KeyPath="yes" Source="fio\bin\lzmore" />
- </Component>
- <Component Id="cmp2D4CBE0850296626BCA318C8BBF2E0E9" Guid="{5EEED53A-7B15-4A4B-AC99-EA567D899FE3}">
- <File Id="filCCA4649A27331A719B854745D95B5944" KeyPath="yes" Source="fio\bin\makeinfo.exe" />
- </Component>
- <Component Id="cmp937B59E3F4D491AA5203223981FCC055" Guid="{75D6ACA3-A669-4ECF-981D-9232BA3CC7F0}">
- <File Id="fil076A6F2ADF504AD28FFB5AFBF4F38F6A" KeyPath="yes" Source="fio\bin\man.exe" />
- </Component>
- <Component Id="cmpF90B0391DA206DE442C15C2A5B899E28" Guid="{E24F6608-2304-4E08-8AB2-BA43F59D3B9F}">
- <File Id="fil801F9452D001E266903AB366231A67CC" KeyPath="yes" Source="fio\bin\man2dvi" />
- </Component>
- <Component Id="cmp2AC488DE7943595FFC7D0E53C12D012D" Guid="{8C66A776-092C-4B50-AB48-5184DC10E9E0}">
- <File Id="filDF15F920E36C3C0FA45D3F3FFFB4A5D6" KeyPath="yes" Source="fio\bin\man2html.exe" />
- </Component>
- <Component Id="cmp419396D0D08B1A5EA990CA0867B6A65B" Guid="{F483A3DB-1ACD-418A-B19D-27BE2E8AA7F7}">
- <File Id="fil008ABED655A848F720B535796DAF03AE" KeyPath="yes" Source="fio\bin\manlint" />
- </Component>
- <Component Id="cmpC0CAD8896E51115A9AC36AA8808AEA18" Guid="{44392909-4629-4F2E-B1BA-BD99629411E7}">
- <File Id="fil0EDEED9D537B3A01543C70A65B373387" KeyPath="yes" Source="fio\bin\manpath" />
- </Component>
- <Component Id="cmpCC2F3DEDEC4A76F25732EAE3E6E8997E" Guid="{5AC8B47A-7167-49C4-9B41-9D351FCB31CD}">
- <File Id="fil7AF193DC51EAB0A1AE62E60E7DE73588" KeyPath="yes" Source="fio\bin\md5sum.exe" />
- </Component>
- <Component Id="cmp50F34FC2D29086C197E545940C22C0E0" Guid="{709279C2-3BBF-4DE8-8AAB-91144BDA2D99}">
- <File Id="fil46E82B4D1A0BA3FE64A654190B906D14" KeyPath="yes" Source="fio\bin\mkdir.exe" />
- </Component>
- <Component Id="cmp6276329DA28518468EAF1533DE0E79EB" Guid="{D88A33A2-9264-491A-A342-C86C6EE7C8A1}">
- <File Id="fil2E6CAB544C1DA39C2F9A7543E2850F05" KeyPath="yes" Source="fio\bin\mkfifo.exe" />
- </Component>
- <Component Id="cmpFD1BF78FE1E1C7B93E1C7C7B2F4F4E16" Guid="{97A9577D-1CB3-4844-85DE-7C05A0B36AF8}">
- <File Id="filE7BAF78F8A63E067D512278CC01F9AA8" KeyPath="yes" Source="fio\bin\mkgroup.exe" />
- </Component>
- <Component Id="cmpA31C562C80F76C670CEECC8278BF9440" Guid="{7A4ACF34-8FF9-430F-8FD0-BF5538411844}">
- <File Id="fil2EFDA3045F78A906CDBA9C63FD81A95A" KeyPath="yes" Source="fio\bin\mknod.exe" />
- </Component>
- <Component Id="cmp9363EC13D18258B7CAA3BCD3B17AE53F" Guid="{22383B23-E12A-492D-8AFF-72668DDA8014}">
- <File Id="filF9D5FB69EB44D4617E18B5F586CE512B" KeyPath="yes" Source="fio\bin\mkpasswd.exe" />
- </Component>
- <Component Id="cmpA2054CEBA03A84225EDB9F6CDA839EF2" Guid="{737F5EA7-7BE9-48F4-A4AF-24CCE83FB9B3}">
- <File Id="filD15EC7186F504CBA008E5C2FCBA94140" KeyPath="yes" Source="fio\bin\mkshortcut.exe" />
- </Component>
- <Component Id="cmpD067D801F0CA665AC4D8A180254314BC" Guid="{D7A588CE-C7E6-4BA2-8ED6-CB519940919E}">
- <File Id="fil439219D6470A61F986D4AC5F79D9A1D4" KeyPath="yes" Source="fio\bin\mktemp.exe" />
- </Component>
- <Component Id="cmpE5AEBC299E50B5821CE05EA0774FC8C7" Guid="{622CBC03-30F2-4D15-90C5-B03A2A3BFE87}">
- <File Id="fil4EB59E18D7CBB205BFA8CADAB40958C8" KeyPath="yes" Source="fio\bin\mmroff" />
- </Component>
- <Component Id="cmp224B239079B786869C0063CE91E60B27" Guid="{CA3DA8E8-C9E5-425F-A749-FDAD6C7A4821}">
- <File Id="fil498C37B21F41C99A55C87E70E5767080" KeyPath="yes" Source="fio\bin\mount.exe" />
- </Component>
- <Component Id="cmpD17BD2431E14621EBC29C2C66C68351E" Guid="{EFFDF42A-7D64-4980-A9EE-EEA4A9190F00}">
- <File Id="fil61F2506FD43FDEF09713E7E8BD836F3E" KeyPath="yes" Source="fio\bin\msgtool.exe" />
- </Component>
- <Component Id="cmp42C9DDF70207A0236C495F62AFF38A87" Guid="{6D0F82F4-EC36-4586-9C72-A5A029C79397}">
- <File Id="filFCFF0270FA0247F91D46FAC26014805F" KeyPath="yes" Source="fio\bin\mv.exe" />
- </Component>
- <Component Id="cmp644C6AD517C4526CA44C9B5E1430629E" Guid="{8811DAB6-1828-45BA-9FFB-9F693C465AB6}">
- <File Id="fil2D7C6D34246688D048D52D1A1FCD82BD" KeyPath="yes" Source="fio\bin\neqn" />
- </Component>
- <Component Id="cmpB634D0CCC2AEA98BD104A14AB0E05316" Guid="{DD9EF4C6-CD68-4FDD-AFFE-462EFF2600E8}">
- <File Id="fil5F4EEAFACCC3BA498DC1C25EF5A06776" KeyPath="yes" Source="fio\bin\ngettext.exe" />
- </Component>
- <Component Id="cmp767830CF835353DE7B5D6A6DFB58D366" Guid="{B0A0CD82-89E3-44BC-96B7-D85350C78F14}">
- <File Id="filCEEA24993EDB9CA5F5184C1B1E320D00" KeyPath="yes" Source="fio\bin\nice.exe" />
- </Component>
- <Component Id="cmp960FE6228381DFD1DA693A3BF167EDBE" Guid="{BD3BFD7F-42E4-48AF-8A9C-0486D0DEB284}">
- <File Id="filF8E416787F27E84DE54CE8B293FD60B4" KeyPath="yes" Source="fio\bin\nl.exe" />
- </Component>
- <Component Id="cmp015BFC4CD5DD5499E2F94C5D8E90102E" Guid="{65791C3A-0070-4F24-A209-BB68F56E4BEB}">
- <File Id="fil73C7C18AA5557F17340DA063758E9B42" KeyPath="yes" Source="fio\bin\nohup.exe" />
- </Component>
- <Component Id="cmpA9D433F259B3401FDF7248177B91D9A1" Guid="{8E238030-9EFE-497A-812A-737A19D4DD1F}">
- <File Id="fil4D3840BFB1EC87B61AF160A357AA99A7" KeyPath="yes" Source="fio\bin\nproc.exe" />
- </Component>
- <Component Id="cmpD3C6DCE986EA83522FC8CC8266D99A85" Guid="{030CB2A9-1B81-4AFA-9529-5BD1269D8758}">
- <File Id="fil63CA89B61578DA6FE928A46B30A3A1CD" KeyPath="yes" Source="fio\bin\nroff" />
- </Component>
- <Component Id="cmpC2CD5978BB99F05DC08D101D2D2D77C4" Guid="{971C0BA1-E184-4FFC-B3CF-06E114EE923C}">
- <File Id="filE806CA2E0F2EFFE733E5433AC18057C2" KeyPath="yes" Source="fio\bin\od.exe" />
- </Component>
- <Component Id="cmpC813BBFFAFADF4FCE0B613720312F542" Guid="{DF3A5C3B-5A2A-43BE-943B-95FADCDE89E4}">
- <File Id="filA499ADD0F8586EC0658DF5673035797E" KeyPath="yes" Source="fio\bin\oldfind.exe" />
- </Component>
- <Component Id="cmp49991084D6F6283C9631427E645B5DE9" Guid="{9823F413-1A56-4E6C-8203-218AD4FEA3F8}">
- <File Id="filA5404F7A76B2651D9A8406F43C7DE3AE" KeyPath="yes" Source="fio\bin\passwd.exe" />
- </Component>
- <Component Id="cmp26C90EA1B18ADA63B1BCEE21D5E999BA" Guid="{8245FE18-B1EF-4967-AFB2-55192EBA9094}">
- <File Id="filD6C9ED921D85B039DDE78EA32504A1BD" KeyPath="yes" Source="fio\bin\paste.exe" />
- </Component>
- <Component Id="cmp3965E04CA71089124ACBE264CEA2798D" Guid="{8BCBCEA7-D9A3-4870-AC13-2AAB7EB2E838}">
- <File Id="filF3F7AE5CF928A657A3BAEBB4699B9D11" KeyPath="yes" Source="fio\bin\pathchk.exe" />
- </Component>
- <Component Id="cmp2484545E9FCB056DA8E86BE69E7C13A6" Guid="{F62631C6-2E71-4CF6-8DB5-54C2A2BB8E8E}">
- <File Id="fil466C8EABB48A2B5F0CCD6DED6899F4FF" KeyPath="yes" Source="fio\bin\pdfroff" />
- </Component>
- <Component Id="cmp49C32A14D6D2351D12FEE9E5CC0C8E5B" Guid="{F5F64121-8F05-4277-A52D-D9E9CC8F144C}">
- <File Id="fil5A2714259891CC82E0BE21B08C12A7D8" KeyPath="yes" Source="fio\bin\pdftexi2dvi" />
- </Component>
- <Component Id="cmp1E8EDBB0614311CBB1BBA2134672EE4C" Guid="{EE2E9E66-C864-4BDF-B2EC-6B04844074F4}">
- <File Id="filC89EB9100C1A4C17AA4F6357DF1C1F1B" KeyPath="yes" Source="fio\bin\peflags.exe" />
- </Component>
- <Component Id="cmp59F8E299D62776ECEAFB4156334231D7" Guid="{1C4A76DD-EF89-44D3-A8BA-3927DE6F34CA}">
- <File Id="fil4179D1B8564DBD36CBB08A4F66E1DDA6" KeyPath="yes" Source="fio\bin\peflagsall" />
- </Component>
- <Component Id="cmp4322ED266D12F477D20E5C12614F0F7E" Guid="{F22CCE57-B02B-44EF-9C2E-78ADCA00B3ED}">
- <File Id="fil65DC43554FB4158C0C05119D95F267B7" KeyPath="yes" Source="fio\bin\pfbtops.exe" />
- </Component>
- <Component Id="cmp8A1FECFE4B740DD9F12E8B286EA4CAB7" Guid="{4657E2DE-A416-40C2-84F3-848C0FC19033}">
- <File Id="filFCB6E0EFBE3C6762870416E5F1C32594" KeyPath="yes" Source="fio\bin\pgawk-3.1.8.exe" />
- </Component>
- <Component Id="cmp43DFE48059E2A7EAE56025557B1703DD" Guid="{1E7CD971-BF84-416C-9776-FA6E67CBDAE6}">
- <File Id="fil2FECA3B2A338ADEA76BAEBDC9956A1D8" KeyPath="yes" Source="fio\bin\pgawk.exe" />
- </Component>
- <Component Id="cmp32EDB24CC82E58BC71747214BDC4BA57" Guid="{B8FBCCB7-B659-48E9-88B0-872EFD0EFFDD}">
- <File Id="fil78EB6C764415B9931321D9347A52D694" KeyPath="yes" Source="fio\bin\pic.exe" />
- </Component>
- <Component Id="cmp8A184EECA0E99E6674A57F1235B2447C" Guid="{0D5EDF2D-2922-41A9-A324-3BB0C44FF9EB}">
- <File Id="fil1A82531C2764C8947EEAADB83C269891" KeyPath="yes" Source="fio\bin\pic2graph" />
- </Component>
- <Component Id="cmpB3AFADEF4E9178B3D76883080ECBC030" Guid="{01E8914E-EC30-4C97-A016-E14A311539FE}">
- <File Id="filE7ABE38BC901C52A44895DD6D4D14B70" KeyPath="yes" Source="fio\bin\pinky.exe" />
- </Component>
- <Component Id="cmp98C3020F99EB041FB2DB833859945A0B" Guid="{30DA4E38-8268-44DD-90A9-5545F465275D}">
- <File Id="fil655D443A1FE05DA1FFFBD3ACDC3AC481" KeyPath="yes" Source="fio\bin\post-grohtml.exe" />
- </Component>
- <Component Id="cmp833B26263DB5D7009D93EA452F8DC167" Guid="{DC5AE4EC-3465-49E0-A91A-E3448F579B3B}">
- <File Id="fil7DC65C26EF37276F252A467A5025BB29" KeyPath="yes" Source="fio\bin\pr.exe" />
- </Component>
- <Component Id="cmp5D89F222F0137750CD43948E458BF0C3" Guid="{9F7D06FA-BC98-4B6B-8247-281ADF51AEFD}">
- <File Id="filA53C029DD1A798E3C6ABF71C1D270477" KeyPath="yes" Source="fio\bin\pre-grohtml.exe" />
- </Component>
- <Component Id="cmp77FA601ABF905D6C44E5DC3169006136" Guid="{0E8FB828-AA4B-43E9-95A1-4716C1603355}">
- <File Id="filCCA99D8C90DB91B10853DA30BFC378B6" KeyPath="yes" Source="fio\bin\preconv.exe" />
- </Component>
- <Component Id="cmp2EBA5F5ECC3768B75E0203AC1E70813B" Guid="{003699E7-8FFC-44AE-B203-82CFF8AC72EE}">
- <File Id="filFE4C2F2DC8AAAC400F403C18D6754C1A" KeyPath="yes" Source="fio\bin\printenv.exe" />
- </Component>
- <Component Id="cmp1615D75CA98629C6C042B4605E29225C" Guid="{892B58DE-F732-4068-BDF2-7996F72D9775}">
- <File Id="fil850D1D9A7887E0A2C54D3B214F504F74" KeyPath="yes" Source="fio\bin\printf.exe" />
- </Component>
- <Component Id="cmp274580DE6606F131EFBBD5326BE4A002" Guid="{43FB2D97-D945-49C5-8B05-52D81DDD9981}">
+ <Component Id="cmp274580DE6606F131EFBBD5326BE4A002" Guid="{14BE19FD-C94B-40D7-8493-5BCF8FC79222}">
<File Id="fil15F37251CA1A2C472759F945FF3424BD" KeyPath="yes" Source="fio\bin\ps.exe" />
</Component>
- <Component Id="cmpBBB80E221C966CA59D76A270A8744E3E" Guid="{C3674E03-BE8E-49A7-AC40-CBD8D36007C0}">
- <File Id="fil2EF74D1851D6805F72461CD3E9C017EA" KeyPath="yes" Source="fio\bin\ptx.exe" />
- </Component>
- <Component Id="cmp44F7B8A45DE32AFD611EE340CF1DFDE2" Guid="{53B3FD84-E7F4-4850-A63A-5009243103ED}">
- <File Id="filBE5B02DE14FE8ED2766B40EE41514426" KeyPath="yes" Source="fio\bin\putclip.exe" />
- </Component>
- <Component Id="cmpC02A7F213B8E0D0FA44E6E5C77E7BD73" Guid="{878EE3EA-4329-4256-BE07-F64B71654E20}">
- <File Id="fil79C55A1F7818AABFB8C0F45E7945F541" KeyPath="yes" Source="fio\bin\pwd.exe" />
- </Component>
- <Component Id="cmp05CBDE2481663414332D65358F5763C8" Guid="{E6670CBA-6069-453F-B9D0-0C785DE48E62}">
- <File Id="filC0341B81F3F6350578385A82BA29BBBE" KeyPath="yes" Source="fio\bin\readlink.exe" />
- </Component>
- <Component Id="cmpAA8AE22AD79475D312B3020528EF3BA1" Guid="{E7789161-ACDB-42DD-9DD4-37253A6815E7}">
- <File Id="fil3C52CCCD2D4684F75B6A1131EF4AB687" KeyPath="yes" Source="fio\bin\readshortcut.exe" />
- </Component>
- <Component Id="cmpB44910C2186D97BA0BF21DAE68B8C5DC" Guid="{6007993B-ED63-49E5-84B8-40278C80BB72}">
- <File Id="fil7025F06B98B9C9079740194E56714671" KeyPath="yes" Source="fio\bin\realpath.exe" />
- </Component>
- <Component Id="cmp74BB6A9543B58BC87E4023CDFD141198" Guid="{6174B759-9EB2-40E3-B6E4-B4E4E1DFBE53}">
- <File Id="fil3195265DC5384F4152CBE86A80E1FE22" KeyPath="yes" Source="fio\bin\rebase.exe" />
- </Component>
- <Component Id="cmpE39CF14C217D32B7E9BDC4B385B3C25B" Guid="{28153D22-2ED9-4119-B034-9F5F91B68753}">
- <File Id="fil498496D3961DD90F44385CF72462EA87" KeyPath="yes" Source="fio\bin\rebaseall" />
- </Component>
- <Component Id="cmp28AA55C998B3799724B767FC1D04B2C0" Guid="{682D9D10-9A45-490C-8737-9671DDB8AFFB}">
- <File Id="filB547D12E2F66D85EE9D5173C51A9021E" KeyPath="yes" Source="fio\bin\refer.exe" />
- </Component>
- <Component Id="cmp6B3D6E2753CA3405B995BC53AA60AB30" Guid="{39E569E6-7356-46ED-9B8F-DA198EA02875}">
+ <Component Id="cmp6B3D6E2753CA3405B995BC53AA60AB30" Guid="{DCF87505-77FF-43F0-B4F5-D756B7F128B9}">
<File Id="fil4AA2712F175E39423C1776FD4E6CADF4" KeyPath="yes" Source="fio\bin\regtool.exe" />
</Component>
- <Component Id="cmpE64296F24E1E14321977C5C35E71B6A2" Guid="{87F071F7-FCD3-4628-B174-16173C8AE701}">
+ <Component Id="cmpE64296F24E1E14321977C5C35E71B6A2" Guid="{58631108-8336-42F8-87BF-3FF2AF0787E6}">
<File Id="filFD366DC354686227235DABA9EA72FDB7" KeyPath="yes" Source="fio\bin\rm.exe" />
</Component>
- <Component Id="cmpE311F7ABB811A52D817C369A6FB51909" Guid="{55A03F97-949B-4781-BA2A-DBEDA3EE4A6A}">
- <File Id="filC940C67DBF424311C54D4FBEB46262C7" KeyPath="yes" Source="fio\bin\rmdir.exe" />
- </Component>
- <Component Id="cmp26BCC2F3E3E7BAFFF11A0389334EA72A" Guid="{E36F4A39-398B-420F-BD12-629A4B297A4C}">
- <File Id="fil4A56E7742F87045A256B9C1024017565" KeyPath="yes" Source="fio\bin\roff2dvi" />
- </Component>
- <Component Id="cmp4A86F1619F2E48F808DF038A4BC3F9A0" Guid="{52F4E184-92B9-44DA-AD9F-17A74CC37492}">
- <File Id="fil5ACB8D2271F27F7F7CED5B9B9ABE5D30" KeyPath="yes" Source="fio\bin\roff2html" />
- </Component>
- <Component Id="cmp03B20A140BF6ABB9FCB22D3C6033636D" Guid="{ED1375D6-BF0D-4AA3-A560-4F082FA41517}">
- <File Id="filA0DD6531DCC1A95D653D276812899759" KeyPath="yes" Source="fio\bin\roff2pdf" />
- </Component>
- <Component Id="cmpC31927987409DF07DEBE914092EB4333" Guid="{A976E12E-5AC0-4452-AE15-E1D17FB1D5FD}">
- <File Id="fil6C99CDB2578FEF64F67688E0858A7383" KeyPath="yes" Source="fio\bin\roff2ps" />
- </Component>
- <Component Id="cmp456B3F4ED7568861C069741B5FA0BE54" Guid="{A221A564-1799-4991-8FD3-F98711DEBBB7}">
- <File Id="filFD83A23EE79B88DC691605D69841A36E" KeyPath="yes" Source="fio\bin\roff2text" />
- </Component>
- <Component Id="cmpC7C811726EB09AC1517AFCB7738A1E37" Guid="{57B24B2C-8EB0-46CE-AC9D-EB7B496AC1B0}">
- <File Id="fil2199A785C49C3AC84EB2FB2C259CB452" KeyPath="yes" Source="fio\bin\roff2x" />
- </Component>
- <Component Id="cmpBBF21EC3597305FEC6FEA77110A93E00" Guid="{8DC1987B-02AF-4E3B-9826-EEB724E8349C}">
- <File Id="fil529314D5F368C94496473B1BCB0AFDB3" KeyPath="yes" Source="fio\bin\run.exe" />
- </Component>
- <Component Id="cmp69A0D37F1D30258D9F1C2DF0E5E7D474" Guid="{35630A70-A3BE-4F58-A09E-1BF7E85C8D14}">
- <File Id="filFF4E4D118D85FFA9137D323F88F02A9F" KeyPath="yes" Source="fio\bin\runcon.exe" />
- </Component>
- <Component Id="cmpD7E6EE9849F87A2F0BA83B6D557E7477" Guid="{BA873578-6596-4D30-A1D3-BB5564851EFA}">
- <File Id="fil2C69FAB3CC0D4FDC5D903F76AF016A00" KeyPath="yes" Source="fio\bin\sdiff.exe" />
- </Component>
- <Component Id="cmpA3F2F99DED0090732938B73E147E2651" Guid="{51E9C3D6-30B9-4F24-B6D3-2B4E0B667E89}">
+ <Component Id="cmpA3F2F99DED0090732938B73E147E2651" Guid="{45D66035-66CC-4775-BA31-936BAFF6910B}">
<File Id="fil7663A07E87B983621716D1A6818290B2" KeyPath="yes" Source="fio\bin\sed.exe" />
</Component>
- <Component Id="cmp4E24621CC99D2B54E3307A3D23EB9FC7" Guid="{66529F82-D990-4C1B-85FE-4AFBE49CABC3}">
- <File Id="fil1C09B2E1D558219AE7EC2A75576E580E" KeyPath="yes" Source="fio\bin\semstat.exe" />
- </Component>
- <Component Id="cmp503D395192D3CCBC400A2C43261D6663" Guid="{9C073205-1DCE-46D6-94A3-6C44F99441F0}">
- <File Id="filA10E6E5BAD29AFE706C81E87FB5A3382" KeyPath="yes" Source="fio\bin\semtool.exe" />
- </Component>
- <Component Id="cmp1CB4F49CD9F273377354F82C877DF50E" Guid="{BF18F1C6-D6FC-4838-BC45-9D36DB398672}">
- <File Id="fil97A0F3802EFEF8D12EB900137C9C667D" KeyPath="yes" Source="fio\bin\seq.exe" />
- </Component>
- <Component Id="cmpFE5CE3096BB4787A2349111BDBD3B4B5" Guid="{AB7B0648-59CD-4074-9FD6-494908C7B580}">
- <File Id="fil1319BC0F309BE1F7942A0D76CFC443CB" KeyPath="yes" Source="fio\bin\setfacl.exe" />
- </Component>
- <Component Id="cmpE02FB78A87D69EC20AB8989F887EA982" Guid="{CC6C27C6-EAA5-4FAC-81AC-2B8AF309C80B}">
- <File Id="filB3C4F7FCB4CAED00B19C1AFED1FB5791" KeyPath="yes" Source="fio\bin\setmetamode.exe" />
- </Component>
- <Component Id="cmpCEB69B3A7E833FD65FAAE986122C4775" Guid="{FC673ABC-A3EA-4011-8892-AE2CB44294A3}">
- <File Id="filDCB5B2F8801883B01F7E135CF6938C96" KeyPath="yes" Source="fio\bin\sh.exe" />
- </Component>
- <Component Id="cmp108B21DE6C15FD94FC0B0E2E9CDADA7A" Guid="{9580C06E-3EA4-4503-80AA-BBF152A7C1EA}">
- <File Id="filB6289A32DEEEA96B19301F2BC2995714" KeyPath="yes" Source="fio\bin\sha1sum.exe" />
- </Component>
- <Component Id="cmp74C40E389ABCC29DE96C6D77A84B2CC4" Guid="{624AAA9F-8249-490B-B62B-B678851672B2}">
- <File Id="fil1A249A7B36EB749C84128DE7994B786F" KeyPath="yes" Source="fio\bin\sha224sum.exe" />
- </Component>
- <Component Id="cmp990226C26CA7EB7CBAF4DE3F3DACCBDB" Guid="{AFDC14D4-B744-419B-81AB-F4C753B0FB74}">
- <File Id="filC97996E763D08DCE53E400D411CA2EEA" KeyPath="yes" Source="fio\bin\sha256sum.exe" />
- </Component>
- <Component Id="cmp9345D9581F9BD2695770E418B8EBEC6D" Guid="{E38FE3F9-CED5-4915-B372-D7C9C647A46E}">
- <File Id="fil10D5825020882AF0CE850CC9C2174FB7" KeyPath="yes" Source="fio\bin\sha384sum.exe" />
- </Component>
- <Component Id="cmp882FB8074F52D2CAD7935018DA618811" Guid="{9B9FAD15-A419-4737-9732-A208B8D9C425}">
- <File Id="fil8787967D3868AC04CCCD36D4B0865502" KeyPath="yes" Source="fio\bin\sha512sum.exe" />
- </Component>
- <Component Id="cmp60B46284621A7E9EC25F08AC0D2B7254" Guid="{BCFFF351-1F85-4453-9D3F-86D199ADE225}">
- <File Id="fil7C48A41EE2E9D3B4F7DD48AC5D4C5C02" KeyPath="yes" Source="fio\bin\shmtool.exe" />
- </Component>
- <Component Id="cmp6A1FE73DAA209C98C7FA47AD1ECCF708" Guid="{A7E9E4D7-0ED0-4B96-8158-F1467F797A1C}">
- <File Id="fil67EE058F0080C9B69D8EC0661C34A871" KeyPath="yes" Source="fio\bin\shred.exe" />
- </Component>
- <Component Id="cmp48C6A03FAADB8724537C21B245CFE150" Guid="{CA0F156B-350D-4E7A-AED8-B4459CDA3B90}">
- <File Id="fil0C97F7F7297E5552E20C944CD272CB31" KeyPath="yes" Source="fio\bin\shuf.exe" />
- </Component>
- <Component Id="cmp611FCD0D05884D2D0C9FCBE135803329" Guid="{774AA302-291A-4586-90B1-03699EC092EA}">
- <File Id="filC381836646440884A6C61EF4D02E2323" KeyPath="yes" Source="fio\bin\sleep.exe" />
- </Component>
- <Component Id="cmpEECEF218844A6AE4759592AED0EE14E8" Guid="{A0A1BD00-D109-45D2-B752-5D81FDC26501}">
- <File Id="fil19B1357A14783AEAB3437738AEA2784F" KeyPath="yes" Source="fio\bin\soelim.exe" />
- </Component>
- <Component Id="cmpD87822D5B9E1776E6D3C2A8ACDAFAB30" Guid="{1BEA3219-2B5C-4D3F-8DB4-2023F53A0A17}">
- <File Id="fil9A12EC7013966CF1BB7F2918512189D7" KeyPath="yes" Source="fio\bin\sort.exe" />
- </Component>
- <Component Id="cmpA6FA3D16700C6BCF2E626864124E93D7" Guid="{BAC54764-EED1-4B19-8DD3-D88019870496}">
- <File Id="fil077503AE7657EB79456B44EC8E5870EE" KeyPath="yes" Source="fio\bin\split.exe" />
- </Component>
- <Component Id="cmp4FC25C22C25D3BA6B329BCEE8B4EA50C" Guid="{5FB51ADD-2380-4F48-AF04-1D25EC3961A5}">
- <File Id="fil4377FB9CB84882C07030A167AEE3458B" KeyPath="yes" Source="fio\bin\ssp.exe" />
- </Component>
- <Component Id="cmp321BFCAE94CA58B91B5169BB0B212C48" Guid="{2F4E92D0-D8FA-4671-B0FC-CF70779B6EE6}">
- <File Id="filA1A361CA6F22E3D39A0CAD27DB2D2C1D" KeyPath="yes" Source="fio\bin\stat.exe" />
- </Component>
- <Component Id="cmp70E7A6121E68F07A53DBF3F3D408EB6F" Guid="{375C5DFF-B8D4-4C72-BC4A-2312E2EE4043}">
- <File Id="fil62E6ED6A43E709BD28AD6FACBF3382A7" KeyPath="yes" Source="fio\bin\strace.exe" />
- </Component>
- <Component Id="cmp14B3A0938FF392686A8BD37EE6A9C301" Guid="{9353714C-038D-4752-B8D6-E5902B7F8D22}">
- <File Id="fil787F8131344576063D9E7F72C35ACEDA" KeyPath="yes" Source="fio\bin\stty.exe" />
- </Component>
- <Component Id="cmpBB10178FA48846668CB832CC083E5DE0" Guid="{9BE012C8-EDBF-492E-9D62-C71049562AC8}">
- <File Id="fil831BF209F8253FF6D7D96BC88B932CB6" KeyPath="yes" Source="fio\bin\su.exe" />
- </Component>
- <Component Id="cmp7DE03246053DBAE4D5D3AB9D093C9910" Guid="{E91A4A41-6731-4E61-B818-75FABF117DFA}">
- <File Id="fil37DE0ECDB63C87AB16EFC12EC36D1A4B" KeyPath="yes" Source="fio\bin\sum.exe" />
- </Component>
- <Component Id="cmp49C95DFE0DBC43318FDB9C2E4661778A" Guid="{3BC75D18-C79E-41B9-BED1-4E70602C95AB}">
+ <Component Id="cmp49C95DFE0DBC43318FDB9C2E4661778A" Guid="{56AE608A-B60E-4739-A9F6-7EBD34E4CB1A}">
<File Id="fil4C473525CC43750F2D18E2FAE0B26CBA" KeyPath="yes" Source="fio\bin\sync.exe" />
</Component>
- <Component Id="cmp83FBA740F44A3A6A99D8516872DE8122" Guid="{F56CD18E-3229-4352-B9C6-492337AD0EED}">
- <File Id="fil97F1809DC3847CF82E36E763E20BDDE2" KeyPath="yes" Source="fio\bin\tac.exe" />
- </Component>
- <Component Id="cmpA90AB8732F9316607AD1542A089E3112" Guid="{1A83D09A-D269-480B-B5FB-7131722C9F83}">
- <File Id="fil9FE3D1685E1B7659BC6BBC995C092B5D" KeyPath="yes" Source="fio\bin\tail.exe" />
- </Component>
- <Component Id="cmpCAC025BF771DC68CCB8BC1F4BD178A53" Guid="{6DF65DF2-4F2E-4636-B5AD-13BC7E1B9D1A}">
- <File Id="filBE7BD554147E7F17E056F1331F056F72" KeyPath="yes" Source="fio\bin\tar.exe" />
- </Component>
- <Component Id="cmpD5294F822D43C3ADD7347092DB13FBF1" Guid="{22717A7B-828E-402F-ADDF-7208ABA21EA1}">
- <File Id="fil803C7BE505A18BC847805672F1826DD9" KeyPath="yes" Source="fio\bin\tbl.exe" />
- </Component>
- <Component Id="cmpBC5F88DC354A6F52748AF4DA0949CE39" Guid="{066CD0EF-5446-4A3E-A429-3C9DDE6141D3}">
- <File Id="fil1883DB93B03ECA76105CBDB94C2C2AA3" KeyPath="yes" Source="fio\bin\tee.exe" />
- </Component>
- <Component Id="cmpA9377BB739BC963C47FBC30B26C8C9BC" Guid="{044621AC-54D2-41DC-B072-C81E8FC38439}">
- <File Id="fil707F13F0BA0FCB635B3F8E5251E7AF24" KeyPath="yes" Source="fio\bin\test.exe" />
- </Component>
- <Component Id="cmpED6B2BA63EE3817C053B17B3DF2ADB1A" Guid="{8CD9AD77-E95E-41D6-ACE7-0FB15DCF83EB}">
- <File Id="fil1B6D85E01F84F44BB53F193E9FE198C5" KeyPath="yes" Source="fio\bin\texi2dvi" />
- </Component>
- <Component Id="cmp065C69D51950B9FFB0A600EDBFA25817" Guid="{29E5B7CE-38D7-4A89-937B-024FDE1470D8}">
- <File Id="fil3E0A7B0A9D4B8FC3AF31B9C3585DD195" KeyPath="yes" Source="fio\bin\texi2pdf" />
- </Component>
- <Component Id="cmp81C400C5418E14B2418A45D775C07127" Guid="{779E235C-89E7-4234-A736-9D3D59B2B31F}">
- <File Id="fil20D4B72C7C36C451A14236A23E9B1F31" KeyPath="yes" Source="fio\bin\texindex.exe" />
- </Component>
- <Component Id="cmp9614883207C34333ED3D32B4CBDE9DA2" Guid="{FB2B722A-69D9-4EFC-A9E1-DB28A998238E}">
- <File Id="fil604E34807B4206D0D33D7C7B1EB7B84D" KeyPath="yes" Source="fio\bin\tfmtodit.exe" />
- </Component>
- <Component Id="cmpCAF9EEFAF7A747259D043366704FEE16" Guid="{D17154DC-57E8-4707-AAF7-9ECDBE9BC124}">
- <File Id="fil2C8F06133003DBC06C80A064B7867AC8" KeyPath="yes" Source="fio\bin\timeout.exe" />
- </Component>
- <Component Id="cmp95C4B59AAB1911EE4846577A5C459BF0" Guid="{F30AFCEB-241C-4F70-BB99-019C7443CAE8}">
- <File Id="fil32ED23E83B615C47630372D042D6D53B" KeyPath="yes" Source="fio\bin\touch.exe" />
- </Component>
- <Component Id="cmpDAC4692767955C703920CB3815117C36" Guid="{AE44EF62-DA66-4FDC-9077-D9B2B4BD872C}">
+ <Component Id="cmpDAC4692767955C703920CB3815117C36" Guid="{25BB9AEB-D4B5-44ED-BDD2-30F1E37FD3FC}">
<File Id="fil0672FC9C9D0F8A77288D650AE269472B" KeyPath="yes" Source="fio\bin\tr.exe" />
</Component>
- <Component Id="cmp6BA0595489FD0A45BBCDDD403C2AE6C7" Guid="{B6A7EDCA-0FBA-4D98-B8E7-1335537A08CF}">
- <File Id="fil43D8186A1FCCF8637D574A1CE88FED2D" KeyPath="yes" Source="fio\bin\troff.exe" />
- </Component>
- <Component Id="cmpAE9D98C0C5EA7FCC488AC596E8B197B0" Guid="{C34012C7-ECCF-4057-8C0C-279393B0ED8C}">
- <File Id="filF31572E68FB49982FB487C3900699DF5" KeyPath="yes" Source="fio\bin\true.exe" />
- </Component>
- <Component Id="cmpFF4206924649D8B5E6D6D072E02C8EAF" Guid="{8455F1A6-32A9-4262-87FF-D7146EC081EA}">
- <File Id="fil5CAA1474AA5C03B69094307142C12AE9" KeyPath="yes" Source="fio\bin\truncate.exe" />
- </Component>
- <Component Id="cmpBBBC16F5080619AE91F28A84312B5CD6" Guid="{A252016F-3D53-42F4-80CF-8D52B9559974}">
- <File Id="filA9A53C28D390676BA6F821774DAB0BA7" KeyPath="yes" Source="fio\bin\tsort.exe" />
- </Component>
- <Component Id="cmp9E81082CAC85D046327E3DAF204DB931" Guid="{39770660-46FE-4448-B13F-6FFA8D1E4783}">
- <File Id="fil8FB84FC92F69ADC111D2BEF7E9C7936C" KeyPath="yes" Source="fio\bin\tty.exe" />
- </Component>
- <Component Id="cmp486C819EF70E0D1B75E2F350A49B8C69" Guid="{845B3DF1-1F26-40C1-B152-62305314A5C1}">
- <File Id="fil654DC6EDC495A3E975266A21F04FE3A6" KeyPath="yes" Source="fio\bin\u2d.exe" />
- </Component>
- <Component Id="cmp3AA674AF1C2571F1F9B996EA8F9573FC" Guid="{11C4E8BD-FEA1-4D83-B9B0-29A6EBA19062}">
- <File Id="fil68825FAABFE45CABFA2B44220C4AD74C" KeyPath="yes" Source="fio\bin\umount.exe" />
- </Component>
- <Component Id="cmp81CA53A30C2EB19095E89E2D4471EB7C" Guid="{818ED4DA-A8A4-4E28-A503-6EBA80F14397}">
+ <Component Id="cmp81CA53A30C2EB19095E89E2D4471EB7C" Guid="{46BBA92A-3A97-46AA-AB0D-D1ED9F5FFA08}">
<File Id="fil40DCDB0AC52C7E923122902549CA2291" KeyPath="yes" Source="fio\bin\uname.exe" />
</Component>
- <Component Id="cmpE9AB3498FE4CEAC64F824CD255B960DA" Guid="{4A9587F9-D99E-416F-BF42-60DB74279063}">
- <File Id="fil2162E7A50A9AF8DCE03E3867257E7BF9" KeyPath="yes" Source="fio\bin\uncompress" />
- </Component>
- <Component Id="cmp7A2BB0BC69ED6065718F463B7A438CDC" Guid="{3F29D43E-BC52-4E35-AB22-751FF24E4CC0}">
- <File Id="fil1F2A4B53E04E74517DF62C03D166C1D5" KeyPath="yes" Source="fio\bin\unexpand.exe" />
- </Component>
- <Component Id="cmp01F59AF883DF0293F3B7440680848B30" Guid="{C09B742C-28E6-48F2-99B1-E87C03A2690D}">
- <File Id="fil04FBD55D40F6BCF988BDC6AEA3784C11" KeyPath="yes" Source="fio\bin\uniq.exe" />
- </Component>
- <Component Id="cmp99B6AF9AD8CC6B832498C79F20CFA7CA" Guid="{2EE19EF9-8745-4592-82EC-2750D3383881}">
- <File Id="fil0C0D5B2AB8EF5C98A83E3870E4B07BEF" KeyPath="yes" Source="fio\bin\unix2dos.exe" />
- </Component>
- <Component Id="cmpAC806C2B2BB957579D30C519253A4C3F" Guid="{6A52B78E-B7C1-4EC1-98C6-25359F486B37}">
- <File Id="fil6613DF59824D2E467FD129A384E069DF" KeyPath="yes" Source="fio\bin\unlink.exe" />
- </Component>
- <Component Id="cmp40CF30A9C84D408068272907460CBD6A" Guid="{612AD305-2600-4984-ADCD-21E927024C1D}">
- <File Id="filCC7078495B6834E2B86E194F05F3A215" KeyPath="yes" Source="fio\bin\unlzma" />
- </Component>
- <Component Id="cmp111845F35D7BD256EBA4DDA2669BF7BC" Guid="{9C48A5E6-9025-40D8-8850-49DA6119B179}">
- <File Id="fil9F7A64D237BFBEBD734876673470185B" KeyPath="yes" Source="fio\bin\unxz" />
- </Component>
- <Component Id="cmp9C77E454A2FB0672D60462B5E611F023" Guid="{0A17946B-FD13-46BB-BDCC-E52D64715BCB}">
- <File Id="filF4C458D06025AD94024F3714508FDC62" KeyPath="yes" Source="fio\bin\updatedb" />
- </Component>
- <Component Id="cmpC77D2F8A4159A48F6306910F64483AED" Guid="{13E44C53-DABB-4014-B3A8-7BF45D326E45}">
- <File Id="fil0F5C68E1280DB0ECC7766334B318177C" KeyPath="yes" Source="fio\bin\users.exe" />
- </Component>
- <Component Id="cmp4336CB722413A01FF04683D6AD766E08" Guid="{88BB6A1E-6107-4257-99FA-642DA5F81530}">
- <File Id="fil225610843A53E1F7A9DF9B4E7905898D" KeyPath="yes" Source="fio\bin\vdir.exe" />
- </Component>
- <Component Id="cmp4F1C2FD8B3FF5F8F38EDBE6E9A43272F" Guid="{85B74611-4697-4B8E-8D82-0CD7753F4017}">
- <File Id="fil95228282CE3483B8CCEA413DA1DD6962" KeyPath="yes" Source="fio\bin\wc.exe" />
- </Component>
- <Component Id="cmp118534DE892940FFBE1C9DED4204FA58" Guid="{0D4333C2-53FB-4238-8017-B5E30E2B690B}">
- <File Id="filCC0AE869B3EB42E57E3C0BCF57E2CF3C" KeyPath="yes" Source="fio\bin\whatis" />
- </Component>
- <Component Id="cmp4CE36D2F10DF15687B961B3807E6FF5D" Guid="{6DA62CC0-C99B-40B6-A446-9C3FDAB4233F}">
- <File Id="fil98187CA7E7A1FFC79DBCFBD54593AF8A" KeyPath="yes" Source="fio\bin\which.exe" />
- </Component>
- <Component Id="cmp80E4E05D2DA253145B2DED5421E86010" Guid="{C0F677B9-B594-44C7-82C3-4D4CCE803D14}">
- <File Id="filC1698559491B435386AD035EB0097910" KeyPath="yes" Source="fio\bin\who.exe" />
- </Component>
- <Component Id="cmp7F806B026A8BD4F02CB187C012ABBA48" Guid="{FCF23E76-88F0-40AF-87F1-B673E3040AFD}">
- <File Id="fil4E817C19549D8689D96DEA6E2930DA02" KeyPath="yes" Source="fio\bin\whoami.exe" />
- </Component>
- <Component Id="cmp9B156D0F0963E04CA6C025028EE5C841" Guid="{77516359-DFD9-4222-BB25-F7EB12A68F21}">
- <File Id="fil68BF707805228780BEFA2D4824340473" KeyPath="yes" Source="fio\bin\xargs.exe" />
- </Component>
- <Component Id="cmp8DC19AB1C4861666D29711BFC3F7F97C" Guid="{859CC8FD-9AE2-4713-8615-CE2BBC167F31}">
- <File Id="fil1B2C5ED2DDAEBEBA0E10C6ACB7FCE1BD" KeyPath="yes" Source="fio\bin\xz.exe" />
- </Component>
- <Component Id="cmp1B092BC64858420554BA1011EA9A76E8" Guid="{A611BC14-B0D4-42B6-BCFE-5A0ED46108CF}">
- <File Id="filD72032916A250A3B796EB814BF3968FB" KeyPath="yes" Source="fio\bin\xzcat" />
- </Component>
- <Component Id="cmp08D350D7FEC06AD8C8F36E80386699A9" Guid="{28DBBD2F-3DEE-4EE9-B025-8C1906D89829}">
- <File Id="fil6613DFB3DA69889EF5002485D7E480D0" KeyPath="yes" Source="fio\bin\xzcmp" />
- </Component>
- <Component Id="cmpEE6CF2DDCA6A7001D3E767F3B991F386" Guid="{7CEFE637-372A-453B-84AA-A208BDA79945}">
- <File Id="fil92A7E4793E1AA65E4892217A2CB20818" KeyPath="yes" Source="fio\bin\xzdec.exe" />
- </Component>
- <Component Id="cmp99100BD1CACADC05F9D9ADC56C1CC44D" Guid="{215F41BA-10AD-4341-AC0A-687C510FE7C2}">
- <File Id="fil81C30B2A281241708B8C2AAF0B6A2E5C" KeyPath="yes" Source="fio\bin\xzdiff" />
- </Component>
- <Component Id="cmp46938D02E6B7009764D45176699EA78C" Guid="{505B1772-1280-4071-B609-D01ED6E4236F}">
- <File Id="fil59EE1D465B657B79FBDD2A0DD11E61FF" KeyPath="yes" Source="fio\bin\xzegrep" />
- </Component>
- <Component Id="cmpFD6CA2CE0A0B446FED7B6062729050BC" Guid="{2DA3F8AB-9BB1-408A-9276-19DE8FCC6577}">
- <File Id="fil80B1AE6031C1A97F1BBF9191F09220C5" KeyPath="yes" Source="fio\bin\xzfgrep" />
- </Component>
- <Component Id="cmp691D2FA6D14A0CDC0A2FD336B19E8C70" Guid="{A1DF595F-6A65-4EF7-90B7-321D4383AD17}">
- <File Id="filAEDFB2185A219C0E2D663B7DD57C41ED" KeyPath="yes" Source="fio\bin\xzgrep" />
- </Component>
- <Component Id="cmp427A44C447050838EACBF6D3B3747555" Guid="{62545A5F-56D9-4979-BF63-74752BCB79FC}">
- <File Id="fil02B75ECFF79AD5B5B7C889BD73AAD294" KeyPath="yes" Source="fio\bin\xzless" />
- </Component>
- <Component Id="cmp5CAFE3BB48E9CB48888E027BAFEB4D74" Guid="{12DC2E95-5175-4EAD-A1F2-E75F1A7BAABA}">
- <File Id="filF6EBAACD1C72D7A66FE8D129D8EFC8A3" KeyPath="yes" Source="fio\bin\xzmore" />
- </Component>
- <Component Id="cmp91CA0AD9790CB3239A1EDA4D4FA50D5F" Guid="{D5342EB1-9E88-4A41-9AF8-CD962A1B0E65}">
- <File Id="filF944C659076231D80F51B3E7A0C49B57" KeyPath="yes" Source="fio\bin\yes.exe" />
- </Component>
- <Component Id="cmpA3AFC1995841986314B36036BAD542DA" Guid="{18F48D92-5674-4BF5-A1CB-3BE8DC80CD42}">
- <File Id="filC182884CE23E8D6809DD681D29B55866" KeyPath="yes" Source="fio\bin\zcat" />
- </Component>
- <Component Id="cmp86791A5DDC646E5E8E178EFE36613333" Guid="{5D4C3EBB-4140-47CD-9CCB-6A8C091D129F}">
- <File Id="fil8A937F8388375B2F567E13D99A8AD6BC" KeyPath="yes" Source="fio\bin\zcmp" />
- </Component>
- <Component Id="cmp6F5A93A37AEFCB960E45F1DB14CB82B7" Guid="{CA2949C6-7BED-4FD6-9EB9-55AEECD5DD86}">
- <File Id="fil7DC9DBDACCCEA6FB8ABDF78EB2065111" KeyPath="yes" Source="fio\bin\zdiff" />
- </Component>
- <Component Id="cmp1D3792419FB75C9527AC456E13DE6793" Guid="{52C34CCB-2164-43AD-9A43-3989ECAE2D8D}">
- <File Id="fil546149B8D31FC45BDAE91154AE65DB56" KeyPath="yes" Source="fio\bin\zegrep" />
- </Component>
- <Component Id="cmpEB1CCB8CE7602C2E32FBC001C4BAE507" Guid="{26B2D553-1550-41BE-9B31-1209B5D27324}">
- <File Id="fil6CB9DD4B677C760D67D79633621903AB" KeyPath="yes" Source="fio\bin\zfgrep" />
- </Component>
- <Component Id="cmpD15420F62017E3300AE830755A5F9265" Guid="{5F104451-EA76-45FD-95FE-CA66C27E1A62}">
- <File Id="fil7642505AF4A83C07942A783F988BFA9A" KeyPath="yes" Source="fio\bin\zforce" />
- </Component>
- <Component Id="cmp6C6F2DA67C9E3E9012E85298EB2D545C" Guid="{2294A66E-DE9B-41AA-816A-5BA651C47FAD}">
- <File Id="fil7600375D389FD43D4E93F42FE11AFDDA" KeyPath="yes" Source="fio\bin\zgrep" />
- </Component>
- <Component Id="cmpCB9756E091A0D929E796FB83CF57C3D0" Guid="{E35B4259-B967-486F-B1D0-2A3FD33BEED4}">
- <File Id="fil23866E67EF86A401987BB49F36CB4AA7" KeyPath="yes" Source="fio\bin\zless" />
- </Component>
- <Component Id="cmp933B48024DA3E3F16BAED0724386B7E8" Guid="{828FE8A6-88C1-4C06-B93D-D673C3600E6D}">
- <File Id="fil5D04FBE2785BE18D009997CDD8646D33" KeyPath="yes" Source="fio\bin\zmore" />
- </Component>
- <Component Id="cmpD8022C7F35AE9B8A03764CCC31275F3F" Guid="{3EAEA765-E6A4-4A70-A0CF-A444185DFA72}">
- <File Id="fil906E26D7F648715BFA9AD416566B8196" KeyPath="yes" Source="fio\bin\znew" />
- </Component>
- <Component Id="cmp25BF861FD9CC49E99EE0135DB62271A9" Guid="{412BF7A8-D47B-4C56-8F7E-C4238D5B1384}">
- <File Id="filBCD2151B2AAF9D26422D77921389E7F9" KeyPath="yes" Source="fio\bin\[.exe" />
- </Component>
</Directory>
<Directory Id="dir3650F7B96FCF8D29EC307D6DC67DF8FC" Name="dev">
- <Component Id="cmp80C2CE340D8F237FFFE4C59E02E373C3" Guid="{80313DE9-4567-493A-B7E2-1CA8CF5CE421}">
+ <Component Id="cmp80C2CE340D8F237FFFE4C59E02E373C3" Guid="{466C8DDF-E49A-4AA2-ACDB-DB03CF9F8138}">
<File Id="fil3BC76E06E4EA408AF667366F17257680" KeyPath="yes" Source="fio\dev\fd" />
</Component>
- <Component Id="cmp801A3D90FA35B3E9A47FD47B3C5FB7EC" Guid="{05487D33-E695-47BE-80EB-89048315240D}">
+ <Component Id="cmp801A3D90FA35B3E9A47FD47B3C5FB7EC" Guid="{04A2412A-F39A-4E5B-914A-9F81E2156D83}">
<File Id="filD45A992F8C57E75FCB0198A67CDC2DA7" KeyPath="yes" Source="fio\dev\stderr" />
</Component>
- <Component Id="cmp0581F1C7AAEA10CBE927979575188220" Guid="{52BD299A-21C3-4E24-A2BD-3F7B3B602860}">
+ <Component Id="cmp0581F1C7AAEA10CBE927979575188220" Guid="{8515262F-F9EF-4D7D-92CB-A6C43F535E01}">
<File Id="fil067A3653ED0DB9B867B8DD7E7E37F495" KeyPath="yes" Source="fio\dev\stdin" />
</Component>
- <Component Id="cmp31E9FD54B0B3BFBB6DE73DA12C3029B9" Guid="{B777D7BD-6F2F-400E-8D10-6AC7FC2B19E3}">
+ <Component Id="cmp31E9FD54B0B3BFBB6DE73DA12C3029B9" Guid="{8756615E-DA9C-44E2-A526-1D32C0634D99}">
<File Id="fil9CFCF9E543CEA1054CE222148C2D6CC7" KeyPath="yes" Source="fio\dev\stdout" />
</Component>
<Directory Id="dir645718ECB1E9C4B080F1989D8DEF8AE1" Name="mqueue">
- <Component Id="cmp0D4D2282E86263C3C9A61EAD5DA44CA9" Guid="{01168AB2-16F9-46A4-A022-A2040A949A02}" KeyPath="yes">
+ <Component Id="cmp0D4D2282E86263C3C9A61EAD5DA44CA9" Guid="{E6CBDE10-7F49-44E9-87CD-C8F9582C9BF4}" KeyPath="yes">
<CreateFolder />
</Component>
</Directory>
<Directory Id="dirAEED318CDF441B1F08EE7D50701EA4B5" Name="shm">
- <Component Id="cmp02A0CC94F08628A676DC8C85921C37F3" Guid="{E6686AFC-5BA0-4C6B-BD52-39BE5F3A12E2}" KeyPath="yes">
+ <Component Id="cmp02A0CC94F08628A676DC8C85921C37F3" Guid="{7C8FD697-CA98-4BA9-995D-21120FE15D94}" KeyPath="yes">
<CreateFolder />
</Component>
</Directory>
</Directory>
<Directory Id="dir511A7B0026A6F2AC0B8A11A300924E9D" Name="etc">
- <Component Id="cmpFBD229E8B9D8187DACC7EB5F77C007D7" Guid="{309EDA96-3F24-48E0-9995-78F2D23198AD}">
+ <Component Id="cmpFBD229E8B9D8187DACC7EB5F77C007D7" Guid="{F2269646-2FC4-47DC-8CF8-DD66B4BDCB07}">
<File Id="filAC6C17F9F679AC7E76B023CC20BE6D07" KeyPath="yes" Source="fio\etc\bash.bashrc" />
</Component>
- <Component Id="cmpE9DFAC77F6D7C075FE1E8AD06237EF5B" Guid="{D9ADE763-9C86-4DEF-ACDD-3998464E75A6}">
+ <Component Id="cmpE9DFAC77F6D7C075FE1E8AD06237EF5B" Guid="{B6877444-8D0E-476A-9F40-4B6456828DBD}">
<File Id="filC6D413352D07421DF46E839D549A9168" KeyPath="yes" Source="fio\etc\DIR_COLORS" />
</Component>
- <Component Id="cmp6988531FF46096D08562A37477A360C8" Guid="{056A5ECA-BE02-41AF-A69E-4ED562F05376}">
+ <Component Id="cmp6988531FF46096D08562A37477A360C8" Guid="{6ADCA055-061A-4925-9C5A-985BBB046CB2}">
<File Id="filDD42B0E8D7F259E814AEE870A429F1AF" KeyPath="yes" Source="fio\etc\fstab" />
</Component>
- <Component Id="cmp8C7D829B68C122977692262862CB349B" Guid="{E8C6CBE1-E9B6-4AD6-9E02-27CD84CE558D}">
+ <Component Id="cmp8C7D829B68C122977692262862CB349B" Guid="{B5E647F8-FBC1-4DC8-B432-7FB5DFA00964}">
<File Id="fil752FBFD70B8810D2174DFB6F29B54D26" KeyPath="yes" Source="fio\etc\group" />
</Component>
- <Component Id="cmpD592A14EE7C62FE45FEB1DD93FA2044E" Guid="{A7F1C82A-DDA2-473C-90C6-6901C6F909F7}">
+ <Component Id="cmpD592A14EE7C62FE45FEB1DD93FA2044E" Guid="{354282BA-25FB-4809-A60E-40578534C560}">
<File Id="fil00A1EBD5739B660F807F385C45589B85" KeyPath="yes" Source="fio\etc\hosts" />
</Component>
- <Component Id="cmp5515B9DF2E992430B6B1255FD019096A" Guid="{D0D3A265-0AE3-4BD0-B5EB-16BC22B87B3B}">
- <File Id="fil6733E7270535F4936728C80A9CDA5E4E" KeyPath="yes" Source="fio\etc\man.conf" />
- </Component>
- <Component Id="cmpFC21117F945B8202B353C69FB6503D86" Guid="{CF7F3493-00C8-45AB-A3A8-866107F88284}">
+ <Component Id="cmpFC21117F945B8202B353C69FB6503D86" Guid="{C4EB7263-8533-4B21-B01E-972E5E7DC7E3}">
<File Id="fil1A3A6C53FBF44F647AED211238871D4A" KeyPath="yes" Source="fio\etc\mtab" />
</Component>
- <Component Id="cmp2FD6BD94957E4FBD928C0B069DBCFC92" Guid="{1367AEEE-FA2E-485E-8694-F73113AA7A3F}">
+ <Component Id="cmp2FD6BD94957E4FBD928C0B069DBCFC92" Guid="{677334B3-6BEA-4010-A0FD-F1EE1AB5D33A}">
<File Id="fil185E6CD1B0039D6A4E3D699394933DA4" KeyPath="yes" Source="fio\etc\networks" />
</Component>
- <Component Id="cmp09D88778CDF230761751A10F95FF5613" Guid="{3C2A4321-F6D1-44B4-A7D3-EB259DAA1A09}">
+ <Component Id="cmp09D88778CDF230761751A10F95FF5613" Guid="{6EDED0DB-9C74-4757-9B31-91D0EFBB5E13}">
<File Id="filB9EEAE06C250DE22D1E2A898206296B3" KeyPath="yes" Source="fio\etc\passwd" />
</Component>
- <Component Id="cmp6B252501F8A931B4D8382FB4C3A7856E" Guid="{8DE92FB8-3A08-4479-86A0-1937DB48FBB7}">
+ <Component Id="cmp6B252501F8A931B4D8382FB4C3A7856E" Guid="{21C7FE5B-341A-44C9-85ED-EAABAB3266F1}">
<File Id="fil52B3115271C21A384758B930B8D227D6" KeyPath="yes" Source="fio\etc\profile" />
</Component>
- <Component Id="cmpB721B9817E8FD7DBA7721936BCC62C49" Guid="{B3904E23-6A69-4859-BC45-C76019D6108B}">
+ <Component Id="cmpB721B9817E8FD7DBA7721936BCC62C49" Guid="{D65A306F-77E4-4CDA-8927-6B33690DAF5F}">
<File Id="fil73214C69498FFC28E2B54B2EB57A0132" KeyPath="yes" Source="fio\etc\protocols" />
</Component>
- <Component Id="cmp80A51C749323E98A1BA9EA3A302FB758" Guid="{BF9CC71E-4B00-4E1D-A071-10C61C487EB3}">
+ <Component Id="cmp80A51C749323E98A1BA9EA3A302FB758" Guid="{EF7BB18E-896F-4095-AA2F-5162DC3A6CBF}">
<File Id="fil6AE698C81997214166622B907F0AFF39" KeyPath="yes" Source="fio\etc\services" />
</Component>
<Directory Id="dirE08BF292ABC453B2DCEC5F98836FF6C5" Name="alternatives">
- <Component Id="cmp69D6329375865A20A54601D5AE7ED11E" Guid="{41C6E815-AFD6-40D0-A7E3-46216F11787E}">
+ <Component Id="cmp69D6329375865A20A54601D5AE7ED11E" Guid="{D0F5B159-B93F-4D4C-A02B-199501869D16}">
<File Id="fil93010D3B5DE13F3F16433F1BBA459833" KeyPath="yes" Source="fio\etc\alternatives\README" />
</Component>
</Directory>
<Directory Id="dir33DEA1C29EEB0F2B925FF969CA6F2512" Name="defaults">
<Directory Id="dir5FA0D5309B6DEA5C9E33C0A121776732" Name="etc">
- <Component Id="cmp978625AC42FA494F13CE7B7A2118D5B2" Guid="{DE40861E-9F0D-40F7-8A1B-3D5A4B4ECF42}">
+ <Component Id="cmp978625AC42FA494F13CE7B7A2118D5B2" Guid="{CD26820D-F7B0-4482-9622-BDE69159CF63}">
<File Id="fil746534EC299F773ECFA896BA829F8DAE" KeyPath="yes" Source="fio\etc\defaults\etc\bash.bashrc" />
</Component>
- <Component Id="cmpFE4333BDDB22D66FCE3DF0764C167CEF" Guid="{30D6190F-7F2E-4D02-B860-16C7EF3A2ABB}">
+ <Component Id="cmpFE4333BDDB22D66FCE3DF0764C167CEF" Guid="{51BB92D0-0C26-4CC1-97D3-2856AA7C7CA8}">
<File Id="fil8C9E929CA1B8F8CE6AE7A6DDBAFA1356" KeyPath="yes" Source="fio\etc\defaults\etc\cygserver.conf" />
</Component>
- <Component Id="cmp17232F3C2230EC51FC183E63971AEAE8" Guid="{9D047DA2-502D-4C4D-84B1-013E0228D1AA}">
+ <Component Id="cmp17232F3C2230EC51FC183E63971AEAE8" Guid="{6685DDF5-4532-4AB0-913D-D33793F637B4}">
<File Id="filFD16C0BE97962F29A5B16DA7BEFF8959" KeyPath="yes" Source="fio\etc\defaults\etc\DIR_COLORS" />
</Component>
- <Component Id="cmp10B1099F8DEF5A6021A86A90B8571D36" Guid="{EF4B9DA2-65DC-4EE8-B16A-5F70BB48F071}">
- <File Id="fil680F9F963DFC1A6FA6B28160D03CFADB" KeyPath="yes" Source="fio\etc\defaults\etc\man.conf" />
- </Component>
- <Component Id="cmpCE26D78ADDA1CFB5C11BD7B13E6C9D6B" Guid="{AEFFA0AB-82AD-4D61-90A8-D48BA0C0EB30}">
+ <Component Id="cmpCE26D78ADDA1CFB5C11BD7B13E6C9D6B" Guid="{B96D62E6-294C-47E9-AAF8-6E86A0FCDEB5}">
<File Id="fil8FF56D5F37C345A9021245BB43693758" KeyPath="yes" Source="fio\etc\defaults\etc\profile" />
</Component>
<Directory Id="dirE4D09D6741A2496D9C43579E24582541" Name="profile.d">
- <Component Id="cmp7343F51A079DCE26CE5BAB06CE8F2FB5" Guid="{B70400D9-3AD7-431B-9566-1673E50DCE37}">
+ <Component Id="cmp7343F51A079DCE26CE5BAB06CE8F2FB5" Guid="{1FB507C0-80FE-42F7-9EF9-A0D786ED27A7}">
<File Id="filA705C39C8C86AF4EB3072D932FC97252" KeyPath="yes" Source="fio\etc\defaults\etc\profile.d\lang.csh" />
</Component>
- <Component Id="cmpE8CA2F49BA0775870EEB8B856058F0A4" Guid="{953DA10A-F0BD-4AF0-94CA-6141756F00EA}">
+ <Component Id="cmpE8CA2F49BA0775870EEB8B856058F0A4" Guid="{E381E035-3D17-48E8-85AA-983340F7980B}">
<File Id="fil4918B055EEE97A9C3056B03B618F2E02" KeyPath="yes" Source="fio\etc\defaults\etc\profile.d\lang.sh" />
</Component>
</Directory>
<Directory Id="dirF45BABD5028D7F517DB596937CF5CA15" Name="skel">
- <Component Id="cmp0A9132F9E6AA99F0AACE69449FA7ACB7" Guid="{3BFB0158-2420-4A5F-835C-0502F33B3EC8}">
+ <Component Id="cmp0A9132F9E6AA99F0AACE69449FA7ACB7" Guid="{729FA2F0-419B-416B-A1F2-651DB540151B}">
<File Id="fil58E43241552D3F9BD8F1C3671C372477" KeyPath="yes" Source="fio\etc\defaults\etc\skel\.bashrc" />
</Component>
- <Component Id="cmpDD3E4D76E23073FCE1761712B5FF7D16" Guid="{24089839-2894-4534-8426-2EB929F14096}">
+ <Component Id="cmpDD3E4D76E23073FCE1761712B5FF7D16" Guid="{9DC6BA64-F3A0-4BA1-827C-747A07FDC8C0}">
<File Id="filA1CD9A5CE16E0361EEAAEF53A0CDC5E5" KeyPath="yes" Source="fio\etc\defaults\etc\skel\.bash_profile" />
</Component>
- <Component Id="cmp98F3484373F9CE9C0C8F28492DA729A9" Guid="{1FC5BB37-1CA1-4629-94F5-155630B6B84D}">
+ <Component Id="cmp98F3484373F9CE9C0C8F28492DA729A9" Guid="{2FDD6B1E-FCB1-409C-A2C4-C49409BE77EF}">
<File Id="filE678C9E0E660BDEE5C934E1AFBCEF155" KeyPath="yes" Source="fio\etc\defaults\etc\skel\.inputrc" />
</Component>
</Directory>
</Directory>
</Directory>
- <Directory Id="dir9723FBAD44336C06F4B5256F7620513F" Name="fstab.d">
- <Component Id="cmpC14A437DC800644995C8C0E69DA4B97A" Guid="{CC139448-FB3B-4A90-B2F6-71FB8A814BB9}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- <Directory Id="dir8864E76C722D0FFAC8B05B0D680F527B" Name="postinstall">
- <Component Id="cmpA2449538C066843074C29F3AB164E223" Guid="{E2E818C0-21FA-4600-A428-A8769994FAC0}">
- <File Id="fil356599E5BE6921A48CF47839AAEC0708" KeyPath="yes" Source="fio\etc\postinstall\000-cygwin-post-install.sh.done" />
- </Component>
- <Component Id="cmp2B70D23AFE0F30D84ACF02B8DE5F5413" Guid="{E20C59DE-CA52-4EA0-991E-6F62A9F4EC73}">
- <File Id="filDA473E7A1E9696D3CF8C3DE9D59BD387" KeyPath="yes" Source="fio\etc\postinstall\base-files-mketc.sh.done" />
- </Component>
- <Component Id="cmpC18FCCEDB031F65A5A6F3DF8C994514A" Guid="{F0DFE76D-03C9-4EC6-A5F6-A48DB9B5D12E}">
- <File Id="filDE116010BA3EB3D6D0A8599E6693CF34" KeyPath="yes" Source="fio\etc\postinstall\base-files-profile.sh.done" />
- </Component>
- <Component Id="cmp42DEC0BC29974F1A7E6EBE94EF57B53E" Guid="{E59D9814-02AD-4F3C-AB8E-9F6386454912}">
- <File Id="filADEEEAC3FB27E3981327F59A4D714D65" KeyPath="yes" Source="fio\etc\postinstall\bash.sh.done" />
- </Component>
- <Component Id="cmpD6BE05BAA0997798505CC3E79B54D654" Guid="{F46646DE-92A9-4CF2-86E6-DD5494C2EA57}">
- <File Id="fil92943C8F6BE046D79283CF390AC912EE" KeyPath="yes" Source="fio\etc\postinstall\coreutils.sh.done" />
- </Component>
- <Component Id="cmp81C54DA1C40E84132B51B8C26E4CC755" Guid="{BE4100A8-A818-4276-AA42-A0B542081EA5}">
- <File Id="fil9CBA9DDC5DBC4A8DC13DE60DF1145181" KeyPath="yes" Source="fio\etc\postinstall\man.sh.done" />
- </Component>
- <Component Id="cmp05DD5D973BE196072B74A7FB9FF507B3" Guid="{30624E2C-02DB-47C7-BF66-97065F4579C8}">
- <File Id="fil1E111480CB71DC6FB3F4B3357E14D960" KeyPath="yes" Source="fio\etc\postinstall\terminfo.sh.done" />
- </Component>
- <Component Id="cmp296AF5AAA897C63274AEC8CF1B891A77" Guid="{1A53E730-BE1B-41D0-990C-EDD3D8D14158}">
- <File Id="fil3BA0E218C79A14166247E0289DE3FABD" KeyPath="yes" Source="fio\etc\postinstall\terminfo0.sh.done" />
- </Component>
- <Component Id="cmp12B68880FDAA0419F4DDEC1152E18ED8" Guid="{71F2A725-51D7-491D-AC72-3B011271236E}">
- <File Id="fil5D33C2887F53B81BCC787184D12DA411" KeyPath="yes" Source="fio\etc\postinstall\update-info-dir.sh.done" />
- </Component>
- </Directory>
- <Directory Id="dir34E57FBE8ED44217AD99BD3095C1386A" Name="preremove">
- <Component Id="cmpAD930E86B652920E243BB1480A0361C1" Guid="{9BE8DED4-8E7F-47BD-B9CE-89546023220A}">
- <File Id="fil3E3EFC7C69D321052B7E6FE9DB435ADA" KeyPath="yes" Source="fio\etc\preremove\base-files-manifest.lst" />
- </Component>
- <Component Id="cmp15426D0DFAADD355408C9362F4C92EB5" Guid="{D37F97BB-82DB-46D0-AF88-4BA0EB45480B}">
- <File Id="fil204F9B8F6B5D12B60A00473E742CB8B1" KeyPath="yes" Source="fio\etc\preremove\base-files.sh" />
- </Component>
- <Component Id="cmp3020A0462D33E9F6E65F6F68434324A2" Guid="{E30E5EA8-01AF-4C6D-AFF8-18404C2077A3}">
- <File Id="fil7181F2B7103194548DC9BA5E71A3C04F" KeyPath="yes" Source="fio\etc\preremove\coreutils-manifest.lst" />
- </Component>
- <Component Id="cmp3DEDE396B2296F35B41C4DD0AA835797" Guid="{21FA1010-CF6B-4929-ADEF-8F8CC9923F9C}">
- <File Id="filB908722EE5D00970A1317BAD1A66180C" KeyPath="yes" Source="fio\etc\preremove\coreutils.sh" />
- </Component>
- <Component Id="cmp5274C70738BD47FB809A876F6B980F8A" Guid="{82A2EA10-42EA-4520-B5CE-CDBADD305A14}">
- <File Id="filB475D0A1AFB531AD437ABC76EE704CBA" KeyPath="yes" Source="fio\etc\preremove\man.sh" />
- </Component>
- </Directory>
<Directory Id="dirD0137DD5423E02D6CDE8449822CAD973" Name="profile.d">
- <Component Id="cmpCC0BB62A0E5AB49A73E2DB470EC8C927" Guid="{F9FB471E-1E93-45AA-8193-13FA2DA82399}">
+ <Component Id="cmpCC0BB62A0E5AB49A73E2DB470EC8C927" Guid="{07B01CDF-73FF-4A44-8C7F-A57CCB364B17}">
<File Id="fil8DF7F328A3382973AA653AA1B7BACD91" KeyPath="yes" Source="fio\etc\profile.d\lang.csh" />
</Component>
- <Component Id="cmp8126756A70E3EAE0051DB3DB8EB14C2E" Guid="{BCBE883A-9CB8-4A1D-BB7E-910310E00ED6}">
+ <Component Id="cmp8126756A70E3EAE0051DB3DB8EB14C2E" Guid="{383BC74D-A829-467D-8EC9-DA0FB8596F65}">
<File Id="filC321A98729D7DA0E28ACBEDB071CEFC4" KeyPath="yes" Source="fio\etc\profile.d\lang.sh" />
</Component>
</Directory>
- <Directory Id="dirFE2ACACD2938E909B4CDE99589B95753" Name="setup">
- <Component Id="cmp175C36E26F563B6838B04AFDAD2DC32D" Guid="{32FE7EA4-0BB2-4E09-B81F-04D263CD5820}">
- <File Id="fil8E5B9C4178BCBB2036D8D6B8A007434A" KeyPath="yes" Source="fio\etc\setup\alternatives.lst.gz" />
- </Component>
- <Component Id="cmpDE07BF2E58BD0E5D77300290412FA02F" Guid="{FEA9A138-18BF-4B77-BF0B-8FB37C114264}">
- <File Id="fil2B3F1EF53E8BAA5039480376F50B7826" KeyPath="yes" Source="fio\etc\setup\base-cygwin.lst.gz" />
- </Component>
- <Component Id="cmp3C860298A5FF475821F9B165083CC19B" Guid="{1C0E0F24-BC93-41A6-9284-374153C63C50}">
- <File Id="filB785D24EC460DEDF931D9F38D5A1514D" KeyPath="yes" Source="fio\etc\setup\base-files.lst.gz" />
- </Component>
- <Component Id="cmp67559805FDB9BC23FA24D0B6441CD480" Guid="{A1EEC1C0-32C8-4391-9321-81317DBD57D2}">
- <File Id="fil9D5176FB72B4BC8CE81C25B4254DB09E" KeyPath="yes" Source="fio\etc\setup\bash.lst.gz" />
- </Component>
- <Component Id="cmp52AACB798FED0676CBEDFE9D82A1B791" Guid="{5DED7517-59D6-4AC1-A4B9-43293F019CA9}">
- <File Id="fil480B25AACA8F32A20CDAE31F6E1149E1" KeyPath="yes" Source="fio\etc\setup\bzip2.lst.gz" />
- </Component>
- <Component Id="cmp8732CAF5615EFE0CD134A16EABAE2C2E" Guid="{2387506C-5C80-4817-97F6-B4A8B89CEDDE}">
- <File Id="fil9BE9E7B20C0B583FFF8BF6516F4E2D99" KeyPath="yes" Source="fio\etc\setup\coreutils.lst.gz" />
- </Component>
- <Component Id="cmp0981A416DBEE5DA8DBCF8717F1CB3DD2" Guid="{DC338136-5780-4A5D-BBD9-68F73E52DB2B}">
- <File Id="fil0B88547B9A7B9D11A35FB537780DBFEB" KeyPath="yes" Source="fio\etc\setup\cygrunsrv.lst.gz" />
- </Component>
- <Component Id="cmp1D87A4DAAE895F93DCB7B2BD748BC45E" Guid="{29CDEDAD-8C04-454E-98CD-A437A8A5D9A2}">
- <File Id="fil162D73273EAF4782A89BD131AFC27F35" KeyPath="yes" Source="fio\etc\setup\cygutils.lst.gz" />
- </Component>
- <Component Id="cmp07D80A685E5D4F1B03BD05D9B3E4DCE1" Guid="{3F9CFD40-E49F-4296-AFD6-149D1D0576FC}">
- <File Id="fil9D3DE1BD5D9C8CB43592617F3165B857" KeyPath="yes" Source="fio\etc\setup\cygwin-doc.lst.gz" />
- </Component>
- <Component Id="cmpF04B78A0F90DDCBB1982D7C04122B7F0" Guid="{DC1FDF22-9656-4E38-BE74-0643D465054A}">
- <File Id="fil0744BEF73836D56D9043DC9BF2CDC183" KeyPath="yes" Source="fio\etc\setup\cygwin.lst.gz" />
- </Component>
- <Component Id="cmp5D9E4FDED12166EE4D9D226C5578AC7F" Guid="{2C74687F-ACF0-4A3F-8398-B4AE44731A72}">
- <File Id="fil803DDFBF555CBDDE656DA0D1D730DEE4" KeyPath="yes" Source="fio\etc\setup\dash.lst.gz" />
- </Component>
- <Component Id="cmp7E724DC779B0A4543BEA47A6D2C1D11B" Guid="{1F785E2C-7E5E-46F1-BBFB-8F5C9B990C08}">
- <File Id="fil1D15F51EA7E9C3CA3AA9066B23B7572B" KeyPath="yes" Source="fio\etc\setup\diffutils.lst.gz" />
- </Component>
- <Component Id="cmp7A3CE6D7BA042BF2781995EB9A5822A3" Guid="{3679A0C8-9F75-44F5-81C0-2784FE47A95A}">
- <File Id="filA30CB6CC09E6842BBD43E79487C73D3A" KeyPath="yes" Source="fio\etc\setup\editrights.lst.gz" />
- </Component>
- <Component Id="cmp415668954071373B04D451E44B0B81C7" Guid="{C40F34EA-720D-439F-91CE-D932377EAF34}">
- <File Id="filE773744F67AB39F808D5CFFEAF8C05EE" KeyPath="yes" Source="fio\etc\setup\findutils.lst.gz" />
- </Component>
- <Component Id="cmp9675FF9F8ED3BD598BBC2FB528DC5DE3" Guid="{E9B4EBC7-5AF2-43D8-84D2-2D42C5AC47D1}">
- <File Id="fil5871ABD0C0022AD602E8338B711BD51C" KeyPath="yes" Source="fio\etc\setup\gawk.lst.gz" />
- </Component>
- <Component Id="cmpFDC894139925BBF4F3B841A219C4E71B" Guid="{1B583F29-3DAC-495D-B1AA-371E3548AAD4}">
- <File Id="fil0EF9E5C618DC4285F8D80957C85328FA" KeyPath="yes" Source="fio\etc\setup\gettext.lst.gz" />
- </Component>
- <Component Id="cmpA27B48AC000E4CE4BA8E5DB87775C9FA" Guid="{368AE420-5356-4DA5-BAA8-58B940AEE730}">
- <File Id="filCEE01B184C5EC714367B104043996D39" KeyPath="yes" Source="fio\etc\setup\grep.lst.gz" />
- </Component>
- <Component Id="cmp8F83126BA0B5046D1558873841D74A28" Guid="{251E85C7-9F57-4CAD-BBA1-1B7F3C0D54A7}">
- <File Id="fil50E1EED84D74EA12A4CBD54751DB6830" KeyPath="yes" Source="fio\etc\setup\groff.lst.gz" />
- </Component>
- <Component Id="cmpB79A7EA14A4972D7A22A82543E80A19E" Guid="{092E7937-F1A4-40B3-971D-D4C0EC469755}">
- <File Id="filF33551E48397979E2FA3B232BAC31A20" KeyPath="yes" Source="fio\etc\setup\gzip.lst.gz" />
- </Component>
- <Component Id="cmp6424D70BBDD6D99B35E50833633C6952" Guid="{77870518-68AD-411E-86CD-973E9340E92F}">
- <File Id="fil20C4899B33CD3AB2C69B7552943E17B4" KeyPath="yes" Source="fio\etc\setup\installed.db" />
- </Component>
- <Component Id="cmp5D28AFC2FDCCE608B4D49D963B12DEEC" Guid="{CA59341B-DBA9-4630-93A4-56FD573EAA51}">
- <File Id="fil7B63FCD9A02F41AECD934F7C0AA5F592" KeyPath="yes" Source="fio\etc\setup\ipc-utils.lst.gz" />
- </Component>
- <Component Id="cmpD48631E1DBB9FEDDEACE55BE7BD384AC" Guid="{0F092496-8957-4BB2-939A-6A87B7B9D122}">
- <File Id="fil9F8C5C9053420BA0E4D03324B8AA7A2E" KeyPath="yes" Source="fio\etc\setup\less.lst.gz" />
- </Component>
- <Component Id="cmp826E969DA0BFAEF5ACCAA859C84DAD0F" Guid="{7F249131-2D12-47B9-846C-F33317089825}">
- <File Id="filBC5086CD67692DC99279F0826E5D3874" KeyPath="yes" Source="fio\etc\setup\libattr1.lst.gz" />
- </Component>
- <Component Id="cmp174288D0576E479BFC5A5212049A5DC0" Guid="{4EA49B2B-CE44-4194-AA50-D72188C848C4}">
- <File Id="filE3D12D456996ACFAB0C95D48F80C0717" KeyPath="yes" Source="fio\etc\setup\libbz2_1.lst.gz" />
- </Component>
- <Component Id="cmp4418C9E6BD6DCDBEA281A639290CBBAA" Guid="{39F3E695-3440-40EF-B2BE-D9B2C48C069C}">
- <File Id="fil38D6223BA9CED6CA4EC5A455EBF9DE18" KeyPath="yes" Source="fio\etc\setup\libgcc1.lst.gz" />
- </Component>
- <Component Id="cmp22132A31F151AAF9898A5EB0687D90F8" Guid="{64F060DB-A068-4CA5-8F8F-3FDA338C2879}">
- <File Id="fil79CE8129E12C2976661C9687EAB688B9" KeyPath="yes" Source="fio\etc\setup\libgmp3.lst.gz" />
- </Component>
- <Component Id="cmp467C8E08E0A0D3672C895EBE2BBBBD61" Guid="{21814A51-38B8-44D0-95AF-1B0A30AA19A8}">
- <File Id="filDCD98BE655C3922B8FC79ADFF4AE3664" KeyPath="yes" Source="fio\etc\setup\libiconv2.lst.gz" />
- </Component>
- <Component Id="cmp440AA49E44DB6A5C039EEEC2E491FF2D" Guid="{2E9C6D0B-E9FB-48F7-B82D-31707299C6D9}">
- <File Id="fil91862CF21A9A5C67D57B74C1CAC8AB80" KeyPath="yes" Source="fio\etc\setup\libintl8.lst.gz" />
- </Component>
- <Component Id="cmp328DAA6ACB17654789C3F5800CEBF3E9" Guid="{E5C44142-51B9-4805-9BF2-65E956DCB299}">
- <File Id="filFDDF90C9FB8557DA50103D5E569ECE7F" KeyPath="yes" Source="fio\etc\setup\liblzma1.lst.gz" />
- </Component>
- <Component Id="cmp4D6BEB3E95749AE94396ACC1FEDD3CF4" Guid="{04C87137-7A44-4F91-A326-30319E45F642}">
- <File Id="fil9606FB9800EBE1BED79D8FC441F2259A" KeyPath="yes" Source="fio\etc\setup\libncurses10.lst.gz" />
- </Component>
- <Component Id="cmpFA04C81284CF6533345C69238420EE81" Guid="{B9EC4DCB-3CE5-409F-8B2E-5C991A8D76AA}">
- <File Id="fil7803FF7B621AB32E8899CC8208C575DA" KeyPath="yes" Source="fio\etc\setup\libncurses8.lst.gz" />
- </Component>
- <Component Id="cmp34E1F05DD1B3D5676219EC3F1087BD2C" Guid="{4F992C0F-12BF-4E80-B112-926466C9728D}">
- <File Id="fil9E8FADFECC62235336F4B27DB5079290" KeyPath="yes" Source="fio\etc\setup\libncurses9.lst.gz" />
- </Component>
- <Component Id="cmp08EB80655D4BF288A1724A7C0127A7A1" Guid="{8509EA7B-A1BB-4F9B-9C2D-95EC2BE247AB}">
- <File Id="filD832555EED3634A8C5ED317412D0A45F" KeyPath="yes" Source="fio\etc\setup\libpcre0.lst.gz" />
- </Component>
- <Component Id="cmp3F7F0EC0CFF97153975042CC5798CBFB" Guid="{BCBF99C2-12B3-4CE3-AB78-BC449C717E1D}">
- <File Id="fil09C979446D1064CFCEF3D70C26DD91A6" KeyPath="yes" Source="fio\etc\setup\libpopt0.lst.gz" />
- </Component>
- <Component Id="cmp315EA5ED516B730A57662B80936DC623" Guid="{50E20191-F9D3-409C-82AB-4E03FB0F2FDE}">
- <File Id="fil79494A02A47302C1590FDA2C24BD3D22" KeyPath="yes" Source="fio\etc\setup\libreadline7.lst.gz" />
- </Component>
- <Component Id="cmp27D8DE9A81F2F14FCED5EC6A46229831" Guid="{C4C70793-4A0E-4464-BC0B-FBCAB0F31CC1}">
- <File Id="fil6B01283C54B738ACC45B58BDAD15068F" KeyPath="yes" Source="fio\etc\setup\libsigsegv2.lst.gz" />
- </Component>
- <Component Id="cmp8C3811F5C4E47D62C3145F2EFFA16069" Guid="{4E9A4698-29AA-4C6A-BDBD-462948F6632E}">
- <File Id="fil3C9B5FF6C70155617F497F1BE7A74ABF" KeyPath="yes" Source="fio\etc\setup\libstdc++6.lst.gz" />
- </Component>
- <Component Id="cmp056CDF90F89E5D019D0719503E38F9E5" Guid="{7E7DA310-F1CD-4323-883F-E91C4CEA5F7A}">
- <File Id="fil227D773347A0EC3C0FEE8BCED99E7D28" KeyPath="yes" Source="fio\etc\setup\login.lst.gz" />
- </Component>
- <Component Id="cmp1848E74D9BBF806D3A8BDA6464D7FE8B" Guid="{8FE50C7E-2594-4A92-B751-417EB780FBD3}">
- <File Id="filDE6B1B947806BA2EAB2680B0D700D131" KeyPath="yes" Source="fio\etc\setup\man.lst.gz" />
- </Component>
- <Component Id="cmpB96D09CEFB68ED40FC95A78CE2F1C655" Guid="{2BA4272F-AE54-4187-92DF-29B82E2D2420}">
- <File Id="fil620064DFEEC8D56A92A1FD370CA339DB" KeyPath="yes" Source="fio\etc\setup\rebase.lst.gz" />
- </Component>
- <Component Id="cmpD8699237A90EA394561249F0AA9542E6" Guid="{8847457F-4C2C-490E-951D-1F282A86162C}">
- <File Id="fil86D0A42EA2AA4C30EF195B7B3EB9C5B2" KeyPath="yes" Source="fio\etc\setup\run.lst.gz" />
- </Component>
- <Component Id="cmp10F3BC2F9E77260539E059C22386267A" Guid="{ED34904F-924C-4AAF-A05E-67CACB36B5DE}">
- <File Id="filF1AA3F845B82DAA212E823FF143559C0" KeyPath="yes" Source="fio\etc\setup\sed.lst.gz" />
- </Component>
- <Component Id="cmp9F842F1C68934BB79A08F526460213D5" Guid="{BB019C33-6B31-4FED-820F-FBA166C1F56D}">
- <File Id="fil4ADCDD5D43B3753C5CA27F217F80F46A" KeyPath="yes" Source="fio\etc\setup\setup.rc" />
- </Component>
- <Component Id="cmp33C91953FBF262242F1632BA87D74FC5" Guid="{CA3A2F93-407E-4D6F-A43D-5D451EAF7564}">
- <File Id="filF9D1084D2CA5EF53A1D1EF372AB2CC10" KeyPath="yes" Source="fio\etc\setup\tar.lst.gz" />
- </Component>
- <Component Id="cmpA80EE34248F67CB0A4ED5BF2E2F6262C" Guid="{5A9037EF-682C-4A62-94CB-38B80E0DE127}">
- <File Id="fil4F5C1FE3D55E3562171B8803246D185F" KeyPath="yes" Source="fio\etc\setup\terminfo.lst.gz" />
- </Component>
- <Component Id="cmp4EF3E52B63A4EA04451CC1AAE6E271BF" Guid="{EBEC43AA-31CA-4220-B8D4-95F7A1D988F7}">
- <File Id="filAAD51E9AAFC8C139651032DAAF541DCC" KeyPath="yes" Source="fio\etc\setup\terminfo0.lst.gz" />
- </Component>
- <Component Id="cmpE8FEB08C23D55D0DD0694089CE6E8FE8" Guid="{6E7AA2C9-93E8-4399-8D34-0DC1D7903EC1}">
- <File Id="fil198A08E86DA1E9872151B74A4703126A" KeyPath="yes" Source="fio\etc\setup\texinfo.lst.gz" />
- </Component>
- <Component Id="cmp2FE087694EFF3FBF253D0279F8338BB6" Guid="{933CDE76-E6FA-4674-B011-69CC05AF301B}">
- <File Id="fil9A2C3995688F3ED993DF55A8DE9C1AA7" KeyPath="yes" Source="fio\etc\setup\timestamp" />
- </Component>
- <Component Id="cmp43FE736045927A79BC079D6E47BF3967" Guid="{FFE04356-6E22-46FE-ABBC-099B39A3E62E}">
- <File Id="fil78D46A22197678D6CD9BA9449CCF0F1A" KeyPath="yes" Source="fio\etc\setup\tzcode.lst.gz" />
- </Component>
- <Component Id="cmp54393318615F92A4E6C4A68F90DBC716" Guid="{73A589D9-BD1B-4D2E-98A0-5D1ED2EC28A7}">
- <File Id="filA0CE0E38AA4062E0E3D2C86BF57C6588" KeyPath="yes" Source="fio\etc\setup\which.lst.gz" />
- </Component>
- <Component Id="cmp09F8541E7A0F3929FDC5E687A4D80BAD" Guid="{5F4CFD2D-249A-4D76-B867-32FF4E0169B5}">
- <File Id="fil0F495F076634B9B863DFE8E9B076B4F4" KeyPath="yes" Source="fio\etc\setup\xz.lst.gz" />
- </Component>
- <Component Id="cmp10EE233CEA5C450E1030BF9F3986026E" Guid="{E4F71CB2-C24C-4CE1-8F79-AD0DFCF05AC5}">
- <File Id="filE8778C8DC03D01F9972A7CE21819B556" KeyPath="yes" Source="fio\etc\setup\zlib0.lst.gz" />
- </Component>
- <Component Id="cmp417EFA3369340E8A1B4C77A62732E383" Guid="{EF03F8F5-FF0E-4B4B-8561-B2EA994DD45E}">
- <File Id="fil001966F20A71DB9E61E2DBE39C5E64F9" KeyPath="yes" Source="fio\etc\setup\_update-info-dir.lst.gz" />
- </Component>
- </Directory>
<Directory Id="dir674BBC4A7040E95ABD0A5ACFB65B1A63" Name="skel">
- <Component Id="cmpF4E3E90F87D3E711880CD813FB2863C3" Guid="{ACC07377-ED96-412B-8C56-47D2027E8F93}">
+ <Component Id="cmpF4E3E90F87D3E711880CD813FB2863C3" Guid="{69A2EA13-5221-4A7A-B153-03966F1D39B7}">
<File Id="filC621215CD8F5CF4E79B497A60B16504C" KeyPath="yes" Source="fio\etc\skel\.bashrc" />
</Component>
- <Component Id="cmpA5941B18A3019D30B70D60D6107ACAE2" Guid="{E156F7B7-D2C7-4F9E-8419-349B9F7ABDC2}">
+ <Component Id="cmpA5941B18A3019D30B70D60D6107ACAE2" Guid="{18E63573-1FC2-456D-8B90-892233DD6551}">
<File Id="fil13D63E2F8389A6231F9E044689FF4871" KeyPath="yes" Source="fio\etc\skel\.bash_profile" />
</Component>
- <Component Id="cmp6D49D3CCDFC2405B1380416460269CB8" Guid="{69AE3DBC-0B7B-4418-97E7-0F2FDCF87A31}">
+ <Component Id="cmp6D49D3CCDFC2405B1380416460269CB8" Guid="{EE51DC1C-3331-4AE7-9910-C0C3B831C8BC}">
<File Id="fil42F2EDEEB0EFA687B676D8B06F24D079" KeyPath="yes" Source="fio\etc\skel\.inputrc" />
</Component>
</Directory>
</Directory>
<Directory Id="dir0809A8781FD4C72747C8A59065902C84" Name="home">
- <Component Id="cmpDDB386FBD479946BD5D255C2A49C38FC" Guid="{F8A70DB2-C666-4725-8E28-C11E23DFA792}" KeyPath="yes">
+ <Component Id="cmpDDB386FBD479946BD5D255C2A49C38FC" Guid="{4CD182EF-D1AE-451E-846F-7FBD845B291F}" KeyPath="yes">
<CreateFolder />
</Component>
</Directory>
- <Directory Id="dirDBA4AB67462AE6BF5D20AF30BDD03388" Name="lib">
- <Component Id="cmp84AF7B2680E43C5627D38F14DC833A40" Guid="{B2F2BB71-9026-495B-800F-A154D8219BFB}">
- <File Id="fil1B838FCCCA5FCB1FB99639334109303A" KeyPath="yes" Source="fio\lib\automode.o" />
- </Component>
- <Component Id="cmp41D3DBF8680CA1A51B93C4B5FF944E10" Guid="{0DFAC32E-6006-4E57-95ED-F77C1B9AB5D6}">
- <File Id="fil5016EADDEC23C2674049B428988D5B15" KeyPath="yes" Source="fio\lib\backup.sh" />
- </Component>
- <Component Id="cmp40B86B35B273F720813F76AA5FF51974" Guid="{609DEC15-1341-4856-8E94-4CA30228FB75}">
- <File Id="fil6B0FFC384DDCC42339C8DFBA38EDD789" KeyPath="yes" Source="fio\lib\bigram.exe" />
- </Component>
- <Component Id="cmp5D66A9864CA7B895F729BE5B7A231E9F" Guid="{152BE528-E141-466F-8D9C-091F7D343029}">
- <File Id="filBC6B97FE01BF76557E731E1494564DBB" KeyPath="yes" Source="fio\lib\binmode.o" />
- </Component>
- <Component Id="cmp26D15A47F7B68273157BA04621CD3DDD" Guid="{F5A1909B-8AF0-4A01-8AC0-DE04354FB0AD}">
- <File Id="fil98564275647806B1D1FCED295E4C39D4" KeyPath="yes" Source="fio\lib\charset.alias" />
- </Component>
- <Component Id="cmp0B18EC4BEF931C4581AA2C021ABD650C" Guid="{41F47E4D-0044-4ABD-95C7-4E6842A4F445}">
- <File Id="filB4D3BCBCD0DE927CB75F750CC690742D" KeyPath="yes" Source="fio\lib\code.exe" />
- </Component>
- <Component Id="cmpC19420863F33A05AD0884E96398AB03F" Guid="{7E18ECC9-75E8-4248-A066-2377C60826B1}">
- <File Id="fil531DB0EFB622DE4DC1890CDF89C2E626" KeyPath="yes" Source="fio\lib\crt0.o" />
- </Component>
- <Component Id="cmpD002B13FB86F91DA7983823AC803F092" Guid="{D9948288-17FF-426F-A4E5-31A5F5F04732}">
- <File Id="filB58C1E1C1B75331D5E0130EBF034C9A0" KeyPath="yes" Source="fio\lib\dump-remind" />
- </Component>
- <Component Id="cmp19C0684F9E6C3521048053F93789D567" Guid="{61ACAE55-36E2-419D-98D5-D12FC62F4C9B}">
- <File Id="filB504E9B886942B35A0343DCA0D78B51B" KeyPath="yes" Source="fio\lib\frcode.exe" />
- </Component>
- <Component Id="cmpCD840B932043EEF383B690F9561A3269" Guid="{B77A89F5-2F68-48D3-9649-2AD160A2605C}">
- <File Id="fil51E8237861573FA9A8ED75D6C68CF7C3" KeyPath="yes" Source="fio\lib\gcrt0.o" />
- </Component>
- <Component Id="cmp5721BD87C0BEF4C70B73087A53040BC0" Guid="{3B784981-694D-49AD-9E17-B42586B568AE}">
- <File Id="fil7A5CFBCE6A1D33FE1AEE62C6C34035AA" KeyPath="yes" Source="fio\lib\libasprintf.a" />
- </Component>
- <Component Id="cmp910219B1D93CA0C2879E97B2EB562200" Guid="{0B712965-DE77-44B1-9F3E-4ECB439F5070}">
- <File Id="fil91791F1679DCF7D6E8D6DCFC2F81F3E0" KeyPath="yes" Source="fio\lib\libasprintf.dll.a" />
- </Component>
- <Component Id="cmp14921FB75412DC53C724D83E8B7C11D1" Guid="{6D36DF27-D9DB-4AE4-BC65-F3640FFC6169}">
- <File Id="fil487151D2358B35D66915C7524462D463" KeyPath="yes" Source="fio\lib\libasprintf.la" />
- </Component>
- <Component Id="cmp28249533B4B3288254310F68562DD82F" Guid="{4C1EC673-39C5-446F-A413-806726DDE8C5}">
- <File Id="fil82B4229061F9C5A31A9141EE3BCFEE1B" KeyPath="yes" Source="fio\lib\libautomode.a" />
- </Component>
- <Component Id="cmp64B7837D285B8E584553112A8623BAA7" Guid="{6AFE9FED-1874-4475-B2F2-C682773CCA4E}">
- <File Id="fil92D3B790D4F595D6AB65DE8E73C782C5" KeyPath="yes" Source="fio\lib\libbinmode.a" />
- </Component>
- <Component Id="cmp29C98A7858085758D2E2091663359D80" Guid="{0ED05B26-D45F-4739-99ED-7B5C27834F7F}">
- <File Id="fil0C78D45BB72BB2D15AE185C00EA0AE7D" KeyPath="yes" Source="fio\lib\libc.a" />
- </Component>
- <Component Id="cmp60D7CAD0BB3BDA7AD0A1D42C8C5B2D92" Guid="{7E3F053A-6C81-4202-8F12-927452CB15E4}">
- <File Id="fil63A016786A5390FCF7302CE500BC2DFC" KeyPath="yes" Source="fio\lib\libcygicons.dll.a" />
- </Component>
- <Component Id="cmp8A08536190C4052526CC59CE23134A5A" Guid="{CB063E48-7751-44D4-A07B-E620A40AF06C}">
- <File Id="fil81BA10EA69BFCE816C21B83A8DE900DD" KeyPath="yes" Source="fio\lib\libcygicons.la" />
- </Component>
- <Component Id="cmp34765D51F47F3587890A49205F05189B" Guid="{2BFF5EBA-1B12-4BAD-817D-6496532FFFF4}">
- <File Id="fil6DF3D4BB4C5780B0BF89253C49B5A208" KeyPath="yes" Source="fio\lib\libcygwin.a" />
- </Component>
- <Component Id="cmp7660A46D4CEAEDCE3F41E6F661163F8D" Guid="{246F6827-9B69-4B48-A58E-E017371155AB}">
- <File Id="filD3EFE03E260F640E1AFF402CE3A93B6B" KeyPath="yes" Source="fio\lib\libdl.a" />
- </Component>
- <Component Id="cmp360B8F7D1DB8D478F90CEEA360273C2E" Guid="{3F66ED1D-69F1-48B9-91ED-3C3A47F85EEE}">
- <File Id="fil3A8EDBAF161B1DD5B7444709C0FD4E1C" KeyPath="yes" Source="fio\lib\libg.a" />
- </Component>
- <Component Id="cmpBCBDA82495323A1D5937D0CD3FE04C42" Guid="{38FA07B8-9A4C-4101-9FB8-739E4B91DC04}">
- <File Id="fil052922A6FE50F616F3685B58A69E4899" KeyPath="yes" Source="fio\lib\libgmon.a" />
- </Component>
- <Component Id="cmpBF8B76263E7C1509113A27B485722B20" Guid="{9E583D75-371B-4A72-8063-9DE7F8E9CD15}">
- <File Id="fil84CDB49E9EB8271E006DA0A026E809FC" KeyPath="yes" Source="fio\lib\libintl.a" />
- </Component>
- <Component Id="cmp5862B92BBD50537CACF172EC65BD1BB4" Guid="{C5748055-93E4-4B0F-AE21-4900DF552226}">
- <File Id="fil3D90AE3F8378C8F3824E813D6AB62C89" KeyPath="yes" Source="fio\lib\libintl.dll.a" />
- </Component>
- <Component Id="cmp8E853A3C2989414A7115B52AB2E7301A" Guid="{B075C9A9-B823-41F7-A6B0-B4F737DAB04C}">
- <File Id="filCD22FB1BE69E7B877AEAC9F3B09D2003" KeyPath="yes" Source="fio\lib\libintl.la" />
- </Component>
- <Component Id="cmp8D329DEB8F0056E770E80C24795DA674" Guid="{D8C1927F-F9C3-4B8D-94A6-6681F99FE997}">
- <File Id="fil16B92212F0A73B53389E51F8B444C7AB" KeyPath="yes" Source="fio\lib\libm.a" />
- </Component>
- <Component Id="cmp7A26D9537FABDFCCE713988B29F6D0D5" Guid="{8F8DBB6C-106F-4448-9E71-1BB66B0BF431}">
- <File Id="fil5EC65439D44FD1A85FC8FF1D1E084CB1" KeyPath="yes" Source="fio\lib\libpthread.a" />
- </Component>
- <Component Id="cmpC9509E1EDF95C2461F1AFFD8BBA6ED84" Guid="{4DE00496-3BD8-441F-B0B8-589915DA630E}">
- <File Id="filE74A9CEF1DF499140791EF155EC4E539" KeyPath="yes" Source="fio\lib\libresolv.a" />
- </Component>
- <Component Id="cmp5B91FCBC31A82463514EED43EFB961B9" Guid="{0BFB1FF6-E4F2-47B9-8733-A0061BE4D6DC}">
- <File Id="fil31AAD2B528C2249A73C4E18DABEECB76" KeyPath="yes" Source="fio\lib\librt.a" />
- </Component>
- <Component Id="cmp016735B9B140394369285476CE9F1657" Guid="{8AE74C68-94BF-42D1-B2B3-E3F4E13E0EDF}">
- <File Id="fil54E31817C74CB2C3B690CBD6F887D226" KeyPath="yes" Source="fio\lib\libtextmode.a" />
- </Component>
- <Component Id="cmp2894B4561C7F534225F1D580DF2F7DDF" Guid="{26AE1A7B-28F6-46B4-9FA9-5D58DD4ED5EB}">
- <File Id="fil238DB1A32764E2A11541DA5B90C9C14C" KeyPath="yes" Source="fio\lib\libtextreadmode.a" />
- </Component>
- <Component Id="cmp7A4F58F38CB01C56C10E68FEF4EB436C" Guid="{30866648-1EC9-4615-BD3D-CB3A9E483554}">
- <File Id="fil7D7C3686D1D9733DF56FFDB4803D7601" KeyPath="yes" Source="fio\lib\libutil.a" />
- </Component>
- <Component Id="cmp2A3A87DAF18FEA072B2B6B16F8B6CB2A" Guid="{0E8F3500-EF6B-4211-B46B-AE59FB1962FC}">
- <File Id="fil326F9E95F18478A676EF7957A3B18112" KeyPath="yes" Source="fio\lib\rmt.exe" />
- </Component>
- <Component Id="cmp15B0E42F0CF746D05B6A564A1A893E89" Guid="{C17853C0-FD72-4F8C-B7A5-05CB34C62467}">
- <File Id="fil45A35BFBEB26C108DEF9C8C0AE4EC3C0" KeyPath="yes" Source="fio\lib\terminfo" />
- </Component>
- <Component Id="cmpBE0F10B9E6E6F5A9C2D4484314642084" Guid="{DFFE4C65-160F-415D-A642-194B626677C0}">
- <File Id="filE432A0AD33139C095353F31253A7A7E9" KeyPath="yes" Source="fio\lib\textmode.o" />
- </Component>
- <Component Id="cmp3130761D7C115BBF8C1AB15F3E8652EE" Guid="{F4C8A5C3-F4B1-4064-BAAE-7097B76E404D}">
- <File Id="fil16F45732D22DDF4C9C9EBFE3CF63E889" KeyPath="yes" Source="fio\lib\textreadmode.o" />
- </Component>
- <Directory Id="dirABE5AACC8B69F32D454052894321175E" Name="awk">
- <Component Id="cmpC7CEAB99E39F7ADC069BFA1631F20898" Guid="{75E7BE4B-47AA-459F-B481-FF70F9E4EE1E}">
- <File Id="fil43A9179CB6AD54A296E0A673C162754A" KeyPath="yes" Source="fio\lib\awk\grcat.exe" />
- </Component>
- <Component Id="cmp0E22BE45A33F61D24F3EE162964F4AEB" Guid="{9DA9B626-0C5F-4F98-8A30-0237BE083CE2}">
- <File Id="filB98CB63E2B636BAA8CA93776889A532C" KeyPath="yes" Source="fio\lib\awk\pwcat.exe" />
- </Component>
- </Directory>
- <Directory Id="dir0AE8A8881A30A52395AEF66423B3A891" Name="groff">
- <Directory Id="dir5A03F838914A0E987A89AEFEAF5874C0" Name="groffer">
- <Component Id="cmp53857BDBE2AF65D9A1DB1B0CFCE4594A" Guid="{4A04F18E-B665-49AE-98E9-3DE31F374DD5}">
- <File Id="fil80584EE70173BA32F24A2C2357FE7F46" KeyPath="yes" Source="fio\lib\groff\groffer\func.pl" />
- </Component>
- <Component Id="cmp2A973849CC6D1C3B67A156DEBB56BF20" Guid="{5193FD6A-2423-4E2D-A2B8-6E76BAEE2836}">
- <File Id="filEBF81D30010AC75500486C25E65D4564" KeyPath="yes" Source="fio\lib\groff\groffer\man.pl" />
- </Component>
- <Component Id="cmpF0138F2BBDDE4D1B33BE5043C249DFB9" Guid="{7342A864-3A50-45D6-BA2B-D632E5DAC1D8}">
- <File Id="filA5CBB05C3D315578932A555183A755EF" KeyPath="yes" Source="fio\lib\groff\groffer\perl_test.pl" />
- </Component>
- <Component Id="cmp580D200EF03ABB09A9F730AC0EF354F3" Guid="{67EB33E3-2CE8-47F6-9A08-6F672E5EE283}">
- <File Id="fil10890F26B8A890AD8FEF407C21A27FC6" KeyPath="yes" Source="fio\lib\groff\groffer\split_env.sh" />
- </Component>
- <Component Id="cmp753F89F498A61A68D8AE83153E1244E8" Guid="{4EA142A6-5379-48D3-8AD0-ABC322A0EE22}">
- <File Id="fil46AD8204F82D17E702BB8B0D54B9B1C5" KeyPath="yes" Source="fio\lib\groff\groffer\version.sh" />
- </Component>
- </Directory>
- <Directory Id="dirE82E2B857B4542ED2C6B4CEC6BCA3E5B" Name="site-tmac">
- <Component Id="cmpE2FA2BC2DD7E79C4BD4896A3FD82A9A3" Guid="{B267BD7B-D5B3-43D2-8A88-A41747CD9875}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- </Directory>
- </Directory>
<Directory Id="dirA073B383A9641C7DB3958BE23B9851F8" Name="tmp">
- <Component Id="cmp0D3AA205B2943B9638F1E62A4C83FCFD" Guid="{ED22F02E-15A6-49B8-9C97-F9831AA7C44B}" KeyPath="yes">
+ <Component Id="cmp0D3AA205B2943B9638F1E62A4C83FCFD" Guid="{63931075-7B07-420C-A37C-FF2BD1CDDE1B}" KeyPath="yes">
<CreateFolder />
</Component>
</Directory>
<Directory Id="dirFBDDCDB1793D304331CB39A2149E49E0" Name="usr">
- <Directory Id="dir1A237443943CC15ACF75FB801A36D10B" Name="include">
- <Component Id="cmpD3C752EBC97CDA59E5D85297DCF3A244" Guid="{37192750-0FDC-42A7-90D5-CB205B88EC67}">
- <File Id="filD47EF7FB275CE869765C24E22587DBE9" KeyPath="yes" Source="fio\usr\include\a.out.h" />
- </Component>
- <Component Id="cmp192477EB28AA1511BABE681818BFD6CC" Guid="{4A4F76AC-1791-4997-97A3-869A10DD9728}">
- <File Id="fil35AC2F51A14DB2BD3C4791A305E27C76" KeyPath="yes" Source="fio\usr\include\alloca.h" />
- </Component>
- <Component Id="cmp46DD8E7DA319F782781CF589EF638300" Guid="{B9DBF355-6B06-4A1C-B704-D85E6026D193}">
- <File Id="fil08A697198AEF420D019570249391BC0F" KeyPath="yes" Source="fio\usr\include\ar.h" />
- </Component>
- <Component Id="cmpE21953CC1B267751044A67378F6DAC92" Guid="{8FD6D3D5-4A52-411E-AC01-9EF4653092E2}">
- <File Id="fil1C0747B5073E19E3D15439161A62FA62" KeyPath="yes" Source="fio\usr\include\argz.h" />
- </Component>
- <Component Id="cmp7E5DA0D58E33071A86BDABF55D3776C3" Guid="{521071D0-5BEF-4A2C-B1D0-1EDC44CAF5F4}">
- <File Id="filFEE9FEA2D6FFB4C4E59B36594D3EEEDA" KeyPath="yes" Source="fio\usr\include\assert.h" />
- </Component>
- <Component Id="cmp71EB002A5EBBA7BB9B9208480057EC00" Guid="{5EF49F06-2EC5-4991-B413-62CCAFE5A1E4}">
- <File Id="fil9880360EA33C879EB42949A5948247B4" KeyPath="yes" Source="fio\usr\include\autosprintf.h" />
- </Component>
- <Component Id="cmp9E5FDB211ABEA46E1F04D621A2D07167" Guid="{2AB79CA7-530B-4E0C-B92D-01FB7284E2F2}">
- <File Id="fil231395F5D7FEB3EBDEA8088F762D30F4" KeyPath="yes" Source="fio\usr\include\byteswap.h" />
- </Component>
- <Component Id="cmp25C1C722D80E287CF948B393368AD361" Guid="{D8991E2E-5EE3-4E30-94A1-CD42D34DEA9E}">
- <File Id="fil652978B62642F2E894E282BA0586742B" KeyPath="yes" Source="fio\usr\include\ctype.h" />
- </Component>
- <Component Id="cmpA798AAAE1004E9B791ECA5444E59E193" Guid="{004B6274-81F2-4EB3-AC0E-C9783505DEB3}">
- <File Id="filE96115C4ACC8F47B831914EA58E7EB21" KeyPath="yes" Source="fio\usr\include\cygicons.h" />
- </Component>
- <Component Id="cmpAE338A79A25A46710919411EC2F370D4" Guid="{E1DDCDB5-C187-4C19-A069-697A44605DC5}">
- <File Id="fil32A62893C5DA2E916A98255B97D4830E" KeyPath="yes" Source="fio\usr\include\dirent.h" />
- </Component>
- <Component Id="cmp3B0B774BE053A835F0E9D0E0C58DA025" Guid="{B4BD4074-64CD-4E62-A6E1-14688597551D}">
- <File Id="fil80DCC30A64C4A730941AEE2ED0EE1BDB" KeyPath="yes" Source="fio\usr\include\dlfcn.h" />
- </Component>
- <Component Id="cmp3AE55037E089FE28471BE29052C87698" Guid="{CA357DFE-C09C-4D43-AA75-F9F6D42A2990}">
- <File Id="fil25B35C9FDE7519383822E57795699371" KeyPath="yes" Source="fio\usr\include\elf.h" />
- </Component>
- <Component Id="cmp1B4C0DAA12C9029608E590B6EA14C980" Guid="{B8B200F1-98F5-4659-B78E-0D06A070B579}">
- <File Id="fil2596B37640762DBE6C3FEEDB1FEC07F4" KeyPath="yes" Source="fio\usr\include\endian.h" />
- </Component>
- <Component Id="cmp9B1C50AE432207E7A0D63A02B2044D6A" Guid="{B621C51A-F3AD-488D-8F9F-BF3AAAD98CE1}">
- <File Id="fil2B6E4CBEE0DEAC30DA2DD1AFFD59301C" KeyPath="yes" Source="fio\usr\include\envlock.h" />
- </Component>
- <Component Id="cmp55A9AAAA4AE0425DED8DAAFF871EAAFB" Guid="{3624B12F-1060-48AB-8E31-B335BEAFBF76}">
- <File Id="filCC9A6CC06AECB948B84871CA5C7AC938" KeyPath="yes" Source="fio\usr\include\envz.h" />
- </Component>
- <Component Id="cmp24310EB9E6D10685403E5EE7B4E5C19D" Guid="{BB2F8B48-531C-44BE-A4B7-275CE583E3F1}">
- <File Id="filAD75D780A88C387AA0C2E49CD1531907" KeyPath="yes" Source="fio\usr\include\err.h" />
- </Component>
- <Component Id="cmp406DAF5ACC5681E9749DB35D5DDF201C" Guid="{CCAACA35-D1DE-4223-AF45-E438F87A9565}">
- <File Id="filB6AC573B1E98B9445FED777EBE64C660" KeyPath="yes" Source="fio\usr\include\errno.h" />
- </Component>
- <Component Id="cmpFA0C51CABAB3BC73ECBB6AF2D11BEAFE" Guid="{FF4FA758-BD17-4C2F-A638-1F85A5CDEF64}">
- <File Id="filD8D9484C4B1574F49238DC26686472C6" KeyPath="yes" Source="fio\usr\include\exceptions.h" />
- </Component>
- <Component Id="cmpE74C82C4D97D58E2391C3B53D4523C91" Guid="{DD1F3E51-E759-4962-B5F5-94D518CFC880}">
- <File Id="fil03B87AF954493A00796AF0AC65B5D7D5" KeyPath="yes" Source="fio\usr\include\fastmath.h" />
- </Component>
- <Component Id="cmpC51F920DA06647996BB0DE3A75EAFC34" Guid="{6E3A318D-EA15-4F8C-9C4C-517F8D123CE0}">
- <File Id="fil98A4B495A42FE8EA1D2AE766D850A371" KeyPath="yes" Source="fio\usr\include\fcntl.h" />
- </Component>
- <Component Id="cmp89B9042AEFA9D13118FB931EEAEBA5E2" Guid="{13D6E3CF-18B2-4E70-A2C3-C64D7EB4D5F1}">
- <File Id="filDEECA15C64511F40BD6BC4A6C0A68838" KeyPath="yes" Source="fio\usr\include\features.h" />
- </Component>
- <Component Id="cmp62C1F875BD8F1EBBD854C8EE4158D68C" Guid="{879F9D47-9AB5-4CCE-A7C8-49905E8C3802}">
- <File Id="fil9EE82C507B86080BA5E3D38001BAC95E" KeyPath="yes" Source="fio\usr\include\fnmatch.h" />
- </Component>
- <Component Id="cmpC4BA935E1232DB9DB4AE7D1128397B8F" Guid="{86191BB7-7E3F-434E-85CC-D60D73BF3066}">
- <File Id="fil55B04640ED31D20E1F9AAF07A7204381" KeyPath="yes" Source="fio\usr\include\fts.h" />
- </Component>
- <Component Id="cmp2CC12B6193F101378B16F56A8FD156FC" Guid="{A8C44251-8670-466A-8794-9C87FB65D960}">
- <File Id="fil9749DF2FD0C11823A00575F2F3C2D54B" KeyPath="yes" Source="fio\usr\include\ftw.h" />
- </Component>
- <Component Id="cmp4EB5D43ECA14B9D3E5E5D60CCB5D14C4" Guid="{1379E221-3B27-4D97-A5DF-D52F2438B983}">
- <File Id="fil61E0CA6CFA3F6F5BFC8AE1461CF2A17D" KeyPath="yes" Source="fio\usr\include\getopt.h" />
- </Component>
- <Component Id="cmp6C61D942558743FF8A0EC7882FF7CA49" Guid="{D5519900-4CE2-4A2D-9DAE-BCEAB420EAD7}">
- <File Id="filB5594BA11A7A15774B09991178763CB6" KeyPath="yes" Source="fio\usr\include\glob.h" />
- </Component>
- <Component Id="cmp13B88945603E91FA8847C6DE9CA5D696" Guid="{022BFB68-83FC-4069-B4B3-3CE975783C7B}">
- <File Id="fil77B370DEDA27CBC71324BE00562E642B" KeyPath="yes" Source="fio\usr\include\grp.h" />
- </Component>
- <Component Id="cmpC7A0173B2C05DBB533A0034C67A7E0AD" Guid="{62B8BF80-5E9C-4F76-8262-000DD9E609C2}">
- <File Id="fil3B93C91888064E74BAB8A60AAEC148F3" KeyPath="yes" Source="fio\usr\include\icmp.h" />
- </Component>
- <Component Id="cmpE6633D73A2B8BB2B2D2DE392508B3000" Guid="{2F881FD8-1973-45ED-9346-7C6085670E1F}">
- <File Id="fil5CF714EDCC714CA7E1557252F1187266" KeyPath="yes" Source="fio\usr\include\ieeefp.h" />
- </Component>
- <Component Id="cmp94FB8AE08A5853FB0F5130A7335E2925" Guid="{60D91CEF-76F1-42A4-B821-4D69D2918D28}">
- <File Id="filB1A8D5E20AE8B80864471A67EAE7D19F" KeyPath="yes" Source="fio\usr\include\ifaddrs.h" />
- </Component>
- <Component Id="cmp400AA524B360706F18E0CFBB6187BF85" Guid="{1BBDF4B1-C7F2-4F57-B994-BCBDC03E38CD}">
- <File Id="fil97989877DC4F6EAA1FE52C7985D35333" KeyPath="yes" Source="fio\usr\include\inttypes.h" />
- </Component>
- <Component Id="cmp491EDDBF1686C27296740F1AA48A26AC" Guid="{607DDA3A-31CD-4523-8DA1-C07CA54FD6A7}">
- <File Id="fil495C535A98B00C313B29F5BBFF526A5B" KeyPath="yes" Source="fio\usr\include\io.h" />
- </Component>
- <Component Id="cmp2F668797A80E0E4F6A5204404396D069" Guid="{DD979C0E-22E9-475D-838D-2F19DAC365F0}">
- <File Id="fil5272363A7CE07B665A2C02FBABE681E9" KeyPath="yes" Source="fio\usr\include\langinfo.h" />
- </Component>
- <Component Id="cmp6A4AFCEF028452F7F8EC04B77ECD8CE9" Guid="{C643DF09-2749-4D5B-945C-C92E3732BADA}">
- <File Id="fil34AA42DBE751278E40696622C183704F" KeyPath="yes" Source="fio\usr\include\lastlog.h" />
- </Component>
- <Component Id="cmpEB0D686AE0A00BD2CE587597CDC1EE26" Guid="{C518A99B-A4D3-4505-B173-5F79BF01311A}">
- <File Id="fil71D4E867109EF6A5D141CFFADBD6487A" KeyPath="yes" Source="fio\usr\include\libgen.h" />
- </Component>
- <Component Id="cmp7B807A2B96A8E193A204170EAE308A62" Guid="{2467C903-A81D-4305-A5BC-5FD0D6A0BA2D}">
- <File Id="fil9CB84D9073814A24356E34C29A7CCF49" KeyPath="yes" Source="fio\usr\include\libintl.h" />
- </Component>
- <Component Id="cmp61EFA46E6E46FF1850C6016FEAE996D8" Guid="{8C1F3455-7F69-4AB9-B73F-B56A497DF336}">
- <File Id="filF0A04D2CA4C354D3EBD513FB2D2C6D5F" KeyPath="yes" Source="fio\usr\include\limits.h" />
- </Component>
- <Component Id="cmpD4B05D73835E8B9695C4EFD54CCEE837" Guid="{BD54A285-FB1C-4E31-B348-4333146BB20D}">
- <File Id="fil12146F4393A9F98A1D2FA3F87BF5EA25" KeyPath="yes" Source="fio\usr\include\locale.h" />
- </Component>
- <Component Id="cmpEB2FD14015CEC067166DAEE3B47B3D7B" Guid="{5E8CDC43-49B5-4288-B5A9-4EC5DA31BD4C}">
- <File Id="fil6722D665F1688F00C4CDE1BED4CD95CE" KeyPath="yes" Source="fio\usr\include\malloc.h" />
- </Component>
- <Component Id="cmp2E3E16AC202365790F54AC83041A713C" Guid="{DAA87360-BA50-4FBA-A9FC-5CC1936ACBE1}">
- <File Id="fil467D530AE81FFE669EE0DA2DBDE07B38" KeyPath="yes" Source="fio\usr\include\mapi.h" />
- </Component>
- <Component Id="cmp482F633124E4BFDF3EF539F4CCCB09A1" Guid="{221BBEC9-9EEF-4090-ADA6-5CDB2DA0A200}">
- <File Id="fil6CBD0C188DBEB7A9A6476F59E2DED43A" KeyPath="yes" Source="fio\usr\include\math.h" />
- </Component>
- <Component Id="cmpA57DB5C931F4FAC774698A7736B234A0" Guid="{B48A0A6C-4794-4E5D-8EF9-3343344D8993}">
- <File Id="filCF802D3B9C1E0F09EF862EC946AAC5BD" KeyPath="yes" Source="fio\usr\include\memory.h" />
- </Component>
- <Component Id="cmp5719F926F15F5F87B0D05A809DD0632F" Guid="{82B4AAB7-B733-4723-B594-1A1A3A37532C}">
- <File Id="filE5E33CA538573CD71A47DC16A557F79B" KeyPath="yes" Source="fio\usr\include\mntent.h" />
- </Component>
- <Component Id="cmpD89BE0D9998D3B8F081C3D6CBF701399" Guid="{5EFC6B56-CC31-42F9-A7C9-58C528AD6E35}">
- <File Id="fil1A53E85142759EB571C3D13959DE883B" KeyPath="yes" Source="fio\usr\include\monetary.h" />
- </Component>
- <Component Id="cmpD9F0BA447E01A9CDD8CFF691D1400B3B" Guid="{0FD4D57B-16B8-48AC-B70F-B310243EE532}">
- <File Id="filD73D8CF4736617F9871B484A4388C529" KeyPath="yes" Source="fio\usr\include\mqueue.h" />
- </Component>
- <Component Id="cmp2B87C2672CA7AB121E654487EA7B2151" Guid="{6D13902D-8175-4C67-AA8C-9E51C86E7519}">
- <File Id="filE72B7B2354E661EDDBE6B491D405108C" KeyPath="yes" Source="fio\usr\include\netdb.h" />
- </Component>
- <Component Id="cmpA17689C4577C6F04F6FDE871C671E17D" Guid="{A6EAC527-56E8-4019-AFBA-4C0C9371CBD6}">
- <File Id="filF67969414B9C8EE76242AFC7EDBCDDF4" KeyPath="yes" Source="fio\usr\include\newlib.h" />
- </Component>
- <Component Id="cmp56E4BD630A74DBA6AEC7059B43062CDB" Guid="{90C1AE7B-4837-4A5B-B2FE-95AF0C637691}">
- <File Id="filCBE60AF17CC299FB2722E43409C9CF79" KeyPath="yes" Source="fio\usr\include\paths.h" />
- </Component>
- <Component Id="cmpC55D8BAC58A99C31B8CCD7229BAFF7C8" Guid="{7EC1B95F-ECB3-4D5D-B8DA-DE68FFC97E12}">
- <File Id="fil668EB6D8D8C342FE2F85B0680CECA645" KeyPath="yes" Source="fio\usr\include\poll.h" />
- </Component>
- <Component Id="cmp3401B9AF5483DBC68B11A7A81C680872" Guid="{E6871237-EE38-45AB-A2CA-4808DEAEF723}">
- <File Id="fil6F3CEC0EF2A908D138BBE34F4E6F2862" KeyPath="yes" Source="fio\usr\include\process.h" />
- </Component>
- <Component Id="cmp5BB248092EF52468748116E2E3BE0A5F" Guid="{EA0E3D79-9E0C-42CF-8F05-8E2FD1398A45}">
- <File Id="fil700F38194CBA79EADF8FF818511B7620" KeyPath="yes" Source="fio\usr\include\pthread.h" />
- </Component>
- <Component Id="cmp5794125BE4CAEA5ADCE4F397BD392BE2" Guid="{6F3668F7-E285-46A0-A3FC-EB2E6A720D62}">
- <File Id="fil0644AFBA2D18B2A6E007D7C954827417" KeyPath="yes" Source="fio\usr\include\pty.h" />
- </Component>
- <Component Id="cmp48B46A808141623B2DC49149536079B4" Guid="{D19FDEF8-6FF2-4D83-9E52-2473D3435D84}">
- <File Id="fil43302BC309D17942E1381813323054E1" KeyPath="yes" Source="fio\usr\include\pwd.h" />
- </Component>
- <Component Id="cmp5BF4C810B044B7059F493698A46D7161" Guid="{4B443DB0-1BC1-40CF-90F1-47A6C85FF1AE}">
- <File Id="fil11540F896C1DBD666D67C10C9D1CAF6C" KeyPath="yes" Source="fio\usr\include\reent.h" />
- </Component>
- <Component Id="cmp115FF43270F05D067AED45D2FB446231" Guid="{02102D84-97F6-4BB4-919B-168AA269DF7E}">
- <File Id="filC0EB29B6495F8B56C91102773F501CD0" KeyPath="yes" Source="fio\usr\include\regdef.h" />
- </Component>
- <Component Id="cmpBFABFC6D8EB9EC10FD65F51C131676F4" Guid="{E082B56D-A178-4BC2-B72D-031CF1BC9EDC}">
- <File Id="filD2659B943202186435C33146218B3ABD" KeyPath="yes" Source="fio\usr\include\regex.h" />
- </Component>
- <Component Id="cmp382FAD0A72633BF08A6804D2A5202E98" Guid="{5770829B-6A4E-4539-A144-61ADBEC8A96F}">
- <File Id="fil2415C9ADB8340DAF8EF2620621DE16B7" KeyPath="yes" Source="fio\usr\include\resolv.h" />
- </Component>
- <Component Id="cmpD163292C038C34065594B4E77BFF33A2" Guid="{68F0A52A-1EAE-4511-81F2-E8E4FD7850AC}">
- <File Id="filE16BA9DE99D3F9996B0AA83E8FA5E584" KeyPath="yes" Source="fio\usr\include\sched.h" />
- </Component>
- <Component Id="cmpF0F29D900B4E00FAA19F4CB6486BEA47" Guid="{0A6B5284-707B-43EF-97CA-C82790254BDD}">
- <File Id="fil3400958C3919944E35CB30B7DB44365D" KeyPath="yes" Source="fio\usr\include\search.h" />
- </Component>
- <Component Id="cmp556A3B974EEE810A03978EA79BD8889B" Guid="{8946C04E-9823-4E30-8A81-A13E86A858EB}">
- <File Id="fil3598DDF310A4C8F047091298C1160C8B" KeyPath="yes" Source="fio\usr\include\semaphore.h" />
- </Component>
- <Component Id="cmpD5C43666DAAC01058775F1A1DF4A1351" Guid="{AEFD7F3D-351C-4F9D-8E31-1982BE54AF78}">
- <File Id="filD53B0DB471438C22E24BFD4C077CB6DB" KeyPath="yes" Source="fio\usr\include\setjmp.h" />
- </Component>
- <Component Id="cmp7B9C53228D89F03CCE2FBC8E5A556CE0" Guid="{FF831D73-702A-4A6D-AF5C-481803409540}">
- <File Id="fil2F71B6A1C9E6C30FB911FD353CB8B5EC" KeyPath="yes" Source="fio\usr\include\signal.h" />
- </Component>
- <Component Id="cmp4C3D64DFE9637AB4C6FDEEF53DE1785A" Guid="{CC7863C0-A04E-43C8-9B89-A9BCAFE5319C}">
- <File Id="filA0A28E20AA0732DCC8DD77B30A21DC18" KeyPath="yes" Source="fio\usr\include\stdint.h" />
- </Component>
- <Component Id="cmp1BFDCE24BACE81B63AC6CE347C00F336" Guid="{922DDC80-5AC8-4E83-A423-A65243EA0FE9}">
- <File Id="filC719E3404B29FC97548D92B825BAC3C4" KeyPath="yes" Source="fio\usr\include\stdio.h" />
- </Component>
- <Component Id="cmp2AB753F664AE3D1820CA6A9D8AA0720D" Guid="{4CCBA730-DC64-4E5E-8991-3DCCC5BEECBB}">
- <File Id="fil4B139183CD3E31828E2226E270E18B13" KeyPath="yes" Source="fio\usr\include\stdlib.h" />
- </Component>
- <Component Id="cmp1C5962578EA66347436B62786FB38F7F" Guid="{1B5CB774-9BC7-4E77-8CEB-31448633FA77}">
- <File Id="filDE879221C8C3F5E315092F71550CE9EA" KeyPath="yes" Source="fio\usr\include\string.h" />
- </Component>
- <Component Id="cmpAA4E7AD4C78A3CDA612794AD073417CA" Guid="{FC02774D-C06C-46E4-B24F-66535257642C}">
- <File Id="fil6424958110FB49654CC9E000DE3C1DB0" KeyPath="yes" Source="fio\usr\include\strings.h" />
- </Component>
- <Component Id="cmpE2BDAED046D587A13882C9D98A92D9EF" Guid="{BCB896F0-A71F-4796-B0B8-47CBA801C713}">
- <File Id="filD2D034B2419D4829B3574041D08DA271" KeyPath="yes" Source="fio\usr\include\sysexits.h" />
- </Component>
- <Component Id="cmpA8F058A63EC892446D9DB1C080747F10" Guid="{F8EF9E2E-DF52-40C1-8F17-55D643738462}">
- <File Id="filDBDC92DC2440D399AA1E442B3E424998" KeyPath="yes" Source="fio\usr\include\syslog.h" />
- </Component>
- <Component Id="cmpEC8F21BC65A63F88407DFE79A3CECE8B" Guid="{2C21C258-A8AF-4A16-BB2B-8D85EE54E75F}">
- <File Id="filEA1AFA023C911DDDB981C07D479BC5F2" KeyPath="yes" Source="fio\usr\include\tar.h" />
- </Component>
- <Component Id="cmp686F10E3C0B314662143B94385E3086B" Guid="{33EA4799-B6C0-40B4-93A2-3FAA2CF910D0}">
- <File Id="fil1865E228AF86682090E1063E7A8ED406" KeyPath="yes" Source="fio\usr\include\termio.h" />
- </Component>
- <Component Id="cmpC5EEE867F02E1668FF295ADC505D1075" Guid="{8166EC0E-6807-43C1-8ABB-944334EC3906}">
- <File Id="fil3AABE878CEA5BB4649AA35B9F4E21D3A" KeyPath="yes" Source="fio\usr\include\termios.h" />
- </Component>
- <Component Id="cmp74D28CF0BE668295168D2CB1B3059C4B" Guid="{20F2D668-C41D-40B9-8BC3-8CDE3208C9FC}">
- <File Id="filA81591BB0225D5DAAA9B71F0A7B8AA98" KeyPath="yes" Source="fio\usr\include\time.h" />
- </Component>
- <Component Id="cmp800A75D00FC6856184B94E7AC8298C21" Guid="{9C87A4D7-8BF4-4144-B492-A5EA705CBC4E}">
- <File Id="filEBE85A806238BF2327F92DB8A2FBA612" KeyPath="yes" Source="fio\usr\include\tzfile.h" />
- </Component>
- <Component Id="cmp0DD4E6A5004F9CE4F1104A51F4FBFDCE" Guid="{C62A956B-5B4C-490B-9441-E2E6926C0625}">
- <File Id="filEEFF09ED35F688D6AC371230A26FBCDC" KeyPath="yes" Source="fio\usr\include\unistd.h" />
- </Component>
- <Component Id="cmp35B09D8B4715F962FCF20D382BC06559" Guid="{C92A852E-4BE4-4DF7-9898-D5A9548F8CDB}">
- <File Id="fil065EA581316D7846A878D6FA1064B029" KeyPath="yes" Source="fio\usr\include\utime.h" />
- </Component>
- <Component Id="cmp18B1142501606AC37DCC960188E5EC01" Guid="{D38DD2C4-305D-4F29-940B-940DD99B5E28}">
- <File Id="fil7EE512D1849D7E2943408D3127122690" KeyPath="yes" Source="fio\usr\include\utmp.h" />
- </Component>
- <Component Id="cmpB3ACBC1FA182B17BFD39EF3B91A7FB38" Guid="{3DDAF6E1-6EA1-4C5E-892C-3494A170E55D}">
- <File Id="fil63DA2C401EAF60207F6BC2FBCDC70AFA" KeyPath="yes" Source="fio\usr\include\utmpx.h" />
- </Component>
- <Component Id="cmp8A4D7E8A1C8DA2299E74EFCBBA888D63" Guid="{3F92524C-E298-4E23-A001-1DBEE8A2C94E}">
- <File Id="fil115C6B45C642846B1D355C4FFBC34482" KeyPath="yes" Source="fio\usr\include\wait.h" />
- </Component>
- <Component Id="cmp2A60F7EB6DE79998696865CD572CE185" Guid="{FAE156E7-9765-4B11-BBE1-68DE7D2B39B4}">
- <File Id="filDACABE60E7F0CCEBFB329370627BE232" KeyPath="yes" Source="fio\usr\include\wchar.h" />
- </Component>
- <Component Id="cmp669917280AF6E2B7558655993D95303F" Guid="{151BD6A3-6D29-4BE1-BF02-F9E49E364367}">
- <File Id="filCE7165E498927385764511693A039B4D" KeyPath="yes" Source="fio\usr\include\wctype.h" />
- </Component>
- <Component Id="cmp3B911F217024D529D55F9B69EE71394A" Guid="{2B16FBE4-5F95-47AD-B29D-372D867738DA}">
- <File Id="filCA634C5859563031C4A19D4015F4DEAB" KeyPath="yes" Source="fio\usr\include\wordexp.h" />
- </Component>
- <Component Id="cmp1F31573F111BAB147E72268797559DA8" Guid="{5636668C-59B7-41D8-BD5F-C97F54FE0DAE}">
- <File Id="filA757A37EB1B83B15393876F7C3AD6BA3" KeyPath="yes" Source="fio\usr\include\_ansi.h" />
- </Component>
- <Component Id="cmp1D36355760BEA5611B9D55E584CDEA05" Guid="{9B342770-2DD3-4925-93B4-E88729DF8A72}">
- <File Id="fil852B91A9504B518BB66072799DBDEE4A" KeyPath="yes" Source="fio\usr\include\_syslist.h" />
- </Component>
- <Directory Id="dir632C0DE2D2A362624EE0147AB4AD886B" Name="arpa">
- <Component Id="cmp6044289D03BF9589EE5E586F5089BB60" Guid="{30F862B6-21F9-4C03-AA29-E7FDBD3141AB}">
- <File Id="fil8045DDDB1EF04FC4B38CE6D4B17FF8D3" KeyPath="yes" Source="fio\usr\include\arpa\ftp.h" />
- </Component>
- <Component Id="cmp333D8B89DBAFCFDC993568D70FEBA407" Guid="{266C427E-CF32-436B-8EB9-986934D1FFE5}">
- <File Id="fil9AB050E2A0F0EA6630A5E30463AFF790" KeyPath="yes" Source="fio\usr\include\arpa\inet.h" />
- </Component>
- <Component Id="cmpDB55AA0658DF39D221B16713E5B5AC38" Guid="{8DBFDDDF-539D-486D-A8ED-A1F8702ABA02}">
- <File Id="filDAF2AF5BF1D89390E480A32EB85B0389" KeyPath="yes" Source="fio\usr\include\arpa\nameser.h" />
- </Component>
- <Component Id="cmpA7CD8D5CFDE5F4445783F98C4924CC97" Guid="{48FD0F66-8153-4404-94EF-F8B16E373A8F}">
- <File Id="filF1A8859808AC590AB9EF7CC2D88A3B6C" KeyPath="yes" Source="fio\usr\include\arpa\nameser_compat.h" />
- </Component>
- <Component Id="cmp230F3DD0CF8469E2509846E2E031DA93" Guid="{C77308B1-D73A-408B-841C-CFE2FFB87D79}">
- <File Id="fil7C744E5BA503AEDD623E86F5E27B3A12" KeyPath="yes" Source="fio\usr\include\arpa\telnet.h" />
- </Component>
- </Directory>
- <Directory Id="dir1B6A54F10FA5A26FB3B627649C5A3547" Name="asm">
- <Component Id="cmpE9461F3F401E05CFE36065E21F155CC7" Guid="{B0EEBA78-9149-4895-876B-88400F7B5D21}">
- <File Id="fil8007550267D3B9B7B1247D9A47162E08" KeyPath="yes" Source="fio\usr\include\asm\byteorder.h" />
- </Component>
- <Component Id="cmp12225D763F5594D6DDBEF49F4246B35B" Guid="{8515E944-3994-402D-B4FF-C5DC9E1B1866}">
- <File Id="fil859E107697A2FAF77579A0A3A7F7D38D" KeyPath="yes" Source="fio\usr\include\asm\socket.h" />
- </Component>
- <Component Id="cmp8E638773F3A70694A938D1BDFC1DC065" Guid="{F8923E7B-BF7F-4088-8A42-880C1D162652}">
- <File Id="filD554C5BE05FA8F21053A13AFC5FE7D17" KeyPath="yes" Source="fio\usr\include\asm\types.h" />
- </Component>
- </Directory>
- <Directory Id="dir21547E4E6F96866947EE6B7E7E5D166A" Name="attr">
- <Component Id="cmp4F79A46EF0F0BCD8A220DA8861251C5F" Guid="{52A8EDBE-00B5-43D8-974B-541CEFA5AB67}">
- <File Id="fil4D2782B0AF7DF77CD4AAA1DF7E3A87F4" KeyPath="yes" Source="fio\usr\include\attr\xattr.h" />
- </Component>
- </Directory>
- <Directory Id="dir1D3EEBFE411D31B8D1DF9B1DDCAACA60" Name="bits">
- <Component Id="cmp7555DEFCB238FF88B6404820CE460D3F" Guid="{4429FC92-9DEB-4907-9924-DF3411EA31A9}">
- <File Id="filD72AA51A1EE4080493733D0665930B00" KeyPath="yes" Source="fio\usr\include\bits\wordsize.h" />
- </Component>
- </Directory>
- <Directory Id="dirEAE8F43840BFB2F7482662133543C695" Name="cygwin">
- <Component Id="cmp9BAC9F81CE675AC17A0D5D4985A00D22" Guid="{AD25BF5E-0D1B-4AEB-8A89-8CE43D2A87BF}">
- <File Id="fil5F3175E5B7DC0A3C57F499A9F575A5AE" KeyPath="yes" Source="fio\usr\include\cygwin\acl.h" />
- </Component>
- <Component Id="cmpE8A23D7C0CE5C9522A92FAB46A95EE8E" Guid="{62D39A4F-CD55-47BC-9DCE-38AA51008941}">
- <File Id="fil2AAFFCEF647D8D2F4C9C0774C57C4384" KeyPath="yes" Source="fio\usr\include\cygwin\config.h" />
- </Component>
- <Component Id="cmp749A804776B969A8DBD1E08A98F62315" Guid="{0607CEC7-F1A1-4875-9D70-091D8902FCF3}">
- <File Id="fil51A8D578C284134BB7EFB80097B92D76" KeyPath="yes" Source="fio\usr\include\cygwin\core_dump.h" />
- </Component>
- <Component Id="cmpB9D944B25A281280C863D419FF6644CD" Guid="{6F2794ED-0159-458C-8458-2E25C138AAD2}">
- <File Id="fil63E4351DFBA125DD7E02A0535FDB5B2C" KeyPath="yes" Source="fio\usr\include\cygwin\cygwin_dll.h" />
- </Component>
- <Component Id="cmpA9B8CAE9644DB244236C7E0653CB1959" Guid="{DB31465E-18CA-4712-83E7-29ED927DCC07}">
- <File Id="fil9DAD2FE411A3BA6A754EF437C5ED74D9" KeyPath="yes" Source="fio\usr\include\cygwin\fs.h" />
- </Component>
- <Component Id="cmpA715B241C2FD0B001F3A9B0DC8CD3BA9" Guid="{86AA3293-BCAC-4852-8F7C-7AEAD653816E}">
- <File Id="filB01B28FB8A8EF7C7E546BF9C50CBED84" KeyPath="yes" Source="fio\usr\include\cygwin\grp.h" />
- </Component>
- <Component Id="cmp47A6A717A24E4D5DFB4DF4BFDDC5F379" Guid="{F2DC7FF1-B838-4D48-9619-42E91D2F914D}">
- <File Id="fil00A97E4396390FC03807DD36ADBCF7F2" KeyPath="yes" Source="fio\usr\include\cygwin\hdreg.h" />
- </Component>
- <Component Id="cmp9A022EB2F6C3035C1709DC318E668A55" Guid="{26842EFF-6111-43FA-BE44-510A7F839C36}">
- <File Id="filF8C3824843E3D5EDF949712BC530CDF3" KeyPath="yes" Source="fio\usr\include\cygwin\icmp.h" />
- </Component>
- <Component Id="cmp31E9A918A90F828DD0EC5487330531AE" Guid="{EAF2FB3B-E4A3-4577-917A-F6B09115A946}">
- <File Id="fil871736449943E2F357B2B8779AE2F1EB" KeyPath="yes" Source="fio\usr\include\cygwin\if.h" />
- </Component>
- <Component Id="cmp4472DBB867B3CE8F000C7C86371509B4" Guid="{88DE5132-4A7A-4D89-B965-0E85E74E4676}">
- <File Id="filAEC6CA00F9D64432B72E245BCE6173C5" KeyPath="yes" Source="fio\usr\include\cygwin\in.h" />
- </Component>
- <Component Id="cmp7A5F624AF735BD85996535A6C5A8777F" Guid="{A5008FC9-D174-49E8-B6FB-3F150C616B4B}">
- <File Id="filECDB8546A74C2F9B490446D8D81BF81C" KeyPath="yes" Source="fio\usr\include\cygwin\in6.h" />
- </Component>
- <Component Id="cmp847DD473710A9435F1BADF29EA930EDF" Guid="{3274D089-9875-4DB8-B27D-F6A3F9327E5B}">
- <File Id="fil8B6B12A57E32295583FC26DC1A338345" KeyPath="yes" Source="fio\usr\include\cygwin\in_systm.h" />
- </Component>
- <Component Id="cmp99750CA4096AA10B1F55CD408D5BA9D4" Guid="{20B3CDA3-60A4-42BD-9956-E7CFBDEB3BC3}">
- <File Id="fil313D5A30CCA589C3FEBAA220A36CAB4B" KeyPath="yes" Source="fio\usr\include\cygwin\ipc.h" />
- </Component>
- <Component Id="cmp9DC0682D1632A8F5085693A7C6AC1856" Guid="{2A4B0C69-A88C-4C69-8AF3-FD9D8D52A62C}">
- <File Id="fil33C2201D1541511A37389948AE29990D" KeyPath="yes" Source="fio\usr\include\cygwin\kd.h" />
- </Component>
- <Component Id="cmp7AEE8D440198C468945B3F6654812B48" Guid="{B83801D0-14FE-454A-861C-FF51DA7A9DEC}">
- <File Id="fil3DEB6F5FBDAD7BA7E20D8F66C01EDD0D" KeyPath="yes" Source="fio\usr\include\cygwin\msg.h" />
- </Component>
- <Component Id="cmp16490FC27558A8D99B0A64172CE63368" Guid="{A22423F0-FDAC-43EF-8D3E-D6449EB2FDD0}">
- <File Id="fil373D5E9C120DDAD20B0B0EF5AB465142" KeyPath="yes" Source="fio\usr\include\cygwin\mtio.h" />
- </Component>
- <Component Id="cmp7AD4D70436F3C5DE1779F55E77164088" Guid="{BFD3DC53-26DC-4C14-836D-AAD4FC92180C}">
- <File Id="filEA75A86614CE73B8760AA82B9D8F952A" KeyPath="yes" Source="fio\usr\include\cygwin\rdevio.h" />
- </Component>
- <Component Id="cmp2BC2593B34D08E3D32ECDDBFCC1F5D59" Guid="{8F1D40E8-CC4D-4FDE-B85E-1909557293CB}">
- <File Id="filC4715EA207D8624DB4300EEEB984951A" KeyPath="yes" Source="fio\usr\include\cygwin\sem.h" />
- </Component>
- <Component Id="cmp3E363CCEBA17B1177B2C194EDB3D7088" Guid="{B35B14D5-A432-46E0-9873-5B9CD47FB268}">
- <File Id="fil1C15CE05CA0847E1F3C2ED2E0EECF5ED" KeyPath="yes" Source="fio\usr\include\cygwin\shm.h" />
- </Component>
- <Component Id="cmp39A14B71F090084BEB11C3E8182DE242" Guid="{2F0BC9F7-AF6F-4839-83A7-CFF1AF0F806F}">
- <File Id="filA0936945DA2C2FC90CA21C81579CC228" KeyPath="yes" Source="fio\usr\include\cygwin\signal.h" />
- </Component>
- <Component Id="cmpDBA4209A90DA9CBE0D409431087467E7" Guid="{17207C44-E033-453C-88F4-8E699D7DC0D2}">
- <File Id="filEC6AF14717B82C4B67F76998E36FBAC3" KeyPath="yes" Source="fio\usr\include\cygwin\socket.h" />
- </Component>
- <Component Id="cmp9295A7893CA598FED493135BD3C04039" Guid="{8E90FD3C-3F64-4182-944D-68D34F682595}">
- <File Id="filF5B3589B675A35B3B49D8B2CD0BF728E" KeyPath="yes" Source="fio\usr\include\cygwin\sockios.h" />
- </Component>
- <Component Id="cmp68CEE5A6234244AB833AF12EBB1E448E" Guid="{90DA552B-EFCB-4918-9028-3087D4494CC8}">
- <File Id="filCF58873F556FA67631FA0D4F7944D128" KeyPath="yes" Source="fio\usr\include\cygwin\stat.h" />
- </Component>
- <Component Id="cmp24C363C2F91F202F724A112FEA192A93" Guid="{CF0BAA13-C891-4A20-A3AD-9DA31813E5BB}">
- <File Id="fil8CCC14775025473F6FEC2624A587EA4F" KeyPath="yes" Source="fio\usr\include\cygwin\stdlib.h" />
- </Component>
- <Component Id="cmp5CF535747E977D8D5D7615658716878E" Guid="{0752084C-6524-4C71-AA51-366FAFD0E9D5}">
- <File Id="fil1662C4F4DB28DB00B41A6EA133BD4852" KeyPath="yes" Source="fio\usr\include\cygwin\sysproto.h" />
- </Component>
- <Component Id="cmpC5B2C3D8C9E192C6B3DF65B507AB963D" Guid="{40DF66E1-0A0A-4306-9DA0-61B4617C1942}">
- <File Id="filE125876CB440C93EE33AD9C6D1B08464" KeyPath="yes" Source="fio\usr\include\cygwin\sys_time.h" />
- </Component>
- <Component Id="cmp7C6F2F13D011CA956CAECEC176BE3006" Guid="{BE84C837-7249-40C3-AB25-5740C4E6DCAB}">
- <File Id="fil31C805AF77BF77BD9687F370A3CA5F2C" KeyPath="yes" Source="fio\usr\include\cygwin\time.h" />
- </Component>
- <Component Id="cmp0C08370372E3DAB40B9C45DAFD00E3A2" Guid="{9CC27B93-3AF8-4059-93D0-2B6F197FD4E4}">
- <File Id="fil49D7ED6E0634854D476136557FC4D368" KeyPath="yes" Source="fio\usr\include\cygwin\types.h" />
- </Component>
- <Component Id="cmp693CC38272840E53B77165476DA88E39" Guid="{4F7D5D29-C674-4A3E-BB71-AD78789B6164}">
- <File Id="filB375F42FC624672D9EB9F8257C970659" KeyPath="yes" Source="fio\usr\include\cygwin\utmp.h" />
- </Component>
- <Component Id="cmp6C74670D4B8A84D5333272087C99A9E8" Guid="{4D0B537C-F602-4929-9B21-FB8D0E4400D5}">
- <File Id="fil69D564DE1513EB9BB5691D1B117EF9DB" KeyPath="yes" Source="fio\usr\include\cygwin\version.h" />
- </Component>
- <Component Id="cmp3AE568585C175F36A011C1367840A720" Guid="{6D32439E-54C1-409A-BF96-09BD01CAF651}">
- <File Id="fil1AE8BFF04E568F184626CE7BEB7E4A7D" KeyPath="yes" Source="fio\usr\include\cygwin\wait.h" />
- </Component>
- <Component Id="cmp786668D7CCDFA35ED5628BDAE5B7DFC0" Guid="{C06BD1B2-D954-4AF7-A08C-D3F3A08675CC}">
- <File Id="filB9823187A5A408BA969929E146E00811" KeyPath="yes" Source="fio\usr\include\cygwin\_types.h" />
- </Component>
- </Directory>
- <Directory Id="dirA516E856631DE525ABBED38152E116C7" Name="machine">
- <Component Id="cmpF929546B390257C1EBB07C7682EA318B" Guid="{4EFDF9C1-6057-49AF-AECA-5D4650B6641D}">
- <File Id="filC7B821AA77B29171E5158FC7B3757A41" KeyPath="yes" Source="fio\usr\include\machine\ansi.h" />
- </Component>
- <Component Id="cmp8890B6744B45143457889399F0E81804" Guid="{95DA59C1-5556-4DD1-9DB0-7F82885D1C56}">
- <File Id="fil1EB429D95D6A3C130BCCA3200F2D6792" KeyPath="yes" Source="fio\usr\include\machine\endian.h" />
- </Component>
- <Component Id="cmp694D897CDB423DAED687442CCE69A19F" Guid="{4D9DC9AA-6259-434C-B307-333DCEC71A15}">
- <File Id="fil8FF10473F71E8D1044871803C8A4A3BC" KeyPath="yes" Source="fio\usr\include\machine\fastmath.h" />
- </Component>
- <Component Id="cmpDABB47F88F30FA7A09AFF367CF4F5C72" Guid="{14944BA9-A138-4787-A2B2-A1B70FF8309D}">
- <File Id="fil390E264C451B6BA7F4C6F1CA09B77612" KeyPath="yes" Source="fio\usr\include\machine\ieeefp.h" />
- </Component>
- <Component Id="cmpFE6C8F3453037D4D208F1C021DD1D9F7" Guid="{D67A244A-413E-4D88-85AE-06311D7B0221}">
- <File Id="fil1CB8B9CCFC88EBFB7D237804F90321B1" KeyPath="yes" Source="fio\usr\include\machine\malloc.h" />
- </Component>
- <Component Id="cmp4A2354287F14ADC4C753ADC730E122DF" Guid="{5AEB44FD-0A22-4F9A-9A5C-01372FEC6C39}">
- <File Id="filDF0345DA4627DAF2EEBC318008009540" KeyPath="yes" Source="fio\usr\include\machine\param.h" />
- </Component>
- <Component Id="cmp2306009E9E2CDAB178779C7BAE4A281D" Guid="{DD2C2012-9D48-427B-9E67-5B41BD88EA19}">
- <File Id="fil3D90DAE4DB64A85CAC5B4A9074A29882" KeyPath="yes" Source="fio\usr\include\machine\setjmp-dj.h" />
- </Component>
- <Component Id="cmp6F39CDFBCE6620223BC7042CCADBDA53" Guid="{4B3BA50A-EAE5-4EE4-9B6B-787F2902B12D}">
- <File Id="filDCFC32C22A91982E283D98BBF786F16F" KeyPath="yes" Source="fio\usr\include\machine\setjmp.h" />
- </Component>
- <Component Id="cmp80A958A2F46EEAC68254551C1B14C58D" Guid="{345C893D-097C-45B4-A8EB-FA35946FDEB8}">
- <File Id="fil7D2C0F2D8F489B3ABD0E661668E80E75" KeyPath="yes" Source="fio\usr\include\machine\stdlib.h" />
- </Component>
- <Component Id="cmp6472845D73A4481E7C1BA7F0E023600F" Guid="{1A442CB8-8063-4316-BFB7-09B8CF9B3B5E}">
- <File Id="filF1426662A3D7B9ED7CF096F91D550B30" KeyPath="yes" Source="fio\usr\include\machine\termios.h" />
- </Component>
- <Component Id="cmp2B96CD780E6BFAADC71A0A968CE69235" Guid="{2DC9DCC1-99D9-4AE3-9740-C7AE5C74F140}">
- <File Id="filF7780D15859649BE713F22B07C391091" KeyPath="yes" Source="fio\usr\include\machine\time.h" />
- </Component>
- <Component Id="cmpF7801807A6C800FC967425990ED1BF0D" Guid="{D8D392B0-CF0E-444C-8F24-036DF98CE9EB}">
- <File Id="fil411055645B24DAC09D601B9060FECF6F" KeyPath="yes" Source="fio\usr\include\machine\types.h" />
- </Component>
- <Component Id="cmpEC4A43E901FD99AB90DDBE9220E3DE62" Guid="{2115CDB3-5A50-4552-85C5-AAD5FC515AD4}">
- <File Id="filF86E2A6C7259A38CE37EF993E6392D33" KeyPath="yes" Source="fio\usr\include\machine\_default_types.h" />
- </Component>
- <Component Id="cmp5C0801FBE8FC2B6C25853C4D4CA802CC" Guid="{23693613-34D9-4A59-89AF-8BD91ADFD376}">
- <File Id="fil015A12F02AA90821C93A925C2CB13038" KeyPath="yes" Source="fio\usr\include\machine\_types.h" />
- </Component>
- </Directory>
- <Directory Id="dir67B8C8E11700342AE976DE666C0C95A7" Name="net">
- <Component Id="cmpAEA4FEF054FC251C9B1577B4439BA003" Guid="{C32CDB03-E1EB-4EB1-A6B9-24378988F85A}">
- <File Id="fil088939DC1CBA5571F98D958D444582A5" KeyPath="yes" Source="fio\usr\include\net\if.h" />
- </Component>
- </Directory>
- <Directory Id="dirE0D75BC8C71634A992C2C7C20679E2A5" Name="netinet">
- <Component Id="cmpC58A311758788DA88FA8D6EADA88BFAE" Guid="{660A74D2-E403-4800-8060-FAB127280C84}">
- <File Id="filD998DED2972BF60BCAFA2E38BA4D6A83" KeyPath="yes" Source="fio\usr\include\netinet\in.h" />
- </Component>
- <Component Id="cmp2A4831689ACCE30E5D9C01791BEE2DC9" Guid="{8654BA0E-06D4-4C10-8095-0CB16DC3D366}">
- <File Id="fil5389D35C51532EF9C2419D6557E3BD55" KeyPath="yes" Source="fio\usr\include\netinet\in_systm.h" />
- </Component>
- <Component Id="cmp66AD4A5515A40A6BAEF2A5156D549519" Guid="{AF01D95A-D467-445F-8095-9D3D2DDDBDF7}">
- <File Id="fil6749DE4534223851084A162AD3DE5888" KeyPath="yes" Source="fio\usr\include\netinet\ip.h" />
- </Component>
- <Component Id="cmp5C2CDB02B7B992D343DCCFD5834F3229" Guid="{7495190A-B7E2-411D-BAAD-12F883B55D0D}">
- <File Id="fil0CE4A2A3BCA03F5A4D1843BB8EE40629" KeyPath="yes" Source="fio\usr\include\netinet\ip_icmp.h" />
- </Component>
- <Component Id="cmpCC5A237FE58749DAFF0A623FC303AB60" Guid="{6F0114DC-1D37-4B0B-A8FF-B1634A529205}">
- <File Id="fil658791D63D567FD2C91DD4D310A2F853" KeyPath="yes" Source="fio\usr\include\netinet\tcp.h" />
- </Component>
- <Component Id="cmp7E09FC4EDDA2A0DA9A59DF59BDEE5712" Guid="{0BAA5FD4-D050-4CCA-90CA-5F367DD053EB}">
- <File Id="filE83EF2FCBA3CD452DFEA626B51D02D7B" KeyPath="yes" Source="fio\usr\include\netinet\udp.h" />
- </Component>
- </Directory>
- <Directory Id="dir34761FAA61F9958D1CB1ECEC9D615660" Name="rpc">
- <Component Id="cmp3162BB2700EF8B5023C60F68973084AD" Guid="{ACA8BD02-707A-47AC-8B22-BE4289CAFE04}">
- <File Id="filBB56C7DA86CD71B5742AFBB7209BA9C3" KeyPath="yes" Source="fio\usr\include\rpc\types.h" />
- </Component>
- <Component Id="cmp4B80D436AC3E94D031597A8BD0C2D02B" Guid="{4D32F4FD-7E2F-4D57-8647-912129FD8000}">
- <File Id="fil7CB3DF661346C832924929D5190BBC51" KeyPath="yes" Source="fio\usr\include\rpc\xdr.h" />
- </Component>
- </Directory>
- <Directory Id="dirB6275237252E6FE121970A82082EB640" Name="sys">
- <Component Id="cmpA7D4094FEAEB0C51EF1CEE4CAA3A9E44" Guid="{C93DCD25-8DBB-48FB-BCF6-677113833720}">
- <File Id="filFFD70C19F9D2E967DC7B0CA77C9F7E27" KeyPath="yes" Source="fio\usr\include\sys\acl.h" />
- </Component>
- <Component Id="cmp08E32F224615B20E525D2072B1C2F779" Guid="{9CE2352A-60D0-455A-9B84-F56BFB20FBFB}">
- <File Id="fil6F360DB59569080ECE3C0697BFD6366B" KeyPath="yes" Source="fio\usr\include\sys\cdefs.h" />
- </Component>
- <Component Id="cmpCB8FB433DBD9CC5BCE33A540E67FDC90" Guid="{3E09F9CD-C909-41D9-A6BC-3D2880247661}">
- <File Id="fil65E635B91FBDE147F51BBEBF703A2184" KeyPath="yes" Source="fio\usr\include\sys\config.h" />
- </Component>
- <Component Id="cmpE2EC51F6A677946D95632FA7778A1496" Guid="{CFDBAB3A-C4CC-42FD-B9E6-688ED9B42FF1}">
- <File Id="filDC08C4833D6DE5B61BEDEB322A947A46" KeyPath="yes" Source="fio\usr\include\sys\custom_file.h" />
- </Component>
- <Component Id="cmp3B678A8BD9ECF9739B393C91E4B87FE1" Guid="{48D1D012-2A76-419A-8970-E42116E5B969}">
- <File Id="fil9C7A68A31C69F5F635B2C8561166E4AE" KeyPath="yes" Source="fio\usr\include\sys\cygwin.h" />
- </Component>
- <Component Id="cmp4836510E7BCE2D2E06FA8764F9D26A05" Guid="{73B7332B-FFBB-4461-9892-1C98F9BC4139}">
- <File Id="filDFB71D0A8F0398B323F529A2F3351EFE" KeyPath="yes" Source="fio\usr\include\sys\dir.h" />
- </Component>
- <Component Id="cmpE4F78594DB728CC61EEA3B3A9A085AAD" Guid="{D289D6C4-D78B-40F5-84ED-975B9D0046BE}">
- <File Id="fil22594514F83B8F09D6AEDFF260A7F474" KeyPath="yes" Source="fio\usr\include\sys\dirent.h" />
- </Component>
- <Component Id="cmp802990D9690BB67BD79F90E8EFB8C120" Guid="{AF502854-DEAD-448A-A39C-74E17DCA935C}">
- <File Id="filC4CBE1085E579E8F9DD4C3BB2DA57A3F" KeyPath="yes" Source="fio\usr\include\sys\elf32.h" />
- </Component>
- <Component Id="cmp6907EF2CBA3049DBCE79BBF508C72A63" Guid="{62486C1C-49DE-473C-A826-93DE12834474}">
- <File Id="fil4097DB43BD8DA61C046102D690052D3B" KeyPath="yes" Source="fio\usr\include\sys\elf64.h" />
- </Component>
- <Component Id="cmpD8E6B10BEFF701176FDB8D5865CB6B39" Guid="{C059AEA4-AA64-4ACE-A798-C1DCCC6B50AD}">
- <File Id="filA9DBFD37163E5109CDCAE6AF8E96F361" KeyPath="yes" Source="fio\usr\include\sys\elf_common.h" />
- </Component>
- <Component Id="cmpBFBC822BD0C450F5B4E4E8E05D7AF863" Guid="{0D1ED855-7AEF-4993-8A45-3EDC39127DCA}">
- <File Id="fil291DDEC69C84C92FC2CEED3FB2E3B9DB" KeyPath="yes" Source="fio\usr\include\sys\elf_generic.h" />
- </Component>
- <Component Id="cmpC8BC4135D5493890A52BB03D10224276" Guid="{8FEBE86F-3E20-4A64-B057-185E37CE4B2F}">
- <File Id="fil2306D9567FBE59F5A5C1691D724B7596" KeyPath="yes" Source="fio\usr\include\sys\errno.h" />
- </Component>
- <Component Id="cmpA3A42937C0F1A2C23B2AB012C86BE110" Guid="{28D72DC1-B876-47AF-96AD-E6BB8A42EB8F}">
- <File Id="fil32504DB5635C84EFAEE4CB68150BEE97" KeyPath="yes" Source="fio\usr\include\sys\fcntl.h" />
- </Component>
- <Component Id="cmp9D72AD58F638909A92A019E57B0081A3" Guid="{B18C7874-FF6B-4669-ACE0-BA63FABE4C16}">
- <File Id="fil5527D76255E8E098D1F235A1F49A3FF2" KeyPath="yes" Source="fio\usr\include\sys\features.h" />
- </Component>
- <Component Id="cmp117B24180548FD060348E852A3D8F4E4" Guid="{0AFB0BD6-A43D-4621-8BB8-AEBD82619740}">
- <File Id="fil1A89848B9551F393F8817EE581305B2C" KeyPath="yes" Source="fio\usr\include\sys\file.h" />
- </Component>
- <Component Id="cmpC05DCEC8334A19B4594791BCA49DAD7F" Guid="{DD8414A3-4996-4AB2-B131-042BD4DF8D5E}">
- <File Id="filB25FF3F273E1062ACB3EDC0D1B17898E" KeyPath="yes" Source="fio\usr\include\sys\iconvnls.h" />
- </Component>
- <Component Id="cmpEA7382B94C8EEDA81105D08A3DCDEB5E" Guid="{59BCF016-ABD8-481C-83B8-0D9333E0FBEF}">
- <File Id="fil63E7E73FBC811A6B1E80D3B957F932E6" KeyPath="yes" Source="fio\usr\include\sys\ioctl.h" />
- </Component>
- <Component Id="cmp463E7C5D3029591282C4E7265A2E6425" Guid="{964BE77C-715E-4112-B467-44CFC3DA4ABF}">
- <File Id="fil07E2D7D65C6165C19DCEC9944CCD37E4" KeyPath="yes" Source="fio\usr\include\sys\ipc.h" />
- </Component>
- <Component Id="cmp985697BCB8BE9F423EEB976FB94DB3A2" Guid="{57F551F1-B248-4793-B0D7-78565C2EDEEB}">
- <File Id="fil6FE69A41DE6E01D5DF009C84CCE4A03F" KeyPath="yes" Source="fio\usr\include\sys\kd.h" />
- </Component>
- <Component Id="cmp0EA581CD9C329CB600D84EFD9FDCAC56" Guid="{BA46222B-5981-4466-8700-122F05B603BA}">
- <File Id="fil0ECE65C78813857501E9465B399EE450" KeyPath="yes" Source="fio\usr\include\sys\lock.h" />
- </Component>
- <Component Id="cmpBC1C253DEE8EB67EE9DA1711D8A5273F" Guid="{0853E627-E6FE-4632-A603-B636E320B622}">
- <File Id="filB171829EFDFCEFD66A97B690C5CC8535" KeyPath="yes" Source="fio\usr\include\sys\mman.h" />
- </Component>
- <Component Id="cmp0452E9A3D2D7698371C40F82651DB96A" Guid="{5079C137-2060-4247-B343-DCBBE9224A1F}">
- <File Id="filB74A8B7A8BE7B2405357EE276726CDDD" KeyPath="yes" Source="fio\usr\include\sys\mount.h" />
- </Component>
- <Component Id="cmp387D693F4109EE82E5064A04902F4035" Guid="{16403FC6-209B-4E99-B2E2-41C0EE6CE793}">
- <File Id="fil1D1D805EC1B3F45F5A2D5D899A39CE12" KeyPath="yes" Source="fio\usr\include\sys\msg.h" />
- </Component>
- <Component Id="cmp19A92AC3E8463D827CFA7E454388E7D4" Guid="{12FD0733-8F1F-41CD-BDD2-928B0C2C4857}">
- <File Id="filE659AABED807F558BFD3959FEFA44605" KeyPath="yes" Source="fio\usr\include\sys\mtio.h" />
- </Component>
- <Component Id="cmpA62C53D38134AC064E889605D70D29E5" Guid="{4BE45BB0-52BC-4BA9-BA79-69EC6BADFD47}">
- <File Id="filCB59A2BB8D46DC9BC737F4B1DCF1F1EE" KeyPath="yes" Source="fio\usr\include\sys\param.h" />
- </Component>
- <Component Id="cmp75C96A0C06FDC1265612192B47F421CD" Guid="{18D9A519-FDC5-4576-8698-7C43D7695107}">
- <File Id="fil430BE228BC817764C8645905634C9122" KeyPath="yes" Source="fio\usr\include\sys\poll.h" />
- </Component>
- <Component Id="cmpE6BE9579EB03E6581459096391D2EB33" Guid="{8CC6BA55-D672-4952-9B4C-78A09DD239F7}">
- <File Id="fil67DC6A67044FF086F7E712C885636B9E" KeyPath="yes" Source="fio\usr\include\sys\procfs.h" />
- </Component>
- <Component Id="cmpC0C2F134DD0331B3EDB940DD9700B26D" Guid="{0C47A9C4-61F7-49DD-BC39-47A5B10F72EB}">
- <File Id="fil32E56F08FBE084D6599DFEB90BE0BC18" KeyPath="yes" Source="fio\usr\include\sys\queue.h" />
- </Component>
- <Component Id="cmp31DE2CB441152909C85D1541F7C4FC61" Guid="{8643F114-A06B-4274-9D9B-21C0E41D101C}">
- <File Id="filDA159B8B7BAF533A6D660B4ACB192CE2" KeyPath="yes" Source="fio\usr\include\sys\reent.h" />
- </Component>
- <Component Id="cmpF7DEF7AB628217495CE03D269B0D4CB7" Guid="{636E75EA-5E67-43BD-A858-F1C89A4AB92D}">
- <File Id="filC0757A3F4B330B6C473FDC188317E2B2" KeyPath="yes" Source="fio\usr\include\sys\resource.h" />
- </Component>
- <Component Id="cmp791779B2B871C882C1A367051A3A16EE" Guid="{42E0C552-F6A4-47BC-BA93-2138E184D8B3}">
- <File Id="filDF053BE7A13313D1E3ADFC3A50547FAE" KeyPath="yes" Source="fio\usr\include\sys\sched.h" />
- </Component>
- <Component Id="cmpD4D07A43E7F348D1692E1785205D8548" Guid="{6E7EB23B-1546-4F1C-9D21-15F0014C5468}">
- <File Id="filD1A99A434CB8820639D458C5920259FA" KeyPath="yes" Source="fio\usr\include\sys\select.h" />
- </Component>
- <Component Id="cmp94333C0909F734BA0ED24A331E9983FC" Guid="{B6DB9240-FE3F-418B-92A2-61280C08B112}">
- <File Id="fil55608CC7207C4AE956ECB2D5739FCAF0" KeyPath="yes" Source="fio\usr\include\sys\sem.h" />
- </Component>
- <Component Id="cmp886D8AF6C73F2F54ECD6E4E420A46B2A" Guid="{7E0082FF-F95C-4E56-9927-F65F0268FE3D}">
- <File Id="filCEF9F2969DDF99B1E4AD05182751C630" KeyPath="yes" Source="fio\usr\include\sys\shm.h" />
- </Component>
- <Component Id="cmpB43FFEA79F840C0B3B757D7960A0C5F2" Guid="{2C21E9D1-83DB-417D-87A2-FA774E2D338C}">
- <File Id="filE982FDF05115FF22FD8217311A2B14FB" KeyPath="yes" Source="fio\usr\include\sys\signal.h" />
- </Component>
- <Component Id="cmp83720ABEB88B3C50687073AF1B1FE9B1" Guid="{02F97238-DAEA-45D9-B133-9669396F0453}">
- <File Id="filA340B65C293AE0D3FA46C9E7E2D34828" KeyPath="yes" Source="fio\usr\include\sys\smallprint.h" />
- </Component>
- <Component Id="cmp388B99666C5C276C5D2379A72AC4BD3C" Guid="{4F5C2BE8-96DD-40ED-83D2-4FC3BD28FF80}">
- <File Id="fil6E07748DBDEB7A8DDFA05900FAD79B66" KeyPath="yes" Source="fio\usr\include\sys\socket.h" />
- </Component>
- <Component Id="cmp862ACD6BDB4B0B5C3DAB066B6C2F8477" Guid="{33E06231-334A-44E9-8C92-AF9A41B184BB}">
- <File Id="fil9E6F9DAD240FB41C909AEE466AC5D712" KeyPath="yes" Source="fio\usr\include\sys\soundcard.h" />
- </Component>
- <Component Id="cmp74117258C478DCA1A299351DADE6FA31" Guid="{A6267489-CFA0-46C6-973E-D39E7DC5E492}">
- <File Id="fil5DF53B6352A1A3257694432483566F1F" KeyPath="yes" Source="fio\usr\include\sys\stat.h" />
- </Component>
- <Component Id="cmpEE730219A2AEF271898B09DFA9F07369" Guid="{CC88A94F-C7AE-4678-9051-4E5E8D4E3FD8}">
- <File Id="filDCBF376D43C24C61CE26758764505485" KeyPath="yes" Source="fio\usr\include\sys\statfs.h" />
- </Component>
- <Component Id="cmp5B6B4D560D359C92D42F114D38C6A7C3" Guid="{1D272889-5CAA-47E8-B55A-2D008A5D52A0}">
- <File Id="filF79545F82E74D9D2761AC77B9F2DDF2D" KeyPath="yes" Source="fio\usr\include\sys\statvfs.h" />
- </Component>
- <Component Id="cmp34B4C0996C136F95EB03D7DA56F3D362" Guid="{C1677FDE-989E-494A-BA5F-DDF42A13EC7F}">
- <File Id="filE7DBA3992C6BFF9D7160BBAE77704E2F" KeyPath="yes" Source="fio\usr\include\sys\stdio.h" />
- </Component>
- <Component Id="cmpE79308863A4E6F785CC3030893DEB5FB" Guid="{8A5157AC-F349-47DC-90F4-55B26023E9CA}">
- <File Id="fil77337FDF4DE0304A956909CBC190243E" KeyPath="yes" Source="fio\usr\include\sys\strace.h" />
- </Component>
- <Component Id="cmp69D152B5C5B4B3965A4E028156CF1FA8" Guid="{0B1B3631-29A7-420B-8988-DF4907C9B6E5}">
- <File Id="fil25A94EADD4D09380FB3B4DBDE6F326C1" KeyPath="yes" Source="fio\usr\include\sys\string.h" />
- </Component>
- <Component Id="cmp6FE85F00FE8A380A4B95650807A7346A" Guid="{665115D2-E44D-4972-945E-317888D8F7DA}">
- <File Id="fil2858AB0001ACB802F112F628D4842D2C" KeyPath="yes" Source="fio\usr\include\sys\sysinfo.h" />
- </Component>
- <Component Id="cmp368B615B6F928569C97817020D63B08E" Guid="{29AD3DCF-950A-47CD-A66B-0DED32820552}">
- <File Id="filABD557980B59D53186428EE0FF2174B7" KeyPath="yes" Source="fio\usr\include\sys\syslimits.h" />
- </Component>
- <Component Id="cmp26F5B6FA2E6239F16CF6981B9D3D81CA" Guid="{D0822CBA-DE52-475E-895B-BCE05500F725}">
- <File Id="fil076CD58F7D57D0E58FE9A9BC001DE2A6" KeyPath="yes" Source="fio\usr\include\sys\syslog.h" />
- </Component>
- <Component Id="cmpBD771A2CA22F5E6556E71221AD6AFC76" Guid="{25F7F044-8449-4405-8D29-F32C659A5DC6}">
- <File Id="fil5613FB13C284A1B231CBCBDA74BC7345" KeyPath="yes" Source="fio\usr\include\sys\sysmacros.h" />
- </Component>
- <Component Id="cmpCD2D5C1ED87E8802E466C30881C2E3EB" Guid="{DF73D359-3C17-4EBC-BA92-CA067AC4E999}">
- <File Id="filFBF305447E1462D834C817D9BC04A9DB" KeyPath="yes" Source="fio\usr\include\sys\sysproto.h" />
- </Component>
- <Component Id="cmp65AF9093B1A227DFF896E7C86B5E23C4" Guid="{4F2D4DCF-6658-485F-869B-83A41D248B15}">
- <File Id="fil03C31E6822ADD3C570E56C88EE296A51" KeyPath="yes" Source="fio\usr\include\sys\termio.h" />
- </Component>
- <Component Id="cmpC9E59DAEFD94A6BB1F7EF9DD9B2F51CF" Guid="{411B540E-26EE-414F-9890-B458669CD2D9}">
- <File Id="filC6DEF4EE0F40C3C53631916AC75CFBDC" KeyPath="yes" Source="fio\usr\include\sys\termios.h" />
- </Component>
- <Component Id="cmp00623BDD658B4335552729047DCCCE58" Guid="{C9996605-7E56-47DD-ADA4-00B1D09D491A}">
- <File Id="fil651EAD650C92143A7CC64B204F440898" KeyPath="yes" Source="fio\usr\include\sys\time.h" />
- </Component>
- <Component Id="cmpD1EC6EEF262AD5633125094172B7D058" Guid="{FCC9CEB0-178B-47B8-B0C0-D79295CFE8FE}">
- <File Id="fil3D57ED47FA1EE076FC7AA12BA20C082F" KeyPath="yes" Source="fio\usr\include\sys\timeb.h" />
- </Component>
- <Component Id="cmp2BA95AC67F5F48356BA247B37E8E83D9" Guid="{A8A68514-EC9E-4AFB-9752-2CDE4A2DACA7}">
- <File Id="filE1AB6738D096A03B9612DD32F12F7F67" KeyPath="yes" Source="fio\usr\include\sys\times.h" />
- </Component>
- <Component Id="cmpDCE2139D62DB79B9AAD41BD9A4B61FBE" Guid="{D346D787-F6B7-4265-A3E8-82F23FC5F64C}">
- <File Id="filA8B125C05D709F8A4ED9612EA28AF9A8" KeyPath="yes" Source="fio\usr\include\sys\ttychars.h" />
- </Component>
- <Component Id="cmpB1A5F8A3BAFE27E55DE1B390980513EF" Guid="{33CDCE81-9CD0-4B22-AFA9-252CA348F468}">
- <File Id="fil8CA84C561618A133AEEEE96AC027CBD3" KeyPath="yes" Source="fio\usr\include\sys\types.h" />
- </Component>
- <Component Id="cmpEDC79454E30A2952A9087E0869B5BAAC" Guid="{5A77C8C6-306A-4F7E-BE06-1326263DAFBB}">
- <File Id="filDAAE61ED7E5B4421F2DBBABFEFB24C5C" KeyPath="yes" Source="fio\usr\include\sys\uio.h" />
- </Component>
- <Component Id="cmp851923648D1D0C632948BE25DD6D8D01" Guid="{1D241B9C-B91F-45F0-9E29-711A93728E13}">
- <File Id="fil0E46E2B035A605DFF8B1BB66FCA3EFDC" KeyPath="yes" Source="fio\usr\include\sys\un.h" />
- </Component>
- <Component Id="cmp5A5AB31961FAB7C0D0E7E72FA36B9FC3" Guid="{FD8F0F3D-275F-4C3F-88D3-ADABF5E87F63}">
- <File Id="fil661E5EEB5F7526E4A118C187A2F79B3D" KeyPath="yes" Source="fio\usr\include\sys\unistd.h" />
- </Component>
- <Component Id="cmp3AC6E075288DFE13523C6FC3A60006F0" Guid="{00C41369-B6F8-4088-8D06-56A81CD183A0}">
- <File Id="fil0D74ED44C596E1C93C7E28C78CCE1C84" KeyPath="yes" Source="fio\usr\include\sys\utime.h" />
- </Component>
- <Component Id="cmpCDD40B11F787A0A3C5CD5EA482819F09" Guid="{B825491E-E78A-4863-A617-7470CF065CFA}">
- <File Id="filC3A808202A8DCCD8ABAD47CC0744BF27" KeyPath="yes" Source="fio\usr\include\sys\utmp.h" />
- </Component>
- <Component Id="cmp53BFD454300F670FBE9AF063EF672123" Guid="{6D709869-8DF2-424A-836E-6F2EBE2E3013}">
- <File Id="fil3770F38689666A31BC1E18BB6F839168" KeyPath="yes" Source="fio\usr\include\sys\utsname.h" />
- </Component>
- <Component Id="cmp41FC91A722BF9E3B5DBBA84F4DDE7BB3" Guid="{047A6FE8-C8C6-4BE9-9CFA-1BC851A4228C}">
- <File Id="fil59A8509373BB1CD591BA5C7E689C7551" KeyPath="yes" Source="fio\usr\include\sys\vfs.h" />
- </Component>
- <Component Id="cmp0C3F1D04B84C968031C02F6CE53EDE2E" Guid="{A3AB8F53-14D1-4345-BEE2-6907A3A0FF92}">
- <File Id="fil37630A8F224B283CBF146CDE2244A41F" KeyPath="yes" Source="fio\usr\include\sys\wait.h" />
- </Component>
- <Component Id="cmp3925A007AC6B5FC43215B228BC34316C" Guid="{89FF17A2-3E08-4A83-B9B3-163CC6458BEB}">
- <File Id="fil71A74AF0D37CDC8131A2947E7E2B2254" KeyPath="yes" Source="fio\usr\include\sys\_default_fcntl.h" />
- </Component>
- <Component Id="cmp8EAF8D49F8CBDA346B923AD35F978D2D" Guid="{96A399AE-0A60-4BB9-940A-116CFCB6892E}">
- <File Id="fil222F1AB46193089A56C7C1AE7A31EEE9" KeyPath="yes" Source="fio\usr\include\sys\_types.h" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirFA96FE130B7EC8005D783878041E0D1F" Name="local">
- <Component Id="cmp8EEF0FBABDDB494C3AEE2B96B72A9DDF" Guid="{3804D8CF-5E47-4AE6-8D3B-79D6F57AEB27}" KeyPath="yes">
- <CreateFolder />
- </Component>
- <Directory Id="dirB54587459D01482F735EC35ADE9ADF6A" Name="bin">
- <Component Id="cmpBDAF0D47BC7EB3B3F4610367535AE561" Guid="{CDA5E546-E8A4-4EBA-87F3-0CF8A134427C}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- <Directory Id="dir7E7AE3E70EA8531BEFBE8C9724AF2616" Name="etc">
- <Component Id="cmp957EE6C776A60EFAD0B047D15B34A5DA" Guid="{BF713746-49C7-48B3-A264-514EAA6D71E5}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- <Directory Id="dir79300C1445EF4B5F29E4CBF58DDF89CF" Name="lib">
- <Component Id="cmpEB12AF20BDA62E3D1F7BE20ABD20EC7F" Guid="{1E6E7529-2C70-4464-8F76-89125F1D6D08}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- </Directory>
<Directory Id="dir6579DDDFCB375E35605ABDFE8A6DE5B2" Name="sbin">
- <Component Id="cmp8483F7425F602ECFE4AA66C1D4EA8958" Guid="{C2C39130-527A-43DE-9BE5-E0D2B4A4DD82}">
- <File Id="fil523BD15AA1A968AEA847557BF205A7E1" KeyPath="yes" Source="fio\usr\sbin\alternatives.exe" />
- </Component>
- <Component Id="cmp9852B5DF264C6CA80DBDC17B2EEA9CEE" Guid="{AB2D039F-9EF4-4E38-8C31-44B5659C45C0}">
- <File Id="fil1038BD3DC1757C14EFC658C71FF95BAA" KeyPath="yes" Source="fio\usr\sbin\backup" />
- </Component>
- <Component Id="cmpB07148C876C85F30960D84435626A286" Guid="{E5A64E38-CA29-4B53-AC84-CC402BC9A98C}">
+ <Component Id="cmpB07148C876C85F30960D84435626A286" Guid="{FF40B35F-6CBC-4B38-82F1-06D05F454C28}">
<File Id="filCD11FC1F53D5B631F3513CF2120520A3" KeyPath="yes" Source="fio\usr\sbin\cygserver.exe" />
</Component>
- <Component Id="cmp0D23E9EF452225CD137B930F6A95E19C" Guid="{91A913B4-70DC-4FCF-ACFA-B0D19A9258F2}">
- <File Id="filA0A4842F4A2CF6FC49F562AFF426066B" KeyPath="yes" Source="fio\usr\sbin\makewhatis" />
- </Component>
- <Component Id="cmpAE2FC228FE5B9C370A2E44ED9ED55E86" Guid="{CE3AEF94-54DE-46D7-AC7C-3DE95F7C2B0F}">
- <File Id="fil71512787CF28E723313AA1B59A02FF92" KeyPath="yes" Source="fio\usr\sbin\restore" />
- </Component>
- <Component Id="cmpE4083259054A984A6243A1B0F154B2AA" Guid="{0E289A1F-90B9-4DC6-89E5-B1064D157DA4}">
- <File Id="fil19CBF43566E4EABECBDA7BD056DB4F6B" KeyPath="yes" Source="fio\usr\sbin\tzselect" />
- </Component>
- <Component Id="cmpD4A27EF479ABC7F42E4DDB9D14DC43B4" Guid="{BF8B4F0B-3046-4328-B61A-C6DB699D4346}">
- <File Id="fil154F9C1679093857E1E454A05963581E" KeyPath="yes" Source="fio\usr\sbin\update-alternatives" />
- </Component>
- <Component Id="cmp2289C381E8D8F4080A3B755135F79B7C" Guid="{4303C9CD-1DCE-474D-9133-CB474E82ABF7}">
- <File Id="fil36505B5B3DC80A10B74F64CDD62D652B" KeyPath="yes" Source="fio\usr\sbin\zdump.exe" />
- </Component>
- <Component Id="cmp1E317AE1B56B55F0D462586418A1A34C" Guid="{7C253526-7A4A-455D-A58F-F536D75F189E}">
- <File Id="filABB4BF58E2376AF99023D1416D5DC5A1" KeyPath="yes" Source="fio\usr\sbin\zic.exe" />
- </Component>
</Directory>
<Directory Id="dir3C990A2CD47F3271D3615F28158D2F88" Name="share">
- <Directory Id="dirC5B53273C2A524ECE1F9BD10426CA412" Name="awk">
- <Component Id="cmp12CA2679AA51068787A5BA5BFD84DB90" Guid="{D8825BAA-FA87-43DA-B52D-C0CD76BB1C69}">
- <File Id="fil7AE350D7EC5DDE077A054C8D455C437C" KeyPath="yes" Source="fio\usr\share\awk\assert.awk" />
- </Component>
- <Component Id="cmpD3945DE03377A3D22FB2D32E21294611" Guid="{AECA98D8-90BF-4DEA-80F1-1191670436D0}">
- <File Id="filF44B014D36BF03EA26106BEB07D066AF" KeyPath="yes" Source="fio\usr\share\awk\bits2str.awk" />
- </Component>
- <Component Id="cmp7AD9DE62D6D2E83E88094FCB48C2338C" Guid="{0ABCBECD-A7D8-4072-98B1-6748BF9F8D9E}">
- <File Id="filA942BDF2888C6B44FD6279BE75FA180A" KeyPath="yes" Source="fio\usr\share\awk\cliff_rand.awk" />
- </Component>
- <Component Id="cmp0D672D6E54F418FDF0650F4B0589A42F" Guid="{FE9BD1C1-D2DC-4FB3-8ABD-E53E2D0864AD}">
- <File Id="filE960D08A63C33776947E941C637177AE" KeyPath="yes" Source="fio\usr\share\awk\ctime.awk" />
- </Component>
- <Component Id="cmpAECCC577A4E79016F7F3E76A89E94CF0" Guid="{E2F63145-D5F2-4508-97E4-CA00F72F9CA8}">
- <File Id="fil39D50F02B98B0BF70C9153BCBBA57764" KeyPath="yes" Source="fio\usr\share\awk\ftrans.awk" />
- </Component>
- <Component Id="cmpFD6059CAB2FDF3708EA9154FAB9EBBC9" Guid="{EE716477-1E2D-4C8F-846B-1BB866AA4C11}">
- <File Id="fil5C6615FA83C23ED55B45A11B68847FFE" KeyPath="yes" Source="fio\usr\share\awk\getopt.awk" />
- </Component>
- <Component Id="cmp7697FCA8B864416FD9BF43D777F503A4" Guid="{49119906-085A-42D8-A4D6-635F651F0703}">
- <File Id="filE40028F61A77487FA58880467213650F" KeyPath="yes" Source="fio\usr\share\awk\gettime.awk" />
- </Component>
- <Component Id="cmpAC5A7A74955704A1A3FE3CE7CC81269D" Guid="{2330CA19-1D53-4428-8DBC-3D24DBABF17D}">
- <File Id="filB0346B2AA6322F2D019F3D39D7DD49F4" KeyPath="yes" Source="fio\usr\share\awk\group.awk" />
- </Component>
- <Component Id="cmp65AECEA467A58FD347AEA2E1CC92E756" Guid="{50E19D8C-2D9F-4028-B9B5-497666DF9C7B}">
- <File Id="filE6826DC5365B457772A2965A896FA52B" KeyPath="yes" Source="fio\usr\share\awk\join.awk" />
- </Component>
- <Component Id="cmp3073160AA3C3CF00B4FC03BF1510A039" Guid="{7A4A55D4-C125-4221-9008-F0261828F4C4}">
- <File Id="fil58C320DD1978C68C148F88E2040C13D5" KeyPath="yes" Source="fio\usr\share\awk\libintl.awk" />
- </Component>
- <Component Id="cmp058F7DDBC1A1A932FB75BAC47DAB33E9" Guid="{CCE64CDE-C195-4794-BC90-4CF9930BAB73}">
- <File Id="filEB1D9CAD4FDE0C319F07E804DA2EA09C" KeyPath="yes" Source="fio\usr\share\awk\nextfile.awk" />
- </Component>
- <Component Id="cmp014CB7BA539DEDB2FA6B0717A654D08A" Guid="{376C7347-93D5-413B-B9CC-17C0B8E4A123}">
- <File Id="fil40E9C5733B95D46D619F612965676813" KeyPath="yes" Source="fio\usr\share\awk\noassign.awk" />
- </Component>
- <Component Id="cmpD934DA8080C7A1FEC33D2095E99B9372" Guid="{9F6FABF1-8424-44AB-8F09-79A78EB37CEB}">
- <File Id="fil1DF2025419A3EAE06BC982280D9A08B4" KeyPath="yes" Source="fio\usr\share\awk\ord.awk" />
- </Component>
- <Component Id="cmp322A477A99560BB56E25335815C03BCA" Guid="{F0C70A03-417B-4CA5-8AAF-678DD983E265}">
- <File Id="fil0519891188DEC06F2D5BBE8E043780FB" KeyPath="yes" Source="fio\usr\share\awk\passwd.awk" />
- </Component>
- <Component Id="cmpA2550B22A22519C234E51C3CE8D61D6C" Guid="{88E9CBD5-E5A2-4AD4-BB95-28C7C372BB1A}">
- <File Id="fil74219718F947B1A73F9F3F05A37F3E37" KeyPath="yes" Source="fio\usr\share\awk\readable.awk" />
- </Component>
- <Component Id="cmpC50FF49000EC4C566D3E8D5FC7273619" Guid="{1D340346-8DAF-4DD9-98DD-4AB44289C6D6}">
- <File Id="fil1F2409A1BAA96A1DD58CE56F9D8F25E3" KeyPath="yes" Source="fio\usr\share\awk\rewind.awk" />
- </Component>
- <Component Id="cmpDF20151C1B38B3FF6710CBCF4C505E72" Guid="{500F9EF8-CE34-429F-8D54-EC4EC9CA8B7A}">
- <File Id="fil58FDB43620B21330F82F31A934602788" KeyPath="yes" Source="fio\usr\share\awk\round.awk" />
- </Component>
- <Component Id="cmpB7FDC98C985FF468C611F1B61A10B130" Guid="{7EB2CA06-52AD-4818-A9DB-B0790FD02082}">
- <File Id="fil28A15BFF14F069E6B97EB257F40D99C1" KeyPath="yes" Source="fio\usr\share\awk\strtonum.awk" />
- </Component>
- <Component Id="cmp5F8EF82D925C04B431E40BF0D10D2591" Guid="{C912949F-0778-429B-ABF5-121F9F4439CE}">
- <File Id="filD3AA85DA1A57B06329F79C262B2372F8" KeyPath="yes" Source="fio\usr\share\awk\zerofile.awk" />
- </Component>
- </Directory>
- <Directory Id="dir648DD1F8C3F3562468329549A6405590" Name="doc">
- <Directory Id="dir3013B7E25A595E9BA34A4B482361C4AF" Name="alternatives">
- <Component Id="cmp01E38EC21E4B1791F83F51C9050906E6" Guid="{FEF7D078-8B48-4AF7-B6EE-CB9CC8E139C9}">
- <File Id="fil8E537745A13B520BDB8D9B49E372B71D" KeyPath="yes" Source="fio\usr\share\doc\alternatives\AUTHORS" />
- </Component>
- <Component Id="cmp60718D1FDA1A9F7D53739BE29A3CE058" Guid="{9CED8B1C-0875-44C8-B7CE-E46B303BDD38}">
- <File Id="filA18A89EE6E033222FC8D5294B9A19F3B" KeyPath="yes" Source="fio\usr\share\doc\alternatives\ChangeLog" />
- </Component>
- <Component Id="cmpB88ED18DD9AC277F153ACFDE0DF62A76" Guid="{F87E357F-EAC0-4124-82E8-EAEEB56509C7}">
- <File Id="fil542BB42DDD0F9F452CA822A54BA6FBAC" KeyPath="yes" Source="fio\usr\share\doc\alternatives\ChangeLog.cygwin" />
- </Component>
- <Component Id="cmp0C8A6506697ABC113922A4EF88A9D6C3" Guid="{8F10CB95-B716-4796-B9A7-8889A3BC0758}">
- <File Id="fil3F3E9219CC1C1BC14001F5BA750632D3" KeyPath="yes" Source="fio\usr\share\doc\alternatives\COPYING" />
- </Component>
- <Component Id="cmpC4EA4A33626BE9FD7F27EDF6270BE790" Guid="{00739C49-B98A-4F87-BE2B-ECEFDFE980E1}">
- <File Id="filF0B1210EB6FFAC065A7A5293C69AB159" KeyPath="yes" Source="fio\usr\share\doc\alternatives\NEWS" />
- </Component>
- <Component Id="cmp2FC6ACD82FC761ECAA308989A4F95DC0" Guid="{3938E818-9201-4E4A-A30A-4C706F5B5806}">
- <File Id="fil42C2514E7E6BB73944B87FC94937CA36" KeyPath="yes" Source="fio\usr\share\doc\alternatives\README" />
- </Component>
- <Component Id="cmp9190621F5E70CBEEF039F9BF04198F89" Guid="{76A86F2B-6CFD-4604-8817-2BD28BA96C6E}">
- <File Id="fil5030822836394D427D0965EA73ED9DE2" KeyPath="yes" Source="fio\usr\share\doc\alternatives\TODO" />
- </Component>
- </Directory>
- <Directory Id="dirDBA58AF63B60DF2F6B65E9A56C81B406" Name="base-files">
- <Component Id="cmp8A74672A04FD18832F2BBD2485253F66" Guid="{7F462D7A-15BD-48B0-9A9C-D3A79C99EFFD}">
- <File Id="fil7F23A4C6F298F8E7E8A656DADA50B77C" KeyPath="yes" Source="fio\usr\share\doc\base-files\ChangeLog" />
- </Component>
- <Component Id="cmp927934899A3461569FFBA6537C95CEAA" Guid="{24D38542-E8F3-4BD9-B78E-EA88F9992652}">
- <File Id="fil4F030522D3DDD76951230670CFF1087E" KeyPath="yes" Source="fio\usr\share\doc\base-files\README" />
- </Component>
- </Directory>
- <Directory Id="dirA79908F532A8BD4B336A4B71C17BC3EB" Name="bash">
- <Component Id="cmp57E0CC9C2EF025762F51C8F9DF5A6B75" Guid="{BC900E7B-9A54-4F22-BD05-C6DA578BB91B}">
- <File Id="fil0961F841914ABEB770E8ED341D54C43A" KeyPath="yes" Source="fio\usr\share\doc\bash\AUTHORS" />
- </Component>
- <Component Id="cmp78A622CD332E63411733C20F873DBC06" Guid="{C728F2B2-771F-4461-87F4-4462490B5B61}">
- <File Id="fil182BA79FB108F237671354EAE483E909" KeyPath="yes" Source="fio\usr\share\doc\bash\CHANGES" />
- </Component>
- <Component Id="cmp853C7D197DC157CD28973950E05564D6" Guid="{E1A45639-314C-4FD0-9724-7FC22A053814}">
- <File Id="fil66EA8D78B46CF7A0809D52EEF33B4A6B" KeyPath="yes" Source="fio\usr\share\doc\bash\COMPAT" />
- </Component>
- <Component Id="cmp7CDF966F41AF8A5F08F00A1DF1465376" Guid="{5026C0F1-A781-42D4-A307-F12B1792420E}">
- <File Id="fil526FE4ADA6D8456FA67D7627041CC294" KeyPath="yes" Source="fio\usr\share\doc\bash\COPYING" />
- </Component>
- <Component Id="cmp1944B506FAA1212003AC89A3A16FB5E1" Guid="{30AB7FF4-F2CD-40AC-ADDB-8D9C54B18D14}">
- <File Id="fil868A5FFAEE0FD3DCB1A492797B8AB0B7" KeyPath="yes" Source="fio\usr\share\doc\bash\NEWS" />
- </Component>
- <Component Id="cmp35B027E862ADAD154FC345A13A704752" Guid="{D3F499F6-25F0-425E-9236-1D691D027330}">
- <File Id="fil07AF1082C4BC261B2A2E67F75EEEEAC2" KeyPath="yes" Source="fio\usr\share\doc\bash\NOTES" />
- </Component>
- <Component Id="cmp261299C57D4F3D23068398403BF12C9B" Guid="{7F32E7A9-B03E-47C6-A8CA-FC7A87CF0D42}">
- <File Id="fil27612610F9ED3C016DC0EED4D042BF93" KeyPath="yes" Source="fio\usr\share\doc\bash\POSIX" />
- </Component>
- <Component Id="cmp50956F81610894BD41455D8DAF106FA6" Guid="{7A1EB2C8-E925-47A6-B534-2CFC6E7DEC5D}">
- <File Id="fil8400F2ED4F73703B4A333FDD70B4B686" KeyPath="yes" Source="fio\usr\share\doc\bash\RBASH" />
- </Component>
- <Component Id="cmp80F94A2308BC043D2213E24E70028B85" Guid="{A1CAFD4A-4F81-40EB-8372-4BC9A974C3F8}">
- <File Id="fil4FFEDFBDD752A01329146652E567BE98" KeyPath="yes" Source="fio\usr\share\doc\bash\README" />
- </Component>
- </Directory>
- <Directory Id="dirC4FCD50225F247953A7CB381EE894688" Name="bzip2">
- <Component Id="cmp97A844C65DEC9799D68F709BAE0FC843" Guid="{BADBD2A2-5838-47E4-954F-B0F7B15CDB28}">
- <File Id="fil4FAE6FF641FEE10E7E9E5470E44C298C" KeyPath="yes" Source="fio\usr\share\doc\bzip2\Changes" />
- </Component>
- <Component Id="cmp505253A9A66BB9A0178F71420D684121" Guid="{6ABDA0A1-01A1-48DC-8D45-F0CB8271BB22}">
- <File Id="fil47D60BF7EAEC3B14ACBC07A4B5496454" KeyPath="yes" Source="fio\usr\share\doc\bzip2\LICENSE" />
- </Component>
- <Component Id="cmp648C385467B74AB42EB2C4BA234344BF" Guid="{4A3CEDDD-0E83-4473-83B4-9900163595DC}">
- <File Id="fil903A7D9032D363DBFCDC947743E456EE" KeyPath="yes" Source="fio\usr\share\doc\bzip2\README" />
- </Component>
- </Directory>
- <Directory Id="dir86963C5FD66C7D4C0F920235E9701414" Name="bzip2-1.0.5">
- <Component Id="cmpD61D4565A97DD2F8CEF545A67F4D0227" Guid="{A412CF41-986E-48D2-8788-6BED717FEC4F}">
- <File Id="filEE7F5F83C62090A6DC0DEB282DF6E180" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\CHANGES" />
- </Component>
- <Component Id="cmp8525186E2E64CF8CB64377FD15A9D1A8" Guid="{8EAD7157-40C8-4C32-9AD7-7085A185B7CA}">
- <File Id="fil63F9D2426E4EF8CDCB2B21D5C53470C8" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\LICENSE" />
- </Component>
- <Component Id="cmpCB9A379FC9D97C3F9D6BDF78F6CEBC89" Guid="{CB490C50-8A7D-4742-9D9C-848BF4D12276}">
- <File Id="filCF9FB9356C4B3E297D941863F815947A" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\manual.html" />
- </Component>
- <Component Id="cmpDB876DFBF6EE2790AD905AD354136441" Guid="{C15C5468-BB3D-4F06-BDA0-9EC94F97C778}">
- <File Id="fil92DE50B971CED2B0B10C4434079681BA" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\manual.pdf" />
- </Component>
- <Component Id="cmp6D6F047852ED0D315E2B928A30604D16" Guid="{DD3E3047-8D21-40BC-BEAD-D2931761D744}">
- <File Id="fil8966B9C88740B0DD23B4740C9CA4A927" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\manual.ps" />
- </Component>
- <Component Id="cmp55DCED8B047F6CD1E334600FB2FDB6E4" Guid="{A56013C0-9914-4C48-BC67-24E64A61AEC8}">
- <File Id="fil9D01E83316BEF4379564FDAC52606EB0" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\README" />
- </Component>
- <Component Id="cmp4BAC962B1F19CC0458F6451FBA57B0F5" Guid="{9AB900FC-DFAF-4FF2-BE2D-4D8A1558DC50}">
- <File Id="fil5E33CABE88EC05280A164C8E63D4D3C4" KeyPath="yes" Source="fio\usr\share\doc\bzip2-1.0.5\README.COMPILATION.PROBLEMS" />
- </Component>
- </Directory>
- <Directory Id="dir90B573E495750755DEE2DF0CD20997DD" Name="common-licenses">
- <Component Id="cmp77CE7223DE9E1C2362BE0D4533C6F5FF" Guid="{D58F07E4-F495-4BBC-81FF-2A997FD40E21}">
- <File Id="fil46F019C42E2AF940E2E1AA3DD4CFA98C" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\AFL" />
- </Component>
- <Component Id="cmp685CFF76D7B5F5C4B23FED1666C0A8CC" Guid="{411D0CEF-7611-467F-9EEF-76AB1D9E2068}">
- <File Id="filBCEDE5A4A4F0C9F524FF05355FB60E21" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\AFL-1.1" />
- </Component>
- <Component Id="cmp9538171B92451A366955532D4E10FCA0" Guid="{1C6F4881-6492-45BA-AA94-10B635D60653}">
- <File Id="filA385549A28A6DED5F534B24799D30055" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\AFL-1.2" />
- </Component>
- <Component Id="cmp2C4DA508EE5665E1D67488F2B40C05AE" Guid="{9B827C26-F02F-4953-A095-4877E1F1B711}">
- <File Id="fil65B6CBEAF6F8E33C658A2978373833E7" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\AFL-2.0" />
- </Component>
- <Component Id="cmp0C59244B85D7287C863AA69C927A5323" Guid="{BC04787B-8468-4BF7-A00E-FAAA92CA22D0}">
- <File Id="fil4AD374585E78A833D85D3EDE79E8DB2A" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\AFL-2.1" />
- </Component>
- <Component Id="cmp927D985C9F852E871FCBACC580B6419C" Guid="{7DE2D17E-9625-4959-9EB2-C1F0E84ADFC8}">
- <File Id="fil9BF2987ACCF6007171752B9EB49DFF2C" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\Apache" />
- </Component>
- <Component Id="cmp1299AB7E2553A6D86E18908C1AA4F8AA" Guid="{53868D94-CE8C-4644-8B86-0DB426C387E1}">
- <File Id="fil3101E17D013974138C4BB07633D890CB" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\Apache-1.0" />
- </Component>
- <Component Id="cmp1C9F3A28C376A3AA4E127890BD45E401" Guid="{B678D421-0E28-4F2A-BE08-7BC88197A89D}">
- <File Id="fil7D36220D6E851AEE9E6647EA2F8B7E6B" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\Apache-1.1" />
- </Component>
- <Component Id="cmp150AF65710B079DFF1238BECDA7BE79F" Guid="{302B69CE-3D49-4ED1-8444-B4617350A400}">
- <File Id="filFE86E71A6BF354B17296C3EC3D5B050F" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\Apache-2.0" />
- </Component>
- <Component Id="cmp47D09D557B4ED743CF9D1373F38FE60A" Guid="{2B6EA880-1639-4FD0-824D-DEFEA97BE651}">
- <File Id="filEC76B8D46187990E58E163FB81759966" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\Artistic" />
- </Component>
- <Component Id="cmpA64C42426CE881C5217417E9FF375739" Guid="{9376ECF6-69D9-45EB-AB56-25EB600B5B6D}">
- <File Id="filB13D3B673B0FC526C892D51B2ABE8632" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\BSD" />
- </Component>
- <Component Id="cmp9A20B21EA5C293970F2144967FC6993E" Guid="{1000280D-EC3F-4741-9F4F-5A48C214DC48}">
- <File Id="fil45228CFDA92E7CBF6E3E92028A61E820" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\GPL" />
- </Component>
- <Component Id="cmpFDF40E6D74638DA5673DD049E8CB7594" Guid="{F23E6ABE-8139-4F59-A9EB-04D903B07D21}">
- <File Id="filE74B00FF0334D4B406A303F02E5A3F09" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\GPL-2" />
- </Component>
- <Component Id="cmp9CDEC10A740F0C834FF64BD6E3D74E7D" Guid="{F0A14AE9-B7B0-4BF5-BD54-F7B45AA7A8DC}">
- <File Id="filCD07A726CF9C689C3A4E0967429426F5" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\GPL-2.0" />
- </Component>
- <Component Id="cmpB53A082052A7608F49149B64E745B1B5" Guid="{0CC5EF69-1B01-4F58-93F0-E5DDE8034ABB}">
- <File Id="fil4B4FA58FEC816C4071CBC95FE662E2E5" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\GPL-3.0" />
- </Component>
- <Component Id="cmp470B7E019D67B72CF637DF976CE63377" Guid="{9DD83DE0-ABFC-465F-8C88-956F166C3145}">
- <File Id="filF176F1384C0D7E21015A42222AFCBDC0" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\LGPL" />
- </Component>
- <Component Id="cmpD0A2B6A27D7741D58A2AEF2FAF36C650" Guid="{E5C45746-E0E4-41B9-8C12-D9F8DE599FC1}">
- <File Id="filB4FA4EDEFA40F075CDA735EFF5F0F67A" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\LGPL-2" />
- </Component>
- <Component Id="cmp35CF35DD6B07289CB01CFC8F6BA52AA2" Guid="{D8013BEF-3E6D-4E8A-876F-C68A457731DE}">
- <File Id="fil25448A4CF631F781E24A456656941AE0" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\LGPL-2.0" />
- </Component>
- <Component Id="cmpE8891B60EEB63EA20DD9EE1502640FC0" Guid="{2C77DEC6-A69B-41BA-A34D-5A08734EEF5E}">
- <File Id="filE226C9B151293DC30365406F8DF2EAD2" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\LGPL-2.1" />
- </Component>
- <Component Id="cmpD834FE3B3EF0CB8C3A4A5BFD44AD6BEF" Guid="{E799A0AD-8167-434D-B84E-A5D1D86451A5}">
- <File Id="filC8DB728270A53C09BC602D282177E338" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\LGPL-3.0" />
- </Component>
- <Component Id="cmpF764E2B6218CBEF2879BAE10393DDDF4" Guid="{FC30D394-C068-4B6D-965A-D69C750E9151}">
- <File Id="filF9F16083B3FF6FDE3B58B934DC66655A" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\MIT" />
- </Component>
- <Component Id="cmpA2697838AD0424FE5B7154DAFE0F01E8" Guid="{3C749E48-6F9D-4847-AE6F-7CB04F4B52BC}">
- <File Id="filD94CA541267A44D8E8E77A11C889BC5F" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\PHP-3.0" />
- </Component>
- <Component Id="cmpE447E6A37475EC20B82D88C96AF5DA5C" Guid="{8B3E88C3-CC80-4128-88F1-34D511621D85}">
- <File Id="fil97008E393DCE6304D1EFE2E18C9898D8" KeyPath="yes" Source="fio\usr\share\doc\common-licenses\ReadMe.txt" />
- </Component>
- </Directory>
- <Directory Id="dir9CDE922D82E3CA0307267E859829EB0E" Name="coreutils">
- <Component Id="cmp6E7A1B466D78DFC52F21EBA76B82EB99" Guid="{1380EEDB-7D75-43C6-BE07-95EC9608DA93}">
- <File Id="fil5A05B0080F1F3888A26B5C9BFBCC1C6B" KeyPath="yes" Source="fio\usr\share\doc\coreutils\AUTHORS" />
- </Component>
- <Component Id="cmpF85EB2165FEA2969A8C5A214406EBA70" Guid="{5FFD98C2-D7F3-4178-967A-0A73AE7E08DE}">
- <File Id="fil3A7DD57BADBFD73C5EB058F41D8FFC72" KeyPath="yes" Source="fio\usr\share\doc\coreutils\ChangeLog" />
- </Component>
- <Component Id="cmpC7F19F6975D33BC013985FB293E1FFFE" Guid="{4FDF8048-7579-45F7-AA47-03DDD7E94A74}">
- <File Id="fil4CCF00C15B9D1F4C7C575BB567E4436D" KeyPath="yes" Source="fio\usr\share\doc\coreutils\COPYING" />
- </Component>
- <Component Id="cmp7E20F6580A8AB3F45476E1E58C2E4FC2" Guid="{1FB9720A-EC68-4FED-A27E-3D6D69D7A6B8}">
- <File Id="fil6266F8EAADBB4A5CBA328102AA9F77A7" KeyPath="yes" Source="fio\usr\share\doc\coreutils\NEWS" />
- </Component>
- <Component Id="cmp9CB0B55170FA632F683139FA7A4060E6" Guid="{63D44E29-8261-4718-97F1-698956963D0A}">
- <File Id="filB62742A24FA1162EC7EC978B281612D9" KeyPath="yes" Source="fio\usr\share\doc\coreutils\README" />
- </Component>
- <Component Id="cmp6177FB5C06B3EE4BEAA28BD69F9B4B9A" Guid="{1746E942-2258-4F31-B3FB-228D259BAE75}">
- <File Id="fil5262B596A0FFBD3FEBC544F8625E1EDF" KeyPath="yes" Source="fio\usr\share\doc\coreutils\THANKS" />
- </Component>
- <Component Id="cmp95FEC771C8842E9CCD079CD8C4119164" Guid="{32580DE1-0BA3-4B1E-B19C-E235DDD65F82}">
- <File Id="fil13DB7C00F5A9AE22FF345E3006D092E4" KeyPath="yes" Source="fio\usr\share\doc\coreutils\TODO" />
- </Component>
- </Directory>
- <Directory Id="dirDCC09C452EF554273611EA3D3CAB3F12" Name="cygutils">
- <Component Id="cmpE40B03EF3F9BC842282C05EAF47B5BF4" Guid="{7998526D-A1CF-4FFB-8DD5-D7A86CAF1ACD}">
- <File Id="fil4C507EA809A9F51393C4C0B8570089C9" KeyPath="yes" Source="fio\usr\share\doc\cygutils\AUTHORS" />
- </Component>
- <Component Id="cmpA1004B6544CBDEB96721282DEF79C6E2" Guid="{4A1319DF-D270-4569-AB0F-1722CF536B4C}">
- <File Id="fil7EF6190F4D30704DFD000963F554EFEC" KeyPath="yes" Source="fio\usr\share\doc\cygutils\ChangeLog" />
- </Component>
- <Component Id="cmp8124DE77AEF4DF025C50A57BA9B3927D" Guid="{96FAA1F1-5830-49C6-9E90-35A326FEF21F}">
- <File Id="fil363101C03F530CF2CA3FCD381CDE8C8E" KeyPath="yes" Source="fio\usr\share\doc\cygutils\COPYING" />
- </Component>
- <Component Id="cmp43DF5E6C088118231FC662ABEBA26D22" Guid="{095DA98F-A576-49D5-85CA-A152381EE10E}">
- <File Id="fil7EAB561AB804F468C94783F9DE2434B3" KeyPath="yes" Source="fio\usr\share\doc\cygutils\HOW-TO-CONTRIBUTE" />
- </Component>
- <Component Id="cmp1FA53544A720BB11E20618E04EEE243C" Guid="{B66B7993-4B63-4887-830A-63BA52EA9DC6}">
- <File Id="filBFA13995C9E93391E5605A77D2984A69" KeyPath="yes" Source="fio\usr\share\doc\cygutils\NEWS" />
- </Component>
- <Component Id="cmp25FFD4C422A800BDDB11214F43892687" Guid="{6BF40677-1325-4ED9-A413-3EB5DEEC93DC}">
- <File Id="fil5C4BAD0C411E1BED70A17987DF913A5C" KeyPath="yes" Source="fio\usr\share\doc\cygutils\PROGLIST" />
- </Component>
- <Component Id="cmpA06BB6938BDE80CB64330B947218BE7B" Guid="{F7A008DB-D76A-4389-A998-0DA1F7C05E5E}">
- <File Id="fil2C1B2830FC4D507CBEC6892C578DC4F4" KeyPath="yes" Source="fio\usr\share\doc\cygutils\README" />
- </Component>
- <Component Id="cmp428C8C607ADB41C0BB04D46BCE5A4014" Guid="{56B70FE1-ADB2-46AF-BAFA-319283C3F78D}">
- <File Id="filD0B257A59A05E793B654A2C81BFD8CFF" KeyPath="yes" Source="fio\usr\share\doc\cygutils\TODO" />
- </Component>
- <Directory Id="dirEE248A7143B61FB5FECD0EBB5D815B2D" Name="cygicons">
- <Component Id="cmpF19CF9CAF5529C9B83AFB7703D9923F5" Guid="{764BA39E-78D9-4384-8997-706808394EC9}">
- <File Id="fil863717642752EF12F16AA4805FD0682F" KeyPath="yes" Source="fio\usr\share\doc\cygutils\cygicons\README" />
- </Component>
- </Directory>
- <Directory Id="dirD7894D277768C12380375377DFD4BA2B" Name="licenses">
- <Component Id="cmp5D8F1F9BCFFB1AE69A46879FF61AD92E" Guid="{CE934AC4-BD43-4C80-B2D2-557A51DB0DAB}">
- <File Id="filCF99662B92E7DFB3C81A9F80C93131A0" KeyPath="yes" Source="fio\usr\share\doc\cygutils\licenses\COPYING.BSD-no-advert" />
- </Component>
- <Component Id="cmp03B7DE83960C76200EE0461D21CFA081" Guid="{664179C0-8B15-4433-AC55-42AAB002719B}">
- <File Id="filAECBAF282226FCB0E0AF25C4DCAE73D0" KeyPath="yes" Source="fio\usr\share\doc\cygutils\licenses\COPYING.GPLv2" />
- </Component>
- <Component Id="cmp3C44B8533F3771247A11B7A8255FB4ED" Guid="{BB3A4751-171D-4022-AC44-2E404C63D9F5}">
- <File Id="fil20715211198FFAFA14E8F3D0DF0E13D1" KeyPath="yes" Source="fio\usr\share\doc\cygutils\licenses\COPYING.GPLv3" />
- </Component>
- </Directory>
- <Directory Id="dir9996408C2516CD93C70D9FD803677B7D" Name="lpr">
- <Component Id="cmpF3F6444C2F13C8F58ECA7B4D9623C976" Guid="{4B631497-7570-442F-8918-9802DD7EA21E}">
- <File Id="fil2C7185ACA07103E3584B44BE50F26C36" KeyPath="yes" Source="fio\usr\share\doc\cygutils\lpr\README" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir21BFE9E064F90BCBAB40695D0E3EC8CD" Name="Cygwin">
- <Component Id="cmpB04493AFA1F9A17F322898F03B9A308C" Guid="{B33ACE12-28CD-4F6A-BEBA-A81F033E2100}">
- <File Id="filB1F22F979425BEB4532E3450F0B9975A" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\alternatives.README" />
- </Component>
- <Component Id="cmp7C74108CB716C9FAADCDDF412486B462" Guid="{286811C8-0B2A-447D-9DFE-0F3AE78FC82D}">
- <File Id="fil92565D59B184C2508F78205791AF2E30" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\bash.README" />
- </Component>
- <Component Id="cmp5B54666693E4B7611E8AECBC181BC450" Guid="{3AC3F8B9-0750-414A-B063-58C6C5DDCF00}">
- <File Id="fil5EB3ECBDC8356CDC231B5B454714A36A" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\bzip2.README" />
- </Component>
- <Component Id="cmpD414C2B86D59FD387E390B6B602E49A4" Guid="{F38F8453-6952-412A-9E29-DE273AE554EF}">
- <File Id="filC44B800988F3071484495ECFFA853560" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\COPYING" />
- </Component>
- <Component Id="cmp3175ABA9651EA67AB2333B3AC9425B0F" Guid="{CAFA6267-145B-4577-9A77-B3EB5B79DBD8}">
- <File Id="fil44A2E1DEF6544E61850BB65D39EC3537" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\coreutils.README" />
- </Component>
- <Component Id="cmp71F0C49A41CB1CEAF3B3D105ECC6BEFB" Guid="{01D4C832-84C5-4643-AAF7-79BC77668FCB}">
- <File Id="filFD7420A136E57536DC32DA80789C3C84" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\cygrunsrv.README" />
- </Component>
- <Component Id="cmpDD4BA20ED40B6A9C983F3698D619A872" Guid="{17F0B5F7-14B4-47D5-93B2-67BEB906D19F}">
- <File Id="filC2CCF2CCC7E6430EC4A5945C943C8EED" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\cygserver.README" />
- </Component>
- <Component Id="cmpBD16BFA1FBFE253E87B188BCA75BCE13" Guid="{1FE4A15B-F9D5-4713-AF24-18DD22FC193D}">
- <File Id="fil07B15503211C369436101BC34ABB4BB5" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\cygutils.README" />
- </Component>
- <Component Id="cmp47F9E2DCC6CBDB74082623B71645AE5F" Guid="{5B1A06EE-5DBA-482C-8378-BEAB8E5384D8}">
- <File Id="filB27FEA7B6E4FAC74107A0D998D5E4BF3" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\CYGWIN_LICENSE" />
- </Component>
- <Component Id="cmpE74362CFC0CB4603035365565D508031" Guid="{1460824C-B7A7-4BBC-BF55-567D3C8839EC}">
- <File Id="filF41CF2710D15143095257661DC3376A8" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\dash.README" />
- </Component>
- <Component Id="cmpDB350DAF0628867FBDD230DD13168818" Guid="{7F34C241-9C9D-4E61-8430-96758C4B33B7}">
- <File Id="filA86E33829BB0F9F383B8DC3077FD6F9B" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\editrights-1.01.README" />
- </Component>
- <Component Id="cmpB47C706D0420265C84E5B329988DBDE1" Guid="{0FCF53BF-D73B-45D4-BD8C-074C6FE18831}">
- <File Id="filCAD9249FEEC35382FAEE22BF381B5545" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\findutils.README" />
- </Component>
- <Component Id="cmpC30A3E8B8A1E5219409CB75EE89CAE91" Guid="{2EC4332B-864F-47F0-B8F4-C0F03B63BC4A}">
- <File Id="filFA7B095DE2C18F86CE0B4A095BA91F7E" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\gettext.README" />
- </Component>
- <Component Id="cmp3BCBD91B0B17BCD23696302B64997F4C" Guid="{FD24E2F6-958E-44C8-BEDC-B576CE2A5A7B}">
- <File Id="fil03AC21B533EEA638D38968C58BF317FA" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\login.README" />
- </Component>
- <Component Id="cmpAE7299A39EAF2D798BA3223D04F75581" Guid="{C25CE2AB-2433-4845-BAD4-48EC25080557}">
- <File Id="filCC725118BC48A272085A93B2059429B9" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\man.README" />
- </Component>
- <Component Id="cmpE3A4A958E10D2CB5E04195F49C1C3FB9" Guid="{739B2068-E937-45AA-AF7F-6B25EF16E6F2}">
- <File Id="fil4710D0095136AEE1F80D31F16397B2D9" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\rebase-3.0.1.README" />
- </Component>
- <Component Id="cmp7233EFA96E0F788F31E36C2E776BD3FD" Guid="{452F6489-D0C8-4AAE-8871-59D07395ED70}">
- <File Id="fil156A47893A3CD6569C5DDA53209E9A38" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\run.README" />
- </Component>
- <Component Id="cmp22552A44BCADF8BE44DAE496F19A4152" Guid="{245EFA4E-284E-495F-AF1C-BE7D408054FE}">
- <File Id="fil94D02984C7ED2DD2B599FA1ED9A6D632" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\tar.README" />
- </Component>
- <Component Id="cmp6F655DD4461F8BBCBD8F88816FF32805" Guid="{B5E04D4B-E8AF-429A-93AA-C279A6E55F37}">
- <File Id="filD27266C671C0D30D34C896197E46FCA3" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\terminfo.README" />
- </Component>
- <Component Id="cmpCC5715DCBFBADC6AD087BD0B2A868CFA" Guid="{25F4FF50-0ADA-4E56-8534-8328ED92F02F}">
- <File Id="filC214B899DA0E605D9DA7AE56E76419A2" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\terminfo0.README" />
- </Component>
- <Component Id="cmp33A49144F28065AAF299E42E0E4AAE2B" Guid="{179D2C60-A575-46AB-ADE7-CFB8C0F5499D}">
- <File Id="filC9816B25662C933DD4183B1B577A5F4E" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\tzcode.README" />
- </Component>
- <Component Id="cmp6520B7FC4E16E9B5A57205E14B13DC15" Guid="{8E36FE01-6CC5-472C-811E-6139A7C36F0A}">
- <File Id="fil4BCEC31C845290FE1C7C8C87DB06CB38" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\which.README" />
- </Component>
- <Component Id="cmp55C4D944B4BC8BD2DB9B5A52E7B182D4" Guid="{AE189F9D-177D-47F3-B612-56EE75090694}">
- <File Id="filC38ED6E3EA5D2A5B1A6FF44DD21669C3" KeyPath="yes" Source="fio\usr\share\doc\Cygwin\xz.README" />
- </Component>
- </Directory>
- <Directory Id="dir52CDACB356E5626841505C7898066D90" Name="dash">
- <Component Id="cmp30132484A518BECD3F9B0D9CDF235B3D" Guid="{40C22F79-81AE-4374-91DB-DBA7BFFEA02F}">
- <File Id="fil45FA63E0330F15D9652276049812684F" KeyPath="yes" Source="fio\usr\share\doc\dash\ChangeLog" />
- </Component>
- <Component Id="cmp9515C047E1E02164B4D329A7876B80CC" Guid="{44A24B90-0681-4836-B9A2-67C3CFCC7CB5}">
- <File Id="fil11AD608190AF73B129A6A6FB21018095" KeyPath="yes" Source="fio\usr\share\doc\dash\COPYING" />
- </Component>
- </Directory>
- <Directory Id="dir30035E3901FE1BD479756BD3CEE98FDA" Name="editrights-1.01">
- <Component Id="cmp58BA76AE5E3A54A78CC6407BC6C287BE" Guid="{8503D97F-37EA-4806-B5A6-7AF4CF6F9176}">
- <File Id="fil4CDCEE775A5FD45B79B6E73276E942B0" KeyPath="yes" Source="fio\usr\share\doc\editrights-1.01\LICENCE" />
- </Component>
- <Component Id="cmp7485CEEDB4F7D66938BB4138099EA127" Guid="{CB07F9DC-F14F-498D-8C32-CF8ADE28DC76}">
- <File Id="filA72AF149E9A729E2F79DC4DC00AC693D" KeyPath="yes" Source="fio\usr\share\doc\editrights-1.01\README" />
- </Component>
- </Directory>
- <Directory Id="dirAE0F29575C60219B46A7DB04C00DB256" Name="findutils">
- <Component Id="cmp570751F96D02E689C315B95961F2F6C5" Guid="{268883C0-650F-4F56-A16E-96974FF82986}">
- <File Id="fil3D81D1CE877DB0919F97FAD9AFCB89CE" KeyPath="yes" Source="fio\usr\share\doc\findutils\AUTHORS" />
- </Component>
- <Component Id="cmp3E3ED09E2010B8E9C9EEAF8BF3E0006E" Guid="{503E1212-5D30-4ACD-BC37-B2B96A93190D}">
- <File Id="fil6CCF304E924A603E58F057682C63828A" KeyPath="yes" Source="fio\usr\share\doc\findutils\ChangeLog" />
- </Component>
- <Component Id="cmpF34370F2DFDE5641F4183CAC81911A9A" Guid="{ECDA9B63-7434-4505-AB8B-3A4D144F3684}">
- <File Id="fil6B95902745D81FF35B95FEC9B293F874" KeyPath="yes" Source="fio\usr\share\doc\findutils\COPYING" />
- </Component>
- <Component Id="cmp0CF7B801C8706FBC0F91702427899893" Guid="{862F2BEA-BC40-440B-B838-7AD0DCDFF617}">
- <File Id="fil64790007EC4687199C507BBAEB679740" KeyPath="yes" Source="fio\usr\share\doc\findutils\NEWS" />
- </Component>
- <Component Id="cmp207E40B6AD6A5C5979C086CBF7458FD4" Guid="{D07F860C-E0E2-4EE7-8AFB-A9C9EB69D6BA}">
- <File Id="filD969D54380BE6BD38FA36B4E1BFDEC88" KeyPath="yes" Source="fio\usr\share\doc\findutils\README" />
- </Component>
- <Component Id="cmp6A3C207B503153219EA1FA88D52B07E0" Guid="{1ED2AB08-4B4D-4FB2-8480-91B7D2F1225E}">
- <File Id="fil56A83BF6AD65E3A0F5695C205857A43C" KeyPath="yes" Source="fio\usr\share\doc\findutils\THANKS" />
- </Component>
- <Component Id="cmp1BDADBE9C90CF239061505C9A77557F9" Guid="{56317F66-93DD-4ADE-8798-A7E8BF80193A}">
- <File Id="fil59D188DC7955549729781AD372421F36" KeyPath="yes" Source="fio\usr\share\doc\findutils\TODO" />
- </Component>
- </Directory>
- <Directory Id="dir79D67B32433FE772D39BA48970C59538" Name="gettext">
- <Component Id="cmpE5405F89AF6FDADF97AF3E4AB2B66482" Guid="{1F2EDF76-CB82-4E53-9E54-D74DB4A925FB}">
- <File Id="fil3D25D70C544FF455D7B8550ECDF93941" KeyPath="yes" Source="fio\usr\share\doc\gettext\AUTHORS" />
- </Component>
- <Component Id="cmp7EFED9E565CCDF819FF21BFD0AE81208" Guid="{6BD93F91-A55B-4CA4-8BA9-50FFE8B48D93}">
- <File Id="filC49366CF5B40C94ECACFF4411217AF79" KeyPath="yes" Source="fio\usr\share\doc\gettext\autosprintf_all.html" />
- </Component>
- <Component Id="cmp70EF1B1BF908F495584CAEE90BFDEF38" Guid="{9E1D6E54-5E45-4080-99EA-1752FB93F5AF}">
- <File Id="filBB6C68C1D70D92F1D18F2979DEEC9AFB" KeyPath="yes" Source="fio\usr\share\doc\gettext\bindtextdomain.3.html" />
- </Component>
- <Component Id="cmp4D3324DAB43E6BB230F32D8C7ED4D936" Guid="{F8FF7095-B16C-4E0A-98AF-17FF4E844B9F}">
- <File Id="fil9E12ECD2D7DC902047BC521C5FB08E8E" KeyPath="yes" Source="fio\usr\share\doc\gettext\bind_textdomain_codeset.3.html" />
- </Component>
- <Component Id="cmp2D56390A6628FA59916D457AC0426E0C" Guid="{178339BC-1DA5-4D82-B556-91C46D1B18BF}">
- <File Id="fil363783E45BA08865FFA4ABA3F51CC43B" KeyPath="yes" Source="fio\usr\share\doc\gettext\ChangeLog" />
- </Component>
- <Component Id="cmpC15D4C9B0C53C3CD3F797B5A28C078B7" Guid="{A52A21BF-24BC-4809-9967-1E8558D3E360}">
- <File Id="filBDEA3A3FD1A4DBD29D2A38A313233F19" KeyPath="yes" Source="fio\usr\share\doc\gettext\CHECK_NOTES" />
- </Component>
- <Component Id="cmp543950B75E1FE34FB32A0D1C94D1F540" Guid="{D8A788C1-08F5-46A6-B42F-667137AA3CF6}">
- <File Id="fil4C1DFDAF27E6947EFC39C1D62E7B1F30" KeyPath="yes" Source="fio\usr\share\doc\gettext\COPYING" />
- </Component>
- <Component Id="cmp783B6C882719EF77777974FCDC9CBE62" Guid="{9540ADBB-6438-4471-8E35-ED7D51EDA705}">
- <File Id="filACCAA570FA3430999488B014BBB67FE5" KeyPath="yes" Source="fio\usr\share\doc\gettext\envsubst.1.html" />
- </Component>
- <Component Id="cmp101FC65C558E97DE3B8E283A23C2B543" Guid="{48317E1B-7D85-4797-B22D-CD9BF99BD6C1}">
- <File Id="filEA051A9C10AC9B23DF238EE353316651" KeyPath="yes" Source="fio\usr\share\doc\gettext\gettext.1.html" />
- </Component>
- <Component Id="cmp31D1396EEDB833DBAEC5F157C18CC41D" Guid="{2473247B-B250-4866-9AEB-0BA118D001C1}">
- <File Id="fil0BA5D8F41CD8741C051C44D17CED49FD" KeyPath="yes" Source="fio\usr\share\doc\gettext\gettext.3.html" />
- </Component>
- <Component Id="cmpD10E8B97470977B131BD00495927678C" Guid="{4E034E5A-507A-4840-B7BC-A3D575FA252F}">
- <File Id="fil7F3DB3780F2CF8A4A583734D38B3DA92" KeyPath="yes" Source="fio\usr\share\doc\gettext\HACKING" />
- </Component>
- <Component Id="cmp8FFFF6EA844D9F10EAA29F457FDADDA4" Guid="{D572D027-16DD-4560-A7CE-C6C7663CADAC}">
- <File Id="fil0E82967B91F25EFA461854427D732A5E" KeyPath="yes" Source="fio\usr\share\doc\gettext\NEWS" />
- </Component>
- <Component Id="cmp1014D83056D6E3B54A66B664F0E3BD52" Guid="{14477A50-21D7-4CFD-83FA-0AD4802D81A3}">
- <File Id="fil88CF5BB509A6EBF77C3AE0180A8260C3" KeyPath="yes" Source="fio\usr\share\doc\gettext\ngettext.1.html" />
- </Component>
- <Component Id="cmp7EF5887162FC405BDF57A95D2163DA8F" Guid="{2675E30C-DCF9-4BA8-97D1-06F1A87606E6}">
- <File Id="filA74E46C215436146EF5C220192384ABF" KeyPath="yes" Source="fio\usr\share\doc\gettext\ngettext.3.html" />
- </Component>
- <Component Id="cmp4BAB9684066EC6BF181A7797575979D5" Guid="{6893A3B0-D67C-4279-9EF7-01DA20B9DDF8}">
- <File Id="filB0C8368C483A60DF6DC3945B41E7CE7B" KeyPath="yes" Source="fio\usr\share\doc\gettext\README" />
- </Component>
- <Component Id="cmp83152A2CB636E5CB959DDD6827885212" Guid="{A445D6EA-6A43-45FB-8F92-2DBE5340CFD7}">
- <File Id="fil6BC4EAF961C1F05499272E180F613D04" KeyPath="yes" Source="fio\usr\share\doc\gettext\textdomain.3.html" />
- </Component>
- <Component Id="cmpC72ECCDC50CF09FFCE622CC8524CE89F" Guid="{BA83A436-97EB-4DB8-8DD8-0EAF7FFFA1D0}">
- <File Id="fil2150F71A16E68936FE97CFFD3CA3B4B5" KeyPath="yes" Source="fio\usr\share\doc\gettext\THANKS" />
- </Component>
- <Directory Id="dir57FF62966843826063FEA727920B7588" Name="csharpdoc">
- <Component Id="cmpF14E732149AF8B215FBA4DE54968D653" Guid="{F55A05B2-2554-473B-9C9F-30D2A228602D}">
- <File Id="fil954E87A951D9A481E0BEADD831A85EFC" KeyPath="yes" Source="fio\usr\share\doc\gettext\csharpdoc\begin.html" />
- </Component>
- <Component Id="cmp15281604BCE4C789ABD22334C3387E3D" Guid="{477658EA-19D2-4030-B5FC-7059879A80C1}">
- <File Id="fil271D20869158360B689ED0AB65D4D76B" KeyPath="yes" Source="fio\usr\share\doc\gettext\csharpdoc\GNU_Gettext.html" />
- </Component>
- <Component Id="cmpB04A5B96535E32A367BB6614918C770A" Guid="{1D17B201-3D0E-4801-ABA2-30C81DA1C12D}">
- <File Id="filF559920A9A4CE8E2B6928C37D09B7251" KeyPath="yes" Source="fio\usr\share\doc\gettext\csharpdoc\GNU_Gettext_GettextResourceManager.html" />
- </Component>
- <Component Id="cmpCAFC0FDCEE6D724F17BA05EE82929E7F" Guid="{A9AF947B-8336-45AE-A27D-6FBD6589F6D4}">
- <File Id="filAEFE362B80685EB2AA3B4F50BB44CE93" KeyPath="yes" Source="fio\usr\share\doc\gettext\csharpdoc\GNU_Gettext_GettextResourceSet.html" />
- </Component>
- <Component Id="cmp71CD35C5B1CCF36AAE868FFD2BE91553" Guid="{62B95B77-FD78-4BFE-95E4-C385B091BA3E}">
- <File Id="filBB04E7E8D0F1BC35ABC1EBB98BDEAC37" KeyPath="yes" Source="fio\usr\share\doc\gettext\csharpdoc\index.html" />
- </Component>
- <Component Id="cmpC240B2442830ACEC9E000A979CE8B185" Guid="{34BED8D5-5454-4A20-95C8-B4993AE66C09}">
- <File Id="fil5CE61DF7C3FCCD0F66FEF259044C76DC" KeyPath="yes" Source="fio\usr\share\doc\gettext\csharpdoc\namespaces.html" />
- </Component>
- </Directory>
- <Directory Id="dir0D9CA99967DD94551070F9194A0259F2" Name="javadoc2">
- <Component Id="cmp1F89A8C36726DD179506B7AD7EB936B9" Guid="{9B51B225-A854-4ED8-A2E2-E3E440AF7AE5}">
- <File Id="filD1EE67FC2FFB5FCAE8E5B64B5A62FEBB" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\allclasses-frame.html" />
- </Component>
- <Component Id="cmp4B29F0719237D4BF5A52E54F15EB3BCA" Guid="{57A58E4D-7D3C-4BD3-9D53-E3EDC34DDB93}">
- <File Id="filCBFF384428EBE613C558FD6F2FB35844" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\deprecated-list.html" />
- </Component>
- <Component Id="cmp4B1EF797E3BA94A0538FD4471FEBDB8D" Guid="{D7C9BFA3-7933-4C37-ADA3-D4A8312C30B5}">
- <File Id="filC3B4449E76AC8E4BE04071897B433AB4" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\help-doc.html" />
- </Component>
- <Component Id="cmpF6635290A32CBC7210958013513A573D" Guid="{43845976-59DA-4873-85A7-2C5A7A4A17E5}">
- <File Id="filBFD2DD5B26FDD13AECA8E59BD211048C" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\index-all.html" />
- </Component>
- <Component Id="cmp365EFC14FA201D6077D124FBA4325B25" Guid="{A24ACC2C-FA99-4FC3-941C-72D0A9A5746B}">
- <File Id="fil935539D9129388EB1F9FF46815C43762" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\index.html" />
- </Component>
- <Component Id="cmp0778DCCC8AF39C2DC39F678C5EC90895" Guid="{AC0CFDDB-F020-4CA9-B838-6148CD699922}">
- <File Id="fil1A68264FF12ED930BB8B03945B9A8234" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\overview-tree.html" />
- </Component>
- <Component Id="cmp211A5B7A7006D0A542D5D13790F2BC43" Guid="{B45592BD-42F2-4797-AD4F-66DFBEABD2FA}">
- <File Id="fil4D52CE82AF18715F7FF0FF771E2FB748" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\package-list" />
- </Component>
- <Component Id="cmp337BFF3D9114B6A90B602D605676B7AF" Guid="{1492204D-91EF-41A7-83BC-F1CDB4904F17}">
- <File Id="fil0170B8B6ECDDBE29739D39467D414F81" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\packages.html" />
- </Component>
- <Component Id="cmpD6AC3BE6711C6E3329B505346F335B83" Guid="{EF4F29D2-2E5C-4D0B-A442-1F1F1402709C}">
- <File Id="fil3DE4D707FCDFFDFAAAA710FF0BD19044" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\serialized-form.html" />
- </Component>
- <Component Id="cmp707ABA8993722D493109D3E55648ABB9" Guid="{A73B7196-E93F-4FBA-A2D1-0CD36BE49872}">
- <File Id="filCA2E01CED4FB903DD1E0339056160E1E" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\stylesheet.css" />
- </Component>
- <Directory Id="dir7AB3482C1D0865CA2DAC4677C9F9EA1D" Name="gnu">
- <Directory Id="dirBDA52DA16FD0AC788AB9B21FA3A904ED" Name="gettext">
- <Component Id="cmp912DE6A56032E05DEBC56096DB6E824E" Guid="{E23C78D7-98F4-4635-BB9F-875182EA4235}">
- <File Id="fil395889EBB7516C5255C99D4F325F4C9E" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\gnu\gettext\GettextResource.html" />
- </Component>
- <Component Id="cmpACC8F462E3AF14BFF09DC5724ABA71AB" Guid="{88914D56-5B23-487C-8D32-BA17E1EF6128}">
- <File Id="fil59B19EC3778EDA90FECEA38186F5A1B1" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\gnu\gettext\package-frame.html" />
- </Component>
- <Component Id="cmp6F567BFA582751F7E9B8633BF2098293" Guid="{0ADD3140-D718-42CC-B08C-22C0EF5F292D}">
- <File Id="filA49B49427B86F3F82CB6F8F0A37C64FA" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\gnu\gettext\package-summary.html" />
- </Component>
- <Component Id="cmp89742990390C6A4522C832D4CE5D3C05" Guid="{BF2E0AA7-24D4-458B-A113-BACD83AC0797}">
- <File Id="fil1438F5C1A7207E126A449575DE92F74E" KeyPath="yes" Source="fio\usr\share\doc\gettext\javadoc2\gnu\gettext\package-tree.html" />
- </Component>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- <Directory Id="dirF7D505093BE12FA64B15325ED163D413" Name="groff">
- <Directory Id="dir22D3CFC05B361DF0E87F5402340C362B" Name="1.20.1">
- <Component Id="cmp45C6C44BAAD40211F26CCB0A032B341B" Guid="{4E52EF75-119F-4B06-8155-E6BE6F67261E}">
- <File Id="fil543C3CCC0C5D6327F404BC4C7BA43560" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\meintro.me" />
- </Component>
- <Component Id="cmp89E80F335C10F9C51BAC52E305271C29" Guid="{8B9E2B2C-3C74-47D1-B707-1C133AAD881A}">
- <File Id="fil7383F9C530AB513705EC26866D404F9B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\meintro.ps" />
- </Component>
- <Component Id="cmp5E3542CE7A58A6F2EF6D91F8607D2027" Guid="{FF2EEC5F-6C5E-4456-ABD2-567BF3B4D0BA}">
- <File Id="fil7B4FCF1F9F949281B95FD962A8DDF3B4" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\meref.me" />
- </Component>
- <Component Id="cmp6717AB97E79798FEDD3C25562559B22C" Guid="{959737B0-362E-458F-97D0-08B4AEB02191}">
- <File Id="filC11899F1C9586106B83EC8198638AF6F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\meref.ps" />
- </Component>
- <Component Id="cmpCD89A248C076161A36688E09CE92B360" Guid="{EBEB3DEC-FB5E-4105-A21D-3A2C3B9712C4}">
- <File Id="fil4272179AF644E8CD9EC621E05963503A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\pic.ms" />
- </Component>
- <Component Id="cmp97B5A67E33BE13048BB518D85E6A1282" Guid="{28903888-5D38-41A8-99BC-E13C949C79B7}">
- <File Id="fil52C749F91F98CDA69E41CED1786BCF68" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\pic.ps" />
- </Component>
- <Directory Id="dir0A40E2D5B3185BBE846189E3670425AF" Name="examples">
- <Component Id="cmpC32E11A60A6630D2AADB13A2834CEEA3" Guid="{A09A61D5-D9AD-4C5C-80BB-444E0FE28AFE}">
- <File Id="filC80B5E8849B0FCD711AA6C704C401BF9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\gnu.eps" />
- </Component>
- <Component Id="cmp517F48DF79E475BE00DF40F0CF10EDA6" Guid="{7288B177-A80F-435E-93C7-A8E19D73AC13}">
- <File Id="filF1F2A2E4C322C9AD35E0D879FE0B6965" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\grnexmpl.g" />
- </Component>
- <Component Id="cmpC1E1B59ED57BC7B69DCBC8F1B1229A81" Guid="{77C11F5F-1D6F-4C81-833F-12D390FB409A}">
- <File Id="fil4B435FC45FD64A3FA84DADD4E60822A1" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\grnexmpl.me" />
- </Component>
- <Component Id="cmpAB8074E41FE0B445903AE2BDB9B21B15" Guid="{C3AC33F0-B421-4A68-A396-F07AFEA310C2}">
- <File Id="fil65BFAE9250A3C8B326C8474F6081DBA3" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\grnexmpl.ps" />
- </Component>
- <Component Id="cmpC513C5C7956DC2468AFA509F55E820C1" Guid="{9CBC5D23-4B3E-4F5D-8F41-D6383DC118BC}">
- <File Id="fil990E93FBED58665372724BCF34ED81A3" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\groff.css" />
- </Component>
- <Component Id="cmpBAD0557F36DD86AC447F642848FC643C" Guid="{0D988662-5796-4606-B9A0-85DE2D520679}">
- <File Id="fil953D78463C183D5FE9E44B6B9D80A9D6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-1.html" />
- </Component>
- <Component Id="cmpF20A3ED0DE112AC1684D4034B0E8267A" Guid="{B2208210-1505-45FF-B349-BFBE8B3C6E1F}">
- <File Id="fil144794B309793A545A44BC761E86EBAB" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-10.html" />
- </Component>
- <Component Id="cmpA749DD861DC58218FFB819B5102E27F9" Guid="{630B209B-35C6-4C23-9F9A-E624A8BD1CD7}">
- <File Id="fil7E10F0D43E4FA6674C66C6ECD40E0675" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-11.html" />
- </Component>
- <Component Id="cmp653F946E3B13C1242E5F7D250DF450EF" Guid="{8E414321-48EE-44C3-8BD3-0F102B71ED4A}">
- <File Id="fil807E4879C1EB8615390AFC33E733DC41" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-12.html" />
- </Component>
- <Component Id="cmp47C8FAC266A9A1FE9BAFA9357038943A" Guid="{6B839948-C058-42C6-A742-EB12B1FA6B0A}">
- <File Id="fil728082949CDE3B7EF681A674E0815089" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-13.html" />
- </Component>
- <Component Id="cmp6DACA6238285B6B7DE0744FB15FB96E3" Guid="{1C2ED60C-01E1-4B56-AF05-AF6D7AC2B061}">
- <File Id="fil25C649B3A08A78F9022D4AB653DE345D" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-2.html" />
- </Component>
- <Component Id="cmp5AE3571BB458D35A2925EBD96E2191CE" Guid="{ABDCFE3D-0644-42EF-8293-9042AAE2C3A7}">
- <File Id="fil4B5D5E51CC2A47EBE78CFA8EDB054FC0" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-3.html" />
- </Component>
- <Component Id="cmp90047EA71C48C6F103449C4AA40EDD8E" Guid="{771092DD-6003-42A9-B836-2500BA4F7180}">
- <File Id="filEA279A43F3F02B8599CB72E92A1DFEAA" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-4.html" />
- </Component>
- <Component Id="cmp4A19D8B7B80B61267D0B25650589BC08" Guid="{413C5609-095D-4FA4-A5C3-CD2E8A60AF97}">
- <File Id="fil01C78610C85F81B3658332F01A59D973" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-5.html" />
- </Component>
- <Component Id="cmpF137721640A5A6F4E0ECC98FDCD02B27" Guid="{5FD9CC17-4911-456C-80FF-BC6DF117142C}">
- <File Id="fil740E338D5526D04A289FDD6677D59F26" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-6.html" />
- </Component>
- <Component Id="cmp4BCA7C551CB0E8BD0E3FBA912949F9F0" Guid="{3AC32B3D-7346-4DAB-B8C7-156379096C77}">
- <File Id="filF59C38648ACC8F1B2AECB25011E6C12B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-7.html" />
- </Component>
- <Component Id="cmp32508429314C170C54846F9A04CB2278" Guid="{1785A6BE-1654-4BDE-92F4-64E9C7FFA74A}">
- <File Id="filAEC9B8763C5CF4577BBFA90A783207E4" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-8.html" />
- </Component>
- <Component Id="cmp596372A7D557E312D3DBC1FCCB0D1FCE" Guid="{9B3E0917-059D-46FA-8E08-2202E2CFA384}">
- <File Id="filE5BDFD160B7C5F50417FABB077A67118" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage-9.html" />
- </Component>
- <Component Id="cmpFF35E571428D681049189719AC7794A2" Guid="{D7344C6E-BEA1-401F-AAFC-60FF6CE9347A}">
- <File Id="filC5A50732112D9A4CF5D1329FF0FFF783" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage.html" />
- </Component>
- <Component Id="cmp43DA5040C9D7C2FDBAED63B2801D14AF" Guid="{15B5995C-365D-41DF-B05D-7A6F43542E8D}">
- <File Id="fil6E1394559A09CF5F29FDBB80363A8F46" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage.ms" />
- </Component>
- <Component Id="cmpAE820969A8D28BDFD6B4B50E3676DD07" Guid="{A9BAE2AB-54ED-4EA3-B852-F7D020B0EF16}">
- <File Id="fil8EE6C6B1B1FA4730DCB7FCAD84F0F4D7" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\webpage.ps" />
- </Component>
- <Directory Id="dir4BE79ADFB2A6EFF7B2B03D467FA011C6" Name="chem">
- <Component Id="cmp93301A317DB98CF9CDEA7F3A4A6B8039" Guid="{939EC14F-6828-40EF-9B69-E9FA06FD1A8A}">
- <File Id="filD462D4CF0349A51315466EBA080C2379" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\atp.chem" />
- </Component>
- <Component Id="cmp1CA224119585BFBB018F1A7575D92951" Guid="{81652BD5-82E6-4FE1-B2CB-36D9C811C8DB}">
- <File Id="filC8986BDDBA4A5FA20D392D9053693C83" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\cholesterin.chem" />
- </Component>
- <Component Id="cmp0F9F0BDE0FCECB818ACD91A59EFA845C" Guid="{8EFF3B04-998C-4AF9-8D1B-879BCF28F8AA}">
- <File Id="filEED42AE5829C2A1A44EA5A237375173E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\ethamivan.chem" />
- </Component>
- <Component Id="cmpDA41A284B07E25C6F5B030C67B76521F" Guid="{717D80E9-61DA-438F-9274-A9EC0617E9A0}">
- <File Id="fil6DA245BFB7EC759E65ED04EEBD5765E5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\lsd.chem" />
- </Component>
- <Component Id="cmp9060121FCA219651D76766285AE621E2" Guid="{F150C011-E135-41BD-82BF-AA7892F6B826}">
- <File Id="fil5F908B2757D8D8D1E11CBB3B414A7B2E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\morphine.chem" />
- </Component>
- <Component Id="cmp90CC1373FC1DF3369398B44172BB5133" Guid="{7CA2BAFF-E819-45DB-AF1F-C01F0C33B043}">
- <File Id="fil7C9FB665F7E4B4F92D4573D7C5AA39DF" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\penicillin.chem" />
- </Component>
- <Component Id="cmp62539657C0A79CF049C200A981725B84" Guid="{4F657195-7A1B-4DFF-8E53-B775ED019FE7}">
- <File Id="fil56CA37552859A09D3C9DFE2CBB8AD596" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\README" />
- </Component>
- <Component Id="cmp33736BCE55D995C0AFD510AF981F6C6A" Guid="{DA1CC293-5A33-4FEF-8EE2-4EF80263EE61}">
- <File Id="filE7E6E1D1841DE2F6D054B9E276D3249B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\reserpine.chem" />
- </Component>
- <Directory Id="dir8BD35C1CAB3E3EAD6DE8B774C8B230D9" Name="122">
- <Component Id="cmp5C6C84CEDCCE0676D7E827728D7ED430" Guid="{4C3E2C2F-F64E-4CF7-AC33-57FB30B9DF14}">
- <File Id="fil5772460EE50E0615F42B615D588E3A51" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch2a_ethyl.chem" />
- </Component>
- <Component Id="cmpE948D6A5C3B95D03A18D3AED227443CD" Guid="{22ADFF07-D2D1-4877-A9F2-0D258A0BDA09}">
- <File Id="filCDADD2B3503F3201001F9B12B015EDC1" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch2b_benzene.chem" />
- </Component>
- <Component Id="cmp5FE5101761B7E929C5DE86D305E71E83" Guid="{5AF5F45B-B861-42FC-B73C-B4AF7D0DB2B6}">
- <File Id="fil90E18D9D67111D29DF8F64EAB61DC38E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch2c_benzene_right.chem" />
- </Component>
- <Component Id="cmpBBFB0909C83FEC3211CF0B2D251D301E" Guid="{5E8EBC09-3933-416D-96D4-001D47D0BC69}">
- <File Id="filE563657C913380E662294DB4F8CCFF1C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4a_stick.chem" />
- </Component>
- <Component Id="cmp8D5C2267B3B9FA0EFB02EBC1556BAE35" Guid="{16F532F4-B994-496D-B8DC-329428A826DC}">
- <File Id="fil7D60EC2FEC7C9B7AC6C52858E2649A50" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4b_methyl_acetate.chem" />
- </Component>
- <Component Id="cmp16A12B8F0F01E1770568D446327E79AD" Guid="{FCF802E3-1509-409D-94C4-243A6B73F657}">
- <File Id="fil2058AA252150F9F32C46CF5BF71665EA" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4c_colon.chem" />
- </Component>
- <Component Id="cmp910D56882B30104492350A19D77E0E87" Guid="{87276C53-1C47-4BBA-AC81-1DDF6D9241AF}">
- <File Id="fil35C8D8279895AEC91FD234FACF74F80D" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4d_HCl.H2O.chem" />
- </Component>
- <Component Id="cmp1ABEE08E8EDE7F2018D22B63E0B4E358" Guid="{866E175B-80B4-4D3A-A639-F8C2A83B9AC0}">
- <File Id="filFF680A40413351349C702CFBEEB0F62C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4e_CaSO4.2H2O.chem" />
- </Component>
- <Component Id="cmp27F384D5EAF9B16AD69BC1FF349068F4" Guid="{962271E7-39E9-47FB-ABB5-06858800903E}">
- <File Id="filB7193A6A4B658E1A90009786951AAF63" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4f_C.chem" />
- </Component>
- <Component Id="cmp5E717567F8FD4A036F049B3D6318AB6C" Guid="{481179CD-A7E4-4C59-9245-A4B8E433817B}">
- <File Id="fil808884EF94B65D9C422BE36D7206F49B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4g_BP.chem" />
- </Component>
- <Component Id="cmp7B5A0BFF3FD0F8E6E2AD8FED8DC0EFCF" Guid="{A1FF2839-8F89-4695-BABF-07286FBC1F38}">
- <File Id="fil6AA50AA1402A8C17DE1F6F3533E04C42" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4h_methacrylate.chem" />
- </Component>
- <Component Id="cmpCBC5EFD2E9E287B164611AB76BA7C628" Guid="{DE134846-6DAE-44B6-ACAC-B6F8A2FC8F03}">
- <File Id="filD144AF97D5CAB62625640974A70756F0" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4i_cyclo.chem" />
- </Component>
- <Component Id="cmpAFAD31DAEFBA73519E4140A94A7875A5" Guid="{03DAC24F-D696-4729-A946-A77B9100106D}">
- <File Id="fil781B11742F7BCF0B706285A3DAB74730" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4j_ring4.chem" />
- </Component>
- <Component Id="cmp55A9382DF4FB81D9B8E9BE6F038C4CC9" Guid="{A597EA8F-803C-4AD1-8364-BCE2A92FC69B}">
- <File Id="fil9FF08E2E996037B2E37AD5DC543D4B47" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4k_ring3.chem" />
- </Component>
- <Component Id="cmpC22ED52AF8C118D723B4CEE3C76C744D" Guid="{AC9BDAD7-1E2F-4AD0-8418-6B041896BAB0}">
- <File Id="filD340214FB98C3354CE2B221C4F208128" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4l_vertex.chem" />
- </Component>
- <Component Id="cmp8E2A02AF20BB21B46DD6B1AE6C82A446" Guid="{83D76ED3-0F3C-4479-AF65-159499009CA9}">
- <File Id="fil788F0B339E517B2DCEE387388ACD193A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4m_double.chem" />
- </Component>
- <Component Id="cmp11F8BDF862C9AEE0E4809372940C4840" Guid="{551C23ED-93A7-4F66-8A43-E0A04902A0EC}">
- <File Id="fil1AE7D8D0961DA851FF0CD4486DA8D3DE" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4n_triple.chem" />
- </Component>
- <Component Id="cmp2230308D66A64DF7D60027D4AF47D0F8" Guid="{C8D68DF1-B0F6-43DB-97A2-A251B562294F}">
- <File Id="fil06E3860669DD65AF7890D1B5A89A8E02" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4o_aromatic.chem" />
- </Component>
- <Component Id="cmp599916F5129A78CBF60CE484A72FF2DF" Guid="{0BF6AD56-24B4-45FB-86DA-5F571F765247}">
- <File Id="fil024B9D535AB79031665FAA3EAA0E1DF6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4p_cholestanol.chem" />
- </Component>
- <Component Id="cmp9D327B08438859C262021794051DBBB6" Guid="{C7433B25-FC7A-405C-8740-2402EAAD73CC}">
- <File Id="fil4E7DD07B926E62E4D8D6A54FD7A15BFF" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4q_rings.chem" />
- </Component>
- <Component Id="cmp1724D9642B24F1533738F9D9AD99C77A" Guid="{00822EA8-2E4B-4504-8E27-7BE3C9C6A782}">
- <File Id="fil34BB7DEB56ED00111B59E996FF5DD7D9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4r_spiro.chem" />
- </Component>
- <Component Id="cmpBC0087FD303C1ED8AED7D4741C4F820A" Guid="{3D8308F5-F6F6-4F20-9A46-7BE46428205D}">
- <File Id="filBA5710456D079E8FC15EBD88D2176CEA" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4s_heteroatoms.chem" />
- </Component>
- <Component Id="cmp40F220D37B62875EC3D5BE9F575DEEC6" Guid="{A1789BA9-79A8-491A-9FDE-F6F51988C622}">
- <File Id="fil89418AB42F8C6AFC7AFB7BCB22DBB3CE" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4t_polycyclic.chem" />
- </Component>
- <Component Id="cmp9D6A24B39404CF6276B4E7E25D7BFDF7" Guid="{BAEEECBC-6A51-4B57-B8ED-7455A23FA9DD}">
- <File Id="filC24EA0DF3D63580A95A5DB4BB1149A8E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4u_nicotine.chem" />
- </Component>
- <Component Id="cmp47D838B3887411E65BEFCC4ABB5EF27D" Guid="{18572B52-CA93-494F-89C4-DF5BC4C19EE9}">
- <File Id="filCD97124240F7A225A173EE4443E26B9A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4v_histidine.chem" />
- </Component>
- <Component Id="cmpAB14F4ADD2F72F4D28EE18E5BD3241A6" Guid="{66AD5890-05D0-4A8F-B548-0BEE04735AD5}">
- <File Id="fil5314DD543C1092E171A599D53405E1B8" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4w_lsd.chem" />
- </Component>
- <Component Id="cmp0B550FE9019FF2C54AD659AC1770B472" Guid="{429031F2-DA83-477D-9A3C-13D5CCC2631D}">
- <File Id="fil9533AA080E45433C4583047EA8B6A0C6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4x_anisole.chem" />
- </Component>
- <Component Id="cmpB88391AB3FD2EB99809D34BB6829B155" Guid="{99239E89-DC20-4337-A232-549F479B7250}">
- <File Id="fil6F1AD82EB4C34D595E4E837FE65CB19B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4y_reserpine.chem" />
- </Component>
- <Component Id="cmp26365F37325ED871082DB84AF3B3B11C" Guid="{E710AC5F-0796-464E-A062-D13DEBC30943}">
- <File Id="fil9D2F572DF2E58ECEAD329140389B7E58" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4z1_eqn_glutamic.chem" />
- </Component>
- <Component Id="cmpBFE585424DD18982806B9DC478871AC5" Guid="{4D60C763-579A-446B-BD8C-86A6901B307E}">
- <File Id="filCA5499093942F07A57B7A532CC63532C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch4z2_text.chem" />
- </Component>
- <Component Id="cmp6E63AA87559ACF35B88EAFCFC1E1066A" Guid="{FC2D2F36-7A6C-4904-8B8E-1E319224EA31}">
- <File Id="fil67A2B82BE188B7513C8E734A43779E03" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch5a_size.chem" />
- </Component>
- <Component Id="cmp77ECE871F802C268E80E67E47AA0C73E" Guid="{E47F7D8A-085A-4F36-B5D9-32A3D788E254}">
- <File Id="fil3CE43B12D57A047C88F974E6EBC32053" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch6a_pic.chem" />
- </Component>
- <Component Id="cmp7A1A05427BB24D508FF483D470DD0299" Guid="{6383F903-9F74-47CE-9CCD-AEE722956CEA}">
- <File Id="fil782A2000E710C0074C4223AF42C808E1" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\ch6b_dna.chem" />
- </Component>
- <Component Id="cmp08D86912407551CD97FFA3783B1770C9" Guid="{47BF5DD9-8E18-47C3-B3DC-4DC8F4E2C5EB}">
- <File Id="fil2F8A7663A5702877D5DF380ADD96526E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAa_polymer.chem" />
- </Component>
- <Component Id="cmpEFC0DFBBCF2771219A10158A70E8E09D" Guid="{5CE747B0-D3B5-4C0F-B6A9-5885824EB4E8}">
- <File Id="fil141E3973293F3B8DCBD798EF8F846476" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAb_vinyl_chloro.chem" />
- </Component>
- <Component Id="cmp977C0E5AA6C4544F8A9B822777358AE7" Guid="{EBAF6319-6EB9-4CC1-B456-E263A93445BC}">
- <File Id="filFA28A96AFF11D5F68F40E0AE319F0431" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAc_morphine.chem" />
- </Component>
- <Component Id="cmp080476A27957D0E78CFFF84CF12C7EE1" Guid="{9314A796-B7E9-4192-8C0C-C21329614836}">
- <File Id="filF52D8C6A46D2957E481337E4E27D508D" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAd_chlorophyll.chem" />
- </Component>
- <Component Id="cmp00092E06FD796DC7C1FAF305598C09FD" Guid="{09292E2E-C353-4A58-9447-4378207848A9}">
- <File Id="filBF89E2492C153F3A5A909CE8C4F93180" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAe_chair.chem" />
- </Component>
- <Component Id="cmp4684A682B077789EC151A4FC6B33A3AF" Guid="{3F1CE1F2-80B3-4CD9-B0DF-852D1D574FBA}">
- <File Id="fil757A7013267451EA1D76498FA3D57986" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAf_arrow.chem" />
- </Component>
- <Component Id="cmpB0CE2C78457BA4498C4D6EBFD5267089" Guid="{8437B4D4-23FC-4C6A-BBCE-FA009908C098}">
- <File Id="fil5BFAA96F5A1E84B4C769C840C539E4D4" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAg_circle.chem" />
- </Component>
- <Component Id="cmpFD8714CE45BE7D646A2365BB83507CCF" Guid="{92AA3174-2B23-4FEB-A1DE-AE3C7561CC23}">
- <File Id="fil2AD1AD7D687A00117816DC01D17D3C7B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAh_brackets.chem" />
- </Component>
- <Component Id="cmp99F369EFD35B0F387D9EF3CDAC4A1A69" Guid="{AAD1CB28-5762-47F7-B922-CA16700D0AD8}">
- <File Id="fil42C6A6BE9D5E72F41DBF7D488132401F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chAi_poly_vinyl_chloride.chem" />
- </Component>
- <Component Id="cmpE6D0D78BDBC60A9E20CAEA24A163CD18" Guid="{C50608AA-830F-46CA-8590-EDCC15FDF929}">
- <File Id="filDEB515D3B420C88FEA4A45FF8D79987F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chBa_jump.chem" />
- </Component>
- <Component Id="cmp32E4BA5FD65EBF1FB75168A346484B87" Guid="{BD69186A-8A1A-413C-B4C3-4A53D2BA1270}">
- <File Id="filB9112342CC383FE9540637EDBE0DEEAD" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chBb_bonds.chem" />
- </Component>
- <Component Id="cmp421CE370189355EF6CBDDFAE0A5C43CC" Guid="{8DF3245C-3F51-40E4-8FA1-E20AE07EAB1B}">
- <File Id="fil3E378ED7D3CF3719A703A2F1AB76110E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\chBc_rings.chem" />
- </Component>
- <Component Id="cmp6BA0F74D7D152FC6ED9B69C074D5E86F" Guid="{CF41B65E-5DD9-4395-A582-BC1E4E39C88A}">
- <File Id="fil93A4C82831BBBDC3F8CFFEB653D2473C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\chem\122\README" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir334796C2DD81EABFE39B68ABFD6FF621" Name="hdtbl">
- <Component Id="cmp1BF58EC7320A4424AD62AC71311D5FE4" Guid="{FAAB365D-63E5-4BF1-9E1F-7C8FAECACD39}">
- <File Id="fil3BED7900E0B1BEB142C43A23B3EE6307" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\chess_board.ps" />
- </Component>
- <Component Id="cmp30CD30CA402A8411AED01735547913EA" Guid="{140D2FA6-9B33-41EB-8916-BE3C4D6820B6}">
- <File Id="fil5B405080D4A08C3E18DD5977F67CF08F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\chess_board.roff" />
- </Component>
- <Component Id="cmp87175C6FD8E223A14BDEBF90347D2D07" Guid="{8680A021-ADF9-4929-8ADA-B2E5E8C0C711}">
- <File Id="filFE9D8693946AA76DB08F13A0980C9EC2" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_boxes.ps" />
- </Component>
- <Component Id="cmpEA4D9357217D75BC02DFE6B92304B18E" Guid="{828102AE-0086-461A-B083-0E50497A4B16}">
- <File Id="filF91235F30B50AA6EF0E31B798649B4D6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_boxes.roff" />
- </Component>
- <Component Id="cmpD34D017515BAAC4FF627A90359B7D2BC" Guid="{95FF2F64-9E93-46E8-A4E8-F9027FBA1303}">
- <File Id="fil65CDFC036453FAA68885294CACA084E3" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_nested_tables.ps" />
- </Component>
- <Component Id="cmp5A9EEBF553660B6A72788714C7C77127" Guid="{8BB669FE-1B27-4A17-B3AB-084855E7D537}">
- <File Id="fil183E09C965C81EFED25936CA42D3160E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_nested_tables.roff" />
- </Component>
- <Component Id="cmpC636613C871C7B520B01B5213D4A5DF4" Guid="{5FAC14F3-765D-4323-A49B-054A81473A9A}">
- <File Id="filABD8791FE0DC97F0084A63940AB2E49A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_table_cells.ps" />
- </Component>
- <Component Id="cmp04EF35FF2071D384CFDC8D1DE2A883A2" Guid="{4615A1D5-C6A4-47ED-84D2-F66FCDFC590B}">
- <File Id="fil3E53010015887BFF7FD294C93EE42B26" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_table_cells.roff" />
- </Component>
- <Component Id="cmp8107CDEB492CBCC8114AE35DCABE5282" Guid="{62D13251-82A9-46F2-82B8-864DB9BD089B}">
- <File Id="fil480A6314D9950E35DDC80B7799CA74C2" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_transitions.ps" />
- </Component>
- <Component Id="cmp395810A96DC4C5412B07FC7FE62227A0" Guid="{BC2C2E79-B2A2-4481-A0DC-0F1A6963D0FA}">
- <File Id="filBCE3BA98D7CDC5E7B52E1763B5FEEE24" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\color_transitions.roff" />
- </Component>
- <Component Id="cmp643B7D39C7B5B243756B28635F410E8D" Guid="{8E78FBA8-D90A-45A9-B56B-EC9D981CEBF0}">
- <File Id="filDD52660F921D171E6A8F1285DA6E9EC8" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\col_rowspan_colors.ps" />
- </Component>
- <Component Id="cmpB4B84D1442B64C6ACE28279A37546CB3" Guid="{1F811FC3-CF55-4966-AF32-9A637D20B0B5}">
- <File Id="fil66EBC4009234ECAE18AC84DCBFF92EA4" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\col_rowspan_colors.roff" />
- </Component>
- <Component Id="cmpBA05C0F3A526657C8B7B9C1B514299F5" Guid="{F41D0C05-70CD-4288-917A-5C697501B2AF}">
- <File Id="filBCEEDCE8E89AD0DCA4B4272BC17715DB" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\fonts_n.ps" />
- </Component>
- <Component Id="cmpA73ABCB0BCA7213C971C7E054C9A5014" Guid="{A9BC7F15-0203-4464-A855-E4F98E3ADFDF}">
- <File Id="filE8AB4395F2035260F2FDE926065D31C0" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\fonts_n.roff" />
- </Component>
- <Component Id="cmpF9CC9FDE3847C95B72F6763F9843B292" Guid="{F477204F-8E4B-4486-98C2-326073E1FE8C}">
- <File Id="filE4F5C3BAA0F1D9658403AA2770524146" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\fonts_x.ps" />
- </Component>
- <Component Id="cmpDCF820C7F2B9ED01917B6C81115EA7C0" Guid="{02062C01-F90B-40DD-B261-015C9444D238}">
- <File Id="filFEE55142F485B4651B34FEC64CEB683C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\fonts_x.roff" />
- </Component>
- <Component Id="cmp721E7EFE0CA32027EC2DCB98B66DB5BA" Guid="{3A378D6C-FDB7-4F5D-8C79-2CD9C17FF864}">
- <File Id="fil309E53904D9B01DDE7D48F1234110FB1" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\gnu.eps" />
- </Component>
- <Component Id="cmp2069B85C02ADE0CCB173CBDD28D5E18D" Guid="{BE47B13B-9C05-4AE8-AABE-60E1E34910D5}">
- <File Id="fil6526B8D6EB349EFFD329A61AC775983F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\mixed_pickles.ps" />
- </Component>
- <Component Id="cmpE9F08B6BA03A18A33BDB099BBC84E8B5" Guid="{06C5DCCE-4F6D-4148-8C05-8D2B53E5B28C}">
- <File Id="filFE589A95FE53E748B5ECB7372E29A993" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\mixed_pickles.roff" />
- </Component>
- <Component Id="cmpCB7E11CEDFF7F79AD88359E297DD377A" Guid="{232C8B61-8620-438D-98A0-A58FE63F3F91}">
- <File Id="filA55308CB7BD1D8DF79D2C822C7D84FA2" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\rainbow.ps" />
- </Component>
- <Component Id="cmp90C80568FC5AEA6FF3EC8158B9B0D9A2" Guid="{7E3BC181-48F5-4C45-8A21-0A762F980C11}">
- <File Id="filA9DBD0AA06B6E0D0707EC69313A364E9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\rainbow.roff" />
- </Component>
- <Component Id="cmpA470B43D56105AABE7B889DD95E2C9C0" Guid="{C1D42661-1E39-442D-BADC-C62CE7E8DF5A}">
- <File Id="fil5816E8CE0C29013029D3BF1342E9E981" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\short_reference.ps" />
- </Component>
- <Component Id="cmp89AE4D648B26469D4559E126F40C4904" Guid="{83CEEEAE-B67E-4A6C-A4E8-AC52EAF5BED0}">
- <File Id="fil79CAFA6E7C34F08A6561E50AD782C752" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\hdtbl\short_reference.roff" />
- </Component>
- </Directory>
- <Directory Id="dirA28905C20C22B384FC7D98890822B5BA" Name="img">
- <Component Id="cmp06736E6F1BE0CDE7C5E0813E8100ADC2" Guid="{61774A8C-37C1-45FE-A4AC-9219CC711565}">
- <File Id="fil9C4B6CF040BCF32D578B6EFE6D8164F5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\img\webpage1.png" />
- </Component>
- <Component Id="cmp8DC16CD752287E78990C3362CEC0ECE2" Guid="{028381E1-29F9-478F-BCC1-1D0AEBB95BE5}">
- <File Id="fil059A1ABF843474A57F335BD17DA9AAB5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\img\webpage2.png" />
- </Component>
- </Directory>
- <Directory Id="dirCBAD2DAB354DB7329B234B55D1571006" Name="mom">
- <Component Id="cmp8EA718B5AA165D9908919120015E17CA" Guid="{ED2A90A3-7E1A-4BC6-B111-24D85F4EA472}">
- <File Id="fil20D265C1B4578F4A9CBB26988E9C00F1" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\elvis_syntax" />
- </Component>
- <Component Id="cmp19CD1ABE6305EC0001B9CA80180F4B95" Guid="{6C97EAB7-3807-48D4-9297-70BD3FF1253B}">
- <File Id="fil7A1F448E53F8FE3B34409C6AF2253FBE" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\elvis_syntax.new" />
- </Component>
- <Component Id="cmpC3AFE3E6273B286B48704D25AC4284C2" Guid="{1521EC46-2783-4131-B182-40DE83CDF604}">
- <File Id="filBEC6495198EC92A260CD771D438D7014" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\letter.mom" />
- </Component>
- <Component Id="cmpB781807ECA48D7DB857AEEB8FF916DB3" Guid="{0945840E-EE43-4C9F-85C6-1CBED05D9C91}">
- <File Id="fil672B817D98EBC13DBFEE9D1FB31570CF" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\letter.ps" />
- </Component>
- <Component Id="cmp06E5C3EBB0C9A19811AA2F5768300841" Guid="{974E2B38-D225-4FB3-B8B1-EFEB763063D1}">
- <File Id="filDD3851FE5F9DF4D22EA440FF39BB4080" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\penguin.ps" />
- </Component>
- <Component Id="cmp3C0E5B9F5ACC93BE20311C643A993D37" Guid="{42A60B45-6413-4343-B0D8-6091D159BD75}">
- <File Id="fil6667B15CA2B0859A7878A598308C6449" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\README.txt" />
- </Component>
- <Component Id="cmp1CFAC17DAF504069D89F37120A932C82" Guid="{ADBB5CF9-2224-45B4-AF06-6932F7DA3052}">
- <File Id="filD06B080BE26B6055D8D9B6E622C43F5B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\sample_docs.mom" />
- </Component>
- <Component Id="cmp04A6DC75ED9C061261A439CFAECD7890" Guid="{D1718E7D-EDFD-4D42-ABA2-7C19E13CC746}">
- <File Id="fil3864AAF4A18311C97EB82C6B2923E5C5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\sample_docs.ps" />
- </Component>
- <Component Id="cmpE499A957AE7F565F404226B47552CD2B" Guid="{514720C4-F3CF-460E-B299-713C2B770E5F}">
- <File Id="filC050638C21AA57BD016F129CC44A7F77" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\typesetting.mom" />
- </Component>
- <Component Id="cmp35FAAFF85176C22EE061E0223F9377B8" Guid="{A44ACAEC-4A7C-46D5-836B-722E6D5EE55D}">
- <File Id="filED6756495CDA4BA7E9C58ED1A712A2CB" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\examples\mom\typesetting.ps" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirF7AD0E514C1AFA519B043732D047ECBA" Name="html">
- <Component Id="cmpDE6D0B85501FE311048F979735941320" Guid="{C9FBEF90-FFCB-4D30-96AD-FB01E26879A3}">
- <File Id="fil7C15CC4B4C75AD4F367179199F75B3D8" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-1.html" />
- </Component>
- <Component Id="cmpFE7AFBCB0F788D828AE8F8E823521DD8" Guid="{FCEDE06E-9204-4C4D-AE2E-8F235B7D4B6D}">
- <File Id="filF1138D1EFD3579C4B21E304B9988928C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-10.html" />
- </Component>
- <Component Id="cmpBB4DBBB924D1AEE82FE1DE92BAA6A20F" Guid="{2EB753F1-4DC3-4FB5-9D42-A71AC3DCCD46}">
- <File Id="filCA4EF55D3B848212B8B24945FA665726" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-11.html" />
- </Component>
- <Component Id="cmpD8C315CBAA851D7DCCA0680A0EB56882" Guid="{AD9FA4A1-A225-464C-A644-44B788BB359D}">
- <File Id="filB697F49C9E1832140E24832BCB238F59" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-12.html" />
- </Component>
- <Component Id="cmp4607751A302D14DD9E5BCBA818CB39FF" Guid="{A5A5A65C-2D70-4215-B831-771A3F9526A2}">
- <File Id="filED81CE4D12D4B42DBA62B3AED95273D5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-13.html" />
- </Component>
- <Component Id="cmp7A6F653E10E31D9CD5644D78A18BD0FF" Guid="{43597465-06F9-46F3-AFCD-6EBBBDB4E502}">
- <File Id="filE6120D8D7DE5591365849F11CEB641EA" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-14.html" />
- </Component>
- <Component Id="cmp386F025CAF2B0B02C1DBF8CBFE28D9B4" Guid="{30980AFA-CC53-46D5-BF7E-FFC024600864}">
- <File Id="fil25984832C9C87D05266E84310BAC76A9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-15.html" />
- </Component>
- <Component Id="cmp40BF35F6E06889C29ECA0214D2398C39" Guid="{D78372C3-D5FD-4C8D-8C9C-62E546AAAB13}">
- <File Id="fil9BA515D64C9139FF992367B88F3230FF" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-16.html" />
- </Component>
- <Component Id="cmpB9CA13957788314ABFE561E85E61FBD2" Guid="{A1444CEE-EB83-4A3D-9AA8-7CF1EEDBC543}">
- <File Id="filFFD017D024F17914925B0EAE5AC4A978" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-17.html" />
- </Component>
- <Component Id="cmp81A386AACEC8055519A5B902D31C024E" Guid="{94FA1573-E4CF-45AF-92CC-C00941B3237D}">
- <File Id="filC876026BFE018BE10C12A676A1970DFB" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-18.html" />
- </Component>
- <Component Id="cmp9EE58F5D38CAB146E8420DDDA998FBCA" Guid="{7385C894-33F5-4DCF-8AFC-EB01EE5863F0}">
- <File Id="fil35C18DE0BD607DC7B1EF0839C21ED54A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-19.html" />
- </Component>
- <Component Id="cmp87EC4333729D27669F6921D6B3543D82" Guid="{17A0719C-A324-4123-9954-140051B223D7}">
- <File Id="fil1F6561E1C85CCEDEEE4F5F4A2CB99E7B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-2.html" />
- </Component>
- <Component Id="cmp5B29461512A3974B95BCE41C866175E4" Guid="{2E6E89D6-FD85-4B3E-BF8E-938822E25DB7}">
- <File Id="fil47441CDC6CCE81DF4CDE08430F394943" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-20.html" />
- </Component>
- <Component Id="cmpC594EB7F1EBA349DA9AD12F5A4A68152" Guid="{08EB7DAD-9D63-494E-943E-477BF99A5CEB}">
- <File Id="filA6771B661D8C82D768A5413CF43E5907" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-21.html" />
- </Component>
- <Component Id="cmp2E55F6759F274003237FB2E37CF32385" Guid="{C2545A04-C9E7-464C-83E0-E412A46213BB}">
- <File Id="fil6C64A8E22CE36126254C74F93E3B0FFE" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-22.html" />
- </Component>
- <Component Id="cmpE8E80CAB8EB7AB853759049C0876C844" Guid="{8E0D7E79-7A2B-4986-A1FC-CFA878D71CC8}">
- <File Id="fil532A888729F9EBB86D6B3330F9C021C6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-23.html" />
- </Component>
- <Component Id="cmp8DDBDF734C73A2B44C69B49730BF361F" Guid="{B4BAF7B3-BAE9-4AE0-815D-4C12183E26F3}">
- <File Id="fil06DC6C51780C04DA98661C5B455E0A70" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-3.html" />
- </Component>
- <Component Id="cmpC9B570CEF782A8766D35231DB09DF6FA" Guid="{A94A71E0-ECAA-4FF8-9645-771AD917DA7D}">
- <File Id="fil7BE8966065FEED8B95D2B7255AF88F4A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-4.html" />
- </Component>
- <Component Id="cmp794AEEA0037EB8D0271431814EEC9087" Guid="{A5B4EDD2-E231-496E-8BD8-9C79E632EA42}">
- <File Id="fil02F961817E7ACFAA9B2A052DF9C1E406" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-5.html" />
- </Component>
- <Component Id="cmp5F5F3577D8CA8A9AB176DE3E7252AF52" Guid="{8D2F41B1-895E-402A-8685-A2CC197FA12C}">
- <File Id="fil5C0A184072C11C07671A1C18C26AFF4F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-6.html" />
- </Component>
- <Component Id="cmp2AE169AA32AB643E44BA2ED18C95BB21" Guid="{20C7F6CC-ACDF-44A5-9CF6-ED17F54F62AF}">
- <File Id="fil27A3AB4C0733561BE64C4208C295B7E5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-7.html" />
- </Component>
- <Component Id="cmpB27C9F0F6A230B2F5E5A02AFF3B841BB" Guid="{C9A55EA1-AC48-4F8D-97FF-6F69CD380F33}">
- <File Id="filF298510362E40F2510E210FE2265A300" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-8.html" />
- </Component>
- <Component Id="cmp74EF6877D9D4FD2BCE18CD240F0DEAE5" Guid="{E0424457-35B7-4C18-81A1-5C3FDE15E639}">
- <File Id="filBFC7037A4FAAFA67325B6CD92A3B6B37" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic-9.html" />
- </Component>
- <Component Id="cmpC5EF583B0C69BE612310EFA4F482BE81" Guid="{625741AF-AA5E-43E0-9D7A-7C707795EC1D}">
- <File Id="fil1D5DD9C36C4C1611FC78ADA4BA54E320" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\pic.html" />
- </Component>
- <Directory Id="dirEE57BEC92234AF4D44CD9025FD957D48" Name="img">
- <Component Id="cmp4AFFCC5861C8E376EDC4E53D140E5F60" Guid="{C4C643E9-94C7-43C3-BA53-6BA7E47C500B}">
- <File Id="filADA0CF111877427C18AC08AFB0822141" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic1.png" />
- </Component>
- <Component Id="cmp219229907B7543F113240E0F069D9FD7" Guid="{937BD686-ABF0-4DB5-8B2B-AC1CCFDE5175}">
- <File Id="fil37A14E325001E58CEF34197CD1093C41" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic10.png" />
- </Component>
- <Component Id="cmpAD255E9DC28AAEAAC40EC8DC9764549A" Guid="{946AE862-1A27-422E-9C28-B84EEDCA73CF}">
- <File Id="filC9C80F82BA8B581FACBEA589DDEA64E3" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic11.png" />
- </Component>
- <Component Id="cmpF25EC8E238DE4DB7D5DC5421FB6D2870" Guid="{62A45015-415D-44BC-A3D8-73DE85EF737C}">
- <File Id="fil2719052F9903EABB15FD2326919FE983" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic12.png" />
- </Component>
- <Component Id="cmpC360BDDD36D5A666BABC96674A77262C" Guid="{BB494E71-D856-46B4-8EE3-4C351F8A1D38}">
- <File Id="filD50787C37365571ADCFE099E2004BFDD" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic13.png" />
- </Component>
- <Component Id="cmpBB42926F2E7E35A8FFA88754CF877419" Guid="{7EC2D094-5A9E-475E-894E-D8B47DA36BE7}">
- <File Id="filCC57F2F1F3C5B0E96F68211989673F9A" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic14.png" />
- </Component>
- <Component Id="cmp46934552EA0D5028AF10599CFF803EBE" Guid="{38714037-21A5-4990-9033-82F7818D1D1F}">
- <File Id="filCE652BBFBA04A34897537A253F03B14E" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic15.png" />
- </Component>
- <Component Id="cmpF91B74930A3E50C43540239E4758F4E9" Guid="{5534A6D4-1853-456C-8C19-89B46B344078}">
- <File Id="filB699C54627721BDD8EAB43FBAF0E8E5B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic16.png" />
- </Component>
- <Component Id="cmpE0F8D2C6B765443D26C145C778F9C747" Guid="{35D6A272-6738-4AE6-ACCC-3B90CD4DF6D4}">
- <File Id="filBD8A5777D92876725BC169DB237FA4C9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic17.png" />
- </Component>
- <Component Id="cmp46A8563A2B50243D07725622806D87BC" Guid="{FC3FE253-D82B-4C79-B42C-CE4C3936A4E5}">
- <File Id="fil88917CBB5F33F0B6BE939988E79DE815" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic18.png" />
- </Component>
- <Component Id="cmpDBFFF9E4EEB9DA0622DC686B30CE11CA" Guid="{6A43F3F6-CF7F-493B-B8C9-82D75D45B0F9}">
- <File Id="filA23A2543757B72F8D531F8B79D454C65" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic19.png" />
- </Component>
- <Component Id="cmp92FB1EF0F92938994FA01D043ECC50A2" Guid="{7776A999-4D72-4FDE-A79F-B8E43D5161AA}">
- <File Id="fil23761FEBBBC9E6A5AB896DDD3CB69356" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic2.png" />
- </Component>
- <Component Id="cmp437E6584BDD1B424A352FB4B029EFCDE" Guid="{5C1439E5-A27D-4F55-8CEF-C3BAEA90BC8A}">
- <File Id="filA6E3060A04AD8D881F8A119F13B53024" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic20.png" />
- </Component>
- <Component Id="cmp1446C15A52C5B41AC9BE71B25905787E" Guid="{C01B0890-50FE-487B-8FBD-25594AFD93AE}">
- <File Id="fil4C89D737F0DB893245D4513CE054D120" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic21.png" />
- </Component>
- <Component Id="cmp0137AE9414953844E291F45BDCF9069B" Guid="{4E8E8A95-DDBA-4F69-91D3-A925EEFA05F3}">
- <File Id="fil1DDF3C293409DD01432C5FB104EC3A25" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic22.png" />
- </Component>
- <Component Id="cmp099B700E4E5701997CC7F908E64E8537" Guid="{D078259F-2EB8-4D0C-A3E6-35D2E32EF884}">
- <File Id="fil1E634DEBC5A67AE19450EA916577BC12" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic23.png" />
- </Component>
- <Component Id="cmp08DE23CF4E5EE1FA947A883686076849" Guid="{1B20A15C-B508-452B-8C32-69B7077292D2}">
- <File Id="fil844C6F636541093E853D9FC2A7FA7D52" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic24.png" />
- </Component>
- <Component Id="cmp592F7BC8ECB1381D936AEEFFF398624F" Guid="{70C2BF92-C0BC-4593-9EEB-033BF163A040}">
- <File Id="fil7086433FE185AB88639C3FDDC5FE0110" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic25.png" />
- </Component>
- <Component Id="cmpF0957DA621AFAA00972CC4AD9312E976" Guid="{D46200C2-316E-4BF8-AED7-2F87E4112925}">
- <File Id="filDD05634E2B1A951C5F7A89565429CE2B" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic26.png" />
- </Component>
- <Component Id="cmp6BBB1E5B26C38CB235A58E4BB413E511" Guid="{BC334ABB-8830-445B-AB8B-A8645982C4C7}">
- <File Id="fil99E46055BACEDA2E717835B26FD1BC0F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic27.png" />
- </Component>
- <Component Id="cmp3997943AA8D8073F36E76EF75DB8B5D0" Guid="{EB8533F1-7B76-43E9-84CE-C8DDF09F6642}">
- <File Id="filF5B8F87FD83B25C7B200DB31C4FD80F6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic28.png" />
- </Component>
- <Component Id="cmpCF56E65F0412E718C85581E88D8F913B" Guid="{E3B12192-6AB7-48AE-A312-0B57E12EFA24}">
- <File Id="fil3B8F977B073D802D5C486F538E0DF94F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic29.png" />
- </Component>
- <Component Id="cmp80AF1356CC9E46E2C3E3A0E48BEB52BA" Guid="{B68361D5-B3F5-4619-BD31-9D251FDD68CF}">
- <File Id="filFAA02B818A72A41D5E736EC197A5CE96" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic3.png" />
- </Component>
- <Component Id="cmpC218B91B78F96A8D997B261D8A4851B8" Guid="{CB341DFF-2D97-4DB2-A16D-6E2A8AB5EFF4}">
- <File Id="fil7E3FB72083B723DE0472C5C854CCAD56" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic30.png" />
- </Component>
- <Component Id="cmp02D4F64D11B826E6E186DD4F7BE9BE7B" Guid="{8AC5D202-5538-4E3B-BC73-396A012BB701}">
- <File Id="filD1F38D8728B28FBA14B194AA5822C675" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic31.png" />
- </Component>
- <Component Id="cmp841EC0D292E79A76B202DFF5767E7664" Guid="{CDD78843-9E5A-496D-8025-82EDB54BDD5F}">
- <File Id="fil813852B1E995E46AD70D163BE1DBE1CC" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic32.png" />
- </Component>
- <Component Id="cmp9DFDD447B9D7974ACC5250430916ADE9" Guid="{A459BEF0-955A-4128-8EB6-594876834012}">
- <File Id="filA6C2468ABC30D7A1782A6BB3E92496F8" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic33.png" />
- </Component>
- <Component Id="cmp55B14170805E82041508423416141F64" Guid="{5C06158D-AEFF-4D0E-AEBF-FA98B2FE966C}">
- <File Id="fil4A7002C92E6C80EF19166493289FA48F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic34.png" />
- </Component>
- <Component Id="cmpAE01B8D17CF4F5E0F7A87B260F871CE3" Guid="{A8FAAE07-3283-4E0B-AF7D-EC7EB1B75521}">
- <File Id="fil06BF5F38DADD6B60887744E3233E7161" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic35.png" />
- </Component>
- <Component Id="cmpEAEB349EF1DA2A018C107465B8579203" Guid="{B59A0A87-7C77-4AC5-AED7-281D90864EC2}">
- <File Id="fil9E43BF1C7AF1B54A72ABD92EAE9A19B8" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic36.png" />
- </Component>
- <Component Id="cmp40093E5D96C4ACA4ABB943C5F93C598C" Guid="{284B1F24-D583-4F67-8ABA-BEAB220C3418}">
- <File Id="filAD088FDDED18C0CBFD541CF184195187" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic37.png" />
- </Component>
- <Component Id="cmpCC3325F4A78B2C59BE58003E60FDF7C7" Guid="{9AABB4C7-798B-4205-A88C-66BA55961056}">
- <File Id="fil33729ED084E463885F7234BAD64F896D" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic38.png" />
- </Component>
- <Component Id="cmpA7E261EC3F72F2A485819F50FD68C466" Guid="{5B9018B9-F8ED-47C7-B51C-6FC6D533496A}">
- <File Id="fil72AAE6FFEB3A119ACCE9DD20DEBF4A75" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic39.png" />
- </Component>
- <Component Id="cmp431BA44A3C026C3A2F3E2A236A61C21D" Guid="{52E55E3F-2A70-4516-B70E-0E705812399E}">
- <File Id="fil0660D739A6B4A677470B1F16B882A6D1" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic4.png" />
- </Component>
- <Component Id="cmp0C6AB52B243A9B39E1D99E70D6E71289" Guid="{FCE19746-DD12-44BC-8AA8-A737849EDF7E}">
- <File Id="fil25940D24050ED7EABBB38CE451E36791" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic40.png" />
- </Component>
- <Component Id="cmpF224E3D9BAFDBF0F4A3F808AEFF3EF06" Guid="{718C866C-191C-4FE3-8C8B-5B0C280C8624}">
- <File Id="fil12090C1C5F776523AB94E6504E8A45C9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic41.png" />
- </Component>
- <Component Id="cmp4348E0431A71531E12C8D743A022F301" Guid="{071DC167-0E53-4B1C-A509-4A4B3857DBD7}">
- <File Id="filDD0130A7A248E7D423284D77F541AAE5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic42.png" />
- </Component>
- <Component Id="cmpC8016F2C14B3C40AFEBC06454EBC0A54" Guid="{8245F8E5-F5D2-46C3-A72E-AF25D95E6F0E}">
- <File Id="fil11F5CB669D7B80FD486C8F0D838FC599" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic43.png" />
- </Component>
- <Component Id="cmpDFB58EF0BDC7138811DD29333D0309F3" Guid="{BCF569B6-5F83-4C40-BCF8-6E0EB455E0B8}">
- <File Id="filC596CDA5EFEC0DC3A7CEA92E654C1813" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic44.png" />
- </Component>
- <Component Id="cmpEA7069F42F76EEF19024D9704318D257" Guid="{8224600F-C2AA-4B64-BDE6-EDB8756B577B}">
- <File Id="fil2AE62001D67FF1F0D639181E06134891" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic45.png" />
- </Component>
- <Component Id="cmp0535466B84A52D3712AEC8942A06F697" Guid="{202F24FA-68F5-4494-8F72-C4F682A0AF06}">
- <File Id="filFE17F0FEE2E295050FCA23278C095A30" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic47.png" />
- </Component>
- <Component Id="cmp431469D3CCB721D65A3F92C488673D57" Guid="{47DD28E0-D4B2-4085-857A-1250FD664495}">
- <File Id="fil088B1AC92EA11A77890B876768F53649" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic48.png" />
- </Component>
- <Component Id="cmp6E497DFB23A036519A0DC2607A1F48E7" Guid="{4726BEC2-8BC2-4B36-86F9-7298C6E2C9EB}">
- <File Id="fil743B24DA30AE56939F7D6292B0C9348D" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic49.png" />
- </Component>
- <Component Id="cmp72643000D0F31AA1ABEF3D981DB5556F" Guid="{34A5616A-458C-4242-8A69-6D9E2A24C03D}">
- <File Id="fil87E4BA94FC1EF7CDF5BFA327AFB285BB" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic5.png" />
- </Component>
- <Component Id="cmp0E0324B462C6687AAEF9C3396B6CE501" Guid="{868EFFB4-B49F-4C59-92D8-EA97893D07CB}">
- <File Id="filFBFA5A75DBE41F40E7AF1E47E9E59B08" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic50.png" />
- </Component>
- <Component Id="cmp49C5D01CABE7567BE709F5A433619CE8" Guid="{1BBC7832-F24F-413A-9370-66A2E2D69F5D}">
- <File Id="fil966C86AA400AC0A03BCFD1649A74F5CD" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic51.png" />
- </Component>
- <Component Id="cmpAD7579868731135750293E6A50C2CC84" Guid="{6DCBB5A1-683F-4B36-9E97-CC8FA6286796}">
- <File Id="fil2975F43631B10799F2971EDD569299D3" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic6.png" />
- </Component>
- <Component Id="cmp125ED5F569C1483132E24F1CD154B7CE" Guid="{902392DB-5CA4-4C6C-B370-61024456AC44}">
- <File Id="fil0EBF29F60599F82F36CC797B2EBE70F9" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic7.png" />
- </Component>
- <Component Id="cmp08004152577698DF66F9F3025246427D" Guid="{1D185085-895C-4763-A20B-7D54A830811D}">
- <File Id="filD2B1B81C0F0914EC5F54905B64EAB7CC" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic8.png" />
- </Component>
- <Component Id="cmpF1878157C477A3E6849C7CE6AF767299" Guid="{C2A413D1-4658-449C-B183-4C862DDBB5B0}">
- <File Id="fil8D4B0127A18355668B8DB61C4DBD3068" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\img\pic9.png" />
- </Component>
- </Directory>
- <Directory Id="dir94E76130ECEFBDFB9A3B6938EAE597F4" Name="mom">
- <Component Id="cmp31C9871C4B2D1CCB5D48D855DC674230" Guid="{0B3FDCA7-686E-459C-B3DB-5A5B0BCD21D2}">
- <File Id="filDD78AEBA77049D1C5A6C807DF490B865" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\appendices.html" />
- </Component>
- <Component Id="cmpA41C3044AAEA59050327CEBDB954115B" Guid="{0EE44627-9850-4C47-AB07-3D270AEE4432}">
- <File Id="fil4FB2F277250612D0A539B0100E9FB8BE" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\color.html" />
- </Component>
- <Component Id="cmp27EF0F5AE9E94A0456D770AA1D21E432" Guid="{E5B2098C-8928-4F76-B35D-55A6F88E9DD1}">
- <File Id="filE4526100E98EE960908AB64FB06E0A7F" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\cover.html" />
- </Component>
- <Component Id="cmp96729A97AB2B52DFB194014FADC7ECCE" Guid="{144E7C61-B788-480E-BC27-377FD814A025}">
- <File Id="fil2EDC8D9C3920FB9B8FAB0A691B86BEEF" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\definitions.html" />
- </Component>
- <Component Id="cmp301B2C4431FA5E9276A7B8D5C511E1D2" Guid="{3FE838C5-C81D-4545-9D6F-88586BFA7F6F}">
- <File Id="filC8F460AD70AF2B1AF539A0118DE4CEB6" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\docelement.html" />
- </Component>
- <Component Id="cmp1A9FA839B296A4D8EBF07FFD8FFB0B92" Guid="{B8325566-59C0-44C4-8F26-00534EF21416}">
- <File Id="fil848B7068519DA79217E5E1AB8C17C807" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\docprocessing.html" />
- </Component>
- <Component Id="cmp11C7BF479544EFC00B727279B257F4DD" Guid="{F92C4691-651D-4936-ADFC-2472321C87E1}">
- <File Id="filA69E658E55BD24AC8B80CD727898E890" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\goodies.html" />
- </Component>
- <Component Id="cmp5BE2DCBD192E1930FEF67AD9424AFAF3" Guid="{17753834-8D84-45C0-8B00-C67FEA92167D}">
- <File Id="filE69F70ED4CBC175D67D2F870F25C03A3" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\headfootpage.html" />
- </Component>
- <Component Id="cmp078E445B915DE117D39340846A39496A" Guid="{86164BBD-34BD-4539-98BF-43508745FF0C}">
- <File Id="fil9AE729E0A2A1898441D9B2C0240F3CFE" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\inlines.html" />
- </Component>
- <Component Id="cmp5498E619AFE1781D9917222F4529D102" Guid="{B9E09BCF-2709-4C83-85BF-CE896F8663C6}">
- <File Id="fil1A01D219CCCB0BEE880B4EB9ADE5E91C" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\intro.html" />
- </Component>
- <Component Id="cmpD22F760F5171F35209FBEEA9CA3C4D3E" Guid="{C3FFBE0C-BEE1-4D79-9364-25925A28BEE5}">
- <File Id="fil098DE23A47E6CA32A5735C83BA6068A0" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\letters.html" />
- </Component>
- <Component Id="cmpB11D9993C13C4B6C32A6373227A37C2A" Guid="{62914F25-9D4B-47F4-AA7D-BC61D49D205A}">
- <File Id="fil30DA989107BE9751AAC6ECE0DFFF7EFC" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\macrolist.html" />
- </Component>
- <Component Id="cmp6B0936E142053C6CD5361A4E6FD8F0B0" Guid="{2A74CFB5-677D-4FC9-AEE6-C1DD70C0B501}">
- <File Id="fil98A18D3DC3F94EAF8657B108BDB4338D" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\rectoverso.html" />
- </Component>
- <Component Id="cmp9552938A7B7B62A51A5F24DD49D60FFE" Guid="{9D81C7B2-4366-4F4C-8EFB-E89A630C173A}">
- <File Id="fil3715A74B2D887B5655068115EFCA0BB5" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\refer.html" />
- </Component>
- <Component Id="cmp55C8C441C13154247F1468CA2DE94E22" Guid="{BCAD4E2E-2CFF-4129-BDE1-92538D7875DD}">
- <File Id="fil9245A0A719E9BA88879697A03ADF3322" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\reserved.html" />
- </Component>
- <Component Id="cmp0E389A1FA2762DE57E094F695FC4ECAB" Guid="{48B82AC3-2DCB-4285-A7F5-615862024EA7}">
- <File Id="filB98AE8A7AB017D9A0364BD5B6262BD69" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\toc.html" />
- </Component>
- <Component Id="cmp40E2E9DD53A0C1AD48E235E537A9092F" Guid="{DE4BACD0-BF9C-400E-B35B-B961EB2DC4D3}">
- <File Id="filFDE77D2B2C1E1A8DB0F4E1537BE8D632" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\typemacdoc.html" />
- </Component>
- <Component Id="cmp298B97F15849EF2965EAADBAB954A91F" Guid="{49FD54FB-0207-4AE3-8018-A0ADA23B7A47}">
- <File Id="fil3CB0A532FBA1D2BE96EA6F844C00AAB0" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\typesetting.html" />
- </Component>
- <Component Id="cmp4CAEEEA062709A31B9F82C25E27A7D78" Guid="{AD666784-776D-488D-AD93-77490804FD5A}">
- <File Id="fil63E96183E50EBBD25818A8330B571365" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\html\mom\using.html" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirDCA10D34BC1F125BD0B2D781DEFF57E2" Name="pdf">
- <Component Id="cmp5FED5E978595D5555DA3593FCB70D1F1" Guid="{7C3C05B4-360E-49E3-8988-141AA732F605}">
- <File Id="filCC44E7F652DE2AF7FB219D064EEAA006" KeyPath="yes" Source="fio\usr\share\doc\groff\1.20.1\pdf\pdfmark.pdf" />
- </Component>
- </Directory>
- </Directory>
- </Directory>
- <Directory Id="dir1B0B9B04B1062F42BF9412630026D6F1" Name="login">
- <Component Id="cmp428ABF6AA70C19D6E1E736085276D170" Guid="{28D5CCE1-3B23-432F-86E2-7975CED0B5C3}">
- <File Id="filD21FC3AAFCC27A3EEDA071C5CC38BD03" KeyPath="yes" Source="fio\usr\share\doc\login\ChangeLog" />
- </Component>
- <Component Id="cmp7F3AE2ADB9C368A2A19414764FD9033B" Guid="{C5E40086-489D-4F88-8304-4D635C24C1BA}">
- <File Id="filD33DE1CEAEA22A29DFA6DD8A5AF56DC4" KeyPath="yes" Source="fio\usr\share\doc\login\old-login.README" />
- </Component>
- </Directory>
- <Directory Id="dir024D9701AA0A471E445AC9EB6922B890" Name="man">
- <Component Id="cmp58C9C8AF16D9A1639E3879B5E80F0C5B" Guid="{CF7A52AA-9324-4D33-A162-72BCFA9AEDFB}">
- <File Id="filDFCE8E20822523F9D53CE4BBFC73F5E7" KeyPath="yes" Source="fio\usr\share\doc\man\COPYING" />
- </Component>
- <Component Id="cmp5D454E6ACCB13EE1BDF60793406DADEF" Guid="{1BD9E943-85B9-41ED-8B41-752DB5FE428C}">
- <File Id="fil6ADF1F18F450CF9045C2856E341E30EC" KeyPath="yes" Source="fio\usr\share\doc\man\HISTORY" />
- </Component>
- <Component Id="cmpD4218EB1C1082E4852DEAD664B0959F0" Guid="{3337081D-F024-4B16-BB9B-C5D684D45F24}">
- <File Id="fil34C2C3B9AFB67D427B8AEDDB32D61368" KeyPath="yes" Source="fio\usr\share\doc\man\README" />
- </Component>
- <Component Id="cmp8FEF3475944614C50845839F04B5BC1D" Guid="{CB792803-2654-41BD-AB25-4AF9795139E1}">
- <File Id="fil4F3C626A2881E49DA82EE3DF69762A5B" KeyPath="yes" Source="fio\usr\share\doc\man\README.GNU-WIN32" />
- </Component>
- <Component Id="cmpBFC159CE59F61A354A46FCEC29DF62F1" Guid="{A3B2BC6C-76D8-4BAB-8065-5A854CD75285}">
- <File Id="filFB4FCD077E31D639D28E5167B57987EB" KeyPath="yes" Source="fio\usr\share\doc\man\README.HP" />
- </Component>
- <Component Id="cmp0EB12FB7CF49AA537A227E7E58DF8B90" Guid="{09596401-BE14-4655-B0A1-755931522024}">
- <File Id="fil2B0C0CFBB8F9CAB94822DE06D85071EC" KeyPath="yes" Source="fio\usr\share\doc\man\README.IRIX" />
- </Component>
- <Component Id="cmp8B1EF747CF28741D00768AF615DC814D" Guid="{9EEC7D69-6619-4589-9485-7F044FDD3B5A}">
- <File Id="fil335F082285B9AC1890FB37805200ABE9" KeyPath="yes" Source="fio\usr\share\doc\man\TODO" />
- </Component>
- </Directory>
- <Directory Id="dirE61A8757C717B7FDE106BE9E8D4BBA7B" Name="run">
- <Component Id="cmp95F9CB781404C5FB50766368789DEB78" Guid="{142C2182-B146-43CF-B7D6-106E437C85A6}">
- <File Id="fil13E934788752F92AAD97226DF4E9B5FA" KeyPath="yes" Source="fio\usr\share\doc\run\AUTHORS" />
- </Component>
- <Component Id="cmpB1B2D99550FE76485BDCE84129695AC1" Guid="{E19870DD-1912-430B-8F4B-76D20BAE82E4}">
- <File Id="filC3ACE3D20EA872DEB0C6B1278DC41DFC" KeyPath="yes" Source="fio\usr\share\doc\run\ChangeLog" />
- </Component>
- <Component Id="cmp097BD7FFFEA276FDECCFA8B0974C399C" Guid="{A4E3454B-FB8C-4DD3-912A-4F54CE8C5E49}">
- <File Id="filFAC4D6663DBDA90B26AA269D86D02A0B" KeyPath="yes" Source="fio\usr\share\doc\run\COPYING" />
- </Component>
- <Component Id="cmp1389DC1F6A4E7F81562B10A160AD386C" Guid="{C6E7711B-03F6-4317-B9CE-1D7506F7BE51}">
- <File Id="filAC787ECB088F03B17994462A39350AC1" KeyPath="yes" Source="fio\usr\share\doc\run\NEWS" />
- </Component>
- <Component Id="cmp6ACB71BEE53113D7224671170E58FF2E" Guid="{9BA24756-5318-4A91-9F62-8C7023F2E9A2}">
- <File Id="fil2CAFCE5AE53B8ED85C5F92CE674F736F" KeyPath="yes" Source="fio\usr\share\doc\run\README" />
- </Component>
- <Component Id="cmp1FDC29F000373C8276FAC7606560FE01" Guid="{04DF9625-3981-4728-ADEB-F7F8AC5356F2}">
- <File Id="fil194BDEA39071FC446E7D482E56C4E82A" KeyPath="yes" Source="fio\usr\share\doc\run\TODO" />
- </Component>
- </Directory>
- <Directory Id="dir54708AB06B41C863F5FC947E0C3006BD" Name="sed">
- <Component Id="cmp0D6A537A5789230183B6862ED297EECD" Guid="{D8E1B99B-1821-41BD-A6D5-5BF7548F9AF1}">
- <File Id="fil78F1C4358C7F6E197D5DB542D2F489B2" KeyPath="yes" Source="fio\usr\share\doc\sed\sed.html" />
- </Component>
- </Directory>
- <Directory Id="dirDADAA09C00E5C9F8A863A9CDFB0E7D37" Name="tar">
- <Component Id="cmp01E5B6C729E839609C29BE8C4A8980C5" Guid="{AFBF7CF5-4304-4707-ADBE-B03CD487B508}">
- <File Id="filC81690DD173E0A227891DCD8CCEBAE94" KeyPath="yes" Source="fio\usr\share\doc\tar\AUTHORS" />
- </Component>
- <Component Id="cmpABEACA89813E2480FA7A84951B3BC9EB" Guid="{F105C121-4C39-4F26-A489-1385FFE476C1}">
- <File Id="fil2D689EA907B3D63C597246F123A5F7D9" KeyPath="yes" Source="fio\usr\share\doc\tar\ChangeLog" />
- </Component>
- <Component Id="cmp85AAFFB8FA13A1F1C9D005BFFB524E2F" Guid="{6194BD55-775C-4228-8B55-AB6B6321B362}">
- <File Id="fil82546DB2D81E19A4A880B0E70B7F25DE" KeyPath="yes" Source="fio\usr\share\doc\tar\COPYING" />
- </Component>
- <Component Id="cmpEABCC41A267679DAFD16BE973E217C4F" Guid="{D3B216DE-570E-4653-BBDE-90B14586BDAD}">
- <File Id="fil2A5D15FCA2528670D9FF5E540C04FBCD" KeyPath="yes" Source="fio\usr\share\doc\tar\NEWS" />
- </Component>
- <Component Id="cmpB21B8A95C7DE2BF9F8143D84DE9E7D64" Guid="{7465D6A4-9455-4F4C-8FE4-BDF04A5722C2}">
- <File Id="fil9DD553FD7F462A01A4E60D74252E1CD5" KeyPath="yes" Source="fio\usr\share\doc\tar\README" />
- </Component>
- <Component Id="cmp0AA9D5A37BF54715D2A88C4922EFF2B2" Guid="{47377588-54D1-43AD-A326-4F1FE957E9BF}">
- <File Id="fil1291EA7A757932222E42AD1B9B38EE94" KeyPath="yes" Source="fio\usr\share\doc\tar\THANKS" />
- </Component>
- <Component Id="cmp500080821CAED6354E0438AFB8383F77" Guid="{81CE4E84-1AD9-4E3D-9D7E-DB7569EB250B}">
- <File Id="filA984B4E1F614642AE339514390261500" KeyPath="yes" Source="fio\usr\share\doc\tar\TODO" />
- </Component>
- </Directory>
- <Directory Id="dirEE8DE9391CF4CA08741E9FD18F59CCE1" Name="terminfo">
- <Component Id="cmpA4A3B83BB3570576F0748BA8D94C9495" Guid="{6135EE9E-0C74-4434-AEA6-6F1A4357A8BA}">
- <File Id="fil6F1963A85BA8520DF0888E9C0C8FA713" KeyPath="yes" Source="fio\usr\share\doc\terminfo\README" />
- </Component>
- </Directory>
- <Directory Id="dir2FC8EB8A76473FB2C30195AA93939102" Name="terminfo0">
- <Component Id="cmpC7FE2896F66B21C3A95E84C8C437C067" Guid="{D55E4AFB-C0B2-4392-8A55-F708D8165174}">
- <File Id="filEA496EED2D22A61D1826DA9A87AC84E0" KeyPath="yes" Source="fio\usr\share\doc\terminfo0\README" />
- </Component>
- </Directory>
- <Directory Id="dir60F92B35D302C18E9F60FD2B8B056601" Name="tzcode">
- <Component Id="cmp9D5AD67E82B047BD66D06B9B38564427" Guid="{BEF10195-4E07-49D3-A5C1-C8AE0B517B7A}">
- <File Id="fil16AEB0D294BBB227DDBB5DDBF04C9D3D" KeyPath="yes" Source="fio\usr\share\doc\tzcode\itca.jpg" />
- </Component>
- <Component Id="cmp523866069282B63B749D9687ABDFCC79" Guid="{E6B474A8-3CF4-45F5-ADBF-117903772923}">
- <File Id="fil2BF4D02CDCB2B340AA89FE133E854971" KeyPath="yes" Source="fio\usr\share\doc\tzcode\README" />
- </Component>
- <Component Id="cmpFFF84CAA0FF178FC693472FCD409315E" Guid="{CB41005A-2F11-4D24-9E3B-773B0B377F59}">
- <File Id="filF20B9F69DF4C98DF2373DA024FE44567" KeyPath="yes" Source="fio\usr\share\doc\tzcode\Theory" />
- </Component>
- <Component Id="cmpBB5CC6E1301DFA1100ADB7FFDA9DE1EA" Guid="{04FCFF1C-2260-4F6E-BBF7-F16621CA263F}">
- <File Id="filB5A7A7745E535615F2A34CBD89FE14B8" KeyPath="yes" Source="fio\usr\share\doc\tzcode\tz-art.htm" />
- </Component>
- <Component Id="cmp401DDF350952DB83E2AD903C40ED5204" Guid="{65FA6B16-211B-49D4-9F15-37D9E6772738}">
- <File Id="filDA84ACD3F5EFF6C1D9AE8784402F53C8" KeyPath="yes" Source="fio\usr\share\doc\tzcode\tz-link.htm" />
- </Component>
- </Directory>
- <Directory Id="dir4C04E7E1861F9535F9200F740116E5BA" Name="which">
- <Component Id="cmp78C33098CD37572DBAF78FF51AB2F237" Guid="{0C19ADB4-3F94-40F3-A490-56DF104F0727}">
- <File Id="filDB7C26526260D0C8DCF632CB7094F84A" KeyPath="yes" Source="fio\usr\share\doc\which\AUTHORS" />
- </Component>
- <Component Id="cmp3E39B82496550D441DC2B300538FA078" Guid="{2CAE7B24-A9CC-4236-8B8E-8927AC30CEA9}">
- <File Id="fil6DC53C52DCD792B02B085D2463B06B8E" KeyPath="yes" Source="fio\usr\share\doc\which\COPYING" />
- </Component>
- <Component Id="cmp29E063600660EC8F8218CDD12421D1A3" Guid="{2131EECC-C3D4-457D-86B5-C3C184D7B53F}">
- <File Id="fil687F338598F522A4A9817EAD3E6E7719" KeyPath="yes" Source="fio\usr\share\doc\which\NEWS" />
- </Component>
- <Component Id="cmpAD8C6543E6CF9FA1BEA1A080C2FF06CF" Guid="{2A2933EE-8200-417A-9537-2F2DB1A4A81E}">
- <File Id="fil209B69D5A92542B67C9FBF886F5D8895" KeyPath="yes" Source="fio\usr\share\doc\which\README" />
- </Component>
- <Component Id="cmp003B36F1FE500E801D170F8CB4AB2F77" Guid="{A69058B0-DD61-43A7-8F20-8F2E3E733115}">
- <File Id="fil29C5D35EA47C386CBD985F7B1E8F758D" KeyPath="yes" Source="fio\usr\share\doc\which\README.alias" />
- </Component>
- </Directory>
- <Directory Id="dirB00628666CCC71EBE886B09A8CE8F050" Name="xz">
- <Component Id="cmp7FD96CDFA8E16FE5E7119AFA04C1F1E1" Guid="{9BDFF210-9CA3-41CF-AE48-79867A81801F}">
- <File Id="fil53CFB8C7EA9F5F67D19FB85CC4AE5CBE" KeyPath="yes" Source="fio\usr\share\doc\xz\AUTHORS" />
- </Component>
- <Component Id="cmp5634ED49FD71DF268FDD7845DA49A4A3" Guid="{81179F03-EBEC-4F5F-B3FB-9DC3BD3D8556}">
- <File Id="fil3306A2DF4E02B286F3F38D70B5AB283E" KeyPath="yes" Source="fio\usr\share\doc\xz\ChangeLog" />
- </Component>
- <Component Id="cmp2F7013E7477EA0056B9A89DE0E36B22E" Guid="{375F5B33-2C3E-4CF7-BFF2-63A1A6EB9206}">
- <File Id="filE8B963F281E10685D2018653D5EFBE68" KeyPath="yes" Source="fio\usr\share\doc\xz\COPYING" />
- </Component>
- <Component Id="cmp94CBF4A46DC9FE60BDD077FF151A3354" Guid="{E607618E-B2D3-4554-85BB-8208F8734CF3}">
- <File Id="fil155D4C30DC6384630D46A02540082637" KeyPath="yes" Source="fio\usr\share\doc\xz\COPYING.GPLv2" />
- </Component>
- <Component Id="cmp4AA4141E05257A8737F8460D9232C4E2" Guid="{7860C6C7-5FB9-4C3F-B067-94E4F1121B55}">
- <File Id="fil70303DCD90E5AFCC2324B93D99EACE81" KeyPath="yes" Source="fio\usr\share\doc\xz\faq.txt" />
- </Component>
- <Component Id="cmpA2F696D2020DF6CC8C5BE5898E22DE84" Guid="{F729002B-430A-4ADC-A206-B2BE622F6C63}">
- <File Id="fil9858FBFA03A007DC6A670BB61D221BA2" KeyPath="yes" Source="fio\usr\share\doc\xz\history.txt" />
- </Component>
- <Component Id="cmp1FDB24F7BD54EA49484AE7330008C7FC" Guid="{C66E5886-D020-4B7B-99B9-3853EAE6DEDE}">
- <File Id="fil876FFCFE95ED75862C048580BAF9294D" KeyPath="yes" Source="fio\usr\share\doc\xz\liblzma.def" />
- </Component>
- <Component Id="cmpDF957DB2F1B7631B6FA6CC5BBBAA487D" Guid="{F6356952-FA8E-4139-81CD-B9CADEA6024C}">
- <File Id="filA7FFEF4262BE6DA94CAA55FA3D006ABD" KeyPath="yes" Source="fio\usr\share\doc\xz\lzma-file-format.txt" />
- </Component>
- <Component Id="cmpD3B350876AC021033A7F418296F26394" Guid="{2DDA4D8D-DEDE-4DF3-AD02-13312A13AE40}">
- <File Id="filDE3B1EA0625DBB1ECFA2D551FEDD144F" KeyPath="yes" Source="fio\usr\share\doc\xz\NEWS" />
- </Component>
- <Component Id="cmpAA1C9FB1CFC873B455AE055B4EB7759E" Guid="{6757EDA4-83AE-43FC-9AF9-B6DDEEED6193}">
- <File Id="filFBB6FB1F26CC3F46AB7560218C0F5C52" KeyPath="yes" Source="fio\usr\share\doc\xz\README" />
- </Component>
- <Component Id="cmpCE2DA590AD49BD26D896E8C48DE13A9F" Guid="{98FFC144-A590-4B10-A9D0-11E4003BF494}">
- <File Id="fil6348B674EAB400D720A2AD7515CBB512" KeyPath="yes" Source="fio\usr\share\doc\xz\THANKS" />
- </Component>
- <Component Id="cmpED703FD821E7C229B8E21AF003084C33" Guid="{609BD5AD-17B6-40EA-A154-785D55B15AF3}">
- <File Id="filE768F3AD9E9CC16DA084CDD1FFA7D4EA" KeyPath="yes" Source="fio\usr\share\doc\xz\TODO" />
- </Component>
- <Component Id="cmp032A8B20154212D4514BE84A6AC2FF16" Guid="{2D0BC040-3A6D-46E4-B14F-18A2ECD2C7A4}">
- <File Id="filF977652914A52DF70AA162A23E71B341" KeyPath="yes" Source="fio\usr\share\doc\xz\xz-file-format.txt" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir1836BF9958F7C8D37720AB55A6F265CA" Name="gettext">
- <Component Id="cmp426640FE8EE32AEC8650B355A6D238CD" Guid="{296ACE44-BAAD-4466-92E3-095159C4518D}">
- <File Id="filE97603E8D1019CA31E4F27FCA67E94C7" KeyPath="yes" Source="fio\usr\share\gettext\ABOUT-NLS" />
- </Component>
- </Directory>
- <Directory Id="dir3595E401C140B5EBD09C7E648D91C906" Name="groff">
- <Component Id="cmp32E0AC4F072413168269A2E71BCF03C2" Guid="{0E62D17B-54A9-4D15-A695-4054AFF5335D}">
- <File Id="filB7DF44A6F0FFB5295B1577F9F1FB123D" KeyPath="yes" Source="fio\usr\share\groff\current" />
- </Component>
- <Directory Id="dirF92527A50E07D8F7E5A2C1D5CF477892" Name="1.20.1">
- <Component Id="cmp02E04A60B6B8584DF59876389271939E" Guid="{064BEB09-82EA-4A3A-B02B-3DF2432660FC}">
- <File Id="fil00D01E57EC0C259DA4894B53E73F0374" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\eign" />
- </Component>
- <Directory Id="dirB8C870868427E3A2B38C2027D3294B5A" Name="font">
- <Directory Id="dir15CB8017383D9E4E9DFD035B9211FD98" Name="devascii">
- <Component Id="cmp537255F3498C14D9CA3025B8B0E65C55" Guid="{EF9BF0DD-D712-4C64-A0B7-E141236E1072}">
- <File Id="fil5709E576261D5487C8E0F9038CAB0E80" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devascii\B" />
- </Component>
- <Component Id="cmp0BD348A630F075F9B0D3B76F36D2FC82" Guid="{1E9B3A1E-3F25-42D4-9AFA-C5E6092F63EF}">
- <File Id="fil2A78FD188B2BA066369E81005C7EAA90" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devascii\BI" />
- </Component>
- <Component Id="cmp60F719BF004435D72D082767B230162B" Guid="{D2E7C411-BED9-492E-9BB0-204C25445CDD}">
- <File Id="fil4C922966A87B337064651C994B8A7CE1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devascii\DESC" />
- </Component>
- <Component Id="cmpD6018658983E3482C1E0481F677AD23C" Guid="{3E10717B-4520-48B0-8AE3-77EACD839630}">
- <File Id="filFEE9954EACDFD1B6A4E6768FB68B9A63" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devascii\I" />
- </Component>
- <Component Id="cmpED167A4C0ED2B75D200AF74E25C50126" Guid="{21642DC8-6A24-4E8F-B64F-C7469612349E}">
- <File Id="filCCD40CDEA540255A9D1675BAFE4639EE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devascii\R" />
- </Component>
- </Directory>
- <Directory Id="dir3CAC59A35061E02F178E7ECCC9A24188" Name="devdvi">
- <Component Id="cmpE9A266F316698535648F728312AD4726" Guid="{3D025714-DDE4-4B94-BE14-A53D1040949C}">
- <File Id="fil09512EDAB3D584B1B877C282E50D38FB" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\CW" />
- </Component>
- <Component Id="cmp3725E4B1080398955C3881B85C115DFC" Guid="{90CC8D0E-C59E-4026-A2F3-2367F47E41FE}">
- <File Id="fil225A7E2B3940A1FDD6A0C64CEAA14446" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\CWEC" />
- </Component>
- <Component Id="cmp3D14980B6751955CE2224C73F63E0C8C" Guid="{173F434D-5564-439D-9EBB-3F2FB55C5125}">
- <File Id="fil77797E7030D12CDAB972A92ABB545ED2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\CWI" />
- </Component>
- <Component Id="cmpFB4F809546EE62E9326A8B889758E5E1" Guid="{FE8AF85F-EE1E-4500-985A-EAA5387074B3}">
- <File Id="fil52BF878C4628918BF0BF46E79D18310C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\CWIEC" />
- </Component>
- <Component Id="cmpCA1E1967D5CEA5313039688058F9E295" Guid="{144F1009-068E-485A-A5C6-32511D9ADA97}">
- <File Id="filC59EC94B2C4CEBF1F4802A23DB07B45B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\CWITC" />
- </Component>
- <Component Id="cmp70B844D9193A122DC1ED082D2DC5E84A" Guid="{908C91AB-E845-4761-BDDF-9C6C8FB04FAF}">
- <File Id="filC14997B65777979EC866C756A2E14933" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\CWTC" />
- </Component>
- <Component Id="cmp10D71B4E7E2CFF9F35A5680927204C8F" Guid="{17D7FB50-4B25-45A5-8634-F1CA4997003C}">
- <File Id="fil84E649D9B2927942FBFE0A486EAE4192" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\DESC" />
- </Component>
- <Component Id="cmp34BCF504CB06ADD9FD9CB2C963ED6FC2" Guid="{C89B19FA-4EF2-4E69-8B2B-A4CD253804F8}">
- <File Id="filAB06E9E8BBF4A5558BF53C2EA55D1030" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\EX" />
- </Component>
- <Component Id="cmp9407FF4A714744B984493EF4EE8BCCC9" Guid="{3B169732-621E-45A3-AB93-0D1451CEE25E}">
- <File Id="fil57987C96F9184C55F56A1287FE6A0225" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HB" />
- </Component>
- <Component Id="cmpA0ECB170597771861243AD93CDBE31DD" Guid="{6CC106B3-5DCE-40B3-8A92-A377534007CB}">
- <File Id="fil5CDB9A1508031C9A1BC5B73FD337F941" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HBEC" />
- </Component>
- <Component Id="cmpC0228F666AAC214F2720D6A222C626CC" Guid="{FEC49513-9E9F-43E1-A36B-A607B56F8BF5}">
- <File Id="fil7E26EF85FEFC8E52DA78417F2A292273" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HBI" />
- </Component>
- <Component Id="cmpC6F57F098906C0812ECA1C0422B5905E" Guid="{4F31B147-8499-40D0-B7E8-4D2373BC91C8}">
- <File Id="filD6FB509CA954EEA93BDEA965490DA6EF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HBIEC" />
- </Component>
- <Component Id="cmp2B3AD947B20082A91C95E566022D48BA" Guid="{0EF54E7A-95E1-4E6D-80E6-F85328234B3A}">
- <File Id="fil33B62A1972A1A54E066CB13605F381F3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HBITC" />
- </Component>
- <Component Id="cmp21481AEC7C9214DECE9ABC9E04D400E2" Guid="{14BB9159-4FE8-4361-B003-F16A347E0E24}">
- <File Id="filC8F44242ADCBF0919C8403231CCC8805" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HBTC" />
- </Component>
- <Component Id="cmp127288070EECC36921C51F4ACBFB519E" Guid="{FBE858B5-FCF3-41AD-B8DF-74174C3E2B7C}">
- <File Id="filD4EFBC464E56922918EB432DC669672C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HI" />
- </Component>
- <Component Id="cmpE20A95CA89AF1DFEE056DCB82D9D69FA" Guid="{A5E8D9A3-5720-48F0-B247-F6DFBDE868F6}">
- <File Id="fil8EBF3853DDF5C0849B98A646A57728CC" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HIEC" />
- </Component>
- <Component Id="cmp6B43E68328A11CC5438DB2FEE5BB9F71" Guid="{284CE9B2-ADEE-4D33-BC5D-F8E10C240FF8}">
- <File Id="fil137B7E206ED8BC3B958D371A1197DC44" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HITC" />
- </Component>
- <Component Id="cmp0A7D4E0A1355AD0A203BD951C52B6473" Guid="{FD1B249E-9855-406F-BF7F-F4915412CD4D}">
- <File Id="filBB4458C5DD4A7D53C062CB61B60CA746" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HR" />
- </Component>
- <Component Id="cmp9AE2253A4CE81B0D5CCC6E52403A2588" Guid="{1E9E6464-1F4F-4E08-86C4-6138A831851E}">
- <File Id="filD786DF3BF2D42049AEB1DA055A493456" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HREC" />
- </Component>
- <Component Id="cmp7D17AF8A58D96AFF0051FB2FEE9C1FE5" Guid="{3BA383E0-0428-4B1B-AA15-DB5EED4451B6}">
- <File Id="filB2521A114BA8FEFA1D5CD52F7E285418" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\HRTC" />
- </Component>
- <Component Id="cmpF1D2706D9EFD91552967E306C74FFFC4" Guid="{98EDE7BA-5E6C-4C76-AB40-97941A10745C}">
- <File Id="filDEE456D7A0422BC10230287BCDDB7D3E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\MI" />
- </Component>
- <Component Id="cmp0240B36DA7C20BB347D513176233D4D5" Guid="{75531CC4-5AB3-4DE4-AFBB-CC9B7EB0B00D}">
- <File Id="fil215D11090A883791066E2E0651BB6847" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\S" />
- </Component>
- <Component Id="cmp5C47F1688A12874C2F55B8AAF30072A0" Guid="{A7B91E53-F481-4133-8276-F5934D14C594}">
- <File Id="fil9F13BCD839672598E190982C2B7F1041" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\SA" />
- </Component>
- <Component Id="cmpD2AB026C7EAA3ED3E7C724CC9CD87CBA" Guid="{60590767-F112-484E-AC05-FA90404D48E1}">
- <File Id="fil6F7B9F847C5190CCCB11F59AB61345E9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\SB" />
- </Component>
- <Component Id="cmp175711922EBA8A21278839214F7D4714" Guid="{66147FC1-EBE5-424A-92CC-D5D63E19C6E2}">
- <File Id="filF85840E678BBFFFD82CF251DE2C9EC97" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\SC" />
- </Component>
- <Component Id="cmpE66E8B0B39B9E747174CE7EBCAB85EF6" Guid="{3A164A95-451A-47D7-A382-F25F9FA960FB}">
- <File Id="filCB2155B328EC37A508D4FC5BED6E116C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TB" />
- </Component>
- <Component Id="cmp84E61ED20B7BFF66C76E2C930FE3D033" Guid="{9AE7F5ED-8612-45EF-A1AC-2011FC2A9BD8}">
- <File Id="fil209C92C8C26202D7378EE5F4E4DEEB5A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TBEC" />
- </Component>
- <Component Id="cmpCA100DB587977EAEBA56D4E3AA00DCDB" Guid="{70410862-F71E-44DF-83D1-9E1C516FDDC0}">
- <File Id="filC44DF76D85EF8834BD575C771DA4BC44" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TBI" />
- </Component>
- <Component Id="cmpE64ABF2B55553376D0F1901725BD8235" Guid="{85CD22EB-CB24-4270-A416-02E4819B40CC}">
- <File Id="filED30C93560017D5CFFA668A7F2E4B558" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TBIEC" />
- </Component>
- <Component Id="cmp0ED7633056CC135A4E9AE3730ED24585" Guid="{571F5117-93BD-47DA-BB1B-1ED863B7E7A7}">
- <File Id="filF73D733E5A7BD9E1A636D768F22BEDF2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TBITC" />
- </Component>
- <Component Id="cmpE57AA0722FD1AC96B23B025DA0394BAD" Guid="{6B9EDB6C-F402-4AAD-B529-6E5F3B1BDF2D}">
- <File Id="fil4E4BB586805F848C062BE9ED86CA120C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TBTC" />
- </Component>
- <Component Id="cmp51886C959BAE2ADAC17101E61B024619" Guid="{324EA00E-D8A4-4BBF-9C33-2D61C70640C8}">
- <File Id="fil6FDC383EBC41B4787D78766274C56EC2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TI" />
- </Component>
- <Component Id="cmp764669F8AB01DDF3E45B44402EA008E0" Guid="{75728AFF-8750-4C13-B6E5-12DF3EE15923}">
- <File Id="fil02EB4A2742F9E2C46D3AEA8CA50057D4" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TIEC" />
- </Component>
- <Component Id="cmp126D60B46519BD890BCAFFE68A480C33" Guid="{86ED388E-D161-474E-9E94-67217371631F}">
- <File Id="filF52943679754972CE818A600651F4EF9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TITC" />
- </Component>
- <Component Id="cmp2D7474A3341B2BCCFD747D2975AA0542" Guid="{4F8D7984-E7B0-4692-9A49-B71E7903AEB6}">
- <File Id="fil0BCB73CF19F5EFBD129DEE37FF04433A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TR" />
- </Component>
- <Component Id="cmpBDD00E0FAFAF5DD357865FFA0D729B26" Guid="{9255FA7D-2D30-46AF-9210-F4F624DDC087}">
- <File Id="fil32096B2C003B172C8FD57FD956646776" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TREC" />
- </Component>
- <Component Id="cmp1BFC5EE1A41C61C6A466B289BA2AE0B4" Guid="{CAFF18B1-343D-477E-8DAB-E6D87D0EFC83}">
- <File Id="filA07D3F3740DD084670E8D67497B7726F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\TRTC" />
- </Component>
- <Directory Id="dir298606AE6A86183F754D5E376A255F88" Name="generate">
- <Component Id="cmpB297FB5E8822F40CC3F72E3DE97686CB" Guid="{22A700AE-C1C6-4BFB-B1DF-7257BAA93252}">
- <File Id="filE8AC49FE814FF6DE98AB7C019B67853F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\CompileFonts" />
- </Component>
- <Component Id="cmpA2DC6A9AB5EA04C86F02C4168E7BEAEA" Guid="{47E2D8EE-DD5E-464E-8C68-E80BB23DB95D}">
- <File Id="fil22B29E500ED36F1D94E85B51EF58BDA7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\ec.map" />
- </Component>
- <Component Id="cmpD6C8144B0E6A7C9FE63D122CCA1B53F7" Guid="{ED7F6101-468D-4ACF-8709-0910AB5E3A1C}">
- <File Id="fil23A15489D046E51EA5045E5B76931B29" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\Makefile" />
- </Component>
- <Component Id="cmpD6B3B1698D42F92C1280F9406C405C61" Guid="{D8E6F489-4F50-4513-939A-44B176AA7CA8}">
- <File Id="fil1C402D77128690EFA8F4E987AD74624C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\msam.map" />
- </Component>
- <Component Id="cmpDF3225A9A082AE863F2DB7B57E172BB7" Guid="{8C48B9E9-C8AD-4C06-8E98-1B77BE10DBD5}">
- <File Id="fil8AEE0E9B44F6678C9494F38E95A42CF1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\msbm.map" />
- </Component>
- <Component Id="cmpD2E238D3773BCA88949ADD777EB44296" Guid="{D5E65008-9715-4394-83D5-F9516DEC28A6}">
- <File Id="filA1C00293AD95A670930022636949BA94" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\tc.map" />
- </Component>
- <Component Id="cmpF485101D3BBD5B9070B95D7307442340" Guid="{4FB85B69-ED5D-4DB7-851C-7B0F81C57419}">
- <File Id="fil3A3809F033080CFF60F68B65E955EF6B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\texb.map" />
- </Component>
- <Component Id="cmpA3B466645B7E72304EBDB451840ADF32" Guid="{16CB9158-53B3-48FA-B0A3-6054B0755658}">
- <File Id="filDF0E90C4E03B2C5AAC58B680823BABF7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\texex.map" />
- </Component>
- <Component Id="cmp8EAB75A0A3C99466CD040B72097A3763" Guid="{7C002EE2-EA82-4244-BAF2-8FA57EF52793}">
- <File Id="fil3FD7EADD78BB74957D145DEC39FAE05A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\texi.map" />
- </Component>
- <Component Id="cmp3271B59C6F96B88CFE032CC7B16F9BA8" Guid="{20593E19-FF0C-46EC-909F-2113229F3B36}">
- <File Id="filF1BAA4900206D87EA1E32EBEE469CCD1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\texmi.map" />
- </Component>
- <Component Id="cmp58ED3CA0DEC66C2D78E2A36CD7D9992B" Guid="{8E0AC8F1-7F33-4CED-B4BA-068D0B4D3811}">
- <File Id="fil9FC188DE18014776BA06B8C49C3D69B1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\texr.map" />
- </Component>
- <Component Id="cmp9CC92C68958CA357CA60296B0506395A" Guid="{D19B4BFC-C4CE-48C0-8B97-FC25978F4DF9}">
- <File Id="fil35652F03B4C5BBC5D58DBE57D2ED6C64" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\texsy.map" />
- </Component>
- <Component Id="cmpFD6C3896B7C46343021E9F1EEB3EE287" Guid="{A37A7CB3-2261-46BA-904E-F951AC3E0A26}">
- <File Id="fil766E840288F1C6BC6F42EBCB28ED4F55" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\textex.map" />
- </Component>
- <Component Id="cmp2C00C1E1B18208DA5F782EA92CCD0E12" Guid="{2209D0FE-1B11-4BF9-BCCC-8D9E3CFFAB26}">
- <File Id="fil57F48ED52D85C61C0F1977967B305C38" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devdvi\generate\textt.map" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir873939728A803F4FED74E5AD49B3DFD1" Name="devhtml">
- <Component Id="cmpD580B3E7A466CA55E7EA502E0F2E23C8" Guid="{223D0DCF-EC40-4848-9D51-701102B7EDCE}">
- <File Id="fil500CE5CC329AD5C22CB44976D62FA058" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\B" />
- </Component>
- <Component Id="cmpBB1D8D358E1F88293DF1C261B74FA5CE" Guid="{9734CC95-9855-456E-9B60-13D83E50623D}">
- <File Id="fil1B4E9B21E3950D9CEDB42EC274B8605B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\BI" />
- </Component>
- <Component Id="cmp86D561CD664672CE57D99684046CCBB1" Guid="{A9FC48F0-79E5-484D-9B47-D9A01EB058A7}">
- <File Id="filD601382F3D2472A9A75076E98B78E3C0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\CB" />
- </Component>
- <Component Id="cmp95AFE5FB5F8DABA31B6B875A6216D9D1" Guid="{5BD61E0D-37B5-4326-B2E0-78FC3CF3D457}">
- <File Id="fil4F22242940013AD66853EE3745588FC7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\CBI" />
- </Component>
- <Component Id="cmp8395FD097E557AB5E592D1D911BAC42D" Guid="{4BCE8EA3-D4CC-4AF9-9C4E-B5BFF0FF4E35}">
- <File Id="filC8F3F5EB985C480D1708AE5A487ED297" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\CI" />
- </Component>
- <Component Id="cmp9FAA0E7CC933EDEC0F3DDFAD4B46509D" Guid="{F348A484-E598-4796-83CB-EE1443FD9414}">
- <File Id="fil23CD9EE3D38DECB22EE56C1FE7F9E07B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\CR" />
- </Component>
- <Component Id="cmp256E9E68FA8FA69A2A9660A73D42B0A5" Guid="{162F0B05-1F57-47FA-871C-17E8BF918BA1}">
- <File Id="filBC23A7905F91633A05080B2A02EAD01B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\DESC" />
- </Component>
- <Component Id="cmp343EAAE88A47E16F04CE1A3504D4CE06" Guid="{CDE16EAF-5C65-48A2-B841-88A4BAB7060C}">
- <File Id="filFFE11104BEB0BA8249D733F132683DF7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\I" />
- </Component>
- <Component Id="cmpB73691D96BA845543C3FAF61DD7E6578" Guid="{84B23B68-1C7B-4CC1-A66E-776DE9C455E4}">
- <File Id="fil42EB888524FAA7852B3E5BD6EF13B185" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\R" />
- </Component>
- <Component Id="cmpF21A0F712F2A169ED00D978C7A6CEF17" Guid="{068B6469-2932-4A8C-BC23-FA83752A094C}">
- <File Id="filAE1070B1AF5AF5CA4087EA58FB236E7D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devhtml\S" />
- </Component>
- </Directory>
- <Directory Id="dir71B52EAFE7390EB5CC7FDD60231D0815" Name="devlatin1">
- <Component Id="cmp89D7471ADFD324562FC7BB227E66840B" Guid="{0E7D2A53-5850-460B-8E28-F44CFD0D963C}">
- <File Id="filAA5E0DC1C19D2FF22307EA61C818F8E3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlatin1\B" />
- </Component>
- <Component Id="cmp0CB5EC5E8D881CC6E84370911E1B8D98" Guid="{173D99C7-6379-4EAA-BD0A-D00BBE2AF7B0}">
- <File Id="fil4070289559163BD47801A09AF2057252" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlatin1\BI" />
- </Component>
- <Component Id="cmpC9B4F507F3E0F1F347AFE6694BFF7CFF" Guid="{280F1E7B-D15E-4A8F-A4C1-CE8AD97E09D1}">
- <File Id="fil634902609E563C0BCB91FE841DDF00CB" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlatin1\DESC" />
- </Component>
- <Component Id="cmp31A908EAE44350DD280712AA567594D7" Guid="{9F66F857-4264-4F35-854B-CE68675B3618}">
- <File Id="fil1A26F11B5924425EBFA002FD296FAFE7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlatin1\I" />
- </Component>
- <Component Id="cmpD90F5A3ABF4CAD2C5A0223C15B951839" Guid="{20EB2EAB-D7FE-4044-839C-BC65F43C3FD5}">
- <File Id="filD792AF0EF8B11E4B42B75F3F8FF2BC4F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlatin1\R" />
- </Component>
- </Directory>
- <Directory Id="dirA2BB570301C28D3713D36025E11C3F10" Name="devlbp">
- <Component Id="cmp73E7433A7A573A863A304F18569897E1" Guid="{A1D478CF-F16E-4F57-B101-4B24F3AAE394}">
- <File Id="fil2D9A90FC38CF1F3FE1133618673A853B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\CB" />
- </Component>
- <Component Id="cmpB6E3A68BED973F281381F4EB619CB972" Guid="{6493860F-EE3C-4B47-8317-D9F5FD004B98}">
- <File Id="fil2D120875C336F1857C1C961989374656" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\CI" />
- </Component>
- <Component Id="cmp0A28F370D28762631AF68A278D3C4A3A" Guid="{2FDFED35-BC41-4D16-8D10-46D103291DA9}">
- <File Id="filB918B6944C88A07F2E3B41275F85C726" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\CR" />
- </Component>
- <Component Id="cmpE4ABE762B23F93EB2FD389BD584DBF81" Guid="{C1C64860-9481-4D81-B56E-BC1B4958FE94}">
- <File Id="fil3D8C2DD14C720C7E918F8BC79462B2F9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\DESC" />
- </Component>
- <Component Id="cmp43C21436830253DBF50FF7FF39D4F79B" Guid="{CB83EFA7-1DEE-426E-87C5-B76001188918}">
- <File Id="fil7D9913E3D3B4FD546F19810E39697BB5" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\EB" />
- </Component>
- <Component Id="cmp795AE785129D3545B062352DFC4E3CD8" Guid="{8560B199-C436-4D57-905D-BA975D0225E3}">
- <File Id="filA2B65B1262A0E29C3426E0740475ECFA" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\EI" />
- </Component>
- <Component Id="cmpD7CBDF77E46BBD955B794B826E8CA4DD" Guid="{2AF03E01-39A7-43D8-81AA-035B923AB24D}">
- <File Id="fil9DA091846DB1E6067948D95CD36EAC67" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\ER" />
- </Component>
- <Component Id="cmpD569C2099DC53E0F3275C2C94ACE99B3" Guid="{24CF7B48-48E7-458A-BA14-E6B5CA063EC6}">
- <File Id="fil7969D41C27EBE6F33039CF02AD7D2CB8" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HB" />
- </Component>
- <Component Id="cmpF7FD1DC5C3B3C60D615F10CB5B7EE740" Guid="{4E447901-E59B-4173-A5C8-04C84A4ABA86}">
- <File Id="fil80590FEB41D39507C2C7C9EC46D09EE0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HBI" />
- </Component>
- <Component Id="cmpC20D5CC05D9D44F26C85E6C213DDF4FD" Guid="{60A711D3-FBC0-4609-B287-4333FA37FBB8}">
- <File Id="fil58773A104CECF137B0124A78FEFD84EF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HI" />
- </Component>
- <Component Id="cmp5F2E80E1A6C9076661242870374D0A81" Guid="{C291DA1B-596E-4F98-8B73-0D9AE818ED73}">
- <File Id="filA37CE70783FB9D1DE3B46E88B69B45E4" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HNB" />
- </Component>
- <Component Id="cmp9EE56EC5526D05C7D531A012B4E7767F" Guid="{0B2E9B46-C5F7-4B5E-B557-EBEBE759C31C}">
- <File Id="fil8626C8DF68ACD97F270B461C1FCE9895" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HNBI" />
- </Component>
- <Component Id="cmp2C5EB5E6B62B56726156A39F3A0B6D77" Guid="{E8B7C5EB-FD34-4921-8D14-3A16C2582036}">
- <File Id="filA1ED7FFDBABC5986B1F815A5B382593C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HNI" />
- </Component>
- <Component Id="cmp9AF4408550AABDD3249C771CB7E4E8B2" Guid="{815E8820-1B94-42A0-9913-FA43C74652C6}">
- <File Id="fil6AB47C83336F00AE3B7404AA8841E058" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HNR" />
- </Component>
- <Component Id="cmpF0FABC998BA97805195E186378B80148" Guid="{C21F3EE8-E058-4162-BF06-0E4C1F089360}">
- <File Id="fil8561DA9773223C1947DCF5390EF896A5" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\HR" />
- </Component>
- <Component Id="cmp6C7BD040943B561BDF57993679693B4C" Guid="{BAC9AB2E-E26A-499D-810C-11B81CF0B452}">
- <File Id="fil8D4264505A824F769BDBA5F17504029E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\TB" />
- </Component>
- <Component Id="cmp92505197C6933795CDC90BC3574ECF73" Guid="{BE1E20C0-CDD0-46D8-889C-2C01F7A17077}">
- <File Id="filF1DC4C9EC6506705D67EF3E95E3487B9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\TBI" />
- </Component>
- <Component Id="cmpDD1621767880B5573B93D0C906A16799" Guid="{0029E8ED-A445-4243-8AC5-B47ECE58324B}">
- <File Id="filC4A972A8F7CDE7CAC1827A2377773FF5" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\TI" />
- </Component>
- <Component Id="cmp8276A0D99FFBC994C747B13AC35E9E48" Guid="{6BE49A03-477B-4BE3-A750-D5332A454F96}">
- <File Id="fil25ED03460E6D5DFE250AA195BF993CEB" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlbp\TR" />
- </Component>
- </Directory>
- <Directory Id="dirB882626A61AD2693B16BE9000B2E3D63" Name="devlj4">
- <Component Id="cmp054D60E5033B933C69F08439B80F13FE" Guid="{983CE425-5E18-49E3-A007-7F9837CB521F}">
- <File Id="fil229407AE6905D03E9F3B3EE94534FCED" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\AB" />
- </Component>
- <Component Id="cmp39ADE89F6B41C95DD0E8AA952E344606" Guid="{5F38CCAA-E765-462E-9A7D-638910D0EC35}">
- <File Id="fil2A7CF4ED7631504014345D276DADEDAC" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\ABI" />
- </Component>
- <Component Id="cmp27A35C144907DAB18A61EE075B0D7872" Guid="{A7A38D68-D9B0-4901-B232-323A59113693}">
- <File Id="filA741FB0DB802EB3E4BC8AF953E9A4F6D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\AI" />
- </Component>
- <Component Id="cmp9EF8E8C60CAD485270710EE4804CDE34" Guid="{0173D8D9-5956-4196-8EA9-A1CC476D558A}">
- <File Id="fil784901A3E240F194BC4CB257DEB576E2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\ALBB" />
- </Component>
- <Component Id="cmp9FE059059701FC6BB330EF539164286C" Guid="{362FF169-57E3-43C9-90B6-A576A0F66533}">
- <File Id="fil1A3F78624DFFCFD0AC974A07D2E31446" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\ALBR" />
- </Component>
- <Component Id="cmpC66FB2B0F495CDBCF4E51E5F08FBF95E" Guid="{2DAEE434-8E96-4E40-9FE7-1B57BAE0B887}">
- <File Id="fil9D3681F60B2C69F860F97831A1A8762B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\AOB" />
- </Component>
- <Component Id="cmpA5DB731DEBB03E162DBCB5306D221E5E" Guid="{978C1A35-69E2-4B1C-B6A8-C1CD1AA13919}">
- <File Id="fil287B706156550252EE268D34584F0128" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\AOI" />
- </Component>
- <Component Id="cmp1062B36F32F4F0E020B2E5DC77B49A81" Guid="{7EFE234C-8A9C-421B-A1ED-1CD25E672195}">
- <File Id="fil2B014A30D17BFE24F12D5F8C42E2EBE8" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\AOR" />
- </Component>
- <Component Id="cmp3E5828833D21F90E617863BF76D69062" Guid="{2E64D8BA-07F8-49D5-883D-F6C19F3533C3}">
- <File Id="filCDD07A97FF8BF1AC8B5C9879141F78EF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\AR" />
- </Component>
- <Component Id="cmp6DE36AF9235C032EA54046C28504700E" Guid="{E48C4A80-8BF9-4E6E-8BBE-0CA6A4E742F6}">
- <File Id="fil7149D8E6F25634521EFFD812CA69EBB1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\CB" />
- </Component>
- <Component Id="cmp5E16C620D874AB92D7ECE30BC9E907B6" Guid="{ABE58AAC-05FD-4749-891B-9746C459E799}">
- <File Id="fil4B1D92C09B4954564BF937835E0FF05D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\CBI" />
- </Component>
- <Component Id="cmpDA4015812FFB5A36B9430AD9FFA6CA6C" Guid="{C5EA05B1-1E88-4B73-846A-53CF83D49DCD}">
- <File Id="fil870A003B1D487B1F18D79364B4CDBCE4" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\CI" />
- </Component>
- <Component Id="cmp6D7649DFDF46A7B35223DDD07FAFA207" Guid="{8D74CE50-7496-4C24-862A-4122C9EE3252}">
- <File Id="fil468EBC9EA92D8FD31622FCAA074834BF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\CLARENDON" />
- </Component>
- <Component Id="cmp68169623053E2BA2B08A7E1C0F7669A7" Guid="{401993D7-B53E-4540-829F-3BA347C8838A}">
- <File Id="fil5BA4D00E8BEF415DD328E8D483B9FED3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\CORONET" />
- </Component>
- <Component Id="cmp27268D15A47A2DA29DA12413B2FD9EF0" Guid="{29BD378F-13C2-40B8-B3DA-8FC0C98E8F1C}">
- <File Id="fil35617F1B8A7A3E8082373F5A499D4ABA" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\CR" />
- </Component>
- <Component Id="cmp432827B958E32606451397592C9709D8" Guid="{9F2CDCC2-1989-42C3-800E-ACB467D29B67}">
- <File Id="filA5D9BAAD3B8676EAC12CA921FB9E9CE3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\DESC" />
- </Component>
- <Component Id="cmp65617A5DCD9A6C3E61EB49C291A76B19" Guid="{65C30BBB-B659-4607-AFB0-424DEB1F2B15}">
- <File Id="fil9A3B91BDE4D7DE826A4074981E6D7A18" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\GB" />
- </Component>
- <Component Id="cmpAC61490435D4C159473BE8B703D1F722" Guid="{B3268DE8-4EEE-4495-A766-CC99C3FEFE2A}">
- <File Id="filA95BB863CEE21A079EB73F217B3D5018" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\GBI" />
- </Component>
- <Component Id="cmpAB606C9ABC812203F6630B89C67E9B43" Guid="{FB6D6557-E537-4BC7-8E25-32078DEAB7EE}">
- <File Id="fil3F352DAE5F26BECAFF2B810025B33DA3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\GI" />
- </Component>
- <Component Id="cmp1BD913A7402FF787E490D30584FE1CC5" Guid="{FDDB64B9-7759-4E6C-A5A8-ABF8BE5A0E96}">
- <File Id="fil527649D6919FA9AC395E0EEA8066E610" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\GR" />
- </Component>
- <Component Id="cmp8C9C7C4E6572F85B1668C8FB6CF0D5CC" Guid="{DE08FC13-C768-4265-BFF4-0563CE5F61CB}">
- <File Id="filB266257601C34BD326F6E9525C5CCE6B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\LGB" />
- </Component>
- <Component Id="cmpBFBCEDB633FF504E90D009A7028E43AE" Guid="{CF43E309-0CF3-4EF3-B504-C158BB269FB9}">
- <File Id="fil1EB6C859C3FA1EC4FFA772A67E02814B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\LGI" />
- </Component>
- <Component Id="cmp906234606507B35421B6636AB6392417" Guid="{35111039-64E3-4CE7-9643-EA6B891C3092}">
- <File Id="fil943868B65D1144B476E32E95797AFAFD" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\LGR" />
- </Component>
- <Component Id="cmp504BF3EA2EADFA5528E2EFB9A6937DBA" Guid="{F90F678F-48E0-4BD8-A5EB-9C326EBB3B96}">
- <File Id="fil44DF3DEB838F57910E0F15612F2D78B1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\MARIGOLD" />
- </Component>
- <Component Id="cmp132C3C27F6E9ECCEF9899A844E64255D" Guid="{F80C820C-CE2F-46A4-AA2F-727286937C64}">
- <File Id="fil11FBD6955847700CAD3528084C69E870" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\OB" />
- </Component>
- <Component Id="cmp2BDF7080AA1EA27C11FBF52A039B512F" Guid="{BC68E66B-DFE4-432C-8936-7E99B7DD8732}">
- <File Id="fil109415F54FDA8C91A128CEC1F627E1C7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\OBI" />
- </Component>
- <Component Id="cmpB96BEB9CBF8EC83F293963D6E1B2950C" Guid="{93147046-E16C-47EA-AFCF-DDF63A3AC9B7}">
- <File Id="fil46A4DC8BF12EB46583402FFD9117EC6A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\OI" />
- </Component>
- <Component Id="cmpE806C9FBEFC6B93F3E41CF79576A3E07" Guid="{D4B13918-81B8-4366-AA53-850700F893D8}">
- <File Id="filC579FCBC133A1A404CA15775B14BDC84" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\OR" />
- </Component>
- <Component Id="cmp9C30717D8DCE7EAF6727771578A10346" Guid="{9AD35FEA-4209-4C52-A6A8-5D737E7893B0}">
- <File Id="fil55A9C4BDB1DDDE7A20293E615247DC2D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\S" />
- </Component>
- <Component Id="cmp3CA6C3C7415064E5B667C37AA09DE96D" Guid="{DC04DF11-E475-4ECB-846B-3459C15B12F7}">
- <File Id="filDFFB4D10E1896A69E9F547D9D8B82AB2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\SYMBOL" />
- </Component>
- <Component Id="cmpBFBFFD808B802B63AE799D2D703C5735" Guid="{4B7DA2B2-D119-4F10-8CA4-4EB7A5F75796}">
- <File Id="filC719634D0502B661637E6F4592347FDD" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TB" />
- </Component>
- <Component Id="cmpD7AD2EABE6B021E7C2E22F19CB6F7D38" Guid="{389BE05F-A0B6-4B22-BB5C-9EAA40099401}">
- <File Id="fil2230C3D9CD0AEC28CCD3D24FDCCC26BE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TBI" />
- </Component>
- <Component Id="cmp1F726E5055F677C40391CFB304450A34" Guid="{142BE7BA-023E-4611-BB62-4618DB39776E}">
- <File Id="fil1DE3E4130BB634B669B02BBD5270963D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TI" />
- </Component>
- <Component Id="cmp168886C46D478908C6095046F0756A96" Guid="{3D53B2E4-0C46-4A20-9B35-09591DF20D13}">
- <File Id="filBCBF34E8F6BF913703957F8E25BE6963" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TNRB" />
- </Component>
- <Component Id="cmp75524C1A730C35C186097CADFD235D3E" Guid="{3A764AAB-2007-42FA-9694-F1120E848042}">
- <File Id="filB4B4A4993BAE79D58EFA2D119A8FBE53" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TNRBI" />
- </Component>
- <Component Id="cmpAFAAD8449693AF29FD647655F0F09B30" Guid="{1DBA1886-3643-486A-8112-B806B63168B2}">
- <File Id="filCB1043AA3764AF6E008607F624F25FD8" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TNRI" />
- </Component>
- <Component Id="cmpAD5614C4903838096361A8F8C4EA3BB2" Guid="{9F5EC40E-4514-42D1-B865-D1451C444C2B}">
- <File Id="filE59C6723CD92D89E17FA7A31EACA7345" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TNRR" />
- </Component>
- <Component Id="cmpF9262D14017E20AE8FE16C5B1D7BC974" Guid="{DAB67894-EFFB-4FD6-A7F8-13973BDD49F2}">
- <File Id="fil88EB83443B9658A51243E45BEC2D59EE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\TR" />
- </Component>
- <Component Id="cmp8CF4602D733F65B0C92C7E03AA947921" Guid="{60289941-5344-4EC3-BAB5-163B13AD2A52}">
- <File Id="fil22E2BF4BA7104A511006E6760E5B03B3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UB" />
- </Component>
- <Component Id="cmpA112D5E594FF0F94954ED1347D0E135A" Guid="{3627CC81-D575-45D4-92F7-77AC7BC861CA}">
- <File Id="filB8A0FDBA231C50437557B6A101953B1F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UBI" />
- </Component>
- <Component Id="cmpCB91579A46ABFEFA322DC77E4F2235D5" Guid="{E9B0FD2E-C3A9-4B77-B017-B5DF4F90C352}">
- <File Id="fil979D6727573861BE6B2F9D8BAAAAAABE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UCB" />
- </Component>
- <Component Id="cmp7A4B55CB08A8AC2D1FBEB55DF7F3F998" Guid="{CC813CF6-7EB1-4093-BBC6-C902D43CD6F0}">
- <File Id="filE9E3055248C2BCF50870024634561221" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UCBI" />
- </Component>
- <Component Id="cmp500EA04F202E3A5B6D130EB39E0A80E2" Guid="{8FEAF041-BD1A-46DD-9C0D-ABF01121CA19}">
- <File Id="filED9CD23B978CE6E2457CB88F20937130" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UCI" />
- </Component>
- <Component Id="cmp63653E55A0DFF46254BFDB1A59AA459D" Guid="{0D55DA1D-CF12-427F-8DCE-0535DD1FB425}">
- <File Id="fil48192D193603A2B4971E08C6D5039B2F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UCR" />
- </Component>
- <Component Id="cmpA7DDC4DA2E69C4403A91F91F58400974" Guid="{C7A2273F-9D90-428D-8501-4A1876329B72}">
- <File Id="fil660C36DA9BABD8E5523ABA923B138C59" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UI" />
- </Component>
- <Component Id="cmpF9789BE149206C7D6E52A7FE312D4BD2" Guid="{2D5D0859-A3E2-4050-8872-C824684A4E42}">
- <File Id="filF2E4C7C6CFCC0A665029882A5CB07899" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\UR" />
- </Component>
- <Component Id="cmpF73669AF4A3498E1DDFBF5EA80692A13" Guid="{54151A65-EBCD-45D4-94DC-2F957C2DC129}">
- <File Id="filEFC2AB8B5EAF0D7BAC2EB10920AE9CD2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\WINGDINGS" />
- </Component>
- <Directory Id="dir719DF1946078C1EDDD97917948FE408E" Name="generate">
- <Component Id="cmp52512CF181C01D71FA32B898BA5062D6" Guid="{36EFB704-5037-47C9-AE5D-671F42A9E13D}">
- <File Id="filB74E4DDDD0DE2DD6A614D7E6E4791C33" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\generate\Makefile" />
- </Component>
- <Component Id="cmp107416A6928D47E59819938CB2B6F748" Guid="{04AA8B9A-A199-459B-B614-69A2170B3815}">
- <File Id="filCBBBBE451C49964B61BCBCD99B2169F2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\generate\special.awk" />
- </Component>
- <Component Id="cmpDE6F8D733010ABF2D11E9F48C871E6BF" Guid="{F4F0DA29-AFA7-46BD-923A-A8BE9205BA36}">
- <File Id="fil2267B994C43A07257625F24FE0CC1A3B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\generate\special.map" />
- </Component>
- <Component Id="cmp87E93CD36EE916A930094EAA83FDFBC9" Guid="{3CC9A58B-A519-4B0A-975E-D2952B496750}">
- <File Id="fil61D1C81B8AE6E7B1003FA7B53701442E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\generate\symbol.map" />
- </Component>
- <Component Id="cmpC35D159904BC4EB0BBF4D415C341DC44" Guid="{EF529978-A78A-42F4-A3D7-89EB18EE435C}">
- <File Id="filE7D11246ED993340F28F6F01490F52B0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\generate\text.map" />
- </Component>
- <Component Id="cmpCFF24702C7B37B8B81F46E35C8DB6E9F" Guid="{5392ADEA-0CEB-4D39-915C-BE1D5FE91A65}">
- <File Id="filBB07DA921477878BD29C5FFB8B7D7276" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devlj4\generate\wingdings.map" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir10351F9D68B5855023E32ACC877F53DA" Name="devps">
- <Component Id="cmpA3ACF2B52C45090D75B56D4C52B149B2" Guid="{15B3B84C-466B-4E73-BDBA-786AAB5D40DE}">
- <File Id="filED4046F207F17DBEE572C1BEFA3D5590" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\AB" />
- </Component>
- <Component Id="cmpE6CD036540B4E00CC3E548A17DE0C158" Guid="{AD6CFCE8-ACF0-4EBE-9202-2A2C82FB5C84}">
- <File Id="fil9C7C3E580161185B501F97D2A016D5C1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\ABI" />
- </Component>
- <Component Id="cmp4D3A6CEDBA3979BAEAF078DD5548742B" Guid="{7F2FB3F0-5B9B-4896-B699-308892311F11}">
- <File Id="filE70A17B22E644824337727427F4B1A47" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\AI" />
- </Component>
- <Component Id="cmp484F282A4BD662A1519C5318C3874739" Guid="{DAD78D1E-4BEC-4281-890D-2874E9925ED0}">
- <File Id="filE5B08358160B33DFB3192D9EDB28256D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\AR" />
- </Component>
- <Component Id="cmp2C9450859FC33FB42CE5364F037DCD1B" Guid="{7087B037-95B9-4145-AA42-B608726AACFB}">
- <File Id="fil8987CAC806042B52B161CA017E3A7689" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\BMB" />
- </Component>
- <Component Id="cmp2BF745BBF283AE5CD74747C14298BA45" Guid="{AF46539E-A042-4264-A883-BE2A7849A789}">
- <File Id="fil55230B61BEF30900DCE25299B845EF07" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\BMBI" />
- </Component>
- <Component Id="cmpE6EFA80A2ACC66D0111537631CAB464B" Guid="{D9F3489D-FDD1-4F87-BD6D-5FE1AD0A6AB6}">
- <File Id="filD2B75EB02322619DE70BBE50D3D6E4B0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\BMI" />
- </Component>
- <Component Id="cmp15117243837BCAB5A76B32F8331BBCB2" Guid="{F0AECA21-B65E-4F7B-A050-4A9BFCF5B25C}">
- <File Id="fil27A46388C18E7DBA93ED8FCB779A3678" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\BMR" />
- </Component>
- <Component Id="cmp9A2EED0B7D3583C0CDC84C80D8890725" Guid="{F71BB4FD-E0F4-4674-9829-594E56B59EC5}">
- <File Id="filA7E932600C5D48836E6AD9EAB2A16DD8" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\CB" />
- </Component>
- <Component Id="cmpDBF39D5A0A894C46BA9A072FCBAF0059" Guid="{BC1CE5C6-F44F-4815-9678-4DB01EE98690}">
- <File Id="filA68DE6AEC6F7119DC64779CB30263AC2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\CBI" />
- </Component>
- <Component Id="cmp02C401ED912A50A88634DED77D1454AF" Guid="{966B2904-C233-4EB0-B2CE-EEBAD0DACCAC}">
- <File Id="fil9903935C5FF23B9EB83753C881547B98" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\CI" />
- </Component>
- <Component Id="cmp586E578F76BE4514F84E439DE272791B" Guid="{52D637D8-67C6-4B71-824D-E26201E8D7A3}">
- <File Id="filCA0CC5A8B9DD832304E29A5AF6DAA33B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\CR" />
- </Component>
- <Component Id="cmpAD739B2435B3746DF16E2DEF533AE1C3" Guid="{012AECBC-41FD-48C3-BC00-1060B380C11C}">
- <File Id="fil39B916B425E7A135439EE128DF74A59C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\DESC" />
- </Component>
- <Component Id="cmp666B1A32583073D7EA31A93B2ED841CB" Guid="{022D1031-0D23-4C80-8782-A08AED3D7994}">
- <File Id="fil7F56EA83F0F3537A1E733471060FEC4B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\download" />
- </Component>
- <Component Id="cmpF3473A86573D11C9B3514DF887C8337C" Guid="{69B7C772-8A19-439A-A7D5-4836FA63EEBF}">
- <File Id="filC9F8D9A4B38A28CDDFB8739330141DA9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\EURO" />
- </Component>
- <Component Id="cmpB8F2DB0AA50B7F1B770EE8CC3D3D1D41" Guid="{FA910A24-9E0B-4DF7-B2D1-0738F168F824}">
- <File Id="filF6897EBF8DBD94ED50ABDFA702DFCB82" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\freeeuro.afm" />
- </Component>
- <Component Id="cmpADFBE1C6E91A2DBE649CBDB5622BE632" Guid="{E8F4913E-4103-4802-A9B8-569795ECF172}">
- <File Id="filF3C8295385CDEA57BCC0F9F7351968F1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\freeeuro.pfa" />
- </Component>
- <Component Id="cmp07E376AB998BDEE234ACDAEC1EE90ED7" Guid="{BB78EA6C-5675-4F1B-92FD-0AE73FB49722}">
- <File Id="fil8A642D15B011944AEC074108FF6E24A3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HB" />
- </Component>
- <Component Id="cmp3124E2EC6457BE307D66402B35B0887C" Guid="{2F5E7142-81D5-46EC-BCEF-6AF4E19CBADE}">
- <File Id="filBE1A327AC140C80B8BD261D82A6ECFF9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HBI" />
- </Component>
- <Component Id="cmp6CD74C50A68958FF08109052972970C9" Guid="{ED11CD34-69A2-4864-939C-8423724A317E}">
- <File Id="fil1A8CD8C5847CF55F511A79A94AE29A31" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HI" />
- </Component>
- <Component Id="cmpBDFA189A62960E1930064FCF4470679D" Guid="{5A368AC9-361D-45A1-B6DD-8A9F5E5D0C02}">
- <File Id="filBAF26A8D5BB43D497DF4D809AFB18687" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HNB" />
- </Component>
- <Component Id="cmp6CAF646351AAD90025580BCD671E8F86" Guid="{F202ABCD-63BB-43DF-AB11-8A9089CAD388}">
- <File Id="filB650EFC8942C58C954CE02F6B3F324B2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HNBI" />
- </Component>
- <Component Id="cmpAA78F556B7F7B48ACAB3B0005A06E67C" Guid="{90881644-8340-4825-AF14-4A27008E46E8}">
- <File Id="filE9808E93CAF97F937653440D76FF482A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HNI" />
- </Component>
- <Component Id="cmp0624B6AF1FBEE0F4508B20F775008533" Guid="{631F6C5B-AFE3-48BF-B741-D98A24ABDC25}">
- <File Id="fil5022A09B53BEBDA6AC421E6001F58B14" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HNR" />
- </Component>
- <Component Id="cmp794BB1AE8E828B9222DC8B7DFB34C7D2" Guid="{BEE1F697-0F97-4B40-90C4-D9F2397DF7F3}">
- <File Id="fil0021F556627C17AF6C99D99AA4DC1A44" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\HR" />
- </Component>
- <Component Id="cmpFEA1B044EE8A208DDEFD2522C5BF152A" Guid="{7099FFF9-906A-4CEA-B2ED-DFD829E8AA14}">
- <File Id="filC9C179D366F1520AD0D71E9CF8D678BE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\NB" />
- </Component>
- <Component Id="cmp7D8C3C9EC0335D2ADCB337D4E4D1F417" Guid="{FEE6BEAA-31F8-4D15-BD6A-B1B50DDDB563}">
- <File Id="filDB5033162FFAFD2EAA6DA883D2F364C3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\NBI" />
- </Component>
- <Component Id="cmpB33E7DB334AA6C17A99715CE072E97A0" Guid="{8983FB68-0D52-484B-8F65-E4D3889A0714}">
- <File Id="filBD2E9C19D021E88B0742AB5E958F4A14" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\NI" />
- </Component>
- <Component Id="cmp640BFBBA1BFB63939522485E11B70E98" Guid="{7C4072DF-F457-48F2-8EF7-0C2373DB71A9}">
- <File Id="fil5EC7B58FDB329221D170BF0DE28D7640" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\NR" />
- </Component>
- <Component Id="cmp0638F710BB7CE28A55BC1A8536AEF932" Guid="{8D8F95AF-5FE5-443A-BC16-91FDF46C8906}">
- <File Id="fil7F476BEF08750A2D985CC9511758DE65" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\PB" />
- </Component>
- <Component Id="cmp3A363AAD60D2F544FCAF438C8D50AC21" Guid="{A2C3BD02-5BF0-4892-B3CD-278E799F7238}">
- <File Id="fil409B51B73A8DB133EEAC83857CD2AA5E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\PBI" />
- </Component>
- <Component Id="cmp2EB4F7824446DCB0D8545CABE8E90191" Guid="{A0C08248-025F-4C89-A2F5-A70C18CCDF9C}">
- <File Id="filB813241C7B8038BD4081B6EB38679C54" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\PI" />
- </Component>
- <Component Id="cmpC4CBBA464AB07693AA276801943900D1" Guid="{16860C8C-6EE9-4821-A63E-BAB73FBA3069}">
- <File Id="fil8AD0C7695AEA779E81C015D800643A02" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\PR" />
- </Component>
- <Component Id="cmpFFC41CE58A3F407A921BDE0321010747" Guid="{220045CC-D3E1-45C4-9F90-486AAE312E9F}">
- <File Id="fil224C1A2577E741EC6A251D613EBAD257" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\prologue" />
- </Component>
- <Component Id="cmp00556C532E768F96642A547FC881E3EF" Guid="{CE517E02-DE2B-418B-B2B5-681E21B79F2B}">
- <File Id="fil786E8C3A9CD1B01AE63DA9ECA10DEFC5" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\S" />
- </Component>
- <Component Id="cmp0C3B6C41FC47B9B6238866EC30BA78F4" Guid="{A9DC0E3D-AC30-4925-821C-FBB181639571}">
- <File Id="filCC588213933D0AD5F09C89CD218C7172" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\SS" />
- </Component>
- <Component Id="cmp82CF24AC6FC9F62A01B2E27FABC108B6" Guid="{B5C5CE26-01D7-4BE0-808A-FCEC892AAB62}">
- <File Id="filA8AEC1886EAB50C992939AEC053D2748" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\symbolsl.pfa" />
- </Component>
- <Component Id="cmp7458BBB55B736AE85925AF5C4265284A" Guid="{7CDE3BB3-A5B1-468A-8CA6-C97041599C54}">
- <File Id="fil82425E1394B62EE1440A1EBA0412B007" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\TB" />
- </Component>
- <Component Id="cmp2A746044AAA16A4E7ECDA3A3FDBE298F" Guid="{7ADB788A-8179-40D0-8D17-5CB51F16F120}">
- <File Id="fil4C86DFD4DDFA379AE2D31C402513AB59" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\TBI" />
- </Component>
- <Component Id="cmpEA38C8996C15769F1988B060DFA4C31F" Guid="{38CFE3EA-7442-4238-866F-CB7A689A3815}">
- <File Id="filC461E3DC6D5525A06113B11EFC62C63B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\text.enc" />
- </Component>
- <Component Id="cmp78FB04E0A6C2A931832FA04E18262601" Guid="{9A826977-89CC-4114-8939-1AB8D121C5F8}">
- <File Id="fil81DC594DF91EE820BD965574B018FD89" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\TI" />
- </Component>
- <Component Id="cmpBDA567C6B6537FB345348C0E8150BB29" Guid="{BEA2E492-6405-4E66-940C-9A0846E2393E}">
- <File Id="fil694399ED0CF21409D55BB896268A58F0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\TR" />
- </Component>
- <Component Id="cmpBD25D20BE7702D1F44D79CC9C4955386" Guid="{716EE366-FA71-4C11-9D52-2BCFDB95F2FB}">
- <File Id="filE1BEEF3DB893941C0EB31B74BF8431A9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\zapfdr.pfa" />
- </Component>
- <Component Id="cmpD0263996C5A9D66D08C185AB6CB35D38" Guid="{2916B2C9-0199-420C-AB49-764C22B15A39}">
- <File Id="fil323D8889E1B1D87C0A3998AC957FFB80" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\ZCMI" />
- </Component>
- <Component Id="cmp2E98594CCD3EFB3071F6D2C70DCA52B0" Guid="{C184A0E1-A573-46E1-8DD2-39790CE772B2}">
- <File Id="fil5279D0C4D0089E9BCAF433E2AC7E5C26" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\ZD" />
- </Component>
- <Component Id="cmpE46A666865B24A5627FDEC2B9EC338F9" Guid="{E4D0717F-ACB9-4CDE-8308-C0A490DAE06C}">
- <File Id="fil94E15020DC2CA425ACAF05E1F087BCFD" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\ZDR" />
- </Component>
- <Directory Id="dirF56C9CDE964D240612C3BD63DEFE731E" Name="generate">
- <Component Id="cmp76189D06E7E89BDF4AA66F5A6DFBC464" Guid="{690F210E-6D5E-4231-8723-5A6F3290B364}">
- <File Id="fil7004F51715CF0B8AA39D1F94A3844226" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\afmname" />
- </Component>
- <Component Id="cmp1C8FC6D28F2D349B2E7A964D56C59219" Guid="{52FAA533-C87D-40AB-AE2D-14B0848682F0}">
- <File Id="filFC9A2F7B05A1CA1C3798697BAB8609C0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\dingbats.map" />
- </Component>
- <Component Id="cmpEC7F63FE5055A1B28FAF41F190AA611E" Guid="{57D83C99-5783-4978-8F62-25449B857437}">
- <File Id="filB81607DECAAE69806B889879A48E49EB" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\dingbats.rmap" />
- </Component>
- <Component Id="cmpCDC81FCDBFF6757FCCF99218F3D35381" Guid="{9EBE05E8-E5FD-4BC6-8496-9DC649837C10}">
- <File Id="filE8CEA8A1C4AFF05E45B87E7CC9CC9B95" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\lgreekmap" />
- </Component>
- <Component Id="cmp52766E5989FB94C2B3EECE688A03172C" Guid="{E664B45E-8824-4FCB-8FC0-A2D42D0E3D8A}">
- <File Id="fil28578A884052CDFB81FA1CD36CF51042" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\Makefile" />
- </Component>
- <Component Id="cmpBA5A719F547356E4B524C0639F26E594" Guid="{5985E643-7163-4965-82FE-979D90AA3F3C}">
- <File Id="fil422B0C7050CD0F59E3D76B17069DA517" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\symbol.sed" />
- </Component>
- <Component Id="cmp9DBBA3A6FD45E9508C27279CE39C7735" Guid="{68C36CF7-56F5-4159-94C5-B4B310ACF637}">
- <File Id="fil4099F1EF0BCDB75B63B234674B65E5C7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\symbolchars" />
- </Component>
- <Component Id="cmpE56350C9C10BBF60E7C523E5D31E949A" Guid="{EC3CF54B-277F-468A-9528-01F352CACF3D}">
- <File Id="filD3887EDD7E2AC4FD32273B45A2F28BC1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\symbolsl.afm" />
- </Component>
- <Component Id="cmp684BE324DC6BF25A2391A58529600200" Guid="{990CC0A1-7999-4162-A5FA-371F3BA5172C}">
- <File Id="fil20B28FB5D04CDFB2EE8D0682411F2B1D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devps\generate\textmap" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir55544493757CEA9506A5960B7B90E454" Name="devutf8">
- <Component Id="cmp098E9E3EE3594DA074840983B0303DD5" Guid="{862AAA0B-59BD-48B7-886B-33A50DC7EFCB}">
- <File Id="filB0D2DECE524FDF7691A221FE8C59298C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devutf8\B" />
- </Component>
- <Component Id="cmpC1EB2DE20924291AC2BB443443F4C36C" Guid="{80B1F962-2867-4EB8-B877-603C2441C43F}">
- <File Id="fil49419A830851C6CCF7C37F186FDB2852" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devutf8\BI" />
- </Component>
- <Component Id="cmp437DD5DBCBC72184BB084425624F706A" Guid="{59B0D94A-B2A9-4DD9-A08E-6A62BDEE77D4}">
- <File Id="fil7E243584C0007CC537E1F2347F83A822" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devutf8\DESC" />
- </Component>
- <Component Id="cmp3E5FCC9F218003803D5A56DACBDC2CDD" Guid="{EB76FA8B-498E-420D-B7C4-CC99D8453045}">
- <File Id="filC4C4FCB9B42BD1B749BE2C69AEDA9D5C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devutf8\I" />
- </Component>
- <Component Id="cmp7A67E0CA4AD0C7CFB90B708B42C8A825" Guid="{ABC62AAE-0AF4-438F-8D3C-3D1497E063AE}">
- <File Id="fil779A3F8B4587651098E4A866B9A8A3C0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\font\devutf8\R" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir467D6BC34415159C8E11F6B5298E088B" Name="oldfont">
- <Directory Id="dir31468AAE5C31C762AB51F48914FA8F63" Name="devps">
- <Component Id="cmpC8285E280C840C7F8EDE4A5D3E42907E" Guid="{A1E38049-0756-416F-A8DE-6235C0CF95D6}">
- <File Id="filA5F0DF2730E0CA9890D8062F91D5E941" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\CB" />
- </Component>
- <Component Id="cmpE11120A5ACC983D60FD47C144B41761F" Guid="{CFDEC17B-020C-4B4D-958C-A0D2DBCBD76A}">
- <File Id="fil555E54DAC8ABF1E20241808190C300EA" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\CBI" />
- </Component>
- <Component Id="cmp83FD04F82C66A4F40604CD28B5AA3BE4" Guid="{57D385E4-1283-4208-AEE8-20B57CE40D9D}">
- <File Id="fil30EBCED32288B6FE808EBFBC6B61D17F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\CI" />
- </Component>
- <Component Id="cmpD6FF8FE64F435DDEA1E1963008D218AC" Guid="{1D58D228-404B-4259-944B-B4DA0E33F4A1}">
- <File Id="fil7793E898254A0BD9BF2C4B939A2A2EF0" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\CR" />
- </Component>
- <Component Id="cmpC8837552061A866B8AB4C7BA82F38986" Guid="{AD1C4385-B3C8-4B9A-BE62-EF5AED8FBABB}">
- <File Id="fil38904DCDFA2029CBCB17168C9A5B269A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HB" />
- </Component>
- <Component Id="cmpD3488BD9960F667875BE21BAAF41DFDC" Guid="{439B5215-4123-4D0A-9956-F5A88748A250}">
- <File Id="filB1520FEECC97A1D10953610A44397466" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HBI" />
- </Component>
- <Component Id="cmp9271B9EC0BD4720E95A675BA3F34BDB3" Guid="{AF5921DD-2F33-4CEB-A197-873DD1503EE5}">
- <File Id="fil5891A3CE9CCFC8F5333FDE7F4D2F8951" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HI" />
- </Component>
- <Component Id="cmp47CFC2676945C3361054A5599A88BA2F" Guid="{99B10D38-21C3-478D-86F3-7EAB165C3336}">
- <File Id="fil28FC043C7CBB05FE70DB81205FD165BD" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HNB" />
- </Component>
- <Component Id="cmpF0AC67833B8658E20320B9A29B24F81F" Guid="{B3EF9A0C-F948-4AC1-B060-2E23F211C042}">
- <File Id="filD9E75CCCA41196BA10B125615F3AD937" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HNBI" />
- </Component>
- <Component Id="cmp1E3E3A863D8E0B728E5B2048C0B7D9A3" Guid="{CD313971-2E92-46EB-B997-88D5A70BE030}">
- <File Id="fil66E1CFA04EDAEB2F68B83E3AF9303405" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HNI" />
- </Component>
- <Component Id="cmpECCD285247EC3C2777F972048D66FD49" Guid="{C066134D-27C7-4DC4-BC49-DF85E2CD24A7}">
- <File Id="filAEDCE824AF36278706B36BF8ECAB92DD" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HNR" />
- </Component>
- <Component Id="cmp8FC796A43588B9D4DEDF9B267A926DFC" Guid="{6618D9F8-7EBF-41F7-B125-7049B4C109E8}">
- <File Id="fil9C3C51C218722807092C334CEACA2957" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\HR" />
- </Component>
- <Component Id="cmp84C63B8EF01E788BB2EC2229E5DAEC2A" Guid="{07BEB701-7CCD-4493-857A-D486FFB51A30}">
- <File Id="fil7AE623BB4B8DF40AAEBCCC836DF6D5A3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\NB" />
- </Component>
- <Component Id="cmp6FE54D53FDBD792956A6F2CF2DF9D70C" Guid="{587B9C01-FE9A-4AC9-A86C-CF532334BB47}">
- <File Id="fil804F10351984973A54B95BB40D3206CB" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\NBI" />
- </Component>
- <Component Id="cmpF344F925A39942C747CB80D86DB9F096" Guid="{C23974CE-C2E1-4B0C-8B49-EA8FB45776D5}">
- <File Id="fil6E0112337BD6F37A9A1EDC7567601E30" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\NI" />
- </Component>
- <Component Id="cmp8E84F26788BB99BC188B80EC72195723" Guid="{A045E3E4-B8AA-4AD9-9159-DE12B053B82B}">
- <File Id="fil68A611C2C601730A89912DA4F992BBA9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\NR" />
- </Component>
- <Component Id="cmpC8D49B78DEA28EDBDBC7CE8DA5D500B3" Guid="{F800A6BA-E212-480D-A197-697B2736301D}">
- <File Id="fil08E6C6F74AAADC1B85DDDBDB41A6CC00" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\PB" />
- </Component>
- <Component Id="cmp5355693B590D0FCF38DDC7B20026B473" Guid="{264655EF-2529-421B-A934-B30DE50C5E5C}">
- <File Id="fil2A066B058ECD5AFE247274DF6C53C459" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\PBI" />
- </Component>
- <Component Id="cmp9B3CB1F585B8A2DB31A46FBF5BC282A8" Guid="{FC2D4CBD-D196-4C25-908B-A95D67D56A8D}">
- <File Id="fil31091DD8B9CADE0A3F484669A39728D4" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\PI" />
- </Component>
- <Component Id="cmpFF12DEB8284455A5B6452471B743DD96" Guid="{90DA1951-52F1-4C67-A4BE-4E130F0303CC}">
- <File Id="fil3C4EE3B05E5EA81E0A0E12AC4DF4FC9C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\PR" />
- </Component>
- <Component Id="cmp5C1FEF5103FBDD293250488AA3F29E0A" Guid="{1CCA6946-2B8F-44BF-857C-5EA3CB4225F1}">
- <File Id="fil98358ACA1D3D12DF7A6B389982ADD257" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\S" />
- </Component>
- <Component Id="cmp633B4DF4F53ACAD2D71D9DCFD36F346B" Guid="{6BC416F2-0BEA-46E8-BD1F-72C3E8079CEC}">
- <File Id="filABAB03EF70E9C248F97E4FC044625C83" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\SS" />
- </Component>
- <Component Id="cmp0293AEAA7A78E479EF15ABE22B933422" Guid="{723736B4-4BD6-4393-A8DB-B1D845365E66}">
- <File Id="filF3DDC250D5309BC8E5B3F995DB00AE66" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\symbol.afm" />
- </Component>
- <Component Id="cmp8A46CC11D461DB0F866B0D1687CE5971" Guid="{D8EB436B-630F-4B3B-B43C-EA26A4A09F67}">
- <File Id="filFE7C1C5AEA0EC11326337584C6AF50B7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\symbolsl.afm" />
- </Component>
- <Component Id="cmp8BAD1E8258B02E536395C79CF558E746" Guid="{2F7B2123-1453-4F67-81F4-A080B1FB4E57}">
- <File Id="fil3CCF6D753F171DFA18A8F14831286F4A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\TB" />
- </Component>
- <Component Id="cmp2FFB42AD96FA5E396632711FC43A9CDC" Guid="{0D0C9D0C-5102-43D9-BE4B-3DB4788F5239}">
- <File Id="filEAC7EB4EEC798025C912DDE30B6E01A1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\TBI" />
- </Component>
- <Component Id="cmp85D1A48C2428A7E339C8C9EE34D6684E" Guid="{E0D56FF2-6A2E-45BF-820B-A787AD656F5E}">
- <File Id="fil65DE8D2345B9D4586E85D1DB948D8D3B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\TI" />
- </Component>
- <Component Id="cmp31838AAD4F494AC0387E50CA0C793CC7" Guid="{FB0E6EC7-F367-4933-9A5F-B15B1EAFD896}">
- <File Id="fil5B49854D11BD598641D054AC4639CA5C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\TR" />
- </Component>
- <Component Id="cmpB5A65A9C951E16C4E204DB6D096E22BA" Guid="{D698E56D-9A07-4650-8804-C0A32B9F3E33}">
- <File Id="fil55065A45CC06A8654CE5083FC21B377E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\zapfdr.afm" />
- </Component>
- <Component Id="cmp9A58AC6A6E2AC995FF96D64A54343541" Guid="{6E0D918C-B4C6-4FB2-94C6-517E5209C265}">
- <File Id="filD0A85B3783CD2593A8BCE834412A033E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\oldfont\devps\zapfdr.ps" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirFD62839DF93A364D07A199EAB03536DE" Name="pic">
- <Component Id="cmpBF22CA7691384E1FA5D910354A815E4D" Guid="{AEB7EB4D-702C-4F54-A32A-4BF6EF201391}">
- <File Id="fil92386A3BEC0E3993B42F08B3FE669D5A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\pic\chem.pic" />
- </Component>
- </Directory>
- <Directory Id="dir6D68A7909537C81A98577A1D59911381" Name="tmac">
- <Component Id="cmp5386F48D49CBA4B0662A3CC7C6ACDBEB" Guid="{1B99C2A1-9864-437E-A876-34EFB9FA0A78}">
- <File Id="fil7C5251E5B88B3B68FEB9B441417D2A05" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\62bit.tmac" />
- </Component>
- <Component Id="cmp4F156CD14D3F2567F61F7FEA3724F01C" Guid="{10DF2ADA-6584-4165-9291-BC91F78E6AEC}">
- <File Id="filD79D409E3C139CDD2780D577BD1F640D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\a4.tmac" />
- </Component>
- <Component Id="cmpC3913A9D71B89C11B28641E1DDF67C4E" Guid="{096137D1-B1A1-4272-BEA3-A2C7747C4DD1}">
- <File Id="filF5281EFF0272036568E3CD9B169E1A77" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\an-ext.tmac" />
- </Component>
- <Component Id="cmp076338B989A2EC2E38D539BBDAE9DB44" Guid="{EED890CD-DA10-4B23-B796-70384F828DE8}">
- <File Id="fil89EC1F8D6046F0B5424B6E1C36CD5544" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\an-old.tmac" />
- </Component>
- <Component Id="cmp61C74CF4176BFCAE6A4E6F61DF91D512" Guid="{DB066770-2301-4DC5-A89E-8D05DFEC70D2}">
- <File Id="filABF72A6AE504A40738B7A51C36C522BA" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\an.tmac" />
- </Component>
- <Component Id="cmpFC467980E4541A59C9A549F5608E406B" Guid="{994E18E5-9694-46C4-A12D-8D087FA12A31}">
- <File Id="fil29D4FC87177F259C344D31E68294A8A3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\andoc.tmac" />
- </Component>
- <Component Id="cmpBFBE074D85AE81F5BA39785D1072045C" Guid="{B9B568E9-B31F-44AD-851F-EEE26205C30A}">
- <File Id="fil36C3B14B2AE13FDC026BD509DB6D078F" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\composite.tmac" />
- </Component>
- <Component Id="cmp443A63704D8357D9E8CDAC30D8CD7708" Guid="{7030EE07-BA38-4CAC-A513-C9F789328399}">
- <File Id="filAAA28A392071CCAAF44AD535BD802AE2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\cp1047.tmac" />
- </Component>
- <Component Id="cmpA34ED444EC3A24DE821D7F757881A1DF" Guid="{21A9AB5C-417B-48CC-8CEE-EE26833E7A45}">
- <File Id="fil61413A20876FB0529D4FCA4B0E44EEF4" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\cs.tmac" />
- </Component>
- <Component Id="cmp2E68C23FDCF627A0D10E6568D3E2B836" Guid="{00D3787E-60A6-46C2-A662-CDFABF69BCAD}">
- <File Id="filD024B6DAE822F2777A9DCB1611CA074C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\de.tmac" />
- </Component>
- <Component Id="cmp42EE5FE20A820C739BC7FC87E3708F81" Guid="{83CE08AB-AD56-4714-B032-A91D11DBA742}">
- <File Id="fil3656A4AABEFA4990CD20D7C54D4C3E32" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\den.tmac" />
- </Component>
- <Component Id="cmpFF95D588E6442D06293C9881CDF8DFDD" Guid="{02869505-D6C8-4369-97D9-14022AE08E1C}">
- <File Id="fil8A2D69D08DE648454FCC0AA9AAA15715" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\devtag.tmac" />
- </Component>
- <Component Id="cmp34BA4FCE656C07AD1542D03D174FADB0" Guid="{24103AAD-F86A-40E3-9FD2-48074B3D9272}">
- <File Id="fil2A4B5F0DD521C59635B5128012FF5D29" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\doc-old.tmac" />
- </Component>
- <Component Id="cmp2D391917DAF51758CA252E3D7647D39B" Guid="{C5E8A23F-1EB6-4F2B-8AE7-414DA4C8E1B8}">
- <File Id="filE9DCC667E983367E67A748344CD642FB" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\doc.tmac" />
- </Component>
- <Component Id="cmp994946CC821F223FB2DB5096024F102A" Guid="{B1C4B24A-CF3F-45B5-A917-BEBBAE781302}">
- <File Id="fil5197627165A985FD478408041D11A364" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\dvi.tmac" />
- </Component>
- <Component Id="cmp2D020CF00211761E7C1B14D892295A10" Guid="{C0183153-A982-4A67-BA68-F314789E2FDB}">
- <File Id="fil3A8060CC691A01F3F754A04CB7D8F468" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\e.tmac" />
- </Component>
- <Component Id="cmp5337CCD66D60E9A781EFDFDF31DFCA7D" Guid="{1DAE7D56-BB6F-4BE1-BCA7-216664FB688B}">
- <File Id="fil370351728ACA2052E4FFEAE393847B39" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\ec.tmac" />
- </Component>
- <Component Id="cmp9577A306FE9555E405923210671043A6" Guid="{7AF575AE-E564-4D15-B781-0546B5104FEB}">
- <File Id="fil4B71BB5630679BB83EED9F1D24F8CE4C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\eqnrc" />
- </Component>
- <Component Id="cmpD79DD908ED0622E6C177B36D889CDDEA" Guid="{DF17B648-A4C3-424F-A5CE-F0F865553022}">
- <File Id="fil9816799690C7601BDC212CCEAF50285D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\europs.tmac" />
- </Component>
- <Component Id="cmp17658C8CFDAD3561767AE646CE25F663" Guid="{A10145A0-E297-44FA-95AC-04F961D16E09}">
- <File Id="fil72C87BF49C2BDBF51207C80D27887A4B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\fr.tmac" />
- </Component>
- <Component Id="cmp88B41EDD9C717AA14F7E605F0479D73D" Guid="{41F2551F-323D-4AF0-A6B5-CF014ED93EE4}">
- <File Id="fil1E62C5BE85A435B138809CB6BB6D6EE3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hdmisc.tmac" />
- </Component>
- <Component Id="cmpA229C1ACBF026A9EFB19203210C01AA8" Guid="{2C96D69F-0A34-4DF2-8968-302B3804A746}">
- <File Id="filA52BFE43EF39F754280653E2604348D1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hdtbl.tmac" />
- </Component>
- <Component Id="cmp9DFE3CE344E56CDF1132452D038570F9" Guid="{E6D226A9-D3E7-4D40-8E30-591EC1D4A07C}">
- <File Id="fil80B447F78D452216A63950DEAD6C2A63" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\html-end.tmac" />
- </Component>
- <Component Id="cmp0642B73BEED68B074F83E8DD699E1C1D" Guid="{5E0B3B93-2AF2-45DD-B274-A7534AFC2B0B}">
- <File Id="fil28266B97C6EA36361A5EC2607B188254" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\html.tmac" />
- </Component>
- <Component Id="cmpC8CCD401EA0739472314C54DDC870C78" Guid="{12C6652F-1944-49A7-9D54-23A7D682D9AB}">
- <File Id="fil5973376E37C79DC6D82EB6A286392EA1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphen.cs" />
- </Component>
- <Component Id="cmp2089DE957C931C07A137D220B13ADBEC" Guid="{8329EF75-B43E-4C47-A9AA-0695ABA77583}">
- <File Id="fil3B273561C1130EF4D7E7E8FDD529CF4C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphen.den" />
- </Component>
- <Component Id="cmpF455AF83B55CF130EE60EA7DC68E34F5" Guid="{ACCF37F9-2F0F-4E9F-9553-96CEECE0F018}">
- <File Id="fil2094389DBDA4FE516D64A6248CEB6B01" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphen.det" />
- </Component>
- <Component Id="cmpA41100980D571191325C811DD5FDAC89" Guid="{DAB07AF4-7A90-4FE2-8969-C8A32F959D77}">
- <File Id="fil67E1D21A6068A3D82D1D814586E08AD1" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphen.fr" />
- </Component>
- <Component Id="cmpB53886F028C6EAF1D98D285586468B97" Guid="{83567A1F-B2D4-4B6F-BBD8-C96126E1A96C}">
- <File Id="filEDB1BEC0FBC6FD9CF8F0A569A4B9E3B9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphen.sv" />
- </Component>
- <Component Id="cmp38DDC00C332CF34AFF0E784E66A90298" Guid="{60B91980-B902-4099-951A-8025106C1ADC}">
- <File Id="fil9103A53DE0A98AB31021D25A5C1321D7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphen.us" />
- </Component>
- <Component Id="cmpCD977701E43533B353838FE4AE572416" Guid="{78EF6368-B131-4241-AC4B-93FACE1EAD64}">
- <File Id="fil0E827F6AF7529D37992CF1BCA9223712" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphenex.cs" />
- </Component>
- <Component Id="cmpAEC8DC9889E870295225942329C1FAF9" Guid="{6FD4E0C8-E6F7-48C3-AF7A-8BA6617E4932}">
- <File Id="filE320B4B8D51392818C59F599F6FB9525" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphenex.det" />
- </Component>
- <Component Id="cmpC0ABDCB70B7412DCFA06D02D28167B03" Guid="{F6925801-1DEA-423A-8B38-CEB821C8212C}">
- <File Id="fil534B0199FC9728719B00ED773CE9B219" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\hyphenex.us" />
- </Component>
- <Component Id="cmp1F53147FD1143284E2FD9105430679BA" Guid="{AADFE985-0CA4-4EC4-9A30-FCC9040D133C}">
- <File Id="fil30BD09E316798E87439E2DA4E788CB23" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\latin1.tmac" />
- </Component>
- <Component Id="cmp737F7B6EA2E02DBC727C4E1EF8789BC0" Guid="{19F04CCD-E570-49EA-B40F-DBBC2EF3EC3E}">
- <File Id="filE08989861AD7B76430201DAE7D4EF9DE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\latin2.tmac" />
- </Component>
- <Component Id="cmpCC278543CC68DC27F0F6808D86C2574A" Guid="{9CF1FB6C-BA5E-4F62-ADEB-2914C4269404}">
- <File Id="filF17FE5454D65412E2CCB12628C65F4EE" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\latin5.tmac" />
- </Component>
- <Component Id="cmp9B27DF7E1C640F74C7956BC9A9FA333D" Guid="{BDA20752-2B77-4A5E-B3A9-CD5A18189397}">
- <File Id="filBFECC0B3F07D70C34514709E3B5320B9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\latin9.tmac" />
- </Component>
- <Component Id="cmpEE9AA5DF6D57065C60E5B7F62FECBBAD" Guid="{1973937C-9660-45CB-BAF3-F80C529F5B17}">
- <File Id="fil5A7F126277C89C6E0960A75739338A8B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\lbp.tmac" />
- </Component>
- <Component Id="cmp6654A78E80876505FEDDCC2CD83DFF39" Guid="{F1BCE02E-CFA4-4A6D-9691-7C48F68631BC}">
- <File Id="fil64C732CAA28DCFA54F371A6E07D9A637" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\lj4.tmac" />
- </Component>
- <Component Id="cmpE47BD6A20D44D2B219376BE1C97FED87" Guid="{26E551CD-BDEA-4EF2-9B6C-17249CBECEF6}">
- <File Id="fil0604028E92BB4EC47119D4873A1B41AC" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\m.tmac" />
- </Component>
- <Component Id="cmpE5910B786AD82BE994DEE5E229102313" Guid="{46E6FFE9-B1B4-4C0B-91DC-D082F81F19AA}">
- <File Id="fil9325B6BA2D312F3D7979B721D5528CB7" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\man.tmac" />
- </Component>
- <Component Id="cmp807C60B408DA4F00C8C463A5C6452E7D" Guid="{2FBA880F-5E3B-419E-883C-3F1E4657DD6D}">
- <File Id="filB6753C025D915C0DC9E28872E62539A2" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mandoc.tmac" />
- </Component>
- <Component Id="cmp52BDE2CFBED60AF3AF9F0791ACDA860B" Guid="{E15BB834-6266-4C0E-B43B-D474D91F4312}">
- <File Id="fil08F07744C410CE4A99E84D447FC36608" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mdoc.tmac" />
- </Component>
- <Component Id="cmp4849DA5D81C4A5DD518EC8061CF177B5" Guid="{26F44D1E-F193-4AE2-81BB-EEA96054DC39}">
- <File Id="fil95D83E0DCF66AB50DAB8247E94685C11" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\me.tmac" />
- </Component>
- <Component Id="cmp14CB4055C5A8CC76694179164CCACCEB" Guid="{D4BAFAC8-5E5A-4F4E-814E-7ECCA42568C0}">
- <File Id="fil93DF5B0105D7C02F362CDA5BEEDAB71A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm.tmac" />
- </Component>
- <Component Id="cmpC1B339F47AF34FC84FFCADE560A8FC25" Guid="{1FB38AAF-0A96-4613-BB52-66D8BBD7935F}">
- <File Id="filC5D26BCF1C625C138283BAE160F8019A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mmse.tmac" />
- </Component>
- <Component Id="cmp547B4599E218674A3B75BA623FDA11F5" Guid="{F6EE344A-540F-4A4F-8825-46AED7B0DA59}">
- <File Id="fil8157FA1FF82EEBBBEE6F093FCE12FF31" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mom.tmac" />
- </Component>
- <Component Id="cmpE153C9C612302DF5B9178760BCD57A48" Guid="{19EE04EA-DBEB-4A5E-B80C-4CC4827633BD}">
- <File Id="filEBEB45418BA6B371D6F87B11B2779783" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\ms.tmac" />
- </Component>
- <Component Id="cmpA2A62A6591412D6DD75DE4C86E9A6878" Guid="{63CA6623-1945-4E1B-AA5F-F66007D6C79D}">
- <File Id="fil2A7BBD1D509268D1F24CC308B9B332A8" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mse.tmac" />
- </Component>
- <Component Id="cmp0E6021EBDCC8E37A22910FD456FF169F" Guid="{5C4B9071-0393-4C66-923A-1802FED027CE}">
- <File Id="fil179198C0964F504A819431797F847D7D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\om.tmac" />
- </Component>
- <Component Id="cmp561B6BD05DD7D64F5279D68193A1600F" Guid="{1B35C411-8879-4A3C-8061-3A06E8B84B46}">
- <File Id="fil910331647C33EF9DA905B54280F51147" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\papersize.tmac" />
- </Component>
- <Component Id="cmp41BF05794F437EECA53FC140574964D2" Guid="{025996C1-571A-4F2A-AF20-5C04813F7E3A}">
- <File Id="filF1E4775F47675970F2E4303621371E81" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\pdfmark.tmac" />
- </Component>
- <Component Id="cmp58F3B3FF2F7CEDC0C658AE88FF540B21" Guid="{107C6676-B584-4092-9719-30DC98630172}">
- <File Id="filD56D0127FF8302EEFB93BBF2B5C8D8AD" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\pic.tmac" />
- </Component>
- <Component Id="cmp8ECA3EFE326FE69D30947826A0B00A05" Guid="{735BE8DC-12B8-4E68-B716-34D42B9F9045}">
- <File Id="fil7C9DC318D1D1A898DE8A5D811FEE9843" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\ps.tmac" />
- </Component>
- <Component Id="cmp3D87BA78CD55C7F519226C7869B255FD" Guid="{1763F2AD-33B6-471E-939F-84B4B2260DEF}">
- <File Id="filBDD4EC1293173C5CE64BD9B11F01C4C3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\psatk.tmac" />
- </Component>
- <Component Id="cmpACA67C309E47D9DCA6CBE07A0904E187" Guid="{710737B8-AB2C-4DDA-92D8-7D1E1490A0B7}">
- <File Id="fil80BC9DB056FE613689C49AFE2218F68A" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\psold.tmac" />
- </Component>
- <Component Id="cmpF629CB6D0F7D65F661625E0587433111" Guid="{46E62B09-5083-44F0-AB6E-238747339D2A}">
- <File Id="fil0DECC812ED1DC2DC5771FF363957D000" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\pspic.tmac" />
- </Component>
- <Component Id="cmp98B44EAB1E9E4F16F9E6C6F130B728CA" Guid="{AB4CF32F-5CAA-4728-895A-7FE229EBFAC3}">
- <File Id="fil39E0E81C3910AB6B4422FB34FF079430" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\s.tmac" />
- </Component>
- <Component Id="cmp031CB02FCF207029250549A98703E20C" Guid="{3EB44920-4011-49E8-B9C5-67916354CD73}">
- <File Id="fil3C314DCE8F29898C3AF4D39C142F6AF9" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\safer.tmac" />
- </Component>
- <Component Id="cmpCF030FD5EEB51FC7AFDBF3781921A159" Guid="{EAFE34AA-F823-4C4A-8E59-C990FB255DAD}">
- <File Id="filC9F4E2CC3FF602393D2BA94B848258F6" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\spdf.tmac" />
- </Component>
- <Component Id="cmpA0FF5578F5DE4BC0D337EB4AD504D1D7" Guid="{4433E06D-D098-4750-8320-F612EEEEA6C1}">
- <File Id="fil50F934BAD6B1F7E227F229D5B474EBAF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\sv.tmac" />
- </Component>
- <Component Id="cmpD3D412A4BD3112955757E58DBD628C8D" Guid="{1F7558CC-DF35-4535-978D-3D963A886F25}">
- <File Id="filEC8195110127AF66DF64D582B6C6472C" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\trace.tmac" />
- </Component>
- <Component Id="cmp6AF947D999B759C88D1BD7379EB14270" Guid="{DAD7366D-4493-4985-A40A-575DEC652FBC}">
- <File Id="fil02044D9E439B0A3DB59855954B456851" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\trans.tmac" />
- </Component>
- <Component Id="cmpC18544DF6D7278865855F9A1A6865410" Guid="{DD83569F-F23B-49DD-B4F2-3BF7D410F645}">
- <File Id="fil17D9CF2A3397C476EBF3606049B274EF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\troffrc" />
- </Component>
- <Component Id="cmpFBFA58470A505FE1E119E36EE758C4E2" Guid="{E8B5B121-50CC-4BF8-B406-5FDC8F05BEB0}">
- <File Id="fil4578F6B165C5DEDED61C38F77EA2BE78" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\troffrc-end" />
- </Component>
- <Component Id="cmpA58ED28C8AF044B14C8B70F789BA9B15" Guid="{27C6C97F-B94D-4285-AAF6-9D2DBA90F7CB}">
- <File Id="filAC0615D36529614145C6C5B2F99E5A4B" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\tty-char.tmac" />
- </Component>
- <Component Id="cmpEED4CF2FF81346A9A6D864471ECAEDC0" Guid="{2D6239C4-D662-4AB3-B9EF-EDF1954E5B1F}">
- <File Id="fil6B0C287B19861693760A217EAC4EC243" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\tty.tmac" />
- </Component>
- <Component Id="cmpF6C02A5A72593B412A1F34E6A96028A6" Guid="{E9DFD3CA-DDD8-48A5-BFA1-7907F1CED4F2}">
- <File Id="fil63A1CF9F6CE8491BA1E324161B87FB50" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\unicode.tmac" />
- </Component>
- <Component Id="cmpF27E084A6AD043C904E2164F4B343D36" Guid="{5A940FFC-FE80-4AD6-B729-AFB23B0CAB6E}">
- <File Id="fil4703D14679BBE7ECA8C8D7B461160C33" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\www.tmac" />
- </Component>
- <Component Id="cmpAC66C59841FA146A8691D4AB9F590D6F" Guid="{C5B8FDC1-82A3-464E-9DD5-F42FBFA594A1}">
- <File Id="filDF4DB04EDF075BB95F0E21CE47EBACFC" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\X.tmac" />
- </Component>
- <Component Id="cmp364A8D8EC7916657FB21311CC3AB4938" Guid="{F7DF5E27-29E3-4940-9915-4D75AD2F159D}">
- <File Id="filDEE962AAC28D9F3ACB2BDA44B1BD50FC" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\Xps.tmac" />
- </Component>
- <Directory Id="dirCB7EA95102364F9529736F863A093974" Name="mdoc">
- <Component Id="cmpFFC2E78AF1D16F6EE45A82034964B40F" Guid="{9785B7FD-CC8C-40A0-AACB-C3843E6C9ABD}">
- <File Id="fil42CE2BB057201A5FD3F2B5E87245EA21" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mdoc\doc-common" />
- </Component>
- <Component Id="cmp61843CF71928B2C44ADC025F1B2E6540" Guid="{DD13C8A8-07C5-4D09-8443-16B3566B93AB}">
- <File Id="filB3A9655D2BFA783BDE588B60AF60DA89" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mdoc\doc-ditroff" />
- </Component>
- <Component Id="cmp7421229365C96A68942B55134B402948" Guid="{EC9AC25A-E8E5-46C7-B678-0B1CE907C370}">
- <File Id="fil720172591C4F65B0966F64A0AAC34FB6" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mdoc\doc-nroff" />
- </Component>
- <Component Id="cmp4963CC85162B2C0B543BDBEB24131795" Guid="{1F8B6317-7287-41D2-804E-E9AB89E76C5B}">
- <File Id="filED65F11DF6C4CFB4CFEAC5319FE0EB71" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mdoc\doc-syms" />
- </Component>
- </Directory>
- <Directory Id="dir3A0286DF79F8B77BF6054FF4A7D91ADC" Name="mm">
- <Component Id="cmp28F529DA89546C12235583299F56FCCC" Guid="{4D2980D4-FF20-4575-9ECC-6CE76C1DBE90}">
- <File Id="fil06A095B81D7670D9C101536B26B8B15D" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\0.MT" />
- </Component>
- <Component Id="cmp810C5577E55079EE265FE03F989E352F" Guid="{88DC294E-0FE9-4D9B-80D2-55193EE3396C}">
- <File Id="fil64447510D414AD99DFAD13E6972527F3" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\4.MT" />
- </Component>
- <Component Id="cmpD42088D78828F44DCCC2FB737EF5B2FE" Guid="{A8C49335-1870-47DC-8CF0-98D2049387DE}">
- <File Id="fil8FEDE964B78578D9CC2F5AE1A1BE8054" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\5.MT" />
- </Component>
- <Component Id="cmp35D28E841AA96FB5544025E5AC1AE69C" Guid="{A8518621-B917-45D4-944F-D28E7AE3E101}">
- <File Id="fil3A961CDDC1098F8B49A3BDE55D98A47E" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\locale" />
- </Component>
- <Component Id="cmp23A7F089CD511ADAC4AC922C7E46FEF5" Guid="{113CC79F-8C4B-45CB-B46A-8BF4B815966B}">
- <File Id="filDCBA620A0018241E3F2343DE4359BDB6" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\ms.cov" />
- </Component>
- <Component Id="cmp01D03B64ABAC860D888CA2B275D03561" Guid="{891EEA74-C22D-4242-84DB-7C2FDF5CA45B}">
- <File Id="fil24A9A8765A0E1E420DF6A44F1EA5A9DF" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\se_locale" />
- </Component>
- <Component Id="cmpEE0C10E58594A360AE93AAA5701DAD41" Guid="{3E182406-7C2C-4935-A946-C1F80B4EA0A1}">
- <File Id="filD9867B9DA369BD502E049D8428E98A39" KeyPath="yes" Source="fio\usr\share\groff\1.20.1\tmac\mm\se_ms.cov" />
- </Component>
- </Directory>
- </Directory>
- </Directory>
- <Directory Id="dir9C1BA7C97BC80E295DCB069E05639AA5" Name="site-font">
- <Component Id="cmp0353CA605DB335F49166221F524FED78" Guid="{3084E66D-387B-40E6-8D43-DA680A0F6CB4}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- <Directory Id="dirC0DA0A5448AB2E6EE5EAD24053CEAC07" Name="site-tmac">
- <Component Id="cmp5B23FC91EBC215C7165C99FEDE6BCA0A" Guid="{5D5ADBA9-DA8E-4AD3-9D14-D474F659CAE5}">
- <File Id="fil28432707E6A97437D2BB1936F714F18A" KeyPath="yes" Source="fio\usr\share\groff\site-tmac\man.local" />
- </Component>
- <Component Id="cmpDA0234690E0016329C54291799B9EF1E" Guid="{EB5067FB-D517-42EA-86B6-E1CC7FC40403}">
- <File Id="filE61319682AE019AEE7636C99A6B0E5B3" KeyPath="yes" Source="fio\usr\share\groff\site-tmac\mdoc.local" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir2E49739674E0C6637DDA4C02D7047B6E" Name="info">
- <Component Id="cmpC7B59B761B142F6638F606E99D8E35AF" Guid="{49E15BDF-281C-4B84-AFC4-49C84CF66BDF}">
- <File Id="fil9CAC0BA81B76753F1D1E41F9E57818AF" KeyPath="yes" Source="fio\usr\share\info\autosprintf.info.gz" />
- </Component>
- <Component Id="cmp4F9C12A52BA0F007514997EFD448D521" Guid="{0347CF51-0CE7-4CAB-871B-534DA731304E}">
- <File Id="fil720FD58646296DB31B1DF3BD8D09DAFC" KeyPath="yes" Source="fio\usr\share\info\bash.info.gz" />
- </Component>
- <Component Id="cmpC1EFC2944900A8458FB7A568F03BFF19" Guid="{5FBC01DA-97D4-40A4-BB62-1004A116D277}">
- <File Id="filC15E38DD82316508555602801C5E8A1D" KeyPath="yes" Source="fio\usr\share\info\bzip2.info.gz" />
- </Component>
- <Component Id="cmpE6156A01431CDB7890666BDEFE87935D" Guid="{70FFC41E-FCCF-46AA-8A1D-A215252BF693}">
- <File Id="filB18316FD31C1BFFACB88097D33B1DCF6" KeyPath="yes" Source="fio\usr\share\info\coreutils.info.gz" />
- </Component>
- <Component Id="cmp83A274C6DA5AB41BDD7DE355C1D99ABC" Guid="{66AB7305-F930-4303-B1E3-6566BA324D40}">
- <File Id="filCAE1C16A84713134627197441051AB3A" KeyPath="yes" Source="fio\usr\share\info\cygwin-api.info.gz" />
- </Component>
- <Component Id="cmp2275451536706C2C559C25E989383CED" Guid="{C191B706-2074-4463-87A1-27EEA53A8DFD}">
- <File Id="filD25BF96C7EFBADF6A8B891F9285B2130" KeyPath="yes" Source="fio\usr\share\info\cygwin-ug-net.info.gz" />
- </Component>
- <Component Id="cmp0726B471FF8C6EF8F7666BC8E1C588A4" Guid="{F6F93C34-75E2-421D-B49A-44CBFF923B7E}">
- <File Id="fil6D861DBD57883A6F3B2C26BD2C9EA468" KeyPath="yes" Source="fio\usr\share\info\diff.info.gz" />
- </Component>
- <Component Id="cmpD0066CC16E3998883B9A776A2C6407AD" Guid="{5855B39D-155C-45F2-9460-2B7B5589EA42}">
- <File Id="fil2B9E3BAB40C884EF9A69A0EF786DEDC5" KeyPath="yes" Source="fio\usr\share\info\dir" />
- </Component>
- <Component Id="cmpC5AD58987CEC5434F823993CC3EC3313" Guid="{7093AEF6-A50D-47BC-B942-8931021244D2}">
- <File Id="fil716C6B88264BCD32110F20EC8879A9A7" KeyPath="yes" Source="fio\usr\share\info\dll_init.info.gz" />
- </Component>
- <Component Id="cmpA0CB4F4A3AD7EAE3CC20CC8DC0E4684B" Guid="{85DACE3A-CFC0-4F2B-8839-68DDD978EF57}">
- <File Id="filCBBC533D1F6E6D60687600C941EB1CB3" KeyPath="yes" Source="fio\usr\share\info\dtable.info.gz" />
- </Component>
- <Component Id="cmp2A73FA1131FF65CF658196A084ECCC31" Guid="{D7738D26-EACF-43FE-A8CE-2EF27BA2030E}">
- <File Id="filF63E9B5BC5F61CB2AF2051DF0684A76A" KeyPath="yes" Source="fio\usr\share\info\external.info.gz" />
- </Component>
- <Component Id="cmp7DF9C9234ED409E80D9152356BD32E71" Guid="{A02E4DCE-6E79-44F2-A21F-62F98F8E756C}">
- <File Id="filC2A1DFAC63808E8E660F2970F8AB32C0" KeyPath="yes" Source="fio\usr\share\info\find-maint.info.gz" />
- </Component>
- <Component Id="cmpCCF8B334DA51FD68CF05B999B7EB9FD7" Guid="{54F86DE5-7DFA-4A36-A4AF-9244ACFEE192}">
- <File Id="fil912CB417CA38083F99286EA63422FB38" KeyPath="yes" Source="fio\usr\share\info\find.info-1.gz" />
- </Component>
- <Component Id="cmpF3DFD0D58F6C324177D395CDE4A609DC" Guid="{D3E3E0C2-9D58-4F9F-A770-0098669A39EF}">
- <File Id="fil9EA724E715E3E1A4376C7C4996E4CAD9" KeyPath="yes" Source="fio\usr\share\info\find.info.gz" />
- </Component>
- <Component Id="cmpE7A63357648EA445C11F1B79D3BCA746" Guid="{ABC1CCCB-7E17-4F45-9D56-BDB03223FB56}">
- <File Id="fil87FE87700AE5C2BA0BBFFF3E0E540E62" KeyPath="yes" Source="fio\usr\share\info\gawk.info.gz" />
- </Component>
- <Component Id="cmp35DD6C7312F531F40BDE66B56B5DBC86" Guid="{76DCDC27-7F5C-47C8-940F-859627CCE505}">
- <File Id="fil625192061FF316C1AB615FF7434EA6DA" KeyPath="yes" Source="fio\usr\share\info\gawkinet.info.gz" />
- </Component>
- <Component Id="cmpEC1B97053A61A67D9E5CF0373FC27FA0" Guid="{5D6A2BF8-B24B-42A1-9999-6C2E22C2DB06}">
- <File Id="fil7C6DA4B5129C410D35A9AEDC1797A83B" KeyPath="yes" Source="fio\usr\share\info\grep.info.gz" />
- </Component>
- <Component Id="cmp8E2926FDD59650F1D4D2B69B822A3A0E" Guid="{EE4B84D7-B4C1-40A6-82CB-90F6D9D9C9DF}">
- <File Id="fil895AE6DA1B3DBAE5EF490AC435951788" KeyPath="yes" Source="fio\usr\share\info\groff.info-1.gz" />
- </Component>
- <Component Id="cmp375220B1D6D45FB29C399F9279886525" Guid="{BBA3B8A1-1D4B-4AAD-B41A-7FD6ABBFC361}">
- <File Id="filAF85AACDDC72488F39714C7ACACF399D" KeyPath="yes" Source="fio\usr\share\info\groff.info-2.gz" />
- </Component>
- <Component Id="cmp46238D1ECDA75E8E13B3C12AAAAA0780" Guid="{BE9DEED6-3875-41FC-B217-FD9D47136332}">
- <File Id="filAE759C6864E088DAB2062B1FFD50EF4D" KeyPath="yes" Source="fio\usr\share\info\groff.info-3.gz" />
- </Component>
- <Component Id="cmpD5126401A2770FB40D9D1A30BC5AE572" Guid="{C9E9F882-2854-4CD3-96B2-CC1F0B5ABDFB}">
- <File Id="fil1947E6C1D62C64674548109829CF15AD" KeyPath="yes" Source="fio\usr\share\info\groff.info.gz" />
- </Component>
- <Component Id="cmpFD44D77AC9A79B72E992693E58E14B88" Guid="{EB1A3912-EC45-49FE-8678-2DBFD5EFFD4C}">
- <File Id="fil53581335447059006FD6B1C88CC8F679" KeyPath="yes" Source="fio\usr\share\info\gzip.info" />
- </Component>
- <Component Id="cmpE779197B628448F4FD6D2BE63A5EE0A4" Guid="{97204CA4-BBBE-4748-B6EE-6B7F547379ED}">
- <File Id="fil8D9D751A890205FFC605DA0BCBA1DEA5" KeyPath="yes" Source="fio\usr\share\info\info-stnd.info.gz" />
- </Component>
- <Component Id="cmp91626990D259EDE99833EAAA80686C4D" Guid="{03BFB89E-584B-43E1-BD98-5E34C085A20A}">
- <File Id="filBDBB88A8A8764626D3BCA6B7C8997AF2" KeyPath="yes" Source="fio\usr\share\info\info.info.gz" />
- </Component>
- <Component Id="cmp11A7CA1AB688EF77207C4D0654A1CF4B" Guid="{D973EF62-1BFD-4400-BCF1-9C1F67297336}">
- <File Id="fil935B0311FE13D0AC9302FF341DC04579" KeyPath="yes" Source="fio\usr\share\info\libc.info" />
- </Component>
- <Component Id="cmpE95A2DCC6D16D5C49BB5D369CC76E2C9" Guid="{C1F8FEC4-592E-44D3-9153-03907F1B390B}">
- <File Id="fil6CE60BF94174162F02355114B980B7D4" KeyPath="yes" Source="fio\usr\share\info\libc.info.gz" />
- </Component>
- <Component Id="cmp41E911F13CDD828D7ADCC7B74E2FB578" Guid="{1D9115AE-D2F0-4A84-80EF-7981B7267675}">
- <File Id="fil195ABAE5F44B6032B981D1BE36E7319A" KeyPath="yes" Source="fio\usr\share\info\libm.info" />
- </Component>
- <Component Id="cmpAA510F34B301BE68B52EE7854330F92A" Guid="{227B1CAA-9D7E-408D-AF2A-3AC3D07AE8ED}">
- <File Id="fil86E017C9FD573A50BA52FBF55AF41046" KeyPath="yes" Source="fio\usr\share\info\libm.info.gz" />
- </Component>
- <Component Id="cmp1F5C78EFE50DC58FC805979C2DD9B10F" Guid="{0328E546-4CD1-4FB0-83B6-F5ECAEB65CE4}">
- <File Id="fil3D20B70730F92B20729AB4F8327287C1" KeyPath="yes" Source="fio\usr\share\info\path.info.gz" />
- </Component>
- <Component Id="cmpC52485F7F006AA83C9BF7260A4BEE0D5" Guid="{8CA5D0A2-17DD-4D89-A942-C1D692125458}">
- <File Id="filCE7754B4E9D4158E53730B81A97D45B2" KeyPath="yes" Source="fio\usr\share\info\posix.info.gz" />
- </Component>
- <Component Id="cmpC60D0D29E973B73E17E49963D8DDE804" Guid="{EAF6ADC1-CEE3-4983-B6F3-22C378A7AAC3}">
- <File Id="fil59D867F61BD687C8C191A1090D0E73AC" KeyPath="yes" Source="fio\usr\share\info\security.info.gz" />
- </Component>
- <Component Id="cmp46ACA9A14A07A5B69B05F2DA2A507AD1" Guid="{52AF3A7B-42E6-4886-8265-F8C04EFD0F29}">
- <File Id="fil7DDD19F4555DCCEDCEED71597534902F" KeyPath="yes" Source="fio\usr\share\info\sed.info.gz" />
- </Component>
- <Component Id="cmp395E3A46587C21D7D1899E2995C0EBB9" Guid="{FBB8F0E0-9376-43AA-9252-914BA43F7265}">
- <File Id="filAE1C5E585F3FF2247F0924369FA705E5" KeyPath="yes" Source="fio\usr\share\info\stackdump.info.gz" />
- </Component>
- <Component Id="cmp30E6C7C1F957924C6664EF914A8356A1" Guid="{59106396-868B-4050-A2B8-16EFC6DE8175}">
- <File Id="filEE7FA24835005A1D8685CC4307E07A0C" KeyPath="yes" Source="fio\usr\share\info\tar.info-1.gz" />
- </Component>
- <Component Id="cmp4C25E5425DCB2062152BA6646FF7CC55" Guid="{C5E05C10-4264-4D1A-8015-055BEC19191E}">
- <File Id="filCEF469BE1AEB994BB154254D6F86C3F4" KeyPath="yes" Source="fio\usr\share\info\tar.info-2.gz" />
- </Component>
- <Component Id="cmpC78D44F529DB5767F1E7B90710C8A2BA" Guid="{9A73964A-3E04-4ABB-B706-36D0BBBA7D1D}">
- <File Id="fil81B1C68481E95305236AE810ABD3077D" KeyPath="yes" Source="fio\usr\share\info\tar.info.gz" />
- </Component>
- <Component Id="cmpD9BC8A06ABB56596ECD2738C84407B92" Guid="{4FA596F9-EB34-4BAD-983A-32D205A55127}">
- <File Id="fil4F03B868746AD555B328DC0543FFD8E2" KeyPath="yes" Source="fio\usr\share\info\texinfo-1.gz" />
- </Component>
- <Component Id="cmpFD5577A285559EA90398C8245D78E355" Guid="{2C2A98C0-D90A-4464-AF3E-8A31C6F96EC3}">
- <File Id="filEB528BD1B6C4A33F262D7C27026F77B8" KeyPath="yes" Source="fio\usr\share\info\texinfo-2.gz" />
- </Component>
- <Component Id="cmp4F12545729572228EF697FA42A5F0E90" Guid="{1C93609F-78CE-4F2D-8E0A-2436433EDF54}">
- <File Id="fil030A001066709544054B1C04BEB542E6" KeyPath="yes" Source="fio\usr\share\info\texinfo-3.gz" />
- </Component>
- <Component Id="cmp814A3648095948FBC9CBEE8EEE27985D" Guid="{90C03EFD-06E7-42AC-9A6A-B20BC6021277}">
- <File Id="fil07376283BCBCEA56CE43A1FCEFAD7702" KeyPath="yes" Source="fio\usr\share\info\texinfo.gz" />
- </Component>
- <Component Id="cmpB576C14E02DAAF104906B620AFE1D111" Guid="{20A76B42-5496-4F03-8F6F-97F3A5E18656}">
- <File Id="filCC74C6835110D034621AEE08AC84A5FF" KeyPath="yes" Source="fio\usr\share\info\utils.info.gz" />
- </Component>
- <Component Id="cmpFD534BC5E8C1C322AC1F99DCD820FCC2" Guid="{62C03627-1748-454A-8801-559F50C995D2}">
- <File Id="filE1620C349BB481B17D5A4347EC1A4C2F" KeyPath="yes" Source="fio\usr\share\info\which.info.gz" />
- </Component>
- </Directory>
- <Directory Id="dirB09682412CD6B98320798BA3A378F510" Name="locale">
- <Component Id="cmp287FC9B92716C8E22BED6F4F7BA3CED0" Guid="{87C1BB56-9AE2-4DF9-82F2-43F49B604C91}">
- <File Id="fil802018B43805AEEDD8A84AD367A553F5" KeyPath="yes" Source="fio\usr\share\locale\locale.alias" />
- </Component>
- <Directory Id="dir92F110C37B934CC098EA5C50142226E9" Name="af">
- <Directory Id="dir10C7AE7B413D3537CCF6891D9D102097" Name="LC_MESSAGES">
- <Component Id="cmp5C9223C1734F69C9DEA9FD8F9EE820B6" Guid="{D9E60193-EA74-4620-8C98-DF55779A9A56}">
- <File Id="filDAE603D22D15AB1B22CFD6E0C484D7CC" KeyPath="yes" Source="fio\usr\share\locale\af\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpBCA465BFB5E48D44993208F17E7D61F2" Guid="{449D7B97-7675-4037-AE87-2C519B6CCDEA}">
- <File Id="filA4611A7B5DEFBE0A22215D45A8F48D8D" KeyPath="yes" Source="fio\usr\share\locale\af\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp77DC2B2DC53EE8DDAC2169295AF00DBD" Guid="{43E877C2-7298-439B-AAE0-F9E03833FCC4}">
- <File Id="filBC52029DF9C6C50792CDF28325A26322" KeyPath="yes" Source="fio\usr\share\locale\af\LC_MESSAGES\sed.mo" />
- </Component>
- </Directory>
- <Directory Id="dir3F9768AFAA96EB4DCE3256D64AD9953D" Name="LC_TIME">
- <Component Id="cmpCB3CD1D9861162D34E580C9BC6870ACA" Guid="{C52F0CE8-CA58-4AEF-B08C-49E12A6984C7}">
- <File Id="fil400E653F0312AA722F2CC35333651886" KeyPath="yes" Source="fio\usr\share\locale\af\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirC73437D6D4D6B7FA152639D690D51763" Name="ar">
- <Directory Id="dir5B98CAA48E1FD1B59A74FCD229D40DDB" Name="LC_MESSAGES">
- <Component Id="cmp36438F0163ED7047682C765A25E4A075" Guid="{DA7C279A-4618-4E5A-B4E9-94AC8CD2EC88}">
- <File Id="filFC968B27921FE0A0215F7DAA22BCDEFC" KeyPath="yes" Source="fio\usr\share\locale\ar\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir340B5BDD8F15B50F2590DCE19C9FA28E" Name="ast">
- <Directory Id="dirF8B738126D9DDD9ED50B630162156FFC" Name="LC_MESSAGES">
- <Component Id="cmp33711814651BC894EC3FB6E79D6A82E4" Guid="{91820C57-FFDB-4B2B-9276-C29C4EB5E3D1}">
- <File Id="filCBA4D7B218541019EAEFB1B38157FCEA" KeyPath="yes" Source="fio\usr\share\locale\ast\LC_MESSAGES\gawk.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirBF50AC2BA3AC52EC36AE11B66A6EC5E4" Name="be">
- <Directory Id="dir494212B753F58B5C31F38F12E4559BDE" Name="LC_MESSAGES">
- <Component Id="cmp1ACC09FEC0FD7AA5F32D4860108800C2" Guid="{F9ABA86D-038B-42A2-94D9-777DDF617564}">
- <File Id="fil9293D2F8C2DD0F2FF2704A7CB3D5EF7F" KeyPath="yes" Source="fio\usr\share\locale\be\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpD4142CEF16A5A59108F5DE859584A696" Guid="{303ABD38-6766-40DC-BEAB-246ECDBA9EF9}">
- <File Id="filBFEAFCE15591766EECA61841B6EC9CCA" KeyPath="yes" Source="fio\usr\share\locale\be\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp4CE03E787ABB9FE624AF0E192F78EB33" Guid="{0149C57F-925B-4C2E-A78A-0A368F3648CF}">
- <File Id="fil3D2FE6876EB9785D49F72D167AA9B7FE" KeyPath="yes" Source="fio\usr\share\locale\be\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp312A15A9A4F4C06CDFEC767B5529A04D" Guid="{39A29BA1-FA12-4EE4-A678-B12B98D38C16}">
- <File Id="fil18B1F44563DCAF64BFE2242C27545670" KeyPath="yes" Source="fio\usr\share\locale\be\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp4DABF1CF7DD9D66C275A70D4DD1FEEB4" Guid="{CCC36F11-DEF3-45B1-8B00-4456F06F95C7}">
- <File Id="fil7400BE98E9A6752DE01A109484439A8B" KeyPath="yes" Source="fio\usr\share\locale\be\LC_MESSAGES\grep.mo" />
- </Component>
- </Directory>
- <Directory Id="dir4198E5EF332F5C993A9A91EC937EB7DB" Name="LC_TIME">
- <Component Id="cmp201614CDAC33F8EC0F1023B5110ABB85" Guid="{8C185846-46AF-4ED9-82AB-7759ED0132E6}">
- <File Id="fil084620CC30BA268F710AE4844C42D142" KeyPath="yes" Source="fio\usr\share\locale\be\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir4C4B0D027C1028ABCBEF964E1332B687" Name="bg">
- <Directory Id="dirC94736FED57104179D43834DECE70C23" Name="LC_MESSAGES">
- <Component Id="cmp5CDD16E63279D5AAB36A00101F7FACC3" Guid="{90220FC8-307D-46B7-A3C4-434990B4ADF3}">
- <File Id="filE140FE8FE4E4E78B13B9A2FDD4001E87" KeyPath="yes" Source="fio\usr\share\locale\bg\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp4515415825EFA4E57172E13E7DE5089D" Guid="{C107ACEF-E264-441A-B0F2-9524B1DCD65C}">
- <File Id="fil2919E9F1EDD7625C7D271C6708C38094" KeyPath="yes" Source="fio\usr\share\locale\bg\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpB256D43CFB567DCA30EB7A6010F5E907" Guid="{B61EF0A5-2796-48BF-9B8F-869CA9C1A4CA}">
- <File Id="fil37790455DFCD0EF02CABE27A520BAC06" KeyPath="yes" Source="fio\usr\share\locale\bg\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp785C1FBE4DA9C20723E97EAFCCDF208D" Guid="{E4D93D73-94D0-44BB-BCA4-AFC427F08606}">
- <File Id="filE1D4E9A52EFBAC9B4EABC265BCBC1187" KeyPath="yes" Source="fio\usr\share\locale\bg\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpABB8EB934B9A8D4CBC144257703AD50F" Guid="{682AF705-B694-48BE-A661-CB1D9D1C2877}">
- <File Id="fil9CA2870790E729283A90E27236DDFB85" KeyPath="yes" Source="fio\usr\share\locale\bg\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dirF8489726E37EC670CC34E1AD2BD24D72" Name="LC_TIME">
- <Component Id="cmp7B167DAD6F8B83F1D034164BADF00E8B" Guid="{3149BE9F-049E-4976-9E1D-172DC27D3750}">
- <File Id="fil2B5A1A8E51E7BB4E43ECF4784FCA7F61" KeyPath="yes" Source="fio\usr\share\locale\bg\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir3F1868285DE75B14555D2F5557C9D38F" Name="bn">
- <Directory Id="dir41B3997E4FBC7D095D1DFA82C21E8692" Name="LC_MESSAGES">
- <Component Id="cmp7268B764DA410B9FB2C6311D450F1D82" Guid="{24135A56-8D34-44A1-9F95-E43B2595C9C0}">
- <File Id="filCAE518D018659CDEDF79F52A682236EA" KeyPath="yes" Source="fio\usr\share\locale\bn\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir0AC32994C87B44CE25DFD2FC0CBBE888" Name="bn_IN">
- <Directory Id="dir07ACE0864586889F91266D55C703E141" Name="LC_MESSAGES">
- <Component Id="cmp5EE66CAB8FDA2D288CA44B2E99E51249" Guid="{C83D2F2B-3551-43B0-951E-FCAF15051544}">
- <File Id="filA69F32C11081AD301EFE20AB35E0403C" KeyPath="yes" Source="fio\usr\share\locale\bn_IN\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirD6F33E47B2E2B10C073A92E3AC668F54" Name="bs">
- <Directory Id="dir8945F1EBA6A4E5DFE1CA38B72AA90F03" Name="LC_MESSAGES">
- <Component Id="cmpA2ECF073107F7335225254BF4A202E27" Guid="{C42CD610-30EE-4FA9-A209-098EA2D586DE}">
- <File Id="filBBF689CC6433AD7E14CC1206F7D8D8EA" KeyPath="yes" Source="fio\usr\share\locale\bs\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir72F312402DD9F7BF0C005C2AD06D4F3E" Name="ca">
- <Directory Id="dirEC04FD4BAA6C96B263C810F5C2A435BE" Name="LC_MESSAGES">
- <Component Id="cmp43755078C8D9157E755DE33363B1E345" Guid="{E016CDD8-9162-42E2-AE77-397BE62F5213}">
- <File Id="fil4A13A9662DF60A72CD8B678958C02341" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpEC9F4066E62DF13CBBA7A4DFE33A8E58" Guid="{93B2097A-88F1-4879-9F84-3FC1ED8A4BC3}">
- <File Id="filD877CFF6CB29AA9571402F4FEB67D819" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp70D2EBAE9F16946212F357BB41795995" Guid="{9F49CD20-648D-4B3D-B0ED-69010EB6613C}">
- <File Id="filC12B768E3B9213A805D1FFBF1EC28820" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp458CE48155B7C519E20D003A9B8621DF" Guid="{2F4B8988-F82C-4669-9F03-5331D1C9142A}">
- <File Id="fil16EC3913FC78C4C453FF964206ACE6F0" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpB16E11A88148807FDE96208163C067C9" Guid="{0409BA1F-6B9F-436E-9E8E-51EA9676FE71}">
- <File Id="fil81967E79B771FD95980AB92A2B458C76" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp4DCD16CE3768EFC3BAF9DC3279197C1D" Guid="{1F7906CC-0AE6-4AA6-8CC7-C02E0CBBDD8B}">
- <File Id="fil7A70413C348B7ED01E3A838DA0689D5D" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp69F0F0A16B61809D409BECEA2BBBF845" Guid="{3DC3A690-E189-40A4-AC31-E20123FFED4B}">
- <File Id="filF414D680BA22BD52AFA145C886206FA6" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp39D152D3844EAE090BD3B793E3749CFC" Guid="{E90C8275-AEE6-4D8D-AB22-0D6251F1B84E}">
- <File Id="filA42282B3A57DE7F9B1BDC42829FEDFD6" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_MESSAGES\sed.mo" />
- </Component>
- </Directory>
- <Directory Id="dir844F14B26E7EB8A7F433E0D0D5A94275" Name="LC_TIME">
- <Component Id="cmp7C3171F89816AC3B11B0F7FC4D6EAE15" Guid="{AAA39C17-F3F6-4FA7-BFF0-85C19C41AA45}">
- <File Id="fil1B75523CC6404E240547614771B49DCB" KeyPath="yes" Source="fio\usr\share\locale\ca\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirDF9C8DBB3184A617362AF0AC909AE54D" Name="cs">
- <Directory Id="dir8B00231F56A56072FB1F11956993F798" Name="LC_MESSAGES">
- <Component Id="cmp4100896EBAE16EA481419E4360AC3204" Guid="{DFB23F51-6C64-4AA0-9A14-0A7633528EB5}">
- <File Id="fil960FE9043A12C2072DF9A4A2A32622A0" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpCD3CDE4712F0972F09A7BAADBA073DA5" Guid="{B34AED86-BBC9-49C9-9AB0-C8DD61784B06}">
- <File Id="fil3F8A1CB1F65ECD0DE1CE9845B0CC7818" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpF01FB2A91AC3118D582C103DF5A5E33E" Guid="{C807A3CA-6B81-4B59-A27C-4FB88661A463}">
- <File Id="fil9367844FCBC975AFBA767CFB2A69058B" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp64FDA70B91CCA044800C48FC83C2BF51" Guid="{0ED1E875-AB94-4D16-8E7F-80A47636B1F1}">
- <File Id="fil8C6E823B5D81510F59F245DC3F82C267" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpB0D6C8695F2C39DA19BCB359890D50CF" Guid="{0E1CFC3D-754F-4F4F-BC3F-D8AC83394CAC}">
- <File Id="fil9EF34446C14B7BC7954F03D896F8A9D4" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpF72D6034FED39337AC289CDC406694E2" Guid="{0FEA1881-6DB6-4090-A842-FF45BE0280A5}">
- <File Id="fil7996774E6308343EAD7D9F6D50D38006" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp7B86E85E06DBB571836BCA11EA3B19FE" Guid="{A8E36925-FA3A-4A94-BF56-3AA7F2F83A7D}">
- <File Id="fil2C428825488E2F106E1F0D673FF77877" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp54B2C15578F248AD47BE9EADBB86A26E" Guid="{BD385EA3-5802-46D3-A050-210B662B5217}">
- <File Id="fil71CFA0CEDADC3DD53510B1C3D425050A" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmpDC6C5D6E7A00A5D35EF28A120DBA4EC4" Guid="{2B1D430B-8947-460D-991B-CC316DFFE34A}">
- <File Id="fil99B56B04F31E72F7FAED0C4610EACF13" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\texinfo.mo" />
- </Component>
- <Component Id="cmp1FC091347ACC007108A896C47028C1F0" Guid="{B71EA2BE-3D9F-493B-AB96-871766FA2320}">
- <File Id="filE67665680431A427A464B6B6D6F43A53" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_MESSAGES\xz.mo" />
- </Component>
- </Directory>
- <Directory Id="dir513A7EC480098353A6199BFFD7CB5EC5" Name="LC_TIME">
- <Component Id="cmp41F2F1548E97CF7748A7EA42B58BDF7D" Guid="{DCB3E396-88B0-4595-A2BC-D29A7E8E5212}">
- <File Id="filDEBF652D336B072C7B62BBBDACAC5902" KeyPath="yes" Source="fio\usr\share\locale\cs\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir74C45F3A7D0FE7DAD6CFC70E228BFA82" Name="cy">
- <Directory Id="dirC67CC9889AA939E92C3C35C8D260CA13" Name="LC_MESSAGES">
- <Component Id="cmp46A1EB65455677AFE122CB0EA956D6D7" Guid="{181D73D3-0D0C-4935-A149-DC9C517191C4}">
- <File Id="filB7574578F7360EF6D156EF3551D78839" KeyPath="yes" Source="fio\usr\share\locale\cy\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir9277F6E4245FEED06A7E6A112E11E7BE" Name="da">
- <Directory Id="dir0F02CD3408419C57BF0F4456F0DB5E19" Name="LC_MESSAGES">
- <Component Id="cmp3C2D02D5B133542F5A4AD400B415228D" Guid="{EF972863-A776-4571-AD6D-9AE99B7DB8FF}">
- <File Id="fil2C9FDA4A75D0DA336BFAAA861611B156" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpF86533283C540192BFEC6830B06B6B3E" Guid="{04B684F8-D434-4064-811A-C4C8F8EF77B4}">
- <File Id="fil99D9044F13A4379F95B5FAC7B7D0359A" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp1BC02452B432EAF398E285B17A6B6895" Guid="{C5FD1085-B524-4381-9FD0-3B9DC1D8EA84}">
- <File Id="filD103DE829EC5096FDFBDCEFA51E413F0" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpAEEB10E5E67DD5909DA8890140E55BB1" Guid="{914B9AAF-39D4-4C46-803E-A5472E6B7063}">
- <File Id="filC434F11923BE687ACBA03417132BED7F" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp9A2CAC95CBDE03674B4A850341ECF682" Guid="{4CBEB95A-22BD-4374-9A4C-B66D3D44DBC4}">
- <File Id="filC59DFA33D66AC64C08BD5DE191BDC427" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp1A338083A4D1FF526E0C992104F376EB" Guid="{EB1DC57A-CF38-46E7-9A79-FE74CAC34FC9}">
- <File Id="filFA5ED17150BA167C32386321FA617BF7" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp1FF123F49B0400E99E8BAC7E666DDE23" Guid="{0ADCEC09-F20B-46E1-B693-BFE760108CFF}">
- <File Id="fil962C37034613BD361F5694C4612BC4CC" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp0C5F12FC9AE25E8F20E4777000CC71B7" Guid="{F7C74525-5069-4538-BBE3-B5BFA6EF8DD3}">
- <File Id="fil894941B8F1E79E8BD25E6A67B6972B15" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp8E15244A58EFDFEDB4A44975C0BE468C" Guid="{61A2AED0-4DE2-4C21-82FD-C56AEB8C4C5C}">
- <File Id="filE0018698F5389DBBC76E2A50A5D3B14C" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp16A9E29B163923E9F3D7037A51D49864" Guid="{DEEAEEF7-6058-4BD8-B59B-5AA0F39BF34E}">
- <File Id="filE078032BD756CECC0D6FD822ADF258B5" KeyPath="yes" Source="fio\usr\share\locale\da\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir8B3CAA8638201DD2727E1966EEF15954" Name="LC_TIME">
- <Component Id="cmp3C289C85DC77720769795447EA162FF1" Guid="{1208EE69-66AA-4A8A-B9F3-9D1DD95DCFD6}">
- <File Id="filD714988E16769ED067E2C0DB4717AD1F" KeyPath="yes" Source="fio\usr\share\locale\da\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir897E3B205ED91C4D67A9018D2E5BDDCD" Name="de">
- <Directory Id="dirC8888E60825CBF09EB3D6CC8C6C39367" Name="LC_MESSAGES">
- <Component Id="cmp0E4D307EF462968DB1B550B976D91570" Guid="{22E6BEC2-3B2A-4912-800D-4A3DC55BC7E5}">
- <File Id="filFAF3503D830C7078B93FFD0E9D444984" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp8A51B81EB7BC71B87635C6396066A23A" Guid="{C3194A12-E4E7-4AF8-8891-5CF48E1187B7}">
- <File Id="fil8CC3941287876B0D603C4A1B165FCD76" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp280CC0092BDDD610482476FAA2EB15CB" Guid="{C8FAD7CA-D8AC-4A69-81C5-E0C0A8360BDA}">
- <File Id="fil963B9BEB46171DBD53C016308FFCC553" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpA7B7B40B6C76A256ED870C7F9E63A179" Guid="{A81EF766-F0A8-405E-A41D-D5443FBB0E1E}">
- <File Id="fil3CFDD2CB39AB1639A6B783AD3B06C949" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp142E87C53380020C9DCF8AFD36767A2D" Guid="{08464F93-58A0-4132-BEDA-5FD76B85B914}">
- <File Id="filD41780AB1B33A0101753D1A8623A4191" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpE7B7D3E8F19936A282E5DE5191577EB9" Guid="{34A24945-65D2-4A0E-91B8-1190673B04E8}">
- <File Id="fil3324B9D31C1958CF55BB85E7711CAD9D" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpA3EDF0D8CE6CC9B9FD8DF313E97BFD90" Guid="{1BAA9E57-B519-4187-9140-6C7718F171F0}">
- <File Id="fil9CFEA07C1EB8EBE162803CAB04F3B60F" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpA31E8F26D7A7DEDE8768F3B57D3396F5" Guid="{AB23B201-3203-4814-B8A1-EBB42FA3BB2A}">
- <File Id="filD4B8F3CB002849AFB35228274F84E7E6" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpED26DC61855423149AAB13007A3A9413" Guid="{86895E14-F477-4591-A00F-CAAF49B3EAF9}">
- <File Id="fil5FE51B6E2A96F75B9D446FBD2DBB431D" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp5083397B890606AF7076E5D12821BDDB" Guid="{D6B35643-4E53-4206-98C7-80EC868D0C70}">
- <File Id="fil4F0A1B6A7CC51622CF643B8C1B2E7D06" KeyPath="yes" Source="fio\usr\share\locale\de\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dirB659412FE9F16F15FD845CC5AF87A2F8" Name="LC_TIME">
- <Component Id="cmpB9AD8C97ADCCFDA29D7F5102EFC813E5" Guid="{1F53633A-F40E-4146-9CA3-C2D40BA0E76D}">
- <File Id="filACD416FEEB0D5EFD4EC29F37FF2361F0" KeyPath="yes" Source="fio\usr\share\locale\de\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir34022254708C90E57FDE79D98EAF7E15" Name="de_AT">
- <Directory Id="dirA1781E1FACE50883EA7FDE72C4292885" Name="LC_MESSAGES">
- <Component Id="cmp10EF5C61C9DFD5A36DDE63FB3731428E" Guid="{DEF2D2C4-AD59-466B-866E-8C2048589603}">
- <File Id="fil742275D06A567E5B48BCF886DAA616FA" KeyPath="yes" Source="fio\usr\share\locale\de_AT\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir7A6B350C35520A96C4E28E81BC50B579" Name="el">
- <Directory Id="dir14E10F66B7C767C96F103D67F641049C" Name="LC_MESSAGES">
- <Component Id="cmp5BBBC13CB419621EEBE8A003BB718ED3" Guid="{AC138E32-CABE-49EA-A7A3-D742363BEB99}">
- <File Id="filF6529787FAA4991419C87B510C26F332" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpFCDA3AB96F9D004426554E29F5E8C297" Guid="{EFFC662F-530B-4F34-8C14-83649D70F920}">
- <File Id="fil4AFE08E2059DE16BC1C669F475412439" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp39EC78D12FE48801DD45E496CA8CA28E" Guid="{C003D000-C956-4389-92E1-BECF6A1316C3}">
- <File Id="fil235F6AC9F1B37859251A1A7DB0742CAA" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpF259760CCAF4A88A6320FDE66143F9FF" Guid="{896FE46B-7458-47D0-82FE-978E321626B8}">
- <File Id="fil3638F7CC606E461065BCACE71BCFE723" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp763731EEC13CC679AA2249B2F9BAEAD9" Guid="{0E34EC23-4D01-46CF-BCA1-40FC8D4BF8C9}">
- <File Id="filFC1012BC20198F80E79C02F0B1F66D3D" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp046CBE48AB4795BB8A94953D207FD6E0" Guid="{E81514CB-A699-43DF-8019-8378716CC9F0}">
- <File Id="fil5C51E9310C458EBB5084F419D0E6F290" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpD399DD2628E26C54EA2DE9C95143F016" Guid="{B14D9B4D-D92C-4789-8918-F706E41A9A02}">
- <File Id="fil532564DDDE996E8F50F3C407EE7DF749" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp101EE3F7C515A9C79BCB9CBF18EA8A9B" Guid="{BCD0F81B-0C24-42DC-9C2F-F714D9CCAF65}">
- <File Id="filA7C5DD353A1819B471D47BAF1FCF4ACA" KeyPath="yes" Source="fio\usr\share\locale\el\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir9EE75B1F50F05AF8BED1D450C213A3FB" Name="LC_TIME">
- <Component Id="cmp0974FE50ABFB743F7FB147CF28E01F8A" Guid="{A3E74A59-B305-4E87-AE30-12D39C6E1218}">
- <File Id="fil82C09EB4095E0CFF4D6DDAB93F8C9D23" KeyPath="yes" Source="fio\usr\share\locale\el\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirAA443F31016FDB1246A8D29CE2DBF435" Name="en">
- <Directory Id="dir85F91C0D5D8BFE26FACE612EA2111CFB" Name="LC_MESSAGES">
- <Component Id="cmpBF637BB5D945E94762C8FAF50F9DB518" Guid="{F0EDBC3A-D2D5-4377-B24A-A61D3760F35C}">
- <File Id="fil7A575687DA4368426A0621E3E2BA1A42" KeyPath="yes" Source="fio\usr\share\locale\en\LC_MESSAGES\coreutils.mo" />
- </Component>
- </Directory>
- <Directory Id="dirBB8992ED581BCC49F3063DF280027ACC" Name="LC_TIME">
- <Component Id="cmp587B096BB625EF1EFA7AF1003793E71B" Guid="{F5F421D9-F998-4B22-8BE9-C4688E026400}">
- <File Id="filDA3DA04101B4E04D406BC8C2F9FA5562" KeyPath="yes" Source="fio\usr\share\locale\en\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirBD2B24D920647EAF0DD27BFF530EE41C" Name="en@boldquot">
- <Directory Id="dir247CE3499B2126863E05BC7FE38B702C" Name="LC_MESSAGES">
- <Component Id="cmpA10CD15A29775C8FACE3884532E6755A" Guid="{CCD15C34-A6C0-4619-9027-5465B024755B}">
- <File Id="filD7580055C26D78114562FE1EBA5AB9B6" KeyPath="yes" Source="fio\usr\share\locale\en@boldquot\LC_MESSAGES\bash.mo" />
- </Component>
- <Component Id="cmp5A0167598FF24A7B79772A9ED56E4C33" Guid="{FF2B8DA5-94ED-450C-8887-33049AAB9A02}">
- <File Id="filB5FC53A29CD9232F53CCF12302F3242F" KeyPath="yes" Source="fio\usr\share\locale\en@boldquot\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirB2E23F554EA0B9CD9551829894D900B5" Name="en@quot">
- <Directory Id="dir5979D80B6BED5DFD4FB2BE26CE0B3A46" Name="LC_MESSAGES">
- <Component Id="cmp02AF2C1A91460C0C6DEE72468239FD8A" Guid="{9F8C63BD-2003-40AF-A714-64F7D7B299FB}">
- <File Id="fil6BB2A60295E210DABF78D29B2C426F2B" KeyPath="yes" Source="fio\usr\share\locale\en@quot\LC_MESSAGES\bash.mo" />
- </Component>
- <Component Id="cmp2337BC5A87BFF78D7A1B4B1F1F1921B8" Guid="{8832E9DF-FC9B-4E92-A744-31FFB459E423}">
- <File Id="fil49CC71D679266D37E82B650273003BF7" KeyPath="yes" Source="fio\usr\share\locale\en@quot\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirC8E0F0F31793AE74BCF9B585D9A109F6" Name="en_GB">
- <Directory Id="dir12342DFB299E1429860C9F7FCE58C9A8" Name="LC_MESSAGES">
- <Component Id="cmp7B786EEB2CB567E550014287922147D0" Guid="{49639077-1960-49FE-8046-7B5204FB9B4D}">
- <File Id="fil27DC73B4E3B9849129B2DD3CB816D8E7" KeyPath="yes" Source="fio\usr\share\locale\en_GB\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirBAA86FBFEBF012F81A2515500AA99E25" Name="eo">
- <Directory Id="dir644C7604AD8FEF67AC67B26D60F127C2" Name="LC_MESSAGES">
- <Component Id="cmp2A68555FEC2D0FCF4ED0A9D6CE7580B0" Guid="{1F56FD4F-B2FE-4D41-A000-7A5B3ECAB657}">
- <File Id="fil757C1237F27F5CC99CE48CEC47048C04" KeyPath="yes" Source="fio\usr\share\locale\eo\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpAC337623AF3A36A5C44D1B0060B22E09" Guid="{A20CD827-63DF-4833-886B-776257863ECD}">
- <File Id="fil8E289C6FF0D006722A8D883C1A7D1C81" KeyPath="yes" Source="fio\usr\share\locale\eo\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpB0DCDC5798FD439F7E94710D67A3CE32" Guid="{694EEE52-6AFF-40DF-96E0-F0D445A09398}">
- <File Id="fil2951E90AA032153A29CDE56F5B612839" KeyPath="yes" Source="fio\usr\share\locale\eo\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp76E2AE117ACE2AE5C02B900900891AA0" Guid="{A5E63140-82EF-46D6-B245-0AE6B0EE1D59}">
- <File Id="fil40880751B34258D41EBCFAF39351F037" KeyPath="yes" Source="fio\usr\share\locale\eo\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpECC7E07575DFD7C940D02B9473E893DD" Guid="{DEBD0047-A83A-4A5C-B483-7DC5129D93E7}">
- <File Id="fil7217AD915E374516D12AB05AD4A1ED37" KeyPath="yes" Source="fio\usr\share\locale\eo\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpEDC6EEFF397129DFC081ACADC883CEDF" Guid="{B2842EF7-3703-4364-83A3-A985728CD039}">
- <File Id="filEB5F14FCC56C2E0CA4A0FA364ABC899A" KeyPath="yes" Source="fio\usr\share\locale\eo\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirE2A5B40C5D30BAF8A2EA496ACD950173" Name="es">
- <Directory Id="dirE9CF9D5D178F1D858A13E247A8CA197B" Name="LC_MESSAGES">
- <Component Id="cmpCF955943C277A28C8F51E903CD3E4806" Guid="{97371482-F5A0-4A3A-8108-43AB1A352951}">
- <File Id="fil4D73C955A41D6EBE6DDE8B9586822FD2" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpDD7C1B989C506A35EB12F63151656899" Guid="{54A89506-F2B7-44C4-B1C8-93D9AA5207E0}">
- <File Id="fil1A0CDAC225B1E4F29300407557D3315C" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpDDAEE255E832B2E3550109FD28DF5EF7" Guid="{27614812-BCA6-477D-8B1E-E20314F2F827}">
- <File Id="filB5A249E07E93077D55E7A91665F6752F" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp726F862077408B4CF89DF24E9DDD5ADF" Guid="{FB415BAC-E761-47BA-AA56-F1D87613FA1E}">
- <File Id="fil3398FDBB5C787AF9F5F410B0EB599623" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp7078DBC415BB1A66C64D59FDC5D410E2" Guid="{B099367C-7EAF-40DA-804A-6BBE7A3CA046}">
- <File Id="fil6F196135CCF41C30A0318BA145A730A5" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp182A7BF860378D990A6A04DA45FC6DD9" Guid="{7CBE313B-11E0-49CD-A221-2E1E7DAFE3D5}">
- <File Id="filDFEE585D8EF0CA29B780126712CDF990" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpEEA8D75B77C4A3D0AA0F3D4466D1DCE1" Guid="{3856BC1B-4B6F-4016-9883-B1974E4B15BA}">
- <File Id="filBD9DF1F0AEDB480673B9B6E133673B87" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp81D85F2E4F9D96D29456C88F7D9EB207" Guid="{EFED3C8E-A8F2-4340-B6E9-AF31FEB9E530}">
- <File Id="filC2B15344B70EC51F03F004DB96A71A78" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp8D5BED97770121B4A9F8C2DA840F9698" Guid="{21D6FF5E-DDE9-4648-A5B5-C17E21C03C8E}">
- <File Id="fil41739D2BED7FA4879FC36CD175CA0ECD" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp55C72EFB6D8C7E028A16C92D5E772387" Guid="{3DC5EA20-00CE-4894-BAA5-2B609209B107}">
- <File Id="fil6FE1554038E75A7CD82FF2D0BF194FD7" KeyPath="yes" Source="fio\usr\share\locale\es\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir78285D3F4AA1970D02DE8F0468187FFD" Name="LC_TIME">
- <Component Id="cmpEA8B12EADBDAFDBAC5060869E95224F5" Guid="{03F24FBA-E728-46A2-B450-E537545873AF}">
- <File Id="fil0436E81A139CA939003691C680D87307" KeyPath="yes" Source="fio\usr\share\locale\es\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirA4D90BBF918CB20287B931A7FEA1FD34" Name="et">
- <Directory Id="dir6C9B330CADD65C23F866F571BDCFA8C2" Name="LC_MESSAGES">
- <Component Id="cmp865A0279F0505342D92591693AEFB294" Guid="{7AA40952-0F7F-4E69-8D6B-5B3F0FB8BC15}">
- <File Id="fil4BA8708E0876AA3C81AC6953E6785F1E" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpF497CCD42DF29E18DADC560933973451" Guid="{D1DF3D7F-7262-46D2-B26A-5DDCA509D222}">
- <File Id="fil6AD68B9D149B5B0CD3F00CCAE5483117" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp2518655D386A2F4A993681E042D1A44C" Guid="{48A89A43-B1EB-4FAD-B02E-03AF71C1E407}">
- <File Id="fil3AB4072252CFCF1EE3B8336048E77641" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp5BD28FA385F1B1439470538200DC7E79" Guid="{E2FAE0C1-2583-4356-99B1-E91626D371D6}">
- <File Id="fil6B4AB5C9F42DAB933652843E65C130FD" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp70644839F91710AFDFE878516D1805E9" Guid="{8D097E1B-9F1E-4F23-B9FB-9D6CDE24CB31}">
- <File Id="filEEFC4311A283F9FB701B2F8A5D48FF11" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp710A2466AD5F41EF5F1E9415E1F4B3ED" Guid="{5E79F897-2F4A-4EF3-AF91-6E0C1FF3C4BA}">
- <File Id="fil8FBB1F875DCD0E049EB4482BF2845F89" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp7ECC93E7BC45AA54D8783E8596F355A0" Guid="{656CEEA5-C6F0-4542-839B-F221C6C77270}">
- <File Id="filF271D1BAD5B9002286BCFFCA7134B5AA" KeyPath="yes" Source="fio\usr\share\locale\et\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir0D1CBAE6166C19EF021370D031BDE97D" Name="LC_TIME">
- <Component Id="cmpED1DFB17427E5B90057EF1025FDE0616" Guid="{A2A3E608-2F72-4A5C-A493-C7092AE8CB30}">
- <File Id="filF8E004D353BEE510247D83A7168A01E4" KeyPath="yes" Source="fio\usr\share\locale\et\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir1C95CAE8B60B514F6EC72BE4240FFC85" Name="eu">
- <Directory Id="dirF1F1F82375C8DEE159630398A1915365" Name="LC_MESSAGES">
- <Component Id="cmp707FDAE884ACD72BDBEB550F1E59FE15" Guid="{52ACF92D-405C-4CCB-BA5F-722E71337E08}">
- <File Id="fil8DE557B082C4F61E59134E2183D1244C" KeyPath="yes" Source="fio\usr\share\locale\eu\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp896CA4A5F96CD3DDDD4055DA6E61BD60" Guid="{7192901E-02AE-432C-99CF-A9E62E298DDC}">
- <File Id="fil619FB701E97AF66584D2CF68AAA05D3B" KeyPath="yes" Source="fio\usr\share\locale\eu\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp254B9F30EDA86D2CCF978C1EA6D3B50A" Guid="{FB99F906-C296-45AD-A446-27C6CE2CDB87}">
- <File Id="fil9A7716571D0D7014F6D4304E0AE3F9AB" KeyPath="yes" Source="fio\usr\share\locale\eu\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpAA39D930ECE1D22E1F0744AF5C8E98B3" Guid="{611CF53C-6C90-4B3C-84DE-907A1C146FE0}">
- <File Id="fil8EFFF3C49D30B8B46453314CC17DAF3D" KeyPath="yes" Source="fio\usr\share\locale\eu\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dirFC6CCB7F2DE6171AD606844096AC28AF" Name="LC_TIME">
- <Component Id="cmpDD275257FB9EBE3AFB4193F3EB461663" Guid="{D3856C7E-E7CC-4902-9211-CBC4AF2ADCE0}">
- <File Id="fil7B97A486F0EFCB1D6CE4B4F6EA0F5B1F" KeyPath="yes" Source="fio\usr\share\locale\eu\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirC0CF68513B12EDE1DA146BCE9A815339" Name="fi">
- <Directory Id="dirAE7CFC1F2F93E25965CC0068E413C486" Name="LC_MESSAGES">
- <Component Id="cmp444C41DA63B68DBE5C7C34BA09C409BB" Guid="{E2E44FB2-352F-4150-A1C7-083C96E4F246}">
- <File Id="fil65F0917C6575BA383B3211E2CE7F02E0" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp3AD8168A7F718DEC7111099587C82755" Guid="{115DDC7F-A3CD-4A92-94BC-DD6AA54EE117}">
- <File Id="fil3CEA5ECFA680DC07B9E20CA1049089AD" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp74B68FFDA6BF9B934F870D280A1EE127" Guid="{1D59408D-6FB4-4D34-B302-981993FBA53D}">
- <File Id="filBDA6DA0F2EA013322EEBB6DB7D479EBE" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp38251F3F17B7BBEF58F3FB14D96DA2E3" Guid="{7054982C-370B-4F75-ADED-22AEBA622822}">
- <File Id="fil7EC45A6153CB149BB288E2CE036979F2" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp3D00EE6B3041D26C1B60FB37B4861C39" Guid="{B0F94326-B870-4A70-A999-7CC769CF6073}">
- <File Id="fil4F69EC06E02879BA102FB6F2FA77B288" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpF2E573754FE9062AE8AA561B62B3FDE1" Guid="{8EC90948-826D-4E70-AC42-CEC9ABA53432}">
- <File Id="fil6D66D5391FB813DAEF30ABA342C41701" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp9B9E1DDC079C4957A3DCBD1750083295" Guid="{7571E76E-47C9-4322-886E-69E7BEF7DC94}">
- <File Id="fil8B483FD5C606A2F33AF3AE48FA36964B" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp61F66D3A10352D557A1145DF7B1A5DF0" Guid="{6CB92C1D-6742-4529-9677-8EBF701B2705}">
- <File Id="fil7A5E71DC137F8A9C674E4B0D447AFDFA" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dirCF4DDB424C73430243414CF747562C17" Name="LC_TIME">
- <Component Id="cmpDEF9F22AA55C7EB758109F7912EBAA44" Guid="{4044CA76-7F19-49C1-9CFA-EC221189DB0A}">
- <File Id="filFAC065AC47D9A2A6B907845E7DB14BC1" KeyPath="yes" Source="fio\usr\share\locale\fi\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir4B1300F59987F8143607193B5E1C053C" Name="fr">
- <Directory Id="dir07AE6BE05ED44E04CE1B8CC606AE5A2F" Name="LC_MESSAGES">
- <Component Id="cmp351582D5A4C9CF20B4C755A011B7D42C" Guid="{F78578B8-F28E-4B32-BA0F-B1DDA3DAB664}">
- <File Id="filC979F39F20983C8918F6FADD78AE57E4" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp913F8C51D1B6F829E8F10C7A8614F3C1" Guid="{A5659B31-641E-43C1-A103-31B76DC9B4C8}">
- <File Id="fil868C7D4B81755544848855D9E2313F3D" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp5E72388119627E29D9B64E53E2194856" Guid="{7875C9CE-96E4-47E0-A11E-D0E27A404142}">
- <File Id="filB941A150F55F35130BB832552F5F96FF" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpC5D095E68FCB005D85C91D45C16FF907" Guid="{C3A05BC1-6918-4B31-B338-A7CA8696F734}">
- <File Id="filDE150C606BD926B7963CE22CDB8C73EF" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpE80B3DBD2BBFA6E7728409E4D1655F3F" Guid="{27E8219F-B732-4FB5-862C-86FCDB2E933A}">
- <File Id="fil1AEB16DAF23F8C455DB95E20D3430E0A" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp7088FA41D4E9CDD1BA50A98FCDD2C956" Guid="{6201E1DD-6161-4820-86F9-DD25A8BC5CCE}">
- <File Id="filB6A1574369F18CEF499712DF669753A2" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpD5E5C4CE2637AA99140ECCC483E2EF76" Guid="{2BD8270C-5D01-45E6-889A-549BB05149CD}">
- <File Id="fil2352ADD8A2E3E44D7039B5153569A179" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp532386E06F73408953D8E5DA9AB323F4" Guid="{330B158B-0039-4BE7-947E-E0056D2584F0}">
- <File Id="fil4279183560CDB9450346D389B31DFC22" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp9613F51CEA633F433AEC13836BAB0D6A" Guid="{A62D061D-C2BA-4331-96DA-294B16E20841}">
- <File Id="fil993697BB5E935EDF17438C37E98B8836" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmpD7FB67D4C543F838BCF72A2B0E7CD722" Guid="{E98F907C-02B5-4FBB-B2D5-68CA1EF8CB53}">
- <File Id="fil0C105FCB9347263080A1E6E7378C3203" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir8F3931911BDE53C497DBA617F2DDFF53" Name="LC_TIME">
- <Component Id="cmp695388431BB74FB4ED4B94D36EF802C2" Guid="{BFC0E007-B469-4FE5-A915-82120BAB8724}">
- <File Id="fil631500F169555F17307FD9DBCB9E16F7" KeyPath="yes" Source="fio\usr\share\locale\fr\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir3499A227D100230A6954246C075DEF06" Name="ga">
- <Directory Id="dir10586CC5E754D432D3F58D06DEE3A1B3" Name="LC_MESSAGES">
- <Component Id="cmp9EC57551C0B7E46658A8652BB30AD644" Guid="{3C016499-E4AD-4CF1-9845-4914816FA6D6}">
- <File Id="fil420B4C86FEFA769BDC63CF3318465C8E" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpC1DBE45F2647F07AE5FFA4BABB6491CF" Guid="{4D56B583-FD1C-4190-A18C-F72606C30CC2}">
- <File Id="filEED8BBE20CAD410CE0829F5BE2CBBC87" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp4624DE82A2562D2474AA6DF75871C9F6" Guid="{683993F7-FDA7-4D9F-A731-20FDBA05BB12}">
- <File Id="fil93916D9A2BF000BA1B22DBA11F0E0C1D" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp5D0423231053AB52244EC955D2C4EE0A" Guid="{1577E05C-90F6-40FA-93AA-AF3D160AABE4}">
- <File Id="fil1B200513F2DD5635B6185340BB945416" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp0E48F1B8AD671B0FEA3C24CDAE565EC3" Guid="{9F049425-27FC-4D8F-B8E4-F7E12748FBB8}">
- <File Id="fil2A79684BD367024BD6E648F908B8EF43" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp1652B614395E2E654C4D15391C41C3B6" Guid="{6A8A223B-D5DA-4EA6-A0B6-58AA51D5D7E3}">
- <File Id="filD0D83786737DD3AE9F6C290BF1F640E7" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp0E39DAEE5FA9D2918DD73D71DEABB7BF" Guid="{AB6AA092-F30F-4D07-8CA8-FEABD0D8C453}">
- <File Id="filB2C5E9814FFD89B2706CE801E653F8EB" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpBFAD1481D8E8150D99B230D0EE3384D7" Guid="{98200A7F-6701-4304-B029-8EC66EAEFD07}">
- <File Id="fil57F48D1A06ACE984D4CD5DCD148BF59E" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir3BD6F42F9C34D0FB15DDA9EC3352DD5D" Name="LC_TIME">
- <Component Id="cmpA464E9CC6AD158CE17876A43C82D0E42" Guid="{B9C72B58-00CE-4482-B4F8-CACA7F16047B}">
- <File Id="fil8373DF872826A0D4D7D070ECD3F9C8C2" KeyPath="yes" Source="fio\usr\share\locale\ga\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirA0761122EE842B3D656156F670A2FA88" Name="gl">
- <Directory Id="dir47572DF671DC39BBF49D3F227EDCCF2D" Name="LC_MESSAGES">
- <Component Id="cmp9FB390488C266A627C888BFB96D9142E" Guid="{EA1EDA6A-FBDA-4D29-846C-BF8299440040}">
- <File Id="fil011C29CB0827C274EF508C3BE6897AB0" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpF851F8126716D6E02E48295FE765A030" Guid="{6D900A58-3385-4A22-B796-7D87D83C4410}">
- <File Id="fil80354EFCA566E1DFAC25FC11909DC3CE" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpE4EEBF028F91885E60C134FE8F9B8D45" Guid="{553BE685-40F3-4A50-BCE6-15124E7522CF}">
- <File Id="fil76464936D5C1063C9396B51EAFF7DF43" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpCD389DF0D2DE69EC7F4D2EAB8320EDD6" Guid="{4F3441FC-63AA-449B-B892-3C3A4DACFCC6}">
- <File Id="fil5F9B704D293D07654999E2F867BDBE7F" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp297E8FBE3C08541612E9D940AFD86838" Guid="{8A8705D3-3449-478E-AFD9-78CF39E14E66}">
- <File Id="filEFAF9014319AE020956EA06FC99AD321" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpDAB8279F90839D11951F5D4B590AC727" Guid="{38FBEC01-0FA8-477F-9036-E98795D8C004}">
- <File Id="fil8B51710021A7F0BC713F17692214204C" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpE628F1E78132BF2849C00BD50695111C" Guid="{14D08F9E-300B-41EB-AA86-DF7047493B2D}">
- <File Id="fil3A1FA3E751D2FAFD12FA78FBEE0DA3EA" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpC88EA24A5B493D67CCAD0D56A8B9AC16" Guid="{C7C522AE-2B62-443F-82D9-C7CD07326A46}">
- <File Id="filD027B9DBF3FA7140BED87BC92EED33A5" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir82223E8694F6537ED26B3BE595A66938" Name="LC_TIME">
- <Component Id="cmp48BC66C4EFB41F4B04EA3C43E478448F" Guid="{84126712-7F90-4A1F-9D66-220B5A965F9B}">
- <File Id="fil815F997C5C095E00DF07B53EE34F44FF" KeyPath="yes" Source="fio\usr\share\locale\gl\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir58E306336244914E1514F4E1304441AC" Name="gu">
- <Directory Id="dir4F18A41B38D188E1E0AC54182C37A1B6" Name="LC_MESSAGES">
- <Component Id="cmpA7B1ADC5080C09099A8576749ABEA91E" Guid="{DC0722ED-06A3-40A2-8E74-2E62AF41174B}">
- <File Id="filA66B5C8F919F05A3FA19EDE675E377AD" KeyPath="yes" Source="fio\usr\share\locale\gu\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir13C0962B6A8A52D0E77D873F54325299" Name="he">
- <Directory Id="dirA046EC75E82DD38151CA35AF77716176" Name="LC_MESSAGES">
- <Component Id="cmp658D34CE439FFFFCB8D8A16D9A81884D" Guid="{08E58BB0-3E22-45DF-9329-775D8A98F40F}">
- <File Id="fil83C8740B891D39BF3FDB48080D3BCF0C" KeyPath="yes" Source="fio\usr\share\locale\he\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp5AFC15103FE4B0EA5219029104ED7322" Guid="{860F664A-95B6-47CA-866F-24D85804D93C}">
- <File Id="filBEE262FFA9C500AED5536C6CFB061A25" KeyPath="yes" Source="fio\usr\share\locale\he\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp4D13DD47080E45BEEE71C1C3E2752FF6" Guid="{BC5E86E0-56CC-4D30-B48C-21CBFB2978E5}">
- <File Id="fil69F9BC562D14B0D0043359AD10B5AF24" KeyPath="yes" Source="fio\usr\share\locale\he\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpBD76B515A6DA775C0BB9FD70014A9E8E" Guid="{428E3C66-47AA-4EDB-83B3-F14D7E91C3CE}">
- <File Id="fil6BE2C0048E39CE46804557742D5B246B" KeyPath="yes" Source="fio\usr\share\locale\he\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp2EF2DFA5A57586F4E1EB25CAD7F2CE1F" Guid="{3BB594D4-8021-4BC2-88C0-988CC891B2F9}">
- <File Id="fil2A7F426CFACE4DC4647C49829441DE18" KeyPath="yes" Source="fio\usr\share\locale\he\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp40759E2F6CE67706A49044900275D2A7" Guid="{E0DD6E67-8AD7-4E80-8572-8E083CFC00F0}">
- <File Id="filDD0FC596F1BE7809B3689953BF3F6DA2" KeyPath="yes" Source="fio\usr\share\locale\he\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir7986C4DFFC7987AE0FD4061A103D5BBC" Name="hi">
- <Directory Id="dirA7FA6F2B6AB193C759C3FA648918567D" Name="LC_MESSAGES">
- <Component Id="cmp18CF4DD11DB5CBC9CE616860D7354BCD" Guid="{2F6382C1-6E2A-4A69-9206-3843481A9CA7}">
- <File Id="fil003D8A0B6776AA3C224C3C133915A6F1" KeyPath="yes" Source="fio\usr\share\locale\hi\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir3C7F83BF0B01DCA2BFA11C1EA8AA5CF7" Name="hr">
- <Directory Id="dir3F341A58F4B3A075F2E4F1610BEE7B36" Name="LC_MESSAGES">
- <Component Id="cmp00DA34BF53F3AB023157E57187837AEC" Guid="{8A657BF1-CF1B-4F96-82C6-0060220C5DC2}">
- <File Id="fil409844A7C449D6F1ED50A9C1381F897F" KeyPath="yes" Source="fio\usr\share\locale\hr\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpE01D25DD861C846344A96FCD3ADBADE1" Guid="{B316CE90-B94E-416C-A525-AAFD88084638}">
- <File Id="fil0F3A7D084D265DB03F57108858A35E4C" KeyPath="yes" Source="fio\usr\share\locale\hr\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp43B2057A4AE42257B552C37B36185C32" Guid="{78D6A93F-8E98-45CF-BA30-71AFAF7AB8A5}">
- <File Id="filB57BB2C6BA22C03349E0B74F532D555C" KeyPath="yes" Source="fio\usr\share\locale\hr\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp8D504150F70679B09D3ED3F7824D5D2C" Guid="{07881D3A-C774-4EA4-9677-6298C14F9752}">
- <File Id="fil0FCECC6804D01679D52DB772F424684B" KeyPath="yes" Source="fio\usr\share\locale\hr\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp054BC02ADE903B13545D881B4115B5AF" Guid="{65E0552D-B2D6-4010-9ACC-623627778303}">
- <File Id="filA1F1951A66D19F8CE321A0186E85DE0E" KeyPath="yes" Source="fio\usr\share\locale\hr\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp1591A87C0C73395AD275B06F9610DA38" Guid="{A60D2376-FCFE-462C-B08B-94116C69B1CC}">
- <File Id="fil941E75994A2AAF7DEA3D634AF33855A3" KeyPath="yes" Source="fio\usr\share\locale\hr\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir68E9FF0AE5707A85EEF106AA40B0F417" Name="hu">
- <Directory Id="dir94D8E7652EE12F3C1FCE450F08527A6B" Name="LC_MESSAGES">
- <Component Id="cmp36F32589D35527BDB4DCB6139462BA04" Guid="{EF35511B-F265-4995-81CF-8BE4CF31545D}">
- <File Id="fil95B7391FADE3DCF6CAC06A538A8A19DA" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp07D2A9CC31CB01C024D4F20F0F87D00B" Guid="{4F4C687F-F9DB-4E5C-A22B-E3E4FABDE9C5}">
- <File Id="fil3B6992A26CA8B828CEDBE1946E71F4C3" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp989DA8710B9EF5299BFDA16DF5CFA090" Guid="{F1102EB0-E8E8-4FEF-98B8-EC6A2B0C5401}">
- <File Id="filCEEBB55FABBFE63845408C608A405DDF" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp71E485FAB3F690A9C6FC725999F641EA" Guid="{B3F92109-D552-44C4-A711-950E3FF25F3D}">
- <File Id="fil688A07DF91D6178D9AA7DA34D66C9F32" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp48803F07F5B3B15DFBD4CBDEBF7144CB" Guid="{52E75457-AE5E-4CBB-9FFF-C0067D55A8D1}">
- <File Id="fil7987462F9633AA3353A1BDF3409A4775" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpE95D500327AB1A0C27DB872836A82AA1" Guid="{BD2C7CAF-3841-4DE3-9E0B-EA1FC212268E}">
- <File Id="fil24C9BC1DF344D417EF8281164D800D9D" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpF7BA514FBA3CEBA55BC4DB970C5DF045" Guid="{1754FE80-0BC2-491B-9EFC-32C06C1AF50D}">
- <File Id="fil59C64CFD6B07363CFA3860653516FB23" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp1381F7E686BA05987CEA8931263B082B" Guid="{A68CCC8C-5731-44AF-8649-A4859F82ACCD}">
- <File Id="filAA0957E0BA2C912CC792FCCA68A536B3" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir7E10BDA835E93E26A583DEDFD4D8A7B2" Name="LC_TIME">
- <Component Id="cmp6FD21F5C997FC8A295DC78973360B199" Guid="{FCB96887-5E69-4F0D-ACB4-174546DEC8D2}">
- <File Id="fil0DCD5FD86ADAA6771CEE31B435EE8283" KeyPath="yes" Source="fio\usr\share\locale\hu\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir32D6AF4973494B4360ECC9F88615898C" Name="hy">
- <Directory Id="dir215F9C75BAD0E86CC4AD6AFB1AD459A6" Name="LC_MESSAGES">
- <Component Id="cmpE2A56456F717C1BF379D260BEEB45814" Guid="{4FB05858-0598-425F-B6D8-A9B7954C58D1}">
- <File Id="fil41B1EC28D1A3370E82EE7E55FECB4827" KeyPath="yes" Source="fio\usr\share\locale\hy\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir9C49C0B0746EF2E05B2F59FD8FF517E4" Name="id">
- <Directory Id="dir8AE64D1E9072C7032F276AFD5B047003" Name="LC_MESSAGES">
- <Component Id="cmpFAEE6E422AE0E8B9038B121688A3F7AA" Guid="{7ABBE0DE-8559-4C50-A7D8-E0C192052211}">
- <File Id="filC3E93B71536F47E09E69B5062A7140B8" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp1561AF3AA004F8AA72F94BFA779E1F8B" Guid="{AD7B93F4-F2A1-4231-9DA3-C8E8FAA72B87}">
- <File Id="fil165F185752411177D8FCD494225BC4B0" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpAFE20E6A3DB2F81C8ACE3D5231129D4A" Guid="{07565584-9290-4506-AE7F-CD78D537FFBA}">
- <File Id="fil24162B1A50BAB110E0DE01026DD3F7A1" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpC98C3F9E9868AE2DAB19EEF5666A2426" Guid="{15009687-082D-4651-8F5D-5ECDE6B6C391}">
- <File Id="fil8F842C3398E67A3FC09C8F345C3B9B33" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpB51359987EF01D01960E72FE4A62A293" Guid="{44E367AC-4E07-41E9-8E7C-A657B99ACE31}">
- <File Id="fil92C5171105993DD862BD72EE59E1E72A" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpB423F9BC389D1275E5F498BDD089FC30" Guid="{AB631AE0-E73A-4605-87E8-1892AD09964D}">
- <File Id="fil3187C58D2D2C1B8E4BD832738CF2280A" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpE076FD2614CDDAFB9AF65C5E99F91084" Guid="{0D0427CD-4609-4BE2-B76D-63961CA4C872}">
- <File Id="fil894367D4973C289B370AE790DF5ED9BC" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp38ACFE6D2DF349A1389A4E138EF8AC46" Guid="{B85E0953-6084-48A3-85C1-E01873FAE545}">
- <File Id="fil63CF7CB29F4FBAC4DC51C106488913AF" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp385FB199DF5A309EE7885AB8D1C85CD2" Guid="{59FFB964-49CF-4663-AD86-252F3E371972}">
- <File Id="fil2B7A45FF4A7000D1A62ACFD3E56B71B8" KeyPath="yes" Source="fio\usr\share\locale\id\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir833E0A4E07E676F2544EC4922B9BCA2B" Name="LC_TIME">
- <Component Id="cmp520C6481D5C4F782913A215131A8279F" Guid="{BD850C84-3DC7-4B93-A746-48DB0C17FF1F}">
- <File Id="filA8BE80B2BBACAE4371467BD36CCA872C" KeyPath="yes" Source="fio\usr\share\locale\id\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirEC63C9C503D8C0D3F7B86D4BA04C3F77" Name="is">
- <Directory Id="dir2B3BE239686DC1989F226A452490013A" Name="LC_MESSAGES">
- <Component Id="cmp444CC7A68ED4D3A309E4BEE6426682FF" Guid="{DC342622-A2A9-4CBD-B3FE-22C1EA0DCCE0}">
- <File Id="fil5DEBD321FB9FC8C5EAE66CA9581417FE" KeyPath="yes" Source="fio\usr\share\locale\is\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir113F2159E9C4D9DC2F49E7D54621AB66" Name="it">
- <Directory Id="dirD229B588D5540C9DA97AB114609495B4" Name="LC_MESSAGES">
- <Component Id="cmp322B77A7D1D11CCE54B37F6D57023084" Guid="{B0CEF06F-6723-44E1-A910-0576ED65B404}">
- <File Id="filA223EA5441CE8B26E233AA3DBCBEA3B2" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp439A5F198D44C4B7D1EEE0664096DFBC" Guid="{939EBC8B-197C-4741-95C5-CAAC463F86CD}">
- <File Id="fil54844431AD854AC00724B94E23F234E0" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp2CACBB359E4949AC9E1F5227FDC5C3B9" Guid="{389EDBB9-E7FC-41D6-8D46-2C3738EDC315}">
- <File Id="fil11195E4008F75B0F470FB7FC41139270" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp4A125E552F0C08737352D371C0AD6AE0" Guid="{36D05CA3-7675-4866-84CF-7B0727C4B145}">
- <File Id="fil3BE737069F4483D8370ABAB677276FF6" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpCE5C53F0978AEC1A4E2418F025B1BCC3" Guid="{B69FB2BD-07F7-43A8-A99B-BA26C35002AC}">
- <File Id="fil3B3AB03EEFE3410380B0447322B81295" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp76ADB4B69AAFFE611F86C0E952C30403" Guid="{02A361CB-23CD-48CB-9190-A1E6C9AA77DB}">
- <File Id="fil19D9EF43A6A8CEF490C3402F417598A1" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpB64583EE9FF49CB58808756751D4770C" Guid="{870AAF38-C7A6-48DA-9437-70EEC3BF410A}">
- <File Id="fil6A8B6B03EB559D73F8B06097615A8CA0" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp6380B905DF4DCCD1D636B99E08BCF196" Guid="{9210B58F-C52C-4624-B1B4-D001BF807508}">
- <File Id="fil5D1F6E8F401B716BD586313D94C92BFD" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpD7C745CD6D59B413B54094FAB126F273" Guid="{EF7B03E3-F076-48F7-82E1-FC9F15B0FFC4}">
- <File Id="fil31ACAF8F40C5BE1543599117F5375026" KeyPath="yes" Source="fio\usr\share\locale\it\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir742AE5E2ABFEBB0803BBA0E3BEFAAE1C" Name="LC_TIME">
- <Component Id="cmp10D5EE561844415384CC140E26B510E3" Guid="{A75CC6EA-5101-4EC2-B350-45AE9EA71B2E}">
- <File Id="fil45BF7C960C8066EE6CBB189C5B9643CB" KeyPath="yes" Source="fio\usr\share\locale\it\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirD0CDF805BB12E5DF0F9A3A4FF4DF60C5" Name="ja">
- <Directory Id="dir8B72AF19E46B6F5079E753353BCCA312" Name="LC_MESSAGES">
- <Component Id="cmp66FE9BA1F65FC9157182077B62466F11" Guid="{BA5EA1C7-88A7-48CD-886A-08871AD5A509}">
- <File Id="fil3A059E6DEBBB55CA92B50E78D0CD9928" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp5AFD1A60368D9D24783B3FCA93D79F8A" Guid="{49FB4504-1D59-4464-9237-1BA7FDFADD24}">
- <File Id="filF4A56E086F11C0AC0254F28C260195F0" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpC1ADA336C627FA4F6773FCDBCD5CD718" Guid="{243BDE31-082A-4B4A-932E-9DC8F74B23E0}">
- <File Id="filE3B98EA5BF294960EA97CCAD0679D262" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpD797973DA0CC202C7F5F790ED2E8C702" Guid="{50F08451-761C-46FC-A915-ED7B7EC9B482}">
- <File Id="filFAE7A279E42BC6934C3AFED37AC72B2A" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpD167D5E034ABF463E154A6620F55DE79" Guid="{BCB014BB-72D1-48F8-9509-F979FFDE6BEB}">
- <File Id="fil39C3CD4280A865A4421A3AEC8DDF5107" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpAB0C761B50EAF9B60BC8EBCA592DCF81" Guid="{A8691A9E-0A2C-46D0-887C-E938175024A2}">
- <File Id="fil18F11946A84D5F1403816C97B3AA7018" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp70BFA76F16D7E0C6B3AB89C7A436727D" Guid="{DA39EE94-F860-4FB3-A154-2B0AE9787F8E}">
- <File Id="fil289415DA2A9AD9CD1A301E03BDB86034" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp26500E9832A70417C6FB6AD635BD4D40" Guid="{E20F1D2D-9BA5-4BD1-83DF-B672310D8B39}">
- <File Id="fil1EE500913D8E9775406BA5D7BAF5D9C3" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpA121F8D2EA403BABE25C27A433854D70" Guid="{D3CAE727-9716-4F08-B8D5-000D336A582E}">
- <File Id="filE839F6FE6CEF2B9500F12136758012B4" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmpD8370D4B3CB1BED0029772D29418AD5A" Guid="{5ED30BFB-6A84-43A1-9A9E-7A9BD50BE610}">
- <File Id="filDD31FDC7726396997AD22D6B951AA7C6" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir525EF1422BE56E047A2AE0180F0505B0" Name="LC_TIME">
- <Component Id="cmpF126107CF826AE92E666617D3B5595A2" Guid="{5E2D8982-2FA3-4253-A91D-F542C8DF8E20}">
- <File Id="fil98BC1478DE12739DA969C8D9734E3CDD" KeyPath="yes" Source="fio\usr\share\locale\ja\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirF6059E18E3AD260A980C697B89CC726E" Name="ka">
- <Directory Id="dir3098EE64C5434423570A16A50BD2809E" Name="LC_MESSAGES">
- <Component Id="cmp41DC357352355A1770849DC9E1023ABF" Guid="{5857A277-BBCF-4029-9434-68B7B1719569}">
- <File Id="fil7F45B506C150BCE66395086C206C6F91" KeyPath="yes" Source="fio\usr\share\locale\ka\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir4211622F8E4DBFE704DA8A0F8185EE06" Name="kn">
- <Directory Id="dir7A180552EDD06107EFBF459A287F54AD" Name="LC_MESSAGES">
- <Component Id="cmpF51139D120CFEC070C8E6B8745210B21" Guid="{A5955A6B-1425-476D-BB0E-EE99A94E9054}">
- <File Id="filC60FB0CBFF42D9F6EC963B071F1D1AFF" KeyPath="yes" Source="fio\usr\share\locale\kn\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir728D8C821BD85EEA283B43263E68D5A3" Name="ko">
- <Directory Id="dirA0254508E1CCFEB1B05F0B3F4046790D" Name="LC_MESSAGES">
- <Component Id="cmp0C7F519D3F5A58C9A89FDE91612F2DAC" Guid="{D2037549-005A-4308-A2B9-DC97136B15CD}">
- <File Id="filA535F3B4CF13E58A7DA9C8B4974AAD62" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp589FF4B883BC0C0322B9EC601598475A" Guid="{4D731E81-ED0A-4EF2-916E-DCEB0CD554B9}">
- <File Id="fil9C2E6CD2E4B3AD836FF4E7FD637C9C49" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpBD48FB1C49E0B0659BDFD64EDA0D7E2F" Guid="{EC4B1C54-620C-46B4-9075-24CA50D6FB32}">
- <File Id="filF02F5173233392B106FEA4F024FC97B0" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpDA05AA76C902EB0C5E099AD6CE93CF5E" Guid="{249943ED-A703-4E45-913C-8607DB75EE29}">
- <File Id="fil7F6D6ABF84C38FB4B27D741830BA4DCC" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp3D88D47B5392749983528A62F8831FDB" Guid="{8F6CCD05-51AC-49C3-BFBB-1EC0CA93CFA1}">
- <File Id="fil243777790BD7DF47AF2081F269D60B00" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpE12FE901CCFAE702EB2B2BABD2073EF6" Guid="{E1CA983F-5C02-4D46-B70B-978E33B4BA5A}">
- <File Id="filD1E1BD3778953DD3844F61C7CD350FAD" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp4DFC5121C41016DD1F79B9D16104E7B9" Guid="{4A4AC299-38AD-4AA3-B57A-EB7B73C4CC1C}">
- <File Id="fil2DD786673313F9A75A53CB0E07E79016" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dirC88C5685BE363A7303E69E5B7F168000" Name="LC_TIME">
- <Component Id="cmp84BCA49BE062AA8399776E1A9E2444EC" Guid="{2457F5A2-C9B5-41E9-8A64-187DAEC10CEC}">
- <File Id="fil96842CDF01E81CC761C5C41801CC594D" KeyPath="yes" Source="fio\usr\share\locale\ko\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir9749F59399629F93CC5C53FE8F23E44B" Name="ku">
- <Directory Id="dir680BF4B132F2895FEC07C7954F4EF606" Name="LC_MESSAGES">
- <Component Id="cmpCB9B27A14183F4D1274F1706FE2FDF3E" Guid="{E68DE63D-B2C6-4414-AB57-EAB781693563}">
- <File Id="fil9621F0532F3D0E4271E45255F278265C" KeyPath="yes" Source="fio\usr\share\locale\ku\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir140BFBCC767D7E6C93A92F0E2F2792D8" Name="ky">
- <Directory Id="dir6922459C37E2F6429BA764B77AEEE95D" Name="LC_MESSAGES">
- <Component Id="cmp941AF1210268727645FC5AA0879E61B6" Guid="{C4AE283D-F1E0-42C3-806E-3BF3CC731AAB}">
- <File Id="filD336D39AC0F01E92FC042DF2236588A5" KeyPath="yes" Source="fio\usr\share\locale\ky\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpC4881A4BA448D4D96C20AC9D8F190DC4" Guid="{9154924F-94CB-4B72-8350-CA1A49F99503}">
- <File Id="filB27CC51788DBDC97BBE115FB2D849742" KeyPath="yes" Source="fio\usr\share\locale\ky\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirC8108C5FEEE8C3DD7E700FD0CAC6EFB7" Name="lg">
- <Directory Id="dir18E0E675B9D85A0D7C51956EB54D743B" Name="LC_MESSAGES">
- <Component Id="cmp4BA91392D4AB0BE0270B19D74B1EE71A" Guid="{A753F1F0-9713-483D-936E-74BA56B7D11B}">
- <File Id="fil6FEA0C5EFA5B7DF6D548993F2E20A9DB" KeyPath="yes" Source="fio\usr\share\locale\lg\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp1287A089690E166E53C60220E0C6D5E5" Guid="{F90F0778-D0B1-49F2-876A-7D727FDD7F65}">
- <File Id="filA7D247F5B5C426825F7976CA471FB516" KeyPath="yes" Source="fio\usr\share\locale\lg\LC_MESSAGES\findutils.mo" />
- </Component>
- </Directory>
- <Directory Id="dir9FB832F21E3149B4806CCB985BAD14EC" Name="LC_TIME">
- <Component Id="cmpDF6B9E20931386F9B3FD820FEDD8F181" Guid="{19F40615-3DB9-4BD9-A271-73178A2805DC}">
- <File Id="filC773315D4AA454002391481E5CCBA4F0" KeyPath="yes" Source="fio\usr\share\locale\lg\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir94D477362FECE628A367A087597D123A" Name="lo">
- <Directory Id="dir728F7B158ED3B9B04DB034CE1CAF8A00" Name="LC_MESSAGES">
- <Component Id="cmpE457674A9533925FF5202266B021F57D" Guid="{A2E55ACE-7FA5-41C8-9DBD-92CCEC844796}">
- <File Id="fil61C3A27A92A85A8A9D2819BBD6D6FD35" KeyPath="yes" Source="fio\usr\share\locale\lo\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirEBCE19910DECAAF42006323B5B0511AE" Name="lt">
- <Directory Id="dir51B5064AF7CB63491A1DC1551587A4D1" Name="LC_MESSAGES">
- <Component Id="cmp98BA28A33DC014EB45EE12B6BBDBB4EA" Guid="{88F5A24E-3042-40F5-9565-5B36F1E27988}">
- <File Id="fil6E1F3AF13C9DD59F3C07CDC2ED05DA1A" KeyPath="yes" Source="fio\usr\share\locale\lt\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpD0AE8C0AF02547B4B260D56730B4894D" Guid="{130930EC-DC59-40E4-9FFD-B26B8E05383F}">
- <File Id="fil858E7D853F5BCA54006C51749038CD21" KeyPath="yes" Source="fio\usr\share\locale\lt\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp6A93735C5F50C914D2C2D33AAAC68E1D" Guid="{D34E8BC3-ECE3-4256-BC98-9DF014A77F0F}">
- <File Id="fil1EBB9119F2EB265F543DE5FE17343BD2" KeyPath="yes" Source="fio\usr\share\locale\lt\LC_MESSAGES\grep.mo" />
- </Component>
- </Directory>
- <Directory Id="dirBFE134AFB6DD0CA3BA0669A10AD82C73" Name="LC_TIME">
- <Component Id="cmp83B712AEAAECC25B9AF637C051072216" Guid="{4F4DC128-55BB-4462-A363-BCBBB6B6DAAB}">
- <File Id="filC929A2D1CCF0C6A73CC710F381BD118E" KeyPath="yes" Source="fio\usr\share\locale\lt\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirAA734C497BD03AE0D47AE600845CB671" Name="lv">
- <Directory Id="dirF8DF4BEB719BC5B7FDAF60EE216731DA" Name="LC_MESSAGES">
- <Component Id="cmp03B746D1376D6419D90E44ECDFF65398" Guid="{AB810F3C-FA20-4A10-9556-67A2B02C48CC}">
- <File Id="fil54EA52C2D855E3941C6A9E035EABC6E0" KeyPath="yes" Source="fio\usr\share\locale\lv\LC_MESSAGES\diffutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirF6A808F03A0CB056A68314F0ADD008F4" Name="mk">
- <Directory Id="dirB830FF2CB34769098B7A93F0A479A0F0" Name="LC_MESSAGES">
- <Component Id="cmp95C1DD3B3A52799D7D6EC3383154EBD7" Guid="{CFD46E9C-46CC-4A75-A30C-25BEC3A22822}">
- <File Id="filAF356418E0520BBD78439181F8B0FB1E" KeyPath="yes" Source="fio\usr\share\locale\mk\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir9A42BB71AB00B64A5023F9BE6A557830" Name="ml">
- <Directory Id="dir937FFA2D85B4C6E17853786CC33C15CA" Name="LC_MESSAGES">
- <Component Id="cmp7A363A10513A6F1385AB29F94A5820DC" Guid="{389583ED-8A68-44A3-8EEE-8D93F5A61ADF}">
- <File Id="fil16D5F0469AAA2E2EB1B258364F3B1D16" KeyPath="yes" Source="fio\usr\share\locale\ml\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir4A98770672425DF346110013F767549C" Name="mr">
- <Directory Id="dirCE56A8469801EA7F0972EC7BF1103E84" Name="LC_MESSAGES">
- <Component Id="cmpEED3E58AE47A2B0CC6A9E9343BDB28F2" Guid="{2CB875D4-D9B7-41BD-A156-7BF1CD0C10E5}">
- <File Id="fil7EF96F56AD605862BC569509C08E5C0C" KeyPath="yes" Source="fio\usr\share\locale\mr\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir771C652829A9A9610FDCE26F1844EC73" Name="ms">
- <Directory Id="dir966E5FB0FFDF30F7D2D7F25F53846B37" Name="LC_MESSAGES">
- <Component Id="cmp2776AF199AC974448E15E51DC0B1784C" Guid="{2376C167-18E7-4952-B509-275ED5420DB2}">
- <File Id="fil7EB97CCB2DB0B3224143A33B19AED985" KeyPath="yes" Source="fio\usr\share\locale\ms\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpF91FCAAEDD26A175714D7219978F81E2" Guid="{82BDB129-5E33-4B91-B646-4A5DD87C9D56}">
- <File Id="filB202473CE3E4FFC33D7E3CC71175BF9C" KeyPath="yes" Source="fio\usr\share\locale\ms\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpEC68D580BC1EF20D1F2209F2652B57B9" Guid="{2DC6A273-FB58-407D-9EE9-1A76931F466E}">
- <File Id="fil3393E12EDEF029EC790F9147E326591F" KeyPath="yes" Source="fio\usr\share\locale\ms\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp3EEEFFBC5E37C932D72639A142E60119" Guid="{515CB8F4-9AB4-4EE1-8850-15E29B807A07}">
- <File Id="filC3F06CC0EA38A73EC2E9E5C8899A69B4" KeyPath="yes" Source="fio\usr\share\locale\ms\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp6B899AC5F6822B08882D1AC42EC23A06" Guid="{C780FE6E-1E91-414E-887C-E5BE07FDB12A}">
- <File Id="fil6FC9010B99A247E080A92EEA8DB956EE" KeyPath="yes" Source="fio\usr\share\locale\ms\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir1A15818065BB28FE22BA31431B003A94" Name="LC_TIME">
- <Component Id="cmp8E41AE6C17C96F1717EBE9D73070ADAD" Guid="{DA3CF612-C4D8-4827-894F-570141C71E49}">
- <File Id="fil10CD1FB5CEB4F7EC3DE020E169F08316" KeyPath="yes" Source="fio\usr\share\locale\ms\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir6A9CD52D21A938F29E49ED5D1060C4D2" Name="my">
- <Directory Id="dirE9CD6EB0F7C697BCA9D0F0116B5DB839" Name="LC_MESSAGES">
- <Component Id="cmp2F02F711F1E0B0AA633D9E447F2CBAF3" Guid="{450B04C9-AF9D-4082-BC59-22348F52F237}">
- <File Id="fil6F5E91C12BA42E4478F9C7F50C4D6DD5" KeyPath="yes" Source="fio\usr\share\locale\my\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir1DF22C6BF6AFE69FAB5BB372FF012775" Name="nb">
- <Directory Id="dir73EF27CCEE418B6B35366A188773F733" Name="LC_MESSAGES">
- <Component Id="cmp7ACE1A8F6C3D5B9314160C9DEB0DED71" Guid="{54071C65-1BDE-4A19-8F01-BF40C95A845C}">
- <File Id="fil1D65BEDB412DDE0808828EA5843A3B9A" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpCA4D0010C195F6CAD569DD9494C693C3" Guid="{EB5F7DB1-E69E-4A7D-92EB-0B344967AB80}">
- <File Id="filEE6B488BA1049ED6A639C38AB68CC0F5" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpF0104D0F8BC6F24E0A2FAA495D57E5A3" Guid="{AFD2262F-0520-41DE-93F9-56030EB7B1A7}">
- <File Id="fil1DC44793E6CF3639AA7619B9B1BB7D64" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp64CD2BAA653B95FC8BDC0654BCF5FDC9" Guid="{D1D6B1EA-D0B8-4014-90D3-DE841F57F0A5}">
- <File Id="fil6AC6412FFBE61B92CBBBE2C60D82E833" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp98254A0C34D49D5FDAD95CD79742C938" Guid="{879EBA14-04F6-41CF-BF21-E868FEAD853C}">
- <File Id="fil2124A4B485135E0060213E3928552550" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp7070AE1E512A5ED05EC309A26BA3E125" Guid="{98F09F26-ED79-42F9-8724-5029E7C93D2B}">
- <File Id="filA23A6196FDA1EF4C9D4B0038B3D8C8C6" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir3792626FA80E4371E0DC272D6F2749ED" Name="LC_TIME">
- <Component Id="cmpF962BBBCE0A59101E502B7AA33FEF011" Guid="{C7C966DA-42BA-4F9D-A63F-46CC5A12B901}">
- <File Id="filEE2443464078FCF9D1DB8BB2E2AA93DF" KeyPath="yes" Source="fio\usr\share\locale\nb\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirE5C31B655B7B3D63F12BF36E7EACD855" Name="nl">
- <Directory Id="dir3B37854DBCF1BEAF54C42A0330891485" Name="LC_MESSAGES">
- <Component Id="cmp699D62DECF532EC4D60217C31AF73ABA" Guid="{E8D14A84-F05E-48D6-8089-9805900FA925}">
- <File Id="fil2403486489AAE77EA188B91ADA931502" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp45FBAE468210B7AD7B0F57C306B4FC41" Guid="{F4D77E02-AE2A-48FD-9457-86A03345B4E3}">
- <File Id="fil0285E63C6BCF688DFA436B6B0563F777" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp721DCADC2F53036E2EDA036546F6D548" Guid="{CE7AD012-752D-42E6-81CE-ABBE0BA76D61}">
- <File Id="fil581060E4BCBF9DC574FBDFF66E1A02E6" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp716ACCFCFFBE4B36C21A0D3555AEDB41" Guid="{BF58B33A-30C0-463A-A970-82AE5374F05B}">
- <File Id="fil2E01AF8E10B055AFD55A95CE203B151E" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp7240116F10A7BFAB5925BBD481302197" Guid="{7972B6A9-D4D8-4BEC-A2E1-F870C45C2438}">
- <File Id="filB5A98CBA954A1A38AD099C5B19F08908" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp77EF0BD64C67072D5D863C16CE390EB9" Guid="{CC225860-D00B-4C9E-967F-248EF3452757}">
- <File Id="fil7857C8A3C0E0563944F76483D5768693" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp88D7D719B814484B09F8C65C25460455" Guid="{DCF5E603-4A12-43EF-A2C3-C6336C3F2669}">
- <File Id="filA064071F1D2E23EC3E4FB61322EDF0D5" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpB2AAC74ED59AC3F081838934E8B871B2" Guid="{450823DC-299C-4769-9CC5-20AA4DFAB8EE}">
- <File Id="filB8984D6B224C3CBDFDC9CE238988B0DD" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp5C996ECABF79740A27450893C4952E68" Guid="{C7F4D50C-554B-4CEE-B791-DC8578E31A3C}">
- <File Id="filA05EA81D5F3A3F5D3173D4917D599565" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmpAE2FC4B3C61B4EA80AB4AE50AE43755C" Guid="{DDA09D78-15D0-4A11-9628-766F0E095944}">
- <File Id="filE37E8F0C0C620D943982F5C9E7E2A705" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir5823A35BDC617A4B6A8C123D510874B6" Name="LC_TIME">
- <Component Id="cmpD771BB3D7D9B62770901F92D8C9C0157" Guid="{16B29F7F-E4A1-42A5-8A0F-AA97DCD9DB4E}">
- <File Id="fil74AFF1C4BC7E88CDC2867FA27A0E6D7B" KeyPath="yes" Source="fio\usr\share\locale\nl\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir846355539415F5D9D6CD05706B816BDB" Name="nn">
- <Directory Id="dir57E4ABC5B16D9F196D7ADE74EF55E57B" Name="LC_MESSAGES">
- <Component Id="cmpFE685778C1C5A983CF3068C58EC2B145" Guid="{578AF159-628B-4FC6-9F34-78FEC86C0EC2}">
- <File Id="filD5FBA9FB2B1B5230D7E5481CD0F6BD1D" KeyPath="yes" Source="fio\usr\share\locale\nn\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp8479D7BCD605A5733B839F6E7A308C91" Guid="{7B79D8F3-BA79-4153-87F0-55715C7B2E47}">
- <File Id="fil42796AF998A30CD6E66925FE109F980B" KeyPath="yes" Source="fio\usr\share\locale\nn\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirCCE23C039ED7346A2FD67D27CE67DAA9" Name="no">
- <Directory Id="dir2439D78FF128235EACE59FD487C77F61" Name="LC_MESSAGES">
- <Component Id="cmp4D02C9FEFFE06739395BEFAD76E14F10" Guid="{7C1D3A52-459A-4C93-B468-18828A31246E}">
- <File Id="filD491998B450293DE7CB0386A03D25EE6" KeyPath="yes" Source="fio\usr\share\locale\no\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir52200F5784483173D92C7FBC444D80B2" Name="or">
- <Directory Id="dir981C2F5B27DEDB992578312F9E1FC5D0" Name="LC_MESSAGES">
- <Component Id="cmpE4F910F2EFFF48906ABAFAE6CEB249BD" Guid="{BA5B9793-4B23-4C11-8D81-D2E9A201C173}">
- <File Id="fil124E8BF2E53906A1B741AD88D10F48BB" KeyPath="yes" Source="fio\usr\share\locale\or\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirDC98336D77A5723014ED0486008B9497" Name="pa">
- <Directory Id="dir3AE40E0C59AB8A59D664EB6EE25FB3BF" Name="LC_MESSAGES">
- <Component Id="cmpAEB5379DC5C147FC03B6BB041FC9437C" Guid="{A25C7CC0-8A12-4E3C-8197-653F443D2D2C}">
- <File Id="fil197DCA14204254874808F2CD70189350" KeyPath="yes" Source="fio\usr\share\locale\pa\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir5616BCCF6CD6F8D25484FF8306BF1243" Name="pl">
- <Directory Id="dirCEAB8DD66E0A5020D37BD3A6CB21518B" Name="LC_MESSAGES">
- <Component Id="cmpCCCCC3BE4B36DE813E796BE63209A423" Guid="{F08FCF12-4F09-4612-BA68-3445E566AB25}">
- <File Id="filBBD7253643E9898DD65B7DCC5DC94372" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp4CAC34692729614C9ADA8F6CC4D2E01C" Guid="{A1FF86F1-5634-4690-AA60-666A3E78B616}">
- <File Id="fil8CB14C98CD62E6F1325E2B13A64A94D4" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp1B09CBB106048A6100B491967710D7E4" Guid="{B0F06A42-4D5A-4885-A2F5-7D4FB17DE660}">
- <File Id="filB96A6FC7648D93800878D4170B40433D" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpAF2FA238B23E0ED5FBCBB4E12090CA71" Guid="{AB15EC53-28A2-4C56-82FC-B7A36B0744F7}">
- <File Id="filFAB0C21D786D10B6C78F92ACF7FC79B1" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp57AA9E22F7ED2AF877A4233EEE7690D2" Guid="{A1CA44A4-547B-4C2E-AAA2-1CB419FC3E65}">
- <File Id="filA0BAFAFF1ECB4101028CC56C7A162798" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp5F06788CE1F55403BAE5FCCF1DE245EA" Guid="{4BFCD397-225B-43B9-9163-5AB99B14FB8D}">
- <File Id="filAEC2D50B933E3BF8D9F70898D88C08B9" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpC12E88D4082D8142E16D127BB52204FE" Guid="{8DC51C01-DB40-4DB3-8163-2735D7262E42}">
- <File Id="filB3ED8FDBE828AE2386D39B15CD868929" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp4C852C8C47361B0E1F07C833B58D831C" Guid="{56494219-411E-4128-BC58-20A38DA69D19}">
- <File Id="fil50778CDF5024805073E05E2635DCAB89" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp935516EDC6E0559AF573D3DD0C41CAD9" Guid="{AC51015B-0D9B-479F-95AA-1BD034ADC5C3}">
- <File Id="filFE7C6893816F66AAC209ED0AEF9CF15D" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp2B870A54DC6C3079CD7232405E1AB234" Guid="{3176B024-3052-4922-A43B-FFE52EBC9F27}">
- <File Id="fil1B871D29517FACA8066C474BEA9DE186" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir7D35D0ACA53FE98BFB9BBA09ED93EC5D" Name="LC_TIME">
- <Component Id="cmp2F65FE597F914D6AFED1295F706D0A81" Guid="{B8903444-972A-4236-8049-D5E80F7D9101}">
- <File Id="fil60F80DF06D6A570404C7A935058824D4" KeyPath="yes" Source="fio\usr\share\locale\pl\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirFAE984D9A8CC96D11ED7018B3F4128BE" Name="pt">
- <Directory Id="dir9597B80D912FDED34E3957FC077E4A1D" Name="LC_MESSAGES">
- <Component Id="cmp055FC1CA3F7FDD67507628568E09A01C" Guid="{6B764B6C-02BC-4D70-94AA-C3CB867C58C1}">
- <File Id="filC04245A23CE3FBD540B5602DD32FA5D5" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp6AB9957C3EDA1EA43F439E5500CC1C9A" Guid="{4DECDE21-D109-4C65-95EF-0B41D48F8E4E}">
- <File Id="filEAC17078CC118BEBFFE7B8373D76BD57" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpD917A36540F484CB3BF332C7C182B43C" Guid="{43E6FB73-4E11-41FC-A1A7-846ABB1E75A6}">
- <File Id="filF7DC5BEBE2379AA5A2F4C5DEBA677C6F" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp77466D714680374EAF3C004CB03991F3" Guid="{9E096AC2-650E-446A-AD6A-B51FE7D0DAFD}">
- <File Id="filB387F2A5150E068AD0432A85F41C2493" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp32E4E96FED1770441AEF65A4C2AED59C" Guid="{D0BF60F0-4A76-4248-8831-98319AD8C559}">
- <File Id="fil4C1FC32764DEA9C0588389B29DEAE42A" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp978DE1A05F2B299DD286A7725B80C764" Guid="{13831029-DB6C-4E38-A7B9-D4267B3B8DCA}">
- <File Id="filF1E51A303359CDA8B2D2992A07D15F17" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpF62B846DEB89EBB29189F1F8D340A4EB" Guid="{95D57759-C990-400E-8B9D-172E8D6B90E3}">
- <File Id="fil0D34FBEDAEE20662D534C91DFB3E2B30" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir92CF359F299BF46585C2272222AA8F13" Name="LC_TIME">
- <Component Id="cmp07807448464E92E31F86AA71D92573C3" Guid="{726A4ED4-8CF8-45ED-BDCE-B0A97C5B1C0E}">
- <File Id="fil753DF71AF7F75A67289A0E21D8BCF48E" KeyPath="yes" Source="fio\usr\share\locale\pt\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir47A3BC189A261E9BB21EF5C4BFC5628D" Name="pt_BR">
- <Directory Id="dirDED16730456AD7B3656C1314616B8929" Name="LC_MESSAGES">
- <Component Id="cmp594CE1C68FF8D5521C4A6D4F981B8529" Guid="{88D2B612-D0B3-42B6-A8A2-C7C21CAE6152}">
- <File Id="fil69F0ADE93FC6489531B7BE5A9DBD0D1D" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpD9613B15A97EBA92F30912F457829AD8" Guid="{35C0E288-472F-4A7C-A2DD-B045F5C64C95}">
- <File Id="filC09A918D4A52634BB7EBC7F55FD3CA38" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp00F99957541DE8C8C0C59B02F24AF738" Guid="{32B755B5-128D-4BC1-A8EB-9C62861BF899}">
- <File Id="fil8FA845CCB6F1229BD886D87391449B1C" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp86B7F01E10E717082C1F8128BC89B0D7" Guid="{1F953CBB-C66F-470D-BBE9-052A47961DFC}">
- <File Id="fil3C59E4EDBD97807A4927D46976539F85" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp12B8791973E9FC243587DC4099DD0C0D" Guid="{53646460-DA5B-4B9A-9D3B-08B37622DB13}">
- <File Id="fil1775E3F4F0DD259D8966C241EEC8856A" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp40DEFDAB31ACD08E700AA491989C1B48" Guid="{F60610A2-D8F8-4F47-92B8-6E61741202EA}">
- <File Id="filC8D4335F06D45064C0F0CF0261EB8D63" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp26355781C1DC134711E6AE29E79D925C" Guid="{C40ECD0C-31A9-40EC-9EB4-3B861A875403}">
- <File Id="fil69F91537070F3BCFEA3524536B556020" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpCD8D190CCEC4C2A0FC735767659E7C83" Guid="{8070D249-A72F-4970-8FDD-A5828447C73F}">
- <File Id="filDC4CB2CD75D71F5B1EB39D2A8F54DCA3" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpEB80AE089871137992870512912088CB" Guid="{F87F908A-5F8B-43A0-AD05-8DDA19B4D48C}">
- <File Id="fil1E98F945C7E44F52F8A1A67A3FD406A4" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dirED449E62FD23DEF1D304FAE543B344F1" Name="LC_TIME">
- <Component Id="cmp03410BEAD2AAA930A324A979CDF23EE0" Guid="{B35FDFC5-4F67-47E0-9729-76EE9C8371A5}">
- <File Id="fil0A9E54C4CB599BF4DAEB22BE8FC12F6F" KeyPath="yes" Source="fio\usr\share\locale\pt_BR\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir3EF07FECA839847003A53EB8C47E6B61" Name="ro">
- <Directory Id="dir9FD074509556286933E5F5F303BB1D73" Name="LC_MESSAGES">
- <Component Id="cmpB30B7A4C3B2BAD537641BE76F535FE8A" Guid="{2CF097A2-FE4F-4F06-8A5E-0EF3E0DCA164}">
- <File Id="fil51848673B9C400EAA97F38A865B6B8A4" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp42428928FAE2908AA10471D86D67E940" Guid="{A70876F9-CD74-4DAB-A770-7ADD102958FD}">
- <File Id="fil707BA0310596554AF540D24F7A32039E" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp51E7CEDAD802DDCDD5792CBDB3076DA5" Guid="{916B03F1-49E3-4491-B75A-2B66E2260F80}">
- <File Id="fil7FF5829BCBF92C95D14F9C47CD310385" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp7F83E1A65E64C22D7C264801E4226BDA" Guid="{1EED7743-7F54-496E-9165-EDA2A437C1A9}">
- <File Id="fil52FBD7E75579CB0CC6481B493F71956D" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp343D23340154117DE3E4AD35AE262288" Guid="{34E06AB9-B21B-4C00-8BAF-BE1F94FF75ED}">
- <File Id="fil30933A8334D9D026878CA227A9B25BCB" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp1E302026E1D6813214B9E17CCAFCC34A" Guid="{AF3816AF-7991-4655-93C0-9D5425AE8957}">
- <File Id="fil4E1A0503527F61913AA4F40501BD48C0" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpBE3B3864F6311EE3C757EBD69A9A6DB7" Guid="{E5D87915-44C3-418C-9BB2-4410C0F35862}">
- <File Id="filE238CFC62AEE87526CAB1F49EEC0F4EE" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp6C008654FBB822AC5F02EB9C8B980B68" Guid="{115E1C5D-69AC-4B94-9F73-EFD6FAE997F3}">
- <File Id="fil791387CCAB637554F9F91584338BCBD3" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpA5D342D4D2B9CFFF4F04CA2897C28DDD" Guid="{57D6FFFD-3A8E-464D-8CB5-FF70AAB0D89A}">
- <File Id="filE6D2F38263F79CF3C68B8EF46440C678" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp708FC18A2C8CAB69373E0E32D44F19BC" Guid="{04294D9B-9623-44EE-93E3-92EAB6108D99}">
- <File Id="fil0532A3B433508836A30B1B286BD9009E" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir12683F6D3D45D8B335B789B9A9D52A7B" Name="LC_TIME">
- <Component Id="cmpB9753A6693CE0E285ED5B467CC83F180" Guid="{0F1BD7A5-3C33-440B-8E85-CD4B374F74C0}">
- <File Id="filD1ECA84A0363622C7655DFBF6B8F44C8" KeyPath="yes" Source="fio\usr\share\locale\ro\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir355C5839C5082A61D50AD31D6FDBB454" Name="ru">
- <Directory Id="dir4EC7BF95651890F8A91957D561E2AD09" Name="LC_MESSAGES">
- <Component Id="cmp8131BA7F05287A83D77674F61DE4D5A7" Guid="{45FF109D-1D5D-4494-8473-39B1C3F98DF9}">
- <File Id="fil9DA61B7F941B67A6EA7B8D3C11227C59" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp47A776F9502078CD05160DE2E5A2A038" Guid="{2376E464-55B5-4FBF-89CE-75505BE1C40E}">
- <File Id="fil8C683A2971CB06FF5FA7639FF4513BFC" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\bash.mo" />
- </Component>
- <Component Id="cmpE7EEAA25F95A5C15EC56377225C5F59D" Guid="{CD057CD0-D9C2-4DCA-85BC-01D32DB2669C}">
- <File Id="filB0651F15528AFCFFAC1B80701D8CA1B0" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp319C2D05DBBA9FBDB046230CD1784034" Guid="{98099232-C562-4C99-9D1F-B1B7D599835D}">
- <File Id="fil688473F99402CBE3B1B7F3CE544F6F90" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp421F64578E53849CE5EC23F181194653" Guid="{F1BCCE1E-C3BA-4958-BECD-A22FD602AE2B}">
- <File Id="fil11609E112357DBEC39ACCE61757E1721" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpA293AA4F166DFC754D0EF3B10B96EEC6" Guid="{D177E963-6566-4139-8D07-4B9AB235A171}">
- <File Id="fil4BDB5F17CFC171C1405FEC999A04A0C7" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpE6B12F9B812F42781C5078FD6080A1CA" Guid="{1DADA38C-360A-4522-B213-F6AA8603955D}">
- <File Id="filF862BCC4C27B6A0F51C6A2BD3FAA122F" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp34223E491FCEC4C5497A9687930D9AFD" Guid="{4B094703-15A5-497A-90B5-0908F34BE6C4}">
- <File Id="filD98D31111F55C2C374D0565610A53A59" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpA2C35A1E41D5269BE1EDAC2431D9D390" Guid="{3C89288A-245B-430D-868A-DC1683EB2BDD}">
- <File Id="fil1780653BBFB7B18C709E4705D5B79BDA" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp947B29601576FD27AEBF81DFA4115944" Guid="{1FF590E2-E3DB-414B-9E57-6CB633057414}">
- <File Id="fil8DAA7A3C8132675AC875B18B90AFC599" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir259E146B7A27549B846AB6D6AB107227" Name="LC_TIME">
- <Component Id="cmp11B1DE8EAEC2BA7F240CF3DA55BEF4CF" Guid="{0EB32BAC-E21B-49B6-80E4-BA77FE4E3D41}">
- <File Id="filBB35B36FB5B171BA6570BCF0E247955A" KeyPath="yes" Source="fio\usr\share\locale\ru\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirD8C03130232AD19B8DD365A081504257" Name="rw">
- <Directory Id="dir2026EC2EA6C83C7AF7C7311FD01742CF" Name="LC_MESSAGES">
- <Component Id="cmpA4D0C6A39EFBF1ED95EE49757FC27ECA" Guid="{687B8137-81FF-4FCB-805E-BA3A8EECD473}">
- <File Id="fil39174DB322F1578B35E71CFB194E2C48" KeyPath="yes" Source="fio\usr\share\locale\rw\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpFA61D23B6D49DFF737CDE45F494335FB" Guid="{347D3A21-9332-4619-AD01-DE76CE59E384}">
- <File Id="filB97432A2F4ED1F2C629E955CC67A1E7C" KeyPath="yes" Source="fio\usr\share\locale\rw\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmp55EFDD63CC332566F9FF4719B75F6444" Guid="{8F3102F6-121D-42FD-8A77-64BC23FE7C71}">
- <File Id="fil6BB6BF59E7F5806D759D86FE03837681" KeyPath="yes" Source="fio\usr\share\locale\rw\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir825BA50A6C1A8A9B9D790636662004F1" Name="si">
- <Directory Id="dirC562046B0D1A170A862E5297D18040BB" Name="LC_MESSAGES">
- <Component Id="cmpB173AB5A9F7ACEDBC88C71A8C7E17C1B" Guid="{79F90018-B83E-465E-89F8-C9004C4CF050}">
- <File Id="fil50147660BF9A3C17FDC9DE7643C30944" KeyPath="yes" Source="fio\usr\share\locale\si\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir932357EB19409CCCB360AB33CEC1E7C9" Name="sk">
- <Directory Id="dirCE7E30C43EFC2A0EC5840B1DEE2804FA" Name="LC_MESSAGES">
- <Component Id="cmpA50147E80B6C1B6C3258D1F3B2D650F7" Guid="{5A68F52F-6387-422B-98EF-B3ECB20EC2CC}">
- <File Id="fil361A08961D5691178317B5236706AE2D" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpC7BBF56E47DC9DA909906FE728D1B82A" Guid="{A03DD4DB-3861-4512-8723-DD1A81C0749C}">
- <File Id="filD15D7E14AAE1258D1D876F0FA04CA5B1" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp21C40FE24FBB546A0E61C9A2026486D7" Guid="{5020EF0C-9416-4CB0-A4EC-74231A725490}">
- <File Id="fil36B31768DBC2894FC22D70A7932C5B37" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpA64FA011AEC22C504612DF531AF5DE8F" Guid="{FCD6F0F5-8C2F-435D-8A80-7882A07E3548}">
- <File Id="fil9762D0A3FD8E445F57CB80A5AD6A8E46" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpC536081D41336273D42EBFE06DF942FA" Guid="{C5F64B68-0A6E-459B-A3D6-2C5A5EF2E3A0}">
- <File Id="filFE07C1362CB9F8C198C23E6CB62718C9" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp7E8AA8DC97F4FD6CC28C0A08813D96CF" Guid="{EAF6070E-96C1-454E-A541-CE8272FD1394}">
- <File Id="fil5EB941CE6BB1056ECAF99CA544929D1C" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpF7673F621413EB45AD5CF09E00BD45F9" Guid="{4780BC4F-9DAA-4A84-8F0D-8E6C640229CD}">
- <File Id="fil498A5941E83AB5D26ED15C4E5E62B7A1" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dirC7394070CDE610C8159DE9D318CAABF8" Name="LC_TIME">
- <Component Id="cmpB7E04B32A6702AFE8F544442E670B0BB" Guid="{309F13C3-C01A-45CB-B634-C3BAED816D61}">
- <File Id="filD6C74C3D486025C93DB11F77B9446B51" KeyPath="yes" Source="fio\usr\share\locale\sk\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir3AFB33F0573835EF0650225D08776AAC" Name="sl">
- <Directory Id="dirE2CA497B277766E0FB7D2966E6181B18" Name="LC_MESSAGES">
- <Component Id="cmp585FCAA9B307C54B3CF5A8D19C18357E" Guid="{5488F400-91F3-4369-BAC6-2D8B2D8FCA4B}">
- <File Id="filAD8FADACC4CB58C5806D16BC1F56871D" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp8C2D9F95795E2D25298F1C2D701D29BA" Guid="{772F98BE-8755-45A2-BBE9-7464C7784124}">
- <File Id="filD3B4695609EE4FA58479C430CB248798" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp3EEDD882F66153A6FE9302B0F626CBCC" Guid="{5D04B448-1D9F-49CF-85F9-64B38F258993}">
- <File Id="fil090752DA5198A0542C06DFFA34FFD6BA" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp9DBD05444DAE69186CC3DFBD62F6325A" Guid="{523A90A9-AEED-4124-9E2E-D51DFDFF9E0A}">
- <File Id="filA8787ABF714ABF86A973E2D0BFD47D0C" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpE703ED872950924CA772BA3C09563A55" Guid="{C0AADE3E-9D7D-4645-A9D6-723250FBB31A}">
- <File Id="fil8784A709732A36C937D4C4B9ED85FC49" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpAA85F9C0926B60A4DACF6ABF6D87E172" Guid="{C85CC7ED-AA6B-4538-8DEE-17DEDAE97C35}">
- <File Id="filA7DDB289FFBBD8B31BFA59951BFC9CB3" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp181EA77DE0C8F62D9E3A8019C506D7E4" Guid="{1A6C9DA2-0B7D-4FFA-A9F2-65A176FCD7A9}">
- <File Id="fil56D6C04D357C698006454A10A721EF29" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir05EEA8C1101E9D44F79079D4C9C997B7" Name="LC_TIME">
- <Component Id="cmpD1668DB9156E3E4D21553A7484A522EE" Guid="{1ED41A4C-CE77-49DB-B8CA-5DBFD41BBF7D}">
- <File Id="fil73D79214D9A9F87BFB22B8EAFB24FBCE" KeyPath="yes" Source="fio\usr\share\locale\sl\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir8B6592C0402BEA7CA85DDB1F4D7B1900" Name="sq">
- <Directory Id="dir830DEC6D8CCB6125B47D3D1A461FC12B" Name="LC_MESSAGES">
- <Component Id="cmp91CD6306894A49DF4790ED51D8BA9E33" Guid="{68AE2622-D954-4357-921A-942895ECE38D}">
- <File Id="filE7255DCCFCCD266741FACA4765D1741E" KeyPath="yes" Source="fio\usr\share\locale\sq\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir67D73CFF781F929734D7D2D706D2E509" Name="sr">
- <Directory Id="dir081CCBC4288636E8EB960C4ED015DEAF" Name="LC_MESSAGES">
- <Component Id="cmp5D822C9042A2BC3FFFCC1804944A38E7" Guid="{6A6353C5-1176-4D46-A83E-49B5938B043E}">
- <File Id="fil1BFB8A57BA36657D74519962016449FA" KeyPath="yes" Source="fio\usr\share\locale\sr\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpFB4144A618DF37688DB7C09B40001E29" Guid="{ECDF6C88-AFB6-4584-B90B-6ABFBEEDB82C}">
- <File Id="filFE15C48AAC62F7540F1F00D1DAB898A2" KeyPath="yes" Source="fio\usr\share\locale\sr\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp531AA520CDCA21A359DAD40C241F4CCD" Guid="{E02003F6-710E-4CF0-8423-11117CE05AE3}">
- <File Id="fil0AD7478D6A9E3D44D9ACF0B6EF5B692F" KeyPath="yes" Source="fio\usr\share\locale\sr\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp9E3EC7AE5DF1B99B6598462E386D19E9" Guid="{168BD724-205D-4AA5-A2F3-A6FFFD902470}">
- <File Id="fil6A5BE4397C5A36385B95E337876DC15B" KeyPath="yes" Source="fio\usr\share\locale\sr\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp13C760B207EBF545E37825619BE6DCC4" Guid="{F1B17C63-C57D-427E-B072-AD26C111062F}">
- <File Id="fil2486C1DFFECB0FB8F46521ED32E01D79" KeyPath="yes" Source="fio\usr\share\locale\sr\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp75537A7207EDB82CAE0FAA9CD2516754" Guid="{A2853E86-F97D-4F42-93AB-5D59B5E45032}">
- <File Id="fil72D0961A53A63D3DC1E651C36EBC2A30" KeyPath="yes" Source="fio\usr\share\locale\sr\LC_MESSAGES\sed.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirD679858234F3D79956312489E0505392" Name="sr@Latn">
- <Directory Id="dir41FAEAC2D5864B412DF165F009BBD2EA" Name="LC_MESSAGES">
- <Component Id="cmpAC2EA00F7A3630FCB3E8F14D3AE7B4B2" Guid="{AF6BDC09-6561-4246-9F62-C580BC0A751E}">
- <File Id="fil322A6ACD526FA9A73B56ABC8190FAC69" KeyPath="yes" Source="fio\usr\share\locale\sr@Latn\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirD6D299E60F8284202C790658EDF90E9A" Name="sv">
- <Directory Id="dir53986C9EE7F91EDA8577A09244DDF156" Name="LC_MESSAGES">
- <Component Id="cmpC6D64CA4E3E64ED2048330E9CA9516C7" Guid="{E6A3FE9A-1BFC-4F31-9FA0-57BCF8148B12}">
- <File Id="filE55E2A698DABD30985F16CB16A96C865" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp6F0D47648451B0CAB91E337B4D1BF5F9" Guid="{913C711A-ECC6-40AB-B05B-5E1AF428A5C4}">
- <File Id="fil13980002BE6CA07B5367071DACB39912" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpF020F3B47A1019687E8A203C8814E930" Guid="{6C93F5EE-9ECC-4BC0-ABD7-B5456AB4C26F}">
- <File Id="filDC29ACEDE185C5425ECA2D5AB32A27FA" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp6CC62FA795BA26369B806A7E1D6EE436" Guid="{90D3F828-2DED-4543-8973-B5F1024A1F63}">
- <File Id="fil74360693F3BE8A62C2685142F1868F54" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpBE57279D9D2667D30533AF01B2B6A6E7" Guid="{F686CD62-8996-45F5-B9C2-DECBBE77734A}">
- <File Id="fil7D923C383A33FC50E80C8F18FDA1A618" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpC7F37B613BB49E0D1F2D7E789ECA47D0" Guid="{A2428B39-266E-411B-AEBE-15FF34B4C7DC}">
- <File Id="fil19B4CB7887E7683595D740FDB63ED3CA" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp099344F1E93AE129F90353FC993706B9" Guid="{39E02577-1CBC-472D-A648-4CC4DFEC4621}">
- <File Id="fil1BDE4E51F9D296BF1631939AA18CD0F8" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp61274E8F7AD14707B418AA6C4DEBCA39" Guid="{3C106887-9225-4E8F-8BE6-280836181A2B}">
- <File Id="filD2FE324F7F6CA4F425FFB3323FAAD11B" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpB4876134199D709A868E49A934AAF796" Guid="{00130025-227F-4441-B43F-5C9F98B881A6}">
- <File Id="fil3F467BF7F79A251F39BBCAF13631172B" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmpFB164099FA00E2625BD901CACAE5FF17" Guid="{0121EA15-3BB8-4061-939D-675492A1875B}">
- <File Id="fil9DF244A332C23CDFBEE4FAA21F06E0BE" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dirD1EDC90072DD7130C4540EEE14D40CDB" Name="LC_TIME">
- <Component Id="cmpE590287E6014D6A7430CF4B1F6563F4B" Guid="{6B895074-D3C8-4220-95AC-48FB2CD25446}">
- <File Id="filEBA020899226F1B04785AE542A40621A" KeyPath="yes" Source="fio\usr\share\locale\sv\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir6ED526F50E8C9D5B66175649BE4098F0" Name="ta">
- <Directory Id="dir99DF21D7C0729E9870051F0CD6E0E34E" Name="LC_MESSAGES">
- <Component Id="cmp38A4140B5B182C55570146664CE15EF9" Guid="{2AA63D09-DFA5-4A8C-8515-42B481F04B3B}">
- <File Id="fil1A700273FD946A5D3479D860B1D8ABB9" KeyPath="yes" Source="fio\usr\share\locale\ta\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirC1563F9FCF77461AD4AFBE63BF6CC601" Name="te">
- <Directory Id="dir4DEFFAEEAD923D2CADE319A0AC8D1A40" Name="LC_MESSAGES">
- <Component Id="cmp3AE6F2166CD8E7E3CE7168D68B397542" Guid="{CCAD3DFF-DF32-4482-8ED3-5D06F61484D0}">
- <File Id="fil2635283A6B83491009A23AF05266FB0C" KeyPath="yes" Source="fio\usr\share\locale\te\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir628654B06175524CDCBD9DDA8F1CBEDA" Name="th">
- <Directory Id="dir05A13AD88D9578439680D2A044F7CC01" Name="LC_MESSAGES">
- <Component Id="cmp1F0EF5C2EFC560E12D6E408B152A6AF2" Guid="{71549FB3-C649-46A7-AB8B-067F8CF3A0E4}">
- <File Id="fil47ECA1E53D1C0145642E6F917F1CDFA7" KeyPath="yes" Source="fio\usr\share\locale\th\LC_MESSAGES\grep.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirDF3E5D85850F3967D1954DA0F5206429" Name="tr">
- <Directory Id="dirF645EB17AC0D724B3FC93F19967E1743" Name="LC_MESSAGES">
- <Component Id="cmp958B998EA1A11D5EDE26D84665F99F0D" Guid="{58268396-B73A-4CB9-8E21-8C1CD754682C}">
- <File Id="filEAC9395F4DD4CEAF5AE0ACF388625810" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpEC1002EFD2B47224FB11FD8EC74095B9" Guid="{017F71AC-A2CC-4FF3-8BAB-C7E0B4D2A453}">
- <File Id="fil929B4E099908C4265E7C299CE645E145" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp37B27C910607C6141AF53EDF7FD31124" Guid="{64B17A53-632E-4635-AB47-EBD72A890D1B}">
- <File Id="filED321CF0BC1AA254186466698CFC371E" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp5A3E0D8E7C4D4C00A8D8768D3A69C9D6" Guid="{A21F1B15-7E6B-4E6B-9A58-9D64507F383B}">
- <File Id="filE443B14A9C601AA7F4BFA367E85CC230" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp01E018EC9C3393DBC6B8EF277C7E7521" Guid="{61788C77-6FBF-4087-A678-920D4EA9E4D8}">
- <File Id="fil140F249A9A5DCCEAF6D491B900D85054" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpB9E97C399334876FC4BC6E11FC5FDF91" Guid="{D4973874-53CD-4710-8BCE-1A06302B6EAB}">
- <File Id="filB6C06FC7B0A3000A9BB78FD980017FE6" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp99BA98A132D819393A4C00C00479128C" Guid="{E4CB70C2-5F51-4400-919E-55B5D2888E40}">
- <File Id="fil643CA55B079FA73520C5CED6A66E43AD" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp924AC5D2196C5B239C1983243CAD1CDB" Guid="{F66414E4-8427-44E5-85A5-0CFA544F0674}">
- <File Id="filF827FF2F0342B0E753F59A628050A349" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp23A10A3A0AA2F1EDFEBA2996294AA0F5" Guid="{E3386584-DF53-4550-809B-231A63588194}">
- <File Id="filB9B05628C223FDA2D0AE78DB4A56FB8E" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp89ABC1D4F3B2BEE6CA7FC133B21C93D1" Guid="{87D40BA8-9F3F-42A5-87F7-BFE6929AF543}">
- <File Id="fil3194A2A8C46680075EB1C59FC011E3AC" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dirF4B93BAA8F9FB11DE5C59D938F1B9B28" Name="LC_TIME">
- <Component Id="cmp89A14F80BDED5D3BEDD8F56A59B5C3D5" Guid="{C89D3E0C-5096-4D90-A030-1A32DECF41AB}">
- <File Id="fil2CE5D748597FF4E695899FDF3A3E5AF1" KeyPath="yes" Source="fio\usr\share\locale\tr\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir0C680BCF6A6D36E18B8C7EBD363C7576" Name="uk">
- <Directory Id="dirD7DFD192B3A212E7438D89141A30A491" Name="LC_MESSAGES">
- <Component Id="cmpAFEB61F8810DBDE9A6403123ADDDBA41" Guid="{BE5396AD-E73B-4B0E-A144-607145BB87A6}">
- <File Id="fil574FD7CF65631C3EECE7DA20951CA880" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpC4FD3BC147C0B8B66BFF0FAF3F824AF2" Guid="{86609CEE-8F6F-4D95-B507-8D280465761A}">
- <File Id="filAB175D80A19A5C5444324A8273728013" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp1FBB49FD4AB6975D2885301A11373A84" Guid="{2049E136-4FFF-4294-B4EA-E18E9417B053}">
- <File Id="fil5C96A0FB2FDD39CAC3B8C0184110C922" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp0A9FCD8B6911A963186CCD027FA7B301" Guid="{F5A1E0F5-10DE-4A97-BCE9-B3F72D9F0BE9}">
- <File Id="fil2E30DBC4D00EA43C7920E08B1D1FA3C8" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp85A1A04CB30457667B7F808F3110451F" Guid="{6AEE7D0B-9D0F-4671-A6F5-EF23EE04154D}">
- <File Id="fil4111135C8798BDCCB71CDDF6DAD01B31" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpFC72807010B993432312720000058EBE" Guid="{6986A99A-E2CA-4FB0-9BCB-33E42F5554F6}">
- <File Id="fil1D71F5696F23F148215F00A5268C3972" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpF4827336D2F4217ECC18A25FD110178C" Guid="{938D38B8-1173-4110-A00B-EEB5CE7A55F5}">
- <File Id="filEC6678059DA32B9243D32529CEFD1696" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp3DCEC3BC8793912AD73BE485E49D5420" Guid="{2D86052E-447E-453D-8A0A-2F4C4153556B}">
- <File Id="fil4F43C0954EA376525928E91717CAAE36" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_MESSAGES\tar.mo" />
- </Component>
- </Directory>
- <Directory Id="dir1469732DC93C2872F974D901B59BA32A" Name="LC_TIME">
- <Component Id="cmp5974885875D926787E08B379AEC44219" Guid="{406DFCF4-5A22-479E-A0D6-299304DD4558}">
- <File Id="fil12098F16E2370CC12D8813032FAB1532" KeyPath="yes" Source="fio\usr\share\locale\uk\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir9813973F35FAB1D2C3EC6CAD67A44F93" Name="ur">
- <Directory Id="dir01B73917344FC364AC615CC949DCD632" Name="LC_MESSAGES">
- <Component Id="cmpEA614C2B55F5790AA051C47EBB996AAF" Guid="{3A93DD88-A847-4B8F-99D9-2D1124E0BCC2}">
- <File Id="filAFCE64F54A1B4518C7FCEC22CE66CB87" KeyPath="yes" Source="fio\usr\share\locale\ur\LC_MESSAGES\alternatives.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirD6C74B352FBECD096A0DE920D5DA61BC" Name="vi">
- <Directory Id="dir039FFE97790C1DFEFFE7F538814EF514" Name="LC_MESSAGES">
- <Component Id="cmp785FB75D5E955765959C362A7D4542AC" Guid="{65EDB39C-9F08-47CA-8ECF-09145D1DD9E8}">
- <File Id="filAD6698BBF20292E7E77CAB5A981E5F28" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp55FFEA50569E5711BC09F2AECBD40CE2" Guid="{0D61E356-B83B-4B50-9897-5C52596B12FF}">
- <File Id="fil2F0C8B722D9E26B540934A63B1D2AB36" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmpE10D6B67B7A07294547378E011B30E65" Guid="{B5227B42-717D-421B-9E41-BD8206B7A81A}">
- <File Id="filB4F004E13B9B4D7CF6838A1E87DD9021" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp865A73CB0AA8F126761F2A4424BD27A4" Guid="{67F5FB13-DBD6-4832-A2E9-357F6981542D}">
- <File Id="filC37C8B030FC8B458C006C33CBFD31137" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpEDCCC6EA583FC3AEA11534121831EB59" Guid="{DB39445A-4C68-4B17-9EEC-A53C4AE28742}">
- <File Id="fil30775C4D06C27FB6997D446B90374692" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpC71A0D455F32BEE2F6D77CE0705D26C5" Guid="{B2A17EB6-F97E-4C9B-8679-B43DEFD54A25}">
- <File Id="fil1E3ADF076EF78C4D024BF164CB591D26" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp166CB2674AC93942EA963348FDF43ED9" Guid="{EE872C38-4473-4303-AD54-190FD01076EE}">
- <File Id="filBBB03BDE4D2F28856BF983D58B03A374" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpF76416E353E2E0A5106F7EB477E745EE" Guid="{16D2B29F-86BE-438B-AB0D-17D823B11468}">
- <File Id="fil882BEFC662EE43D95FD2D4944E5BDB8A" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmp8A10DFA2D8A18181B86C6B779EA25751" Guid="{A5BD8483-36A3-4513-88A7-00D00A7E828B}">
- <File Id="fil0E678837FE7C9E187DDB94532882C5C3" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp02CF0A59BA4F72EDE169DA0E35F46D3D" Guid="{89D9D1A9-F590-48D1-BA92-A4A41BE6BD2E}">
- <File Id="fil21753F7F46DABD8CB2AE112AFE04598D" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dirA714B63964A31C349215AA3D13C96DBD" Name="LC_TIME">
- <Component Id="cmpA68619612A0FA97A2152AF84CED136AC" Guid="{CCA7602F-482B-41A0-A93C-48D588FB722A}">
- <File Id="fil016E0EC5A0DE4A20A495B44F37107717" KeyPath="yes" Source="fio\usr\share\locale\vi\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirC1387E75107F6CFDC802B918210074D0" Name="zh_CN">
- <Directory Id="dir96A68CF1E36490328B49D2397018EC36" Name="LC_MESSAGES">
- <Component Id="cmpC57A8C89EC9508DD92F8ABA435642FE2" Guid="{F3BE8D1A-8DAB-4DEE-BB82-CCBB5283E7F1}">
- <File Id="fil90B5CDAADBE7B54AFC700C5A6BFA3934" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmpF6825A1F348DA7F7CF43066E4F6009A6" Guid="{A7ED3CC8-E8AD-4DBD-BAFA-EB512146942D}">
- <File Id="fil852D576CE1C49B95FEF3C0DB82514E0C" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp63CB9BDFB5D1CD7D81524402158C8F34" Guid="{DDD17E50-0FB2-4411-8EBA-D7D85876C6AE}">
- <File Id="filB06E6A7771987BD82471CDE1D2005E9F" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmpBE83947928DFDFE31239B5C5993DC4E4" Guid="{94ACAC6D-A4D3-42CB-8169-11CEB5AFE3C2}">
- <File Id="fil692FCE0CC3F592810F609125605EAC02" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmp241E9FC2EC14AD789A5AB89A828A78D2" Guid="{BA67E3C8-90B9-4F99-A435-63FC8A0F43DD}">
- <File Id="filD701C4454FC865117747B68FEA70EDE4" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\gawk.mo" />
- </Component>
- <Component Id="cmpF70E6F29C962CC77473A94E571C98718" Guid="{732EC48A-12F3-4DFD-B76F-FED17ACE291A}">
- <File Id="filEF6594F3970B7E653EC737619F534480" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmpA5C42A0E899A0D65498D1C7B6EAAA720" Guid="{F363CF91-8AF1-41C0-809F-D043660D6988}">
- <File Id="fil23EC3DEEB11B35C68AA46940C39658DF" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmpD771468797256E9AF7DA4540B3B159E6" Guid="{C8BF3C14-8B7F-4B03-8DA8-8D23D7430842}">
- <File Id="filA75E72DFFA961EA11946B67E812B973B" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpCFBC63ACA3A3C6EF1AE9BA5E7C40F8F1" Guid="{9DE59BA8-4823-4349-AFFB-832BC25E0E57}">
- <File Id="fil30CC58E4237F65D493682C7321442B7A" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmp6FA0CB0743C175B6BC84FC09EDBC75D8" Guid="{4E7821EE-E1E4-49C6-B1C3-54B9235AA9A5}">
- <File Id="fil61A9E2475227B3FF7E6C2BE47A31E65E" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dir2F3E8AD5A43733BD321316C3C51D2CE2" Name="LC_TIME">
- <Component Id="cmp7DBB5946F7DE9F1CC2F3F9921CAB69AC" Guid="{236C2A12-B059-4F9F-8CB5-CAC9118E38BC}">
- <File Id="fil877DA04AC69976F36CFFD33617F1CDCF" KeyPath="yes" Source="fio\usr\share\locale\zh_CN\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirFA0D7F77144047A560791E47086FAC33" Name="zh_HK">
- <Directory Id="dir02E6161CF1D9030DE791C5D3164CE3C5" Name="LC_MESSAGES">
- <Component Id="cmp07794FB677A416645149BA6C49A237F0" Guid="{F9FAE0F3-16FA-4289-BC01-FE8C1994A86D}">
- <File Id="fil5BF43AB5B9EFA34E7775455449A24B20" KeyPath="yes" Source="fio\usr\share\locale\zh_HK\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir14AC09BA2E49D66E2F7515A88EE03488" Name="zh_TW">
- <Directory Id="dir8F4E26A90C0B3A5338104884210C32B8" Name="LC_MESSAGES">
- <Component Id="cmp31CFA4D291B3526F22EDA6EA5D243D6A" Guid="{5210C49A-B9EE-4358-9380-0F04A20FE0DF}">
- <File Id="filE433B1F992F21D68F19A3434A94693B1" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\alternatives.mo" />
- </Component>
- <Component Id="cmp73D8CA1A007FB4E93796E875B7B05C63" Guid="{3DAB62B7-5F78-43D4-83A3-D826C5652CF3}">
- <File Id="fil0915CB28B98A590A6CD84CBEA8FAF5B5" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\coreutils.mo" />
- </Component>
- <Component Id="cmp3B94B38A67B44C1A937B74122F4D5549" Guid="{264400D4-8439-4494-9373-B4967F9FFB03}">
- <File Id="filA80C8BCC4005690009FACDA3731E9076" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\diffutils.mo" />
- </Component>
- <Component Id="cmp034D868767CFF5C49EA138D676BFE1FC" Guid="{4F4A6081-012E-4175-AE53-69C98D9BEEFC}">
- <File Id="fil7D8890E48D246DCFFED3039FF3791765" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\findutils.mo" />
- </Component>
- <Component Id="cmpCC97DAF4C41AED43AD70E9976DC92A24" Guid="{164AE42D-7DFB-42A9-8CE3-8C0A10BCA2C7}">
- <File Id="fil6A66D71CA816DFEBE1758AD7D8687C0C" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\gettext-runtime.mo" />
- </Component>
- <Component Id="cmp6900F7B5028F4FC270691F73112E26B9" Guid="{92D0F926-1A30-4309-8971-A487A16899E8}">
- <File Id="fil53E789D6AF2849EC56EC04A59998DA51" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\grep.mo" />
- </Component>
- <Component Id="cmp2E8A4CC03AFAB67849144C85127CC786" Guid="{3446CA84-3E5A-423F-BE70-35EB56543E1E}">
- <File Id="filE7BA235DFD8BC0A256DA8596F48F3776" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\sed.mo" />
- </Component>
- <Component Id="cmpC9626C2729063CF76E03BADEF8BA83FC" Guid="{7E26430F-B280-456A-A1FF-867E0A190618}">
- <File Id="fil1185F8A3C522C82B28219149DD9324B5" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\tar.mo" />
- </Component>
- <Component Id="cmpFE9EBA59373FF08238AC5F11384D1816" Guid="{75F18445-31B9-4E8D-B93B-DF9851DD932C}">
- <File Id="filCB343F94FA5307F01BF5A3BCBD24A7B6" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_MESSAGES\texinfo.mo" />
- </Component>
- </Directory>
- <Directory Id="dirCFEC1F3EA91D619DF8988EFE0C1F7E02" Name="LC_TIME">
- <Component Id="cmp390D3D0A4DC7C49D4DEAC56DFD729DAA" Guid="{0B77464C-B7FC-4163-B6EC-22304A49DC1A}">
- <File Id="fil163FBFF88431BE7AA9BAE65CE3C9896F" KeyPath="yes" Source="fio\usr\share\locale\zh_TW\LC_TIME\coreutils.mo" />
- </Component>
- </Directory>
- </Directory>
- </Directory>
- <Directory Id="dir241964AD00EF456FD6A3B7C828EA7C97" Name="man">
- <Directory Id="dirD33D72EEB845AA5F0A892B4E51EBF7E6" Name="bg">
- <Directory Id="dirA491329B101FF53F9B438FC3582E8B13" Name="man1">
- <Component Id="cmpCA83489D015B82F9A2CB6B684B2DD0D3" Guid="{993B3204-5953-4046-B80E-F6BCED13D950}">
- <File Id="fil3F5FDE01E5E3E0C629775A92D568446F" KeyPath="yes" Source="fio\usr\share\man\bg\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmpE8BD3DFE4C2247CDC54A2F2AB4AE2737" Guid="{968EFD3E-E47F-472A-A1F0-FE0E7C293927}">
- <File Id="filB4BCF7055433BAC219FC7B3DA99D8914" KeyPath="yes" Source="fio\usr\share\man\bg\man1\man.1.gz" />
- </Component>
- <Component Id="cmp5AACEF76EA6E3D4404CD56E9618D8E74" Guid="{DB530B97-EEB2-46E5-9B47-3881AB1B57B4}">
- <File Id="fil7453AEBD15981253E1BCA123D98E72B4" KeyPath="yes" Source="fio\usr\share\man\bg\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir18E5FFD7538969CA9199A2066CF8C365" Name="man5">
- <Component Id="cmp0C91F31A4CBE470CD5044A0099C8B90B" Guid="{2A7A2141-16DD-4651-9C37-A3750367F484}">
- <File Id="filE18A0C567D9146114C6C9C7729ABE8C0" KeyPath="yes" Source="fio\usr\share\man\bg\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- <Directory Id="dir122C775B339957023BC047D1C5484B23" Name="man8">
- <Component Id="cmp7436792AF6B40D7F9818CAA0EDF6C5F6" Guid="{7B8728C6-7FD4-43A6-9A37-47C45C744FA6}">
- <File Id="fil9EDBEB886CD633968510B79FDC623036" KeyPath="yes" Source="fio\usr\share\man\bg\man8\makewhatis.8.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir2CF9D5FC9E96E383C9B9E9E03D7AEFB7" Name="cs">
- <Directory Id="dir6DC8192B516D83A11FB732BD22FA07FA" Name="man1">
- <Component Id="cmp25C8C841866F15366CF8B854D3180B25" Guid="{F4D5DDE1-E9F2-4BBB-AAA0-5D763E66E8AF}">
- <File Id="fil067B946DEB5AE1E32EC239C265782AF2" KeyPath="yes" Source="fio\usr\share\man\cs\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp67EE04D80E2D2D098AE59FB6E7CCAED3" Guid="{84F7C58E-F1DE-438D-B06C-9DF66E32179D}">
- <File Id="fil705B7A983A0B85FFE58EF2B3754579D9" KeyPath="yes" Source="fio\usr\share\man\cs\man1\man.1.gz" />
- </Component>
- <Component Id="cmp530FDB5805C9B4E18FEBCC985C843075" Guid="{19825BDB-334E-4B1A-A82B-6A88A3D5F747}">
- <File Id="fil8D00C7D69DB491F5DDC80183267EBF51" KeyPath="yes" Source="fio\usr\share\man\cs\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dirAC0F8481316C410B2992C4D6B4FD86A4" Name="man5">
- <Component Id="cmpBDEBCBDA35CF45184DFECB1801BD1D42" Guid="{81C5896F-AD13-4B1A-8A4D-AF8EE6EAE68F}">
- <File Id="fil1CF77B6E26406D3A2A3AD82273DC3966" KeyPath="yes" Source="fio\usr\share\man\cs\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir50EA302FB49AE95E929B21E6C4E60F00" Name="da">
- <Directory Id="dirD837EBE55C6C8764E9D5BCB3B1E394BA" Name="man1">
- <Component Id="cmp7AA6346051EE7DEEDAF612CC79B9267B" Guid="{780A47C3-7761-4090-88D1-911F6BFD1ECB}">
- <File Id="filF4AEC399F7ABB916C18CAC9E0D2DDD57" KeyPath="yes" Source="fio\usr\share\man\da\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmpCE8003DBF1611051A3853038A0C23185" Guid="{5F9F82ED-780F-4FA9-B28D-3F765F7122EA}">
- <File Id="fil86693226F6D5346A3B51543DCFBD9D28" KeyPath="yes" Source="fio\usr\share\man\da\man1\man.1.gz" />
- </Component>
- <Component Id="cmp812D27130B36D6A48DB41BC9D98F4432" Guid="{B6F4C0BD-019A-40D4-9C97-5D8BE673E2F2}">
- <File Id="fil844DA4D286D5685E081DB747DB901248" KeyPath="yes" Source="fio\usr\share\man\da\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dirD233A7CF3078C8B621FBD9D5634E7C8A" Name="man5">
- <Component Id="cmp35FA6915F25811784CD4E03778545338" Guid="{3746ED69-F5F3-43E2-8A29-160FDFCD6B22}">
- <File Id="fil67303EE3FB69C911B97CF5355257FBD5" KeyPath="yes" Source="fio\usr\share\man\da\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirEB1B40FD299F9EDF036F756481ECD2CE" Name="de">
- <Directory Id="dir5C8D87676A5CDAA21711011DABAAE351" Name="man1">
- <Component Id="cmp6E6A8E89389B7F202BC140DBA5B5842F" Guid="{F36CB687-0AFB-45C9-8E68-ADDE43A8C646}">
- <File Id="filAA812290E91D1BB48E736BD88C9D6EDE" KeyPath="yes" Source="fio\usr\share\man\de\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp8B3FE7C26B08F2CC509B787A31B7AD76" Guid="{D584ACD1-9291-49DD-91E2-317F34D4B387}">
- <File Id="fil9FC7572F77BE7815F26C6A476E6FFDDE" KeyPath="yes" Source="fio\usr\share\man\de\man1\man.1.gz" />
- </Component>
- <Component Id="cmpFAD69875DA7320B76B31A8498CDBC6F6" Guid="{60C40B48-25C8-40CB-91C1-019C5D4AE992}">
- <File Id="filBF5926051F026D03D8EED37DDE4A929D" KeyPath="yes" Source="fio\usr\share\man\de\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dirA396BAAD5673810FD69B0E46E6651A92" Name="man5">
- <Component Id="cmp419081958E230AB6A31568EF7261A23C" Guid="{5D4D6157-8211-49B2-B6EF-2FD03E44A8BF}">
- <File Id="filF484FFCFBBEE49BF3E25BF6751A163B5" KeyPath="yes" Source="fio\usr\share\man\de\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir43252BADD4DB26117F0A6EA5D7C88B06" Name="el">
- <Directory Id="dir4916B0113E790E5D7C838D69A874314C" Name="man1">
- <Component Id="cmp62E8C07D3E9DD0B09283A061F208BC36" Guid="{D1132581-5637-4C8B-9ED2-6DC065D01348}">
- <File Id="fil3881D42F26FB0B56EB3B9D39F0AC12E5" KeyPath="yes" Source="fio\usr\share\man\el\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmpB89F8730DC587FC7576FD4690B378D09" Guid="{3C15DDF4-0E83-4BC5-A96D-D6CE1CB8DF2D}">
- <File Id="filE4A9C3E24CBD4764DE3EEA055FA1763B" KeyPath="yes" Source="fio\usr\share\man\el\man1\man.1.gz" />
- </Component>
- <Component Id="cmpAE3590BFCDE2F952864F31E63C714CC9" Guid="{C066F9A6-0BEE-4C98-8F9A-D0E8859B8309}">
- <File Id="filD050083E98E3CBAB74CB2852D34BD2E2" KeyPath="yes" Source="fio\usr\share\man\el\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir271A3B9FC3D6EDA904E95D5FC5DC4108" Name="man5">
- <Component Id="cmpBE9858A9E4BFF75F15C7680E9922C94F" Guid="{BD71DE6D-6DCF-4E5B-A15D-605193DFC88B}">
- <File Id="fil718497314C6ED9650458CB753D5C6AA2" KeyPath="yes" Source="fio\usr\share\man\el\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- <Directory Id="dirB0002DB3B81A406D1E36A7D5E9A808F9" Name="man8">
- <Component Id="cmpD5AD024AC309216BEB677EA7684BBD48" Guid="{AD23A92D-556E-43EB-AABD-5732528D9B5A}">
- <File Id="fil51626E3AA923D7573CD89A739547E3FB" KeyPath="yes" Source="fio\usr\share\man\el\man8\makewhatis.8.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirEDABD866BF0278F60A77DAE5F6E31C78" Name="es">
- <Directory Id="dirC66B44C48C0472A41283BA234A9A8152" Name="man1">
- <Component Id="cmp39331DBFCD9776AEE0A9C48ECEEB8E7D" Guid="{75E95411-B9BF-4508-80F9-2173845DFCF0}">
- <File Id="filB6724D549D33CB1134E5701744B04C7F" KeyPath="yes" Source="fio\usr\share\man\es\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp38690448FE2718437E4A603C4D5145BB" Guid="{AC3AB83D-70E7-4EB4-B503-C27637390ED6}">
- <File Id="fil3A6D5E05DB29DFAB64DD750FFE5E2898" KeyPath="yes" Source="fio\usr\share\man\es\man1\man.1.gz" />
- </Component>
- <Component Id="cmp1CDBC599613D5792EEDAD0DF4EFBDB75" Guid="{7EE0BCBB-DA16-4C2C-A47D-86293D9E0F30}">
- <File Id="filDD809A310C9BBF904A120A61BED6746C" KeyPath="yes" Source="fio\usr\share\man\es\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir319BE8EBD070634462F0A33E4DFD4B4B" Name="man5">
- <Component Id="cmp1686BCDFFC1135EA84ECD748DD6B93E1" Guid="{3AEC9BE1-042D-4A86-AE67-17D504EC7955}">
- <File Id="filF7B0074FC4BE374B3152F7C4BD925A7F" KeyPath="yes" Source="fio\usr\share\man\es\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- <Directory Id="dirCC633681FD64F8EA76ABF214579B194F" Name="man8">
- <Component Id="cmp0D038958466253FBF9C8E1673EE6AB83" Guid="{3F878C5F-0C6E-48E2-BC3A-25801A526A4E}">
- <File Id="filC2E33356DF49A4C6058DA542B8C3ADEA" KeyPath="yes" Source="fio\usr\share\man\es\man8\makewhatis.8.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirDC597F5A5A935E3D5F3BBCF7B7254CD1" Name="fi">
- <Directory Id="dir568FA8CBD163D683FE8F2FB4A8A201FF" Name="man1">
- <Component Id="cmp7C5F875FDA03898E0686C118524730DC" Guid="{9140EF43-E1B3-4D4B-8555-0DC8E3560246}">
- <File Id="filDD0590724E2ECE99CA8267B6A529A48F" KeyPath="yes" Source="fio\usr\share\man\fi\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp8A2F29770B3FA03005D9B3D8F2E7D360" Guid="{0432E906-6A79-4EBD-949D-3A1CA7C1CE2B}">
- <File Id="filE40B60E69521A0C81F9456C4A7C72206" KeyPath="yes" Source="fio\usr\share\man\fi\man1\man.1.gz" />
- </Component>
- <Component Id="cmp102FD3D7195E2E04DEC517C6412E6F90" Guid="{F88138D8-E6DC-4943-80FE-C80E623F9C70}">
- <File Id="filA3FE1140C63CA209E27697AF38C07C10" KeyPath="yes" Source="fio\usr\share\man\fi\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dirBCEA37C71E629085A53494732F46CB53" Name="man5">
- <Component Id="cmpDC68C43F25DB24806B7429EE362278B0" Guid="{E27D0389-E03D-4C74-A984-CAC1DE39F91B}">
- <File Id="filE9BCA07EEDC93665A1A690FE74BA1550" KeyPath="yes" Source="fio\usr\share\man\fi\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir354A45B1B750A48DFC5A78F67CAE1544" Name="fr">
- <Directory Id="dir8A27792159AA5775201F6CBB08E8C8F0" Name="man1">
- <Component Id="cmpD2AD7014C16FE1D25F4633A7A650FFCB" Guid="{7545B04A-986D-4D02-9DE3-8D7E5D29A4DB}">
- <File Id="fil74A67BF38142DE2BBEBB22F908533E6D" KeyPath="yes" Source="fio\usr\share\man\fr\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp02C721B19F51351A7F2D1650DB8E5484" Guid="{361CA12D-5EB6-4169-9D8B-87978E034549}">
- <File Id="filF6C0B7A40AB463ACD0632453523D03AB" KeyPath="yes" Source="fio\usr\share\man\fr\man1\man.1.gz" />
- </Component>
- <Component Id="cmpBADD7033569ABE80F9937EDA9A5AEFB6" Guid="{E615ECD6-798D-4248-9815-40ED7E6BFD9F}">
- <File Id="fil53AB220978428EF2B292CE7C1B953BA6" KeyPath="yes" Source="fio\usr\share\man\fr\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir637ED98AC25BD726ECACCFA70D67620C" Name="man5">
- <Component Id="cmpBD0B076EEE1E08F47F6EB45EADBA6950" Guid="{81603BE6-2C83-48DA-A3BC-2C2644F91FF3}">
- <File Id="fil25BAD4F401BE640BB6C8071A3989BFEF" KeyPath="yes" Source="fio\usr\share\man\fr\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- <Directory Id="dirB6CC03DC74C0D7F035D53E219BE51019" Name="man8">
- <Component Id="cmp2AC3CCC956B55588EC33058BF9580F4C" Guid="{8F065A01-3012-4D94-AD6D-AECEB9189E47}">
- <File Id="fil5978073576FE9018163C6AC5FFDE7DB7" KeyPath="yes" Source="fio\usr\share\man\fr\man8\makewhatis.8.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dirF8B5369C7216488747C8E9E35D3DB75D" Name="hr">
- <Directory Id="dirE2C40DED5748FA3691355B7198108A51" Name="man1">
- <Component Id="cmp92DE49323AE3C837E697047FF050C0C9" Guid="{6B96A37F-54C8-4081-B974-B381B8FDEC20}">
- <File Id="fil050DFC7D584BA6F124798BE6D9A293C5" KeyPath="yes" Source="fio\usr\share\man\hr\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp45668167158F2BC6E25DC68353F14418" Guid="{31BCCFD0-3C18-4179-99D6-8EFF3AD26A0D}">
- <File Id="filE9E55BBC379AA66DE33A29421858E556" KeyPath="yes" Source="fio\usr\share\man\hr\man1\man.1.gz" />
- </Component>
- <Component Id="cmpFCA1765149E6DBD763D0D9458A2C63ED" Guid="{9C59709B-9A53-483F-96F3-5ED6D31C068C}">
- <File Id="fil4BDB313E0002A2B4B34DDEC6B84CA221" KeyPath="yes" Source="fio\usr\share\man\hr\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir2031860D8E97CD2CB82F96F5B38C3A79" Name="man5">
- <Component Id="cmp982B7D7EFCD9FB6E94511591EAF23C32" Guid="{B68289DF-E6B2-465A-BBC7-FDE326297338}">
- <File Id="fil11FAC7FC8731445EA5B9BD347DC099A0" KeyPath="yes" Source="fio\usr\share\man\hr\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir58E2D4226B3E73BF5A85490DF29FB2AF" Name="it">
- <Directory Id="dirD561C4467B9758D48C70E687712DDAE8" Name="man1">
- <Component Id="cmp19FBC407C50348505C76D8AD64E8AB64" Guid="{294C2A3C-9C97-4ED9-9954-2DD544BA5F1A}">
- <File Id="filBF396F9B52BDF23F0E388010A60D4967" KeyPath="yes" Source="fio\usr\share\man\it\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp5696C18210FF5AF5D28F08D84FA4264D" Guid="{F003D586-C318-415A-B88A-92972F84C606}">
- <File Id="filDE66C1C3AFD9FEDB54633315B4B410F0" KeyPath="yes" Source="fio\usr\share\man\it\man1\man.1.gz" />
- </Component>
- <Component Id="cmp97E5A022437239DD8450730106B5717C" Guid="{FFEE531E-1DF2-4A3C-B676-3E25EBEF9661}">
- <File Id="fil7BE5768521B036BC0CB5C4B7C42B5529" KeyPath="yes" Source="fio\usr\share\man\it\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir68CB4ED56991507827B152E64081310B" Name="man5">
- <Component Id="cmpC357C6D3932C429ED7A4889FF3BBEA63" Guid="{DAC131B5-4F33-49BF-A569-128683B46803}">
- <File Id="filB16CEA6878AE26AE6CC6F55C9A81FDC2" KeyPath="yes" Source="fio\usr\share\man\it\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- <Directory Id="dir8DCE18AFDE00EE754C10C7EBFB88829A" Name="man8">
- <Component Id="cmpA2E210254BC6719402C55C565D7AAFE4" Guid="{7F7A6E05-682F-415C-8485-22500126AB6D}">
- <File Id="fil4A6947C600B0109A132012063E21909C" KeyPath="yes" Source="fio\usr\share\man\it\man8\makewhatis.8.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir44E475CBF9DAECDCD1473795C2AAC1F9" Name="ja">
- <Directory Id="dir29A64062A6F6A152BEEF8D451C7F6D0A" Name="man1">
- <Component Id="cmpDE2A7FBDA468EDB0B678C14E0F6EA3F5" Guid="{96A6F18B-1E79-4C22-9ECF-E9427A5F070F}">
- <File Id="filEC327D1872D77631ADB3E815BDF55571" KeyPath="yes" Source="fio\usr\share\man\ja\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmpB247FD22FA914CE1C801B3DEDCD5F47B" Guid="{374E6AF4-5EDB-4453-94AC-3721A72A3824}">
- <File Id="filB97805D073F6DFF2E25474A4FC2D04FB" KeyPath="yes" Source="fio\usr\share\man\ja\man1\man.1.gz" />
- </Component>
- <Component Id="cmpAD1D54658B223B329D73B4BFE0490183" Guid="{5A088A7F-C308-49B1-A42A-B7B6AA4B4E19}">
- <File Id="fil0DC043DC46E6DA2894174E882FDDB7F2" KeyPath="yes" Source="fio\usr\share\man\ja\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dirF377F6935108A097A291E59211985285" Name="man5">
- <Component Id="cmp547AC52BF0456CF2D083DC9FE827708E" Guid="{9E07E7CC-ACD7-499D-921E-227800BC90B1}">
- <File Id="filE85EF69B40C14046591BAE1A8B035255" KeyPath="yes" Source="fio\usr\share\man\ja\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir093538D04E92178907503947BA09A7D9" Name="ko">
- <Directory Id="dirDA5FD75EB464FA2758F8372431D1449C" Name="man1">
- <Component Id="cmp5DEF34C5A13FBCDE8FF7700AC51FC4A6" Guid="{45BA475B-781B-48B3-9895-BA83D6CE125E}">
- <File Id="fil72990F8570B82465B5562CA7ABF7A0D2" KeyPath="yes" Source="fio\usr\share\man\ko\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmpDA0453BBA70F8E5ACEAFFBB6F9990E69" Guid="{3B2BF59A-75E6-41C0-B205-8870D1F36B20}">
- <File Id="fil0CB7DCC3CBCD6629235BD5D7BD9C53F0" KeyPath="yes" Source="fio\usr\share\man\ko\man1\man.1.gz" />
- </Component>
- <Component Id="cmpDB9C7098D3E294A8027B0820D31101F0" Guid="{6EEDFE84-B75A-40A0-838C-A4C661FA8FB6}">
- <File Id="fil7E97696B49DE24BA9338F3AEB116D850" KeyPath="yes" Source="fio\usr\share\man\ko\man1\whatis.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir0ACCE56FEF1436A893A6DE0B694F74EF" Name="man5">
- <Component Id="cmp165D266C41A6599FDACB4C586279F5F0" Guid="{345EFD87-5D52-46F8-93B1-E88D494071A1}">
- <File Id="fil0D53289BD39973EFCA6E26030F71836C" KeyPath="yes" Source="fio\usr\share\man\ko\man5\man.conf.5.gz" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="dir2A1C4F64953E2E89C59078980BAFA6C8" Name="man1">
- <Component Id="cmpD0A6E530794421122E2FE9E921C392AD" Guid="{1696E5AE-0FC7-4EF5-AB78-5FA4DB3802E5}">
- <File Id="fil1272B789B95589597FAC7196A62B1F1A" KeyPath="yes" Source="fio\usr\share\man\man1\addftinfo.1.gz" />
- </Component>
- <Component Id="cmp50CE72BAF142791B77A8DC2D7B007F45" Guid="{1E31FAAE-939B-4E30-9A3C-2ECE36F0BBD5}">
- <File Id="fil2A7DAD9DA21AEA4AB32A9FBE7F46AAB7" KeyPath="yes" Source="fio\usr\share\man\man1\afmtodit.1.gz" />
- </Component>
- <Component Id="cmp1D9886CFC7EED4F96E3D7186A1F123BA" Guid="{9904F89A-F0C3-4645-A6A4-99A9524EED84}">
- <File Id="fil144020737DB52765B362574B9BA39644" KeyPath="yes" Source="fio\usr\share\man\man1\alias.1.gz" />
- </Component>
- <Component Id="cmp1CDBB251BA5449E9521E3CE3A7FC15C1" Guid="{DCCE3D79-E1DF-4063-ABAB-414BE2F0EBB8}">
- <File Id="fil323EDFED1BEA85FCD259ECD55C3CC9CC" KeyPath="yes" Source="fio\usr\share\man\man1\apropos.1.gz" />
- </Component>
- <Component Id="cmp492D2DD1CB199A7CACE32C349223CB6F" Guid="{ABE4C2D8-DFB8-4518-884D-E03D1DEA5445}">
- <File Id="fil9A9146112ADCF75246FE48219F1D1ACD" KeyPath="yes" Source="fio\usr\share\man\man1\arch.1.gz" />
- </Component>
- <Component Id="cmp2248F63A186B8E5A1E8151FDEB585D6E" Guid="{BE0E172A-082B-4DBD-AD00-CBC9D6472A9C}">
- <File Id="filD3EBE0A09D481E9520678ED1922724E3" KeyPath="yes" Source="fio\usr\share\man\man1\ash.1.gz" />
- </Component>
- <Component Id="cmp441CB328690F8CFE77FFFDA9F52E79D7" Guid="{DA0FE170-541F-438A-AD5B-3C69EC8FA2B6}">
- <File Id="filBEF03968BC338E6A3D778CCE561DD101" KeyPath="yes" Source="fio\usr\share\man\man1\base64.1.gz" />
- </Component>
- <Component Id="cmp05E5277F50DEBE14B16A622BEECCAD3F" Guid="{1D5D31B2-25BE-4D20-8A66-6A8C559C5A8E}">
- <File Id="fil65AA078482A69A5B163A6F906F484572" KeyPath="yes" Source="fio\usr\share\man\man1\basename.1.gz" />
- </Component>
- <Component Id="cmp5A42C72055B9007F3A3985A57B641143" Guid="{A2F0CDF0-567C-44D0-B57D-65FA4D2733EC}">
- <File Id="filAD83F94C7A86C5CBB58EE801D70FD587" KeyPath="yes" Source="fio\usr\share\man\man1\bash.1" />
- </Component>
- <Component Id="cmp43D55A41582114E7091D2862E736C7CA" Guid="{9D936315-993D-41A8-838B-060E6FAC8060}">
- <File Id="filEA57FF33663D3F6C71DCDBDDB3C84D64" KeyPath="yes" Source="fio\usr\share\man\man1\bashbug.1.gz" />
- </Component>
- <Component Id="cmp164FB5B76E9F8F4C237C4BB0344A41CC" Guid="{1B1679DF-33FB-49B1-AE41-938FDCAB2392}">
- <File Id="fil8B0E23FB670249990F1B936A98B9A2C1" KeyPath="yes" Source="fio\usr\share\man\man1\bash_builtins.1.gz" />
- </Component>
- <Component Id="cmp3E159BA3E14338F1C5016D0EC45BB2F1" Guid="{E72E01D5-FBAE-4305-942A-E3FA0BB60C9E}">
- <File Id="filC269AA396C2538231C6AFAC003F7E5FE" KeyPath="yes" Source="fio\usr\share\man\man1\bg.1.gz" />
- </Component>
- <Component Id="cmp17ACEAFB5594B8B3B0E5B8668B5AED72" Guid="{51F0D3AA-70B1-4ED9-A7F1-DB81A124C42C}">
- <File Id="fil7367068779A25264C00B3FB1EC0B6D48" KeyPath="yes" Source="fio\usr\share\man\man1\bind.1.gz" />
- </Component>
- <Component Id="cmpA0E407D4295C387A6D7A5577EC480E95" Guid="{630D697A-4F93-4E19-AA83-12E1567645AF}">
- <File Id="fil86CEF347C6A9BBB411945E405F06888E" KeyPath="yes" Source="fio\usr\share\man\man1\break.1.gz" />
- </Component>
- <Component Id="cmp7E5C51057EC89C6E3655EC99A6AF74DD" Guid="{3F73FCAF-0633-42BC-BC53-19CC7EB49F2E}">
- <File Id="fil94B5C1CECB17E507A25D68D7C58A3783" KeyPath="yes" Source="fio\usr\share\man\man1\builtin.1.gz" />
- </Component>
- <Component Id="cmp78C40848B6C32431EE4C193C1D7ED3F7" Guid="{DDC14891-7214-4A23-A561-CCEE00C78962}">
- <File Id="fil695A73C10A1934B113BA032CD970F469" KeyPath="yes" Source="fio\usr\share\man\man1\bzcmp.1.gz" />
- </Component>
- <Component Id="cmpC29D6EDAB831228A8BDA801EB37DD606" Guid="{6F0D94F4-12AB-42FA-9A11-AB11FDD58D57}">
- <File Id="filE6E6747C6C5B0A07B9DB68930426E9C3" KeyPath="yes" Source="fio\usr\share\man\man1\bzdiff.1.gz" />
- </Component>
- <Component Id="cmp34DD5FCFB2FFF384F6E4908C7D41BB1A" Guid="{C1D15750-F0C4-461B-A96B-71AC7EE77704}">
- <File Id="filECAFE00641A61F8B7E8B81EEE3642251" KeyPath="yes" Source="fio\usr\share\man\man1\bzegrep.1.gz" />
- </Component>
- <Component Id="cmp59A6090FF9C3889A9B83C8576A347201" Guid="{948B98BC-5B9A-4567-BAB5-22A15E3FD41A}">
- <File Id="fil956DB1B7E8D8D0707B6D45DED7D1E685" KeyPath="yes" Source="fio\usr\share\man\man1\bzfgrep.1.gz" />
- </Component>
- <Component Id="cmp925FB2A7266CB91A77C689C5965A57FB" Guid="{D8D03FA6-1EEA-459A-B41C-63B28F85069F}">
- <File Id="filD024BE76238EA51B125E3BFF25A2158C" KeyPath="yes" Source="fio\usr\share\man\man1\bzgrep.1.gz" />
- </Component>
- <Component Id="cmp8BBD171BF2E85A2904EF933EA8295A34" Guid="{E005B6FA-D1BA-4458-BBA0-2C02125F1111}">
- <File Id="fil73448370B6EC7953B08AA73481D0AAE3" KeyPath="yes" Source="fio\usr\share\man\man1\bzip2.1.gz" />
- </Component>
- <Component Id="cmp858188FF5632FA822766B67BFD81B89B" Guid="{0E9DD7FF-8407-44B4-8C7F-932FE65A3D45}">
- <File Id="filB1CDDADB70CCEF49E2E04930DB6C4B19" KeyPath="yes" Source="fio\usr\share\man\man1\bzless.1.gz" />
- </Component>
- <Component Id="cmpCF6F7DDE30CACA75753194A6A88CC254" Guid="{72051CB8-2277-4891-85CC-29F7A8097221}">
- <File Id="fil2A3A546A6980603A12103A1E01E67CB6" KeyPath="yes" Source="fio\usr\share\man\man1\bzmore.1.gz" />
- </Component>
- <Component Id="cmp927F09E216EA581229395E82902E6AE6" Guid="{1778CE22-20DD-43D2-9FDB-AB01ED2E91E0}">
- <File Id="fil420CB8AE1F91C469D6A1DA6DD88B69A9" KeyPath="yes" Source="fio\usr\share\man\man1\caller.1.gz" />
- </Component>
- <Component Id="cmp742DBC6B6FEAB3F84E740AC51EA240F9" Guid="{549FF9A0-BB78-41B2-B56A-50809BC0DF00}">
- <File Id="filC17D94B2C65F4614747001D283145DB1" KeyPath="yes" Source="fio\usr\share\man\man1\case.1.gz" />
- </Component>
- <Component Id="cmp0DD0407032959AC14C065F8F8FF0B757" Guid="{E541A617-ECC1-49BF-BBBE-6492D2CA2458}">
- <File Id="fil109061C31554A08099EF0D3B294935B9" KeyPath="yes" Source="fio\usr\share\man\man1\cat.1.gz" />
- </Component>
- <Component Id="cmp0DD95F7A0DA9B0105953EE682A6688BA" Guid="{7049DEE9-0D8A-414B-8318-719F2F7FB994}">
- <File Id="filC839CE81D806B261EDF92A3545693789" KeyPath="yes" Source="fio\usr\share\man\man1\cd.1.gz" />
- </Component>
- <Component Id="cmpA7269692ADF170277AB77B6AFE3347F0" Guid="{9640D660-C42F-49D7-BD77-EBABCFC3442E}">
- <File Id="fil4C41B1BF07913C1FA18E2745043243E0" KeyPath="yes" Source="fio\usr\share\man\man1\chcon.1.gz" />
- </Component>
- <Component Id="cmpC05FEE98E6E11F3DC12ED8FE4801B097" Guid="{08148099-B570-4FC0-834C-BE0D70D62011}">
- <File Id="fil3D9670D4E8B461EB97425F1A3FDC6EB5" KeyPath="yes" Source="fio\usr\share\man\man1\chem.1.gz" />
- </Component>
- <Component Id="cmp94CA5ADB0018103B876C6E387F73920D" Guid="{637F8510-C515-41CD-858D-152429415EAF}">
- <File Id="filF3D73C74B77BF0A60CCD7E61E395A856" KeyPath="yes" Source="fio\usr\share\man\man1\chgrp.1.gz" />
- </Component>
- <Component Id="cmpBFF626E9A372DD14DD42B481D88BC996" Guid="{9C0794D1-45A1-48BD-93AD-ACB564380959}">
- <File Id="fil709FC987245DE4273F15524E1FC93B8B" KeyPath="yes" Source="fio\usr\share\man\man1\chmod.1.gz" />
- </Component>
- <Component Id="cmpD10F32A259A72E53C710D3356892A004" Guid="{57A13D61-8C7B-48B0-AD45-4A9F1033B46B}">
- <File Id="filD6F2FF48857DDDEB40195D443C9674F5" KeyPath="yes" Source="fio\usr\share\man\man1\chown.1.gz" />
- </Component>
- <Component Id="cmp04261302CA05097E6A1494A75CC40F6E" Guid="{EB394FA5-FCC5-4BCA-9709-8BBF5B27434F}">
- <File Id="filA2214A79BB5240900D938E98CCD39653" KeyPath="yes" Source="fio\usr\share\man\man1\chroot.1.gz" />
- </Component>
- <Component Id="cmpD77ABB1B862DE3276965A02058AE46CA" Guid="{2589EBD5-5A82-4543-849D-4F5E607CF01A}">
- <File Id="fil5CCA70A4B5CDA058D950ADAFF7676EEB" KeyPath="yes" Source="fio\usr\share\man\man1\cksum.1.gz" />
- </Component>
- <Component Id="cmp59CD77A1ADC7668993F07E2F2320EDB4" Guid="{B2F1124D-0EE3-47DF-8991-26FD1A325C93}">
- <File Id="fil2B7C24C7D6FB1449AE40338273F50C0A" KeyPath="yes" Source="fio\usr\share\man\man1\cmp.1.gz" />
- </Component>
- <Component Id="cmp59DFB0B8228CD6C8954AB07D6DD38922" Guid="{275A27C6-ACE0-432E-97C1-1DB30F5612F5}">
- <File Id="fil60031A088B2974DF9CF046E74FDCD6DA" KeyPath="yes" Source="fio\usr\share\man\man1\comm.1.gz" />
- </Component>
- <Component Id="cmp3E7FC93771DCFB0C1746960D0E1D2704" Guid="{F6D6909C-04C1-4599-9AF6-BD896C18457D}">
- <File Id="filD2969D376F92DF7DE38724E9934E8B77" KeyPath="yes" Source="fio\usr\share\man\man1\command.1.gz" />
- </Component>
- <Component Id="cmpC785F77ECD857C5C64E62167CE325D73" Guid="{997ECE46-0AFF-4ADE-9FBE-A7FB969D7D88}">
- <File Id="fil0EEBFBBDACD3DAEFAF4D784E5E333D3F" KeyPath="yes" Source="fio\usr\share\man\man1\compgen.1.gz" />
- </Component>
- <Component Id="cmpD64279D3F1F6FA5963DF6E97A9AD84A0" Guid="{986957B0-5F5E-48B5-88AB-F32E05A109A3}">
- <File Id="fil35C7A7E6A845690272812485C2E13567" KeyPath="yes" Source="fio\usr\share\man\man1\complete.1.gz" />
- </Component>
- <Component Id="cmp8B1AE7C5533E5712C798B0C86F3530FF" Guid="{8544D540-72A6-4E3C-BE7D-F2F6E73C7607}">
- <File Id="filC371AC0EF36EB85137BCF0188D21B30C" KeyPath="yes" Source="fio\usr\share\man\man1\continue.1.gz" />
- </Component>
- <Component Id="cmp210DE65AAAAC1D63609E86E2D9A8EA13" Guid="{5FB67EC8-5C29-4C8E-99C3-036E55ACDC33}">
- <File Id="fil8D73E990375F25E15FAEFB894B443551" KeyPath="yes" Source="fio\usr\share\man\man1\cp.1.gz" />
- </Component>
- <Component Id="cmp0F6A416E5095011A7BB5CF84DB1AB995" Guid="{8E543A93-0E79-4F4E-A343-0BB041BD6FFF}">
- <File Id="filD3D32CB9A261CBE363C7EF57D7B76745" KeyPath="yes" Source="fio\usr\share\man\man1\csplit.1.gz" />
- </Component>
- <Component Id="cmp816143D464455C093AF9935C27D126E6" Guid="{6D2AC8E0-AC21-4237-B63A-17F4BD43863A}">
- <File Id="filE41554A34C038F92DE7805EDFEA6AA0E" KeyPath="yes" Source="fio\usr\share\man\man1\cut.1.gz" />
- </Component>
- <Component Id="cmpB412B14C5E0E9BA079CC137DBE394D52" Guid="{E50662A5-6E8F-4303-B29F-2442089DE162}">
- <File Id="filD152F35EE41D0F17A1E600DE200FFFE1" KeyPath="yes" Source="fio\usr\share\man\man1\cygcheck.1.gz" />
- </Component>
- <Component Id="cmpC49286CBF2BECD626BE45506F7842ACE" Guid="{09D4C30C-6242-4EED-9BA0-F4312627FDE2}">
- <File Id="filF6147249DA29203AF07A8BB8C75320B8" KeyPath="yes" Source="fio\usr\share\man\man1\cygpath.1.gz" />
- </Component>
- <Component Id="cmp4A188E701A9F36E4FE8109DC4137CACC" Guid="{EE8E2108-DE92-4900-B6E8-11C99B58EAA4}">
- <File Id="fil742BC8E1DF69A365BBE2856735ED825A" KeyPath="yes" Source="fio\usr\share\man\man1\cygstart.1.gz" />
- </Component>
- <Component Id="cmp73BD8E8B0E900D9AB1F858AA9B305B01" Guid="{ACDE61BF-4956-4937-BAB4-F54C8AE702F7}">
- <File Id="fil14A49186CEFF9C988476FE7833E2810E" KeyPath="yes" Source="fio\usr\share\man\man1\cygwin.1.gz" />
- </Component>
- <Component Id="cmp7E83BA292CBF8A397DF71E634C3589A6" Guid="{7898F358-5A95-4B53-BF7C-D24A408FA1E7}">
- <File Id="filE79600C5D5CF2350CDB2245E49E1101E" KeyPath="yes" Source="fio\usr\share\man\man1\dash.1.gz" />
- </Component>
- <Component Id="cmpA50F571390E780942EC7356D1671041B" Guid="{CC6D3064-770E-4074-827F-CB4C8459219C}">
- <File Id="fil032F291A2414477F2FFEEB30BD628BEC" KeyPath="yes" Source="fio\usr\share\man\man1\date.1.gz" />
- </Component>
- <Component Id="cmpE65264B0C5C48AB35E8518D08AED91E7" Guid="{FAC7EB43-6273-41D9-B8A9-3DE6D1A05EE8}">
- <File Id="filA6C7F86CD8D38A1DCAFCC7A2A9A497AF" KeyPath="yes" Source="fio\usr\share\man\man1\dd.1.gz" />
- </Component>
- <Component Id="cmpAB11FDE3C98AE49192012CEBF99D05B0" Guid="{D706B6A4-DE61-41E1-9AB3-148C2858DBA9}">
- <File Id="fil283FF01472A5DEAD9313A6AE0299039D" KeyPath="yes" Source="fio\usr\share\man\man1\declare.1.gz" />
- </Component>
- <Component Id="cmp3FA0FBC4CF8EB9B23BCE2A428CEAAEF9" Guid="{A31A6FA7-0EEF-492F-96C0-8DF4C64FCC54}">
- <File Id="filB31AC0E3FE232AB0B9179827A16800A0" KeyPath="yes" Source="fio\usr\share\man\man1\df.1.gz" />
- </Component>
- <Component Id="cmp6E2E689B9F0128426AB98532982C2E1A" Guid="{D095AB94-30F8-4967-8B96-A75219287924}">
- <File Id="filCE6BA694906DC1825E84FF946B1E2458" KeyPath="yes" Source="fio\usr\share\man\man1\diff.1.gz" />
- </Component>
- <Component Id="cmp81F9DA3AA79720EDA79DE596B9E7754C" Guid="{D5B10618-FEFC-4139-97C3-C8E061E8AAF1}">
- <File Id="filE563142CEB17C8B37937BEDE1C87EDB4" KeyPath="yes" Source="fio\usr\share\man\man1\diff3.1.gz" />
- </Component>
- <Component Id="cmpA1D534E2138641D549C44725B62AE13A" Guid="{E3AB89B5-407F-4FD3-AA90-B23ABD218624}">
- <File Id="filDCE7FA03CB7BD92F100150CAA8341FB1" KeyPath="yes" Source="fio\usr\share\man\man1\dir.1.gz" />
- </Component>
- <Component Id="cmp3B405CF6C960CA63BF3692157CEF94FE" Guid="{28419EEF-3BBB-4D23-A88C-16FB5028DD99}">
- <File Id="filC186062065747C00277B50EDD7F84342" KeyPath="yes" Source="fio\usr\share\man\man1\dircolors.1.gz" />
- </Component>
- <Component Id="cmp17803A1F18BB859FB349A34D341B9931" Guid="{A2279134-CEDD-4DCB-9370-B37864B9B878}">
- <File Id="fil1105F5954005968CF2C07158134A529D" KeyPath="yes" Source="fio\usr\share\man\man1\dirname.1.gz" />
- </Component>
- <Component Id="cmp8D3C33D5CA4F051EFC396A1423159AB3" Guid="{6D5F7F6C-2C06-4939-BBD8-AA889DBA21C5}">
- <File Id="filEC23ACC3A93CE28C139CD6D3D7D786EB" KeyPath="yes" Source="fio\usr\share\man\man1\dirs.1.gz" />
- </Component>
- <Component Id="cmp24A2DFFFA13124CA994D37249BC8FA46" Guid="{59F0C00B-BB1E-43C5-9B56-F555B51A2269}">
- <File Id="fil990B9DFA95B6404B5AC428157EFE67AF" KeyPath="yes" Source="fio\usr\share\man\man1\disown.1.gz" />
- </Component>
- <Component Id="cmp6FA0CAC3ABC7515C883AE3A7D746EA98" Guid="{76707E19-C781-4DD6-B30C-ADC158C3B1E7}">
- <File Id="fil1335D7D4530F44B5564F358EBEBA658F" KeyPath="yes" Source="fio\usr\share\man\man1\do.1.gz" />
- </Component>
- <Component Id="cmpD820D083DB7FF231ADE007C1A3B5318D" Guid="{BC834A61-C761-40EB-B567-8DE8D5EF3060}">
- <File Id="filBA1C95A2148DF1BB6DEFC6650684327D" KeyPath="yes" Source="fio\usr\share\man\man1\done.1.gz" />
- </Component>
- <Component Id="cmp157E387DF30F9FD30167F603E83440A8" Guid="{A967F31E-6AA6-455D-BF3C-62FCD6D30132}">
- <File Id="filACBEFD1B3285651473B04292A5D4BA3E" KeyPath="yes" Source="fio\usr\share\man\man1\du.1.gz" />
- </Component>
- <Component Id="cmpEE6DE21263B930A9EACE1DDEA81D9C51" Guid="{E66CBFA4-C72C-41C9-97B2-C47D683C3100}">
- <File Id="fil6516AC532F767B3C46B732C6E58F8A46" KeyPath="yes" Source="fio\usr\share\man\man1\dumper.1.gz" />
- </Component>
- <Component Id="cmp12B64A71519C2983172B7753CC62E137" Guid="{D6591A7B-11BC-470E-93D6-80F4CB35153C}">
- <File Id="filCA7624F274452AE5F8F0D1660DEA17F8" KeyPath="yes" Source="fio\usr\share\man\man1\echo.1.gz" />
- </Component>
- <Component Id="cmp487659F7C0C808BC45931663D50475E7" Guid="{62B6502C-03DD-4624-9E46-83E6430CA24F}">
- <File Id="fil2D598ADFD07B96F7ACA8FC8453D5DADE" KeyPath="yes" Source="fio\usr\share\man\man1\editrights.1.gz" />
- </Component>
- <Component Id="cmp08BFEE1D189C516ED5836B8E6F9B889A" Guid="{FE201C11-A780-4DBC-89D1-9D05F8EC5DEC}">
- <File Id="fil3E9B9ED6A5284349EEDA91D36861856E" KeyPath="yes" Source="fio\usr\share\man\man1\egrep.1.gz" />
- </Component>
- <Component Id="cmp0CD175C36F476765828DF8AB54FC36DD" Guid="{9C548392-A09D-46A8-A12F-C7221AD5D34B}">
- <File Id="fil952F3D8E7A26EDB26F42E895956E4A70" KeyPath="yes" Source="fio\usr\share\man\man1\elif.1.gz" />
- </Component>
- <Component Id="cmp35DB91B4B1FFEFA9E026145B5CAA08F7" Guid="{86B29F1A-462B-47C0-B1B5-00B6F9F356B3}">
- <File Id="filFEE1DE7EB4EC9027192AC7F145B268B6" KeyPath="yes" Source="fio\usr\share\man\man1\else.1.gz" />
- </Component>
- <Component Id="cmpEC8F3065126C3EFDD10C9BCD187E8417" Guid="{3C52D540-5722-40A9-B32D-AE3FD33B5A8E}">
- <File Id="fil7EF52283EEDC679CEA1793B4164855DE" KeyPath="yes" Source="fio\usr\share\man\man1\enable.1.gz" />
- </Component>
- <Component Id="cmp56B07D8A6E89EF76E442FB773BF7E62F" Guid="{13029CEE-AA2C-4FF0-B6B9-19A2A617128E}">
- <File Id="fil868D9DFCC4543536C0FCE81093F5CF22" KeyPath="yes" Source="fio\usr\share\man\man1\env.1.gz" />
- </Component>
- <Component Id="cmp21D5116CF618EE2F5D695ED7241C6D56" Guid="{AD753C0E-2DE5-43B7-B333-314EB3CEE40C}">
- <File Id="fil2716589F62EDF9999CD7FC761F41D6A1" KeyPath="yes" Source="fio\usr\share\man\man1\envsubst.1.gz" />
- </Component>
- <Component Id="cmp6B519E1CE220450E4312E55226E96462" Guid="{18BC7DBC-6889-4B16-B73A-215BCAE94ADD}">
- <File Id="fil8071AA5B6849DCD982F80D87A21A068E" KeyPath="yes" Source="fio\usr\share\man\man1\eqn.1.gz" />
- </Component>
- <Component Id="cmp57702044AD575FD9D7D8B72C197B306F" Guid="{FCEDDD92-4165-4FBC-B30B-5A2BC7B3B387}">
- <File Id="filA130B145F27FE7A37D308C2D925A9F40" KeyPath="yes" Source="fio\usr\share\man\man1\eqn2graph.1.gz" />
- </Component>
- <Component Id="cmpC1745FA11BCE93C7A83C8963C6F13931" Guid="{C5F40344-A967-4E70-A3A1-060B1686B1E4}">
- <File Id="filC5A09FA7AC76EB0421B2EAC991F9EB3F" KeyPath="yes" Source="fio\usr\share\man\man1\esac.1.gz" />
- </Component>
- <Component Id="cmpC958AA4121F52A4389EEB53371F1BC78" Guid="{10C30AC9-2C3E-4D57-8A59-91A7308321D4}">
- <File Id="fil4C9E32516B44388497398C09F9A791E1" KeyPath="yes" Source="fio\usr\share\man\man1\eval.1.gz" />
- </Component>
- <Component Id="cmpE3A05EC7B6572C8C4C91CC02E5CFC699" Guid="{77662DD2-4A6D-4675-ADF7-F24AE497F831}">
- <File Id="filD186A2B852669998F1F2F40F9CF19821" KeyPath="yes" Source="fio\usr\share\man\man1\exec.1.gz" />
- </Component>
- <Component Id="cmp8A861C88603F4ABD26F33CDFFE8D8DE2" Guid="{DD274739-9D9F-4941-AF1D-CEAB258C99A1}">
- <File Id="fil70561637D56D161B9AF8D4776C1337F8" KeyPath="yes" Source="fio\usr\share\man\man1\exit.1.gz" />
- </Component>
- <Component Id="cmp7982ACC30CC3C5CD7CA26730774DCA91" Guid="{BDD55D7A-3C2A-41EA-A88E-342C05311EEB}">
- <File Id="filA2B449DC053A9627E0932AF0171ABCD0" KeyPath="yes" Source="fio\usr\share\man\man1\expand.1.gz" />
- </Component>
- <Component Id="cmp0EDD2926D9A99CDDCED419B2652F7C3D" Guid="{9B6E5FBE-E80D-426E-89AE-54716C811022}">
- <File Id="filE1711639E477292E84EA86D02D6136C8" KeyPath="yes" Source="fio\usr\share\man\man1\export.1.gz" />
- </Component>
- <Component Id="cmp0B6956FE7F517B90E7873AE7CD77BA81" Guid="{497D9550-ECC5-4C0C-A604-B2410A538A72}">
- <File Id="fil3C8EBB38477E7A6E55F7099FAB1DC8F1" KeyPath="yes" Source="fio\usr\share\man\man1\expr.1.gz" />
- </Component>
- <Component Id="cmpB9B513627915DBE2D2A3914D84E0851F" Guid="{D66AE225-6CB8-444D-AFB5-804B35AF3DBE}">
- <File Id="fil2D69AD0E378204CB3BF7C90295F2931B" KeyPath="yes" Source="fio\usr\share\man\man1\factor.1.gz" />
- </Component>
- <Component Id="cmpB1A4DF2381BA69A4D2B91CE67BE0EEC3" Guid="{53F5391A-B815-47D1-AEB1-0A36D0364860}">
- <File Id="filA3F1FFC30585813A181EF88C134E2805" KeyPath="yes" Source="fio\usr\share\man\man1\false.1.gz" />
- </Component>
- <Component Id="cmpF1128FD15FB3A42F47777DB7F5F7CC25" Guid="{DC0C6E04-02B1-44D4-8872-394544E9F37E}">
- <File Id="filF2E47C8C131BE0FBC6D5B1EB84B351F2" KeyPath="yes" Source="fio\usr\share\man\man1\fc.1.gz" />
- </Component>
- <Component Id="cmp08CD05ABF2FEFA3CE22A57BE155B9C0B" Guid="{F2D9E0F3-1801-4BBA-AD21-76E36645502C}">
- <File Id="filD01114F1D3BFD7A6962D446905E58479" KeyPath="yes" Source="fio\usr\share\man\man1\fg.1.gz" />
- </Component>
- <Component Id="cmpD7DB41C72CEB804F2F09A726FFD69EBC" Guid="{923A5EE5-0BBD-4868-99BE-02B09B3FAA72}">
- <File Id="filC817BB62489595CD74D82FF454BF1D05" KeyPath="yes" Source="fio\usr\share\man\man1\fgrep.1.gz" />
- </Component>
- <Component Id="cmp23F404CC301EFF6FCABA10BD4AC55226" Guid="{E9301485-B2CA-421F-B62B-DC4063EB08A5}">
- <File Id="fil2BAEEA2A5E29083DBCFC1DBA6768E38C" KeyPath="yes" Source="fio\usr\share\man\man1\fi.1.gz" />
- </Component>
- <Component Id="cmp717BFD3F843BA00548D57C1A12C86EF3" Guid="{A3CF5FAA-90DA-4F83-BFA7-ABE7591946F7}">
- <File Id="filF0B3F5560287F93F586FC329C22E271A" KeyPath="yes" Source="fio\usr\share\man\man1\find.1.gz" />
- </Component>
- <Component Id="cmpB2AA0FD590CF24746150C294C0D49711" Guid="{82645602-C2A1-4D44-BED4-5C5DDF56CDFB}">
- <File Id="filAFFED2C77C949A9CB5ED0B6354046C54" KeyPath="yes" Source="fio\usr\share\man\man1\fmt.1.gz" />
- </Component>
- <Component Id="cmp00CED440EE2AE90FE41D6B70AD9D0E9B" Guid="{9BB4CDCE-3C08-455F-A906-59270B2BCD94}">
- <File Id="fil8348896F412404C2B37CEF548B1008E7" KeyPath="yes" Source="fio\usr\share\man\man1\fold.1.gz" />
- </Component>
- <Component Id="cmpD5DD4D5EF57A9BBEF23E2D6AA360C15E" Guid="{9E5493EE-BD18-43AC-8E5E-2B400295F891}">
- <File Id="filDE7C3766FDEE1751037726BC4BD58A7A" KeyPath="yes" Source="fio\usr\share\man\man1\for.1.gz" />
- </Component>
- <Component Id="cmpD28A54B788BA37E96D04D1E276893EFC" Guid="{23E9B921-BF10-4859-A2CC-1FAE371D4775}">
- <File Id="filEF42BD1B1C597EECC5BE3C51342CCD98" KeyPath="yes" Source="fio\usr\share\man\man1\function.1.gz" />
- </Component>
- <Component Id="cmp30DE4A5FAB48E4C0DC241AFB368E01F8" Guid="{783F8FB1-5E6F-4096-990D-3A0B008108D2}">
- <File Id="filB80E62DAD8CCE218159105314F04FEAC" KeyPath="yes" Source="fio\usr\share\man\man1\gawk.1.gz" />
- </Component>
- <Component Id="cmp1A42833F2023D9019ADFE91C11CF0701" Guid="{A3564914-E7B0-4911-8002-7DDD60B2EA5A}">
- <File Id="fil32928C0C518A46330290165C19C2A5AD" KeyPath="yes" Source="fio\usr\share\man\man1\gdiffmk.1.gz" />
- </Component>
- <Component Id="cmpCE26299376C8259EDFF6273829E06E5D" Guid="{E68B5609-A432-4D35-9675-6088E246C089}">
- <File Id="fil10670CEA981832FD2D23D09CF21D968B" KeyPath="yes" Source="fio\usr\share\man\man1\getfacl.1.gz" />
- </Component>
- <Component Id="cmp456B1AEF06681D72FECECFBB02B990BC" Guid="{5272A8FF-C579-4C4D-AB5B-817439071B4F}">
- <File Id="fil42ED4C1D736BD72D7193ECE41AE270CC" KeyPath="yes" Source="fio\usr\share\man\man1\getopts.1.gz" />
- </Component>
- <Component Id="cmp0A6A401171D02ECA943B7FA37612C902" Guid="{EDAE9A18-353B-40B2-8207-EE567DEE81A0}">
- <File Id="fil9C32E97B0B585BBDDA8F15A167EFF466" KeyPath="yes" Source="fio\usr\share\man\man1\gettext.1.gz" />
- </Component>
- <Component Id="cmpE63B88A7C241D14BB659A78738B53FC0" Guid="{3C92BCDE-17A5-4F32-91AF-2C2B8C9CAD62}">
- <File Id="filB30350618BA434E0B3A08775F814FC7C" KeyPath="yes" Source="fio\usr\share\man\man1\gkill.1.gz" />
- </Component>
- <Component Id="cmpB653A63D234512D2FE17B00B214C090C" Guid="{44622671-2AB3-4EBB-BA21-41AE63D20353}">
- <File Id="filB38B99229111948290EDF769EF08B249" KeyPath="yes" Source="fio\usr\share\man\man1\grap2graph.1.gz" />
- </Component>
- <Component Id="cmpA4807596CB04711FD8884697CE50FEEC" Guid="{1DEB2E87-5A79-48B0-B52C-EB8BF713B144}">
- <File Id="fil61AED251F4E891F08EE2312BDB24EC4C" KeyPath="yes" Source="fio\usr\share\man\man1\grep.1.gz" />
- </Component>
- <Component Id="cmpCC384FE730004D0D95ACEB5B824E2360" Guid="{6EC20F26-06A6-4B1C-B988-64CC1F746309}">
- <File Id="fil050E24126DD2FA2B3087359571D3F1A0" KeyPath="yes" Source="fio\usr\share\man\man1\grn.1.gz" />
- </Component>
- <Component Id="cmp647CE5B6DD8B4CE649DA75D90DE82004" Guid="{BF3AB4C2-A743-40EB-8676-FA1F46D1728F}">
- <File Id="fil57B514024C37C503F0D153D7ECBC8B37" KeyPath="yes" Source="fio\usr\share\man\man1\grodvi.1.gz" />
- </Component>
- <Component Id="cmp2359412C4E62AE33CF2F30796F7436CA" Guid="{F6ACCD9B-411D-478A-9CC7-C5CFE0AD8AF9}">
- <File Id="fil9E7F60B145C3EC41E1C9DEB24A628769" KeyPath="yes" Source="fio\usr\share\man\man1\groff.1.gz" />
- </Component>
- <Component Id="cmpBDD7E8D167129D9573F2D36E7050CF42" Guid="{866458E0-B186-480B-8C04-B751DC49EC3E}">
- <File Id="filB114A8C9E519C8E5D957A3025B7B6B3B" KeyPath="yes" Source="fio\usr\share\man\man1\groffer.1.gz" />
- </Component>
- <Component Id="cmp2A588D7BD0E6958600734CF61B3F29E4" Guid="{E695A357-5A79-4B0D-8918-56A15A14A044}">
- <File Id="filA77E6650AC53F19B2F9E01C73FB890EA" KeyPath="yes" Source="fio\usr\share\man\man1\grog.1.gz" />
- </Component>
- <Component Id="cmpBFCD9436D18DA9B766D094676F3D0F4D" Guid="{DB9A4916-DDC5-4B17-B238-C033A2D15508}">
- <File Id="filF412C12C4A3955D62188FA307EA9F4C5" KeyPath="yes" Source="fio\usr\share\man\man1\grohtml.1.gz" />
- </Component>
- <Component Id="cmp0C421F470D4DDB10F9B02D331234B82B" Guid="{D0DD52A9-E347-4F62-8C77-35F0016748A8}">
- <File Id="fil94F9CBF1C312FFE7DA50E6FFEA670478" KeyPath="yes" Source="fio\usr\share\man\man1\grolbp.1.gz" />
- </Component>
- <Component Id="cmp6E2EA4BC4270E7387A2274F5320BC4FD" Guid="{2C3C77A9-C522-4A16-BF10-359BB64E2399}">
- <File Id="filFDB4A4913AD1DC9CBAB7A3EAB3045E50" KeyPath="yes" Source="fio\usr\share\man\man1\grolj4.1.gz" />
- </Component>
- <Component Id="cmpE8A75D3D6A2C6973F41A8AD2845F58E1" Guid="{49B88355-D67A-4DA5-BCA8-D66F930B8D24}">
- <File Id="fil401D4C71FB2C61913439B7B14D45DC7F" KeyPath="yes" Source="fio\usr\share\man\man1\grops.1.gz" />
- </Component>
- <Component Id="cmp5F56DE8E10DFD61FCFE4A296D85C948D" Guid="{91C1148D-5F2D-4C2C-828C-304BBD4B172C}">
- <File Id="fil6CEF2015B95B312AFC7AE597330431D1" KeyPath="yes" Source="fio\usr\share\man\man1\grotty.1.gz" />
- </Component>
- <Component Id="cmpD3B89A2235FBD4EB3EB549A8DC9CCF85" Guid="{4C7ED2CF-13A3-4542-B7DB-080857A65AE6}">
- <File Id="filEC96E0D4AD6508DABEE33768CBAF32BA" KeyPath="yes" Source="fio\usr\share\man\man1\groups.1.gz" />
- </Component>
- <Component Id="cmp321FC6D7F5AA7F4F721612E3635C470B" Guid="{C6DF7D93-8B53-460F-8091-6547DA29AC54}">
- <File Id="fil43D93200A3F7CECA972FE4EA454B2272" KeyPath="yes" Source="fio\usr\share\man\man1\gunzip.1.gz" />
- </Component>
- <Component Id="cmp181000C699D7A261162C53B4D9519270" Guid="{B1671C8A-B405-4AAD-8BF5-330025C77726}">
- <File Id="fil8FFC9A517BFDF527CE28FE25C704DB69" KeyPath="yes" Source="fio\usr\share\man\man1\gzexe.1.gz" />
- </Component>
- <Component Id="cmp21E7B066ECE7EC34DD01983B98654F65" Guid="{D838E0F0-99AD-42A4-9874-F4AB032AB065}">
- <File Id="filA833C2F35AEFC73800D4A712CA2053D0" KeyPath="yes" Source="fio\usr\share\man\man1\gzip.1.gz" />
- </Component>
- <Component Id="cmp4CF62BB213832F72CC731B618E56C08D" Guid="{82A0A80A-D566-4E6A-AA64-497C0E519C44}">
- <File Id="filA61A8B77F98252823A8A813B268DA4D3" KeyPath="yes" Source="fio\usr\share\man\man1\hash.1.gz" />
- </Component>
- <Component Id="cmp383F508A324822BD9F9AB0E825F34C51" Guid="{AAE9C367-FDD6-45F5-9EB2-030ABC3F8510}">
- <File Id="filE896AF9F09B1185D47A9AD2EC84700DA" KeyPath="yes" Source="fio\usr\share\man\man1\head.1.gz" />
- </Component>
- <Component Id="cmp7B489000F5337308F31DAA726A4F236D" Guid="{5D726190-1CCB-433B-993B-ED8796DB9E2B}">
- <File Id="fil29366A6A2E9BC0FE4ACF0DB420DD478A" KeyPath="yes" Source="fio\usr\share\man\man1\help.1.gz" />
- </Component>
- <Component Id="cmp892B743731AC92F9450E07132769D770" Guid="{2D44BF46-B6C8-4D8C-8CB7-303B38058FFB}">
- <File Id="fil1EE06EC1EB09AD15AAF0FCCA69C88279" KeyPath="yes" Source="fio\usr\share\man\man1\history.1.gz" />
- </Component>
- <Component Id="cmp13BBF10B8D09269FA4E89F6C493B01C0" Guid="{33338AB7-F872-4440-B349-965651AE6097}">
- <File Id="fil03DEC099D31DD020D1CEF374CFEEFA8C" KeyPath="yes" Source="fio\usr\share\man\man1\hostid.1.gz" />
- </Component>
- <Component Id="cmp619E0F99252576DCEFD036EF587F4C3B" Guid="{8FA7F998-FD8B-4B01-AA15-BC651D16076C}">
- <File Id="filCC377A4488FC5BD84683E10281FC0E22" KeyPath="yes" Source="fio\usr\share\man\man1\hostname.1.gz" />
- </Component>
- <Component Id="cmp15124DC99F3DE9BF19B952BF420D3E51" Guid="{03054B21-547E-4B9C-95C4-8497C2FCA031}">
- <File Id="filC562AC3B57E227C0FDB1C3C6E60C8932" KeyPath="yes" Source="fio\usr\share\man\man1\hpftodit.1.gz" />
- </Component>
- <Component Id="cmp65B22B2180E1A950B8618EC1C0F44F21" Guid="{FE513D30-E7FC-4BAD-9887-DA3893865D95}">
- <File Id="fil9CF9B666CF25F6EED44210997C52C2B5" KeyPath="yes" Source="fio\usr\share\man\man1\id.1.gz" />
- </Component>
- <Component Id="cmp26E50C75D4E62055A5CD053A2FE02E06" Guid="{B991A784-FC45-4D50-AC8F-213F65717CBC}">
- <File Id="filCF901AFAC10ECFE3B8A0D9AE208BF8D5" KeyPath="yes" Source="fio\usr\share\man\man1\if.1.gz" />
- </Component>
- <Component Id="cmp41922CE63354DCC5AE5A2D6614AABC63" Guid="{7032FE70-B31C-4E9D-87F3-10E3492EAD87}">
- <File Id="fil9B3BE5B4319410D11ADECC370D21B228" KeyPath="yes" Source="fio\usr\share\man\man1\igawk.1.gz" />
- </Component>
- <Component Id="cmp5861A18B2D3E7B15DDBFC78C44666B9D" Guid="{DAFB3457-6F1F-42EC-A6B6-A6C300ECB624}">
- <File Id="fil73A33070D15E857DA2484E81A33E6CA2" KeyPath="yes" Source="fio\usr\share\man\man1\in.1.gz" />
- </Component>
- <Component Id="cmp4146A01C074398AE287671C6B1973E94" Guid="{609F097B-53A3-4BE4-AC5A-8FFA531958B8}">
- <File Id="fil31D85BB4199ABD10375938CAFD701A4C" KeyPath="yes" Source="fio\usr\share\man\man1\indxbib.1.gz" />
- </Component>
- <Component Id="cmp177F27FAB790F3C90296407D2E9218E4" Guid="{61ADB520-06B7-4C0C-BE09-941DADCF89BE}">
- <File Id="fil8B1E58CDDAA8DD04291FE2952E008EB2" KeyPath="yes" Source="fio\usr\share\man\man1\info.1.gz" />
- </Component>
- <Component Id="cmp9CEFEA9095A35923A59AAB92D1AA2368" Guid="{B2F83AD4-0CB5-4822-A5D6-E5A4DF02CBDC}">
- <File Id="filD86EE670C304DD611786AAC07567BFDB" KeyPath="yes" Source="fio\usr\share\man\man1\infokey.1.gz" />
- </Component>
- <Component Id="cmpD80E0942EC0FD38726D050BEE820429B" Guid="{B019EE6F-55F0-4525-BC2A-C126B5EDDF2D}">
- <File Id="fil177AC99DEC84A1FA4E5A886BF966C89A" KeyPath="yes" Source="fio\usr\share\man\man1\install-info.1.gz" />
- </Component>
- <Component Id="cmpD4E2E4B18DF525A26BB37555BDB36F72" Guid="{37441251-AB7A-4B95-B6F6-C94C61888623}">
- <File Id="fil0F553267079B5C503E21D379A98968C5" KeyPath="yes" Source="fio\usr\share\man\man1\install.1.gz" />
- </Component>
- <Component Id="cmpBA4A57092619D0A6274B838FA927635F" Guid="{0ED4FA6C-FA32-42CE-BBC1-150E20B22D8D}">
- <File Id="fil1A710538F2C96440366E592741439243" KeyPath="yes" Source="fio\usr\share\man\man1\intro.1.gz" />
- </Component>
- <Component Id="cmp4E8BABC7AFCEFA69A15A6199205518D3" Guid="{A506C13C-0D98-47AC-9E46-6312F33AA00B}">
- <File Id="fil9D20D82F6D808EF712AA6EEE468D4D77" KeyPath="yes" Source="fio\usr\share\man\man1\ipcrm.1" />
- </Component>
- <Component Id="cmp1D85FEAD3BBCDA309D52B5B1368CC1FA" Guid="{5DE69B98-4936-4493-9941-BA3DD24BC05F}">
- <File Id="fil6F182BE2F000DF98EC1E63DCB32D9CC3" KeyPath="yes" Source="fio\usr\share\man\man1\ipcs.1" />
- </Component>
- <Component Id="cmp7247DEDCD8DF31047D5C8BE360ABEB61" Guid="{E1432D47-B440-49FE-BA4D-2A040D420A90}">
- <File Id="fil56F96CD3A19DE3D62FF56ED0BAA7F486" KeyPath="yes" Source="fio\usr\share\man\man1\jobs.1.gz" />
- </Component>
- <Component Id="cmp01E3544E947CE8061955CFA420362C2C" Guid="{A4C95D1D-6B2E-4743-B816-6C2F0DDAE214}">
- <File Id="fil2EEAEAF8A749F38A5B698173F9185DA3" KeyPath="yes" Source="fio\usr\share\man\man1\join.1.gz" />
- </Component>
- <Component Id="cmp7A10D4DB347FA2C3CDDCB7B7DE241B8A" Guid="{FCB98D79-8924-4382-ADDB-BC92E3C2E3CD}">
- <File Id="fil416F77EC62CC41211A8BDD07E9171B44" KeyPath="yes" Source="fio\usr\share\man\man1\kill.1.gz" />
- </Component>
- <Component Id="cmp9A143663A9A5F28E0F27D59ACFAED6A2" Guid="{7440B017-5B08-4B73-8FB1-9D2C032DC7A0}">
- <File Id="filE016D1F1C3796234DAEB8A51FD426A56" KeyPath="yes" Source="fio\usr\share\man\man1\less.1.gz" />
- </Component>
- <Component Id="cmp9A384D4BE20E861B6FDF747796FA7FED" Guid="{D686C81B-91A6-4D46-B362-22D146BD41CA}">
- <File Id="fil105BD26FB6A74D360905259EB2ED1126" KeyPath="yes" Source="fio\usr\share\man\man1\lessecho.1.gz" />
- </Component>
- <Component Id="cmp479F914657C376AE623FB2229FEFE330" Guid="{6ECC151A-C39C-4294-AF91-B98AE2F0C9D6}">
- <File Id="fil99A80F0274CD8FDB609414D7802DD657" KeyPath="yes" Source="fio\usr\share\man\man1\lesskey.1.gz" />
- </Component>
- <Component Id="cmpA58E87711024D1ACFF8E33B0FB5C3933" Guid="{F6E9B604-D116-4BB6-8E05-BAD9D56A9299}">
- <File Id="fil6FC2F47500279648A8AC792CFA02CEDA" KeyPath="yes" Source="fio\usr\share\man\man1\let.1.gz" />
- </Component>
- <Component Id="cmp92C944BCBE06FD97865FA0BCB9D47C1B" Guid="{6BE62091-1CC4-4515-B55B-524EA2462A34}">
- <File Id="fil2274E28814E2CD1E4C618833F3B4D9FF" KeyPath="yes" Source="fio\usr\share\man\man1\link.1.gz" />
- </Component>
- <Component Id="cmp9A70259BC337BA935EB7DA86E1269CC7" Guid="{B2959E10-6B31-4B60-86C2-816D54922BB0}">
- <File Id="filC00167D67501E04873A4DAF2780C6A6F" KeyPath="yes" Source="fio\usr\share\man\man1\lkbib.1.gz" />
- </Component>
- <Component Id="cmp3BE6D419E5943CD44AE60EFD1278EB98" Guid="{E6C2D4F4-5409-4A85-AF28-5E800AF5204B}">
- <File Id="fil32B3B6D0BDD37716FCF667A06F7823CE" KeyPath="yes" Source="fio\usr\share\man\man1\ln.1.gz" />
- </Component>
- <Component Id="cmp1506948A4C91BD67BBF85FE00B959D2D" Guid="{CC25E717-4BE7-484D-A480-7C4464DE1DED}">
- <File Id="filB8C8F20CD08908061AE43F4303AC2B80" KeyPath="yes" Source="fio\usr\share\man\man1\local.1.gz" />
- </Component>
- <Component Id="cmp803AF52F699A77035AB8475610116632" Guid="{BF9E7AFA-BD6A-43C5-8BDC-28126F4C4229}">
- <File Id="fil4CE1932FA9D2CAAA2542960AC7EFE24A" KeyPath="yes" Source="fio\usr\share\man\man1\locale.1.gz" />
- </Component>
- <Component Id="cmp3548539E22C207705692661AE4DDA8B7" Guid="{61DDCCB3-C2EF-41C9-A8BA-DC05110C04E3}">
- <File Id="filBA54CF3AD4FA13ED85B01DBF6599C930" KeyPath="yes" Source="fio\usr\share\man\man1\locate.1.gz" />
- </Component>
- <Component Id="cmp4112C9381CD18786B5FB07A779D5E557" Guid="{2094CEB0-BA14-4654-B6DE-D90B822DD5D4}">
- <File Id="filE1E0DAB6825E6D154A5193BBF2BC3121" KeyPath="yes" Source="fio\usr\share\man\man1\login.1.gz" />
- </Component>
- <Component Id="cmp03BCC1A7931DA97F34428B2E26F806D6" Guid="{E8E291A3-9028-437A-A0BD-BF2AA3A9A7DF}">
- <File Id="filE80D873103B2E0CD540E0A09EC0048A2" KeyPath="yes" Source="fio\usr\share\man\man1\logname.1.gz" />
- </Component>
- <Component Id="cmp610E3ED923DE947E789650854F56C92E" Guid="{ECFD8AA0-DA5F-4E9F-A3F0-DE152D21025F}">
- <File Id="filA4A00AC0C1A261ADE988C12599D38E17" KeyPath="yes" Source="fio\usr\share\man\man1\logout.1.gz" />
- </Component>
- <Component Id="cmpBBC16E7B55C9E838235B16A218EE9BD0" Guid="{D1D9E244-CA37-4D1F-AA98-08DE6F12D146}">
- <File Id="filFD2A519F161CF32AA9CB2BD0BC1408F6" KeyPath="yes" Source="fio\usr\share\man\man1\lookbib.1.gz" />
- </Component>
- <Component Id="cmp7DFAF576A4412F080783874D9230205F" Guid="{1AFF6CE3-7E45-40E5-AD85-405ED8FA8479}">
- <File Id="fil5DC12A474803CE52094AB2EA856647CB" KeyPath="yes" Source="fio\usr\share\man\man1\lpr.1.gz" />
- </Component>
- <Component Id="cmp41C46342BA428AE699CA8A9F58C5D667" Guid="{D3152E1D-DDA8-487A-B0EA-1CA33612AB23}">
- <File Id="fil866A25F5CA5712E85003FEE7CADF711B" KeyPath="yes" Source="fio\usr\share\man\man1\ls.1.gz" />
- </Component>
- <Component Id="cmp5FFB41D0B58CF6ABCEB64D204F2F487A" Guid="{778B5408-021F-4901-9921-3C8A2AE35F50}">
- <File Id="fil2F6B712356E774790D39090309707E9F" KeyPath="yes" Source="fio\usr\share\man\man1\lzcat.1.gz" />
- </Component>
- <Component Id="cmp5915230A225B3164609BDA87FD34A7CA" Guid="{06D0F980-21B9-4293-9B44-4E16C95D2C55}">
- <File Id="fil5D3215788F0D7C3090810C3A02A9F19C" KeyPath="yes" Source="fio\usr\share\man\man1\lzcmp.1.gz" />
- </Component>
- <Component Id="cmp4FE022F1E4CFA3A2C01FB2325021301B" Guid="{E412FFD2-0DF9-4C14-886B-FAA057EB5659}">
- <File Id="filE1842C86F2A9782B641BDF987825FFCA" KeyPath="yes" Source="fio\usr\share\man\man1\lzdiff.1.gz" />
- </Component>
- <Component Id="cmpD49FB58E6C078FC2A55205845C8A775C" Guid="{DBAEE0CA-EFC4-41A6-96FE-A0BEC56E8118}">
- <File Id="fil364F8EDD77529172CF860BA34BEF9316" KeyPath="yes" Source="fio\usr\share\man\man1\lzegrep.1.gz" />
- </Component>
- <Component Id="cmpB064C1EEA425C3F519081EF5B9238B7E" Guid="{49E0B956-49B3-4E51-BFA3-C2977C5702CC}">
- <File Id="filEE17475D7AE963921D33FD62324BC31D" KeyPath="yes" Source="fio\usr\share\man\man1\lzfgrep.1.gz" />
- </Component>
- <Component Id="cmpD126A2447D88FB6A79ED368FC1A332DA" Guid="{1BE27DB1-9BD6-4FC4-836C-ED94C432DEC0}">
- <File Id="filA48D4BDA734076DA792019DCCF276B51" KeyPath="yes" Source="fio\usr\share\man\man1\lzgrep.1.gz" />
- </Component>
- <Component Id="cmpCE260652A6686A62605A0B9A9E122818" Guid="{8CE23F42-064D-4FFE-9CE7-C2BD28718835}">
- <File Id="fil2BA2F58C85456F35EAA8B9AF08FA58D2" KeyPath="yes" Source="fio\usr\share\man\man1\lzless.1.gz" />
- </Component>
- <Component Id="cmpC7F001F5F2182DFD417211E78548B4A3" Guid="{EA862F06-B17E-4E97-B7B2-ABD935A169F7}">
- <File Id="fil3FBD3AB661EBD1DED2EFC3FC8B4D7CF4" KeyPath="yes" Source="fio\usr\share\man\man1\lzma.1.gz" />
- </Component>
- <Component Id="cmpB2DC7CD5634F57D6502D340FD36FB95A" Guid="{13850541-32AF-4E26-B764-2442C2D57453}">
- <File Id="fil26D853F25463D23FA75ADED5DD69BD66" KeyPath="yes" Source="fio\usr\share\man\man1\lzmadec.1.gz" />
- </Component>
- <Component Id="cmp9E47169E9B96D68A43614EC88E24A42B" Guid="{5D5B3D73-FCE1-451E-B80E-8B5428EB666C}">
- <File Id="filE67258B5DDD19C7704E42AD6D9BF44EF" KeyPath="yes" Source="fio\usr\share\man\man1\lzmainfo.1.gz" />
- </Component>
- <Component Id="cmp05EC8836086612C60C4B3C013C698B7C" Guid="{B5E6832F-2424-47C5-BB25-6F26F4EF8E8C}">
- <File Id="fil66500F302B33EE9A4623B0B83079051A" KeyPath="yes" Source="fio\usr\share\man\man1\lzmore.1.gz" />
- </Component>
- <Component Id="cmp69161D41FF60FF45CBD7F75AF8AEE902" Guid="{CFB8A4F7-92FA-4564-AD58-0AD184BC4FFC}">
- <File Id="filD023ADDB117EE4EA602749359EB9074A" KeyPath="yes" Source="fio\usr\share\man\man1\makeinfo.1.gz" />
- </Component>
- <Component Id="cmpBA06EC2A478672FA88ABA72B4C61EC18" Guid="{FBE22A88-1AFC-4E10-8E66-A11AC8774C9F}">
- <File Id="fil60AE292F1495455ED8F3D7FFED05B1B0" KeyPath="yes" Source="fio\usr\share\man\man1\man.1.gz" />
- </Component>
- <Component Id="cmp9D71486E9F7DB73ED86BB4BA47B2A6A6" Guid="{A07941A1-EFB4-4180-A974-966EEEE82F26}">
- <File Id="filC1ADDD6D0704AD5C9BB707E8364FCDD0" KeyPath="yes" Source="fio\usr\share\man\man1\man2html.1.gz" />
- </Component>
- <Component Id="cmp79156A72CEC798C72BCE7066F508F8AB" Guid="{842BAA22-93CA-4AF5-90E6-A3C7C4047531}">
- <File Id="filD62889580784187EAEB341244675492B" KeyPath="yes" Source="fio\usr\share\man\man1\manlint.1.gz" />
- </Component>
- <Component Id="cmp91F24A5A6B167C1B1EE5903D1025F3D6" Guid="{F9E732C9-864C-4839-B838-BA1A768A1FB6}">
- <File Id="fil24C2FEDCFFE22C49DC7660FBA33432A5" KeyPath="yes" Source="fio\usr\share\man\man1\manpath.1.gz" />
- </Component>
- <Component Id="cmp4177B38BE51E6FF24BBEB9A746AAB5DF" Guid="{7ECB2972-6B02-48EF-97AA-67A2D6FB0885}">
- <File Id="filF0B973A542A866813A2BB9035130E7E1" KeyPath="yes" Source="fio\usr\share\man\man1\md5sum.1.gz" />
- </Component>
- <Component Id="cmp1DEA3315753BAE34C848D3BB4EF34E81" Guid="{BD437256-80FD-4618-A9F7-DAB73468603F}">
- <File Id="fil3856D17E946246AE058E8861BE3CE3EF" KeyPath="yes" Source="fio\usr\share\man\man1\mkdir.1.gz" />
- </Component>
- <Component Id="cmpA979B145D7F40881581527CE2B19CE58" Guid="{C4CC6A9F-81B2-41A4-B835-14A9FF04E97C}">
- <File Id="filEE0AD71C360C5961CA767B6214563E52" KeyPath="yes" Source="fio\usr\share\man\man1\mkfifo.1.gz" />
- </Component>
- <Component Id="cmp114D59D018DD94DC82810AE4E8B9119F" Guid="{19F638EC-849F-4DD6-A7D1-A07B2761CB27}">
- <File Id="fil2FBC702875936372287F94A26EBE59E0" KeyPath="yes" Source="fio\usr\share\man\man1\mkgroup.1.gz" />
- </Component>
- <Component Id="cmpEBD91F82FC48DB66459EF50CA46A2BE9" Guid="{C15335F3-C7D2-41FA-8175-814BB82A0210}">
- <File Id="filD16BC4F9BFB90D62274EDBE319AF5DE2" KeyPath="yes" Source="fio\usr\share\man\man1\mknod.1.gz" />
- </Component>
- <Component Id="cmp7A712E365A9800F6E1B34B792220ADA8" Guid="{05EA36FC-6A93-4484-B0DB-8B20D74067A6}">
- <File Id="filD5EF90BE5B5FBAD46469E7189DC053AF" KeyPath="yes" Source="fio\usr\share\man\man1\mkpasswd.1.gz" />
- </Component>
- <Component Id="cmp37668136621A85CF6C954EDF87C2FE97" Guid="{D0002BBC-6D8A-402F-A20E-88868B7A82A9}">
- <File Id="filA104D29B7D50B50473193C076267F1E4" KeyPath="yes" Source="fio\usr\share\man\man1\mkshortcut.1.gz" />
- </Component>
- <Component Id="cmp414966D26AAAB1D2A858A6D2C34F4286" Guid="{D25D8254-B2EC-4C16-A04F-9B414DB3DC6E}">
- <File Id="filF95D1805A6A3E948221FA6749013FA40" KeyPath="yes" Source="fio\usr\share\man\man1\mktemp.1.gz" />
- </Component>
- <Component Id="cmp02E0715D74383DFE2CA224900BA95FBF" Guid="{C967BA12-C03B-4E87-9BAD-CF9DED5D8367}">
- <File Id="fil66E597F41A43BBA23783406B52167247" KeyPath="yes" Source="fio\usr\share\man\man1\mmroff.1.gz" />
- </Component>
- <Component Id="cmp4EE4FB2972675F1BF7AC5A5BF6897436" Guid="{DADD6D24-85C4-43B0-AFE7-FFC862BCCED3}">
- <File Id="fil76207601CBB2AD4904E67B35E437F7CB" KeyPath="yes" Source="fio\usr\share\man\man1\mount.1.gz" />
- </Component>
- <Component Id="cmp8404E53642FF0EF17F02FE63633559C9" Guid="{5731488E-4612-42D1-9E37-7B02C187D133}">
- <File Id="filC85DCAD9200B34998ED15B001F806B6F" KeyPath="yes" Source="fio\usr\share\man\man1\mv.1.gz" />
- </Component>
- <Component Id="cmp6C99BE5B167314F8023870F7914AF64E" Guid="{2BFE3DEB-6BA1-4832-BD0B-21C7001A2B96}">
- <File Id="filE8538863679A63D978D67E00B47F8204" KeyPath="yes" Source="fio\usr\share\man\man1\neqn.1.gz" />
- </Component>
- <Component Id="cmpA73903C60C480AE09A985BE4EE4EB681" Guid="{0C6048FF-E345-4E51-B968-DF76697B134B}">
- <File Id="fil30F0A776A1F7576763759B18A5EAFF9E" KeyPath="yes" Source="fio\usr\share\man\man1\ngettext.1.gz" />
- </Component>
- <Component Id="cmp00BAFC30DAAF11FBDB46B8F0C260CF56" Guid="{5FCC8163-49B1-4969-B556-372F74C67809}">
- <File Id="fil16C9B3F0BE03C564E950C9243751AA39" KeyPath="yes" Source="fio\usr\share\man\man1\nice.1.gz" />
- </Component>
- <Component Id="cmp9B73FA23C5A9A9D619B00A00C2DD6B65" Guid="{C16B4828-EC8D-4C1E-9C9B-96630A71658A}">
- <File Id="filA9C5A0ECF59AFDA64DA15D2576D80099" KeyPath="yes" Source="fio\usr\share\man\man1\nl.1.gz" />
- </Component>
- <Component Id="cmp7F4326C21BC4A45CC902A738E64DF127" Guid="{C8EC2B3B-AE75-42D4-9078-A2970DF2DE58}">
- <File Id="filE8F35BD81BE466F64F897087EFDDD45B" KeyPath="yes" Source="fio\usr\share\man\man1\nohup.1.gz" />
- </Component>
- <Component Id="cmp70C51A4E7340C207D8836F182521B6A6" Guid="{F97C823E-0E46-4A4F-B293-39709C2FD5CB}">
- <File Id="fil96B1DDB47C3E2E91E6C68BB66D02EE7B" KeyPath="yes" Source="fio\usr\share\man\man1\nproc.1.gz" />
- </Component>
- <Component Id="cmp1DEE7E953A0D662DCDEA3EABD25D4F4C" Guid="{3445AECC-3879-438C-8252-21A0E23FF279}">
- <File Id="fil31F58C1F7C3D9BB227F0BDA69D35B5C4" KeyPath="yes" Source="fio\usr\share\man\man1\nroff.1.gz" />
- </Component>
- <Component Id="cmp142177813F4CE55B4666E9ED2A88DF08" Guid="{7927FF4D-6B16-4BDE-99D6-894116E27486}">
- <File Id="filC68102DBB121DCC5E83E4F0585B6A6EA" KeyPath="yes" Source="fio\usr\share\man\man1\od.1.gz" />
- </Component>
- <Component Id="cmp026B7E3181A9A1DA5065199CEEE54985" Guid="{55C038B4-9E6D-4720-B3EC-D30302908769}">
- <File Id="filA6050380CCB5D89C7646BBFB3D295A2C" KeyPath="yes" Source="fio\usr\share\man\man1\passwd.1.gz" />
- </Component>
- <Component Id="cmp2CB3C4667691E83D7F24542D59EEFCDD" Guid="{75F22285-CF38-4D5F-A507-5184BDD1C839}">
- <File Id="fil64B5EDA7A90B29CF60D025F26EAEEBE4" KeyPath="yes" Source="fio\usr\share\man\man1\paste.1.gz" />
- </Component>
- <Component Id="cmpA93EB5A53C0BAE8CE7C767A73517BC50" Guid="{A0ECDB40-E99F-4858-8347-6E41D58C7B3B}">
- <File Id="fil793874BF8B4AD5F88584FABBE8E0A8DD" KeyPath="yes" Source="fio\usr\share\man\man1\pathchk.1.gz" />
- </Component>
- <Component Id="cmp1335920E470791A5A34D939AE118BD31" Guid="{AAAAF70C-1516-42C2-B954-7FB152B5133B}">
- <File Id="fil363D74E5855441DC0089E64E54CD19F5" KeyPath="yes" Source="fio\usr\share\man\man1\pdfroff.1.gz" />
- </Component>
- <Component Id="cmpE62E0124CD81AAED17721044A3632E54" Guid="{49FC2E51-81AC-4FEA-9064-07CF6550C9BA}">
- <File Id="fil4D480EE6CC17E842FE644692D644FBDC" KeyPath="yes" Source="fio\usr\share\man\man1\pdftexi2dvi.1.gz" />
- </Component>
- <Component Id="cmpB486C5CE13915DB8AF15B9EE4B4C6793" Guid="{A4B9C387-A68D-4FB2-866B-64B889D6F212}">
- <File Id="filA650EE875A8EAB02958C39DA3D007BFC" KeyPath="yes" Source="fio\usr\share\man\man1\pfbtops.1.gz" />
- </Component>
- <Component Id="cmp9BDA363B4EA6568F995E078AE02F6658" Guid="{2DC561FF-6BF1-4D38-B656-DB781A8D9DE6}">
- <File Id="fil9B04A4E8B1111C576DE4ACC96C9BD233" KeyPath="yes" Source="fio\usr\share\man\man1\pgawk.1.gz" />
- </Component>
- <Component Id="cmp2B4E8E60769738F004AC0911C7B235E9" Guid="{611EC680-69A1-4E70-BAE3-C0A9A86F9861}">
- <File Id="filA6F2AC3BB991022A940D026FC05EB56B" KeyPath="yes" Source="fio\usr\share\man\man1\pic.1.gz" />
- </Component>
- <Component Id="cmp51D7F6AEF3D566EF2CB48DF129C42D0D" Guid="{A559E936-CF68-4B6C-B963-B939EB399036}">
- <File Id="fil4E7D4A61002833F2B10D09586E31D674" KeyPath="yes" Source="fio\usr\share\man\man1\pic2graph.1.gz" />
- </Component>
- <Component Id="cmp57F7E373B2F83289A129E20F571C2036" Guid="{12E65CBD-FCF1-46E9-A54F-F39931AFDB5F}">
- <File Id="filB3F890874087A49C39701023D4472608" KeyPath="yes" Source="fio\usr\share\man\man1\pinky.1.gz" />
- </Component>
- <Component Id="cmp79C5AEF3DF0364F40559FD3DC5B0BCB9" Guid="{7CDEA20D-7247-4CBC-86E4-0D97C4F36902}">
- <File Id="fil3A81347A41FE074EFD7E60A2AE81FA95" KeyPath="yes" Source="fio\usr\share\man\man1\popd.1.gz" />
- </Component>
- <Component Id="cmp22576E60056E1237AE96D8A5469E5E9A" Guid="{ADD4D2E5-1035-4CB6-A881-5D0FC6D3795A}">
- <File Id="filF2CF79664C183B6010D16EF8752DA20F" KeyPath="yes" Source="fio\usr\share\man\man1\pr.1.gz" />
- </Component>
- <Component Id="cmpB4851AC69A6B940AADC135F20EE99BF2" Guid="{0FB7A132-42D4-453E-88D5-231CF7DD2FCC}">
- <File Id="filAD9E0E4EA8585983626DBD7EFDF5C932" KeyPath="yes" Source="fio\usr\share\man\man1\preconv.1.gz" />
- </Component>
- <Component Id="cmp0F3EDFA08648B5481D061885E9FE64F9" Guid="{9D96DBAC-D785-4F18-86D0-66A51EBC92A8}">
- <File Id="filC6DFA77DB23725F56A1CE3719C312CDD" KeyPath="yes" Source="fio\usr\share\man\man1\printenv.1.gz" />
- </Component>
- <Component Id="cmp41CA57CE81E2FAF5A6851BE5236809CB" Guid="{F3381E72-7088-4337-A05F-8D47F7958AE4}">
- <File Id="filA3D2FD7775D36341878D9D637088501E" KeyPath="yes" Source="fio\usr\share\man\man1\printf.1.gz" />
- </Component>
- <Component Id="cmp337C68AC1E764AAEDB711AF9A5935349" Guid="{34F1A5B7-6ACF-4B42-BC75-2C647CF78DF8}">
- <File Id="fil36BEE75D561B349D4BCDF0A8E2AF782F" KeyPath="yes" Source="fio\usr\share\man\man1\ps.1.gz" />
- </Component>
- <Component Id="cmpB7A6B169F4EB4D00937B58F67AF67EBE" Guid="{2533BC45-A252-4CFB-9C5E-95A2D8840AEF}">
- <File Id="filC2495A2B21CAB0D986743940CEAB19C9" KeyPath="yes" Source="fio\usr\share\man\man1\ptx.1.gz" />
- </Component>
- <Component Id="cmp7A04185CEFAD45ECAC06A96F6370A5C1" Guid="{BB2812A5-9B34-40BD-882D-3BB22CD8C83E}">
- <File Id="fil730C71AFFC1ED195615DFE755651EF1F" KeyPath="yes" Source="fio\usr\share\man\man1\pushd.1.gz" />
- </Component>
- <Component Id="cmp819230C8905E7940EB61F2D3F5CEAD8E" Guid="{675D6789-D246-4891-AC45-D6EBE489D97A}">
- <File Id="fil8FF4436C8CEA184C9E11E074323F60C5" KeyPath="yes" Source="fio\usr\share\man\man1\pwd.1.gz" />
- </Component>
- <Component Id="cmpF6E52F10BFB41A24D946BB820D65D35C" Guid="{A76D8A8F-7ADD-457B-9837-C9B95F3A462C}">
- <File Id="fil7D9A70259CF18DB9F43B17F86BD81281" KeyPath="yes" Source="fio\usr\share\man\man1\read.1.gz" />
- </Component>
- <Component Id="cmp883023C9B152E6B093F89839A4A1E686" Guid="{E2A4EFEF-E265-43B8-8F4F-0DB140736F6C}">
- <File Id="fil981A26C80C31AC09A9540195C463FD82" KeyPath="yes" Source="fio\usr\share\man\man1\readlink.1.gz" />
- </Component>
- <Component Id="cmpEFB45BD398D3A1BB272239207B1A8A18" Guid="{62F162C0-76AB-40CA-9467-6DF4153DF109}">
- <File Id="fil1C24B2A29035BC84CA55C3662866511B" KeyPath="yes" Source="fio\usr\share\man\man1\readonly.1.gz" />
- </Component>
- <Component Id="cmp8B60338EEF368D68969B3661766B8C09" Guid="{0568346A-FB92-4610-9914-7535C8AA00D5}">
- <File Id="fil093A6EC502328117AD78ED414F1ACF62" KeyPath="yes" Source="fio\usr\share\man\man1\readshortcut.1.gz" />
- </Component>
- <Component Id="cmpF63012197CE2CFF749054C0CA982F884" Guid="{1FE264CE-4DC7-4C93-B9C9-2E7A9A1A3E65}">
- <File Id="fil5E6853BE7C0436675AE877EF27F04F20" KeyPath="yes" Source="fio\usr\share\man\man1\refer.1.gz" />
- </Component>
- <Component Id="cmp4DD4EF7C57040559D0FEEA7E06BABD3E" Guid="{48D69E26-FBEC-4BAB-99C1-F085AB8562D1}">
- <File Id="fil19DAAA54C4E98BEA63D3F88EAC5A909C" KeyPath="yes" Source="fio\usr\share\man\man1\regtool.1.gz" />
- </Component>
- <Component Id="cmp925F90F7A995C3A01F04BD44FB09846E" Guid="{9B51DBC0-7594-403D-9DD4-F589EB758A7B}">
- <File Id="filCD71628C810B85898ED07D4F2C621B81" KeyPath="yes" Source="fio\usr\share\man\man1\return.1.gz" />
- </Component>
- <Component Id="cmp09BC03F1951E37FEC5F033F1233710FB" Guid="{869F0DF6-45E1-4191-A788-F735592A4EF1}">
- <File Id="filDC0666B67B6440C011FD4D70306BC5BA" KeyPath="yes" Source="fio\usr\share\man\man1\rm.1.gz" />
- </Component>
- <Component Id="cmpF92A6B4311418AC23FE347B44A5C5992" Guid="{A25F5651-1327-48A2-962D-B8E955CEE803}">
- <File Id="fil282204475E0244E793CF9A54E557AC78" KeyPath="yes" Source="fio\usr\share\man\man1\rmdir.1.gz" />
- </Component>
- <Component Id="cmp8F42917384443DB105D879D40ADE5B22" Guid="{5B5E9F29-DC3D-41DD-91B4-7D0590AB8462}">
- <File Id="fil72723E8412D2BB7796CE0E82ABCDF183" KeyPath="yes" Source="fio\usr\share\man\man1\roff2dvi.1.gz" />
- </Component>
- <Component Id="cmp2B0BAF3F579240CFEC795AC1CA99F859" Guid="{4391AABF-D4F7-4BA4-9AE7-145AC0F73CAB}">
- <File Id="fil555AD3C4216521783E877FD84A435054" KeyPath="yes" Source="fio\usr\share\man\man1\roff2html.1.gz" />
- </Component>
- <Component Id="cmp735F54FA52F82DF12A0AE6D2B883798A" Guid="{9C5EB05A-2DB6-4E4F-9B51-A767BE2CC276}">
- <File Id="filBB916BCAE57A247CB74E856FD24537FF" KeyPath="yes" Source="fio\usr\share\man\man1\roff2pdf.1.gz" />
- </Component>
- <Component Id="cmp7EBC62BFC789C3EBC2853D6C5E51B3D0" Guid="{5D2689B4-BE46-41C8-90E5-A322CA4C1E53}">
- <File Id="fil5E3C4EE48254A0548ABCFD867798A9AA" KeyPath="yes" Source="fio\usr\share\man\man1\roff2ps.1.gz" />
- </Component>
- <Component Id="cmp9116C43B966560A51675D7D04B06B053" Guid="{AEBEB61B-A93A-47B8-ACD2-C744E19EF964}">
- <File Id="filC63753B9776A79B0BF595E11CF7F979F" KeyPath="yes" Source="fio\usr\share\man\man1\roff2text.1.gz" />
- </Component>
- <Component Id="cmp429574D4BBF9AECCC1A978CE4976458E" Guid="{F8605C22-2829-4E7D-8FF5-9AB0E364F3EF}">
- <File Id="filD1333ADB68151D553A1DF7E27C326CD3" KeyPath="yes" Source="fio\usr\share\man\man1\roff2x.1.gz" />
- </Component>
- <Component Id="cmp9292FB8D66DC3956DEF457794FF5A865" Guid="{7C5A69D8-A294-43E1-942A-36F84FADFEBE}">
- <File Id="fil8CEB4E4FADBE1B6BEA12057166B4E9F9" KeyPath="yes" Source="fio\usr\share\man\man1\run.1.gz" />
- </Component>
- <Component Id="cmp0563FEF9A8DC0FCB2C7099115E5E8791" Guid="{EF9BF957-50F0-4A59-AB96-76014D79433C}">
- <File Id="filCF55D5D512E9512A174A43A18A79C488" KeyPath="yes" Source="fio\usr\share\man\man1\runcon.1.gz" />
- </Component>
- <Component Id="cmpB90BB3FC61E44193A0CC13EA477E2BC1" Guid="{07E4A3A4-05D0-44DB-972E-1C3E27D02C37}">
- <File Id="fil7511642C84157633EB5CC318AC2ADEC7" KeyPath="yes" Source="fio\usr\share\man\man1\sdiff.1.gz" />
- </Component>
- <Component Id="cmp439A7DC5AD5921DD478F3EF2B16E903E" Guid="{8D190DE4-1BAD-4AFE-AFF0-45103A363461}">
- <File Id="fil198C8B5B5990E82CCF2AC9F9512B867E" KeyPath="yes" Source="fio\usr\share\man\man1\sed.1.gz" />
- </Component>
- <Component Id="cmpCC3E1D0B36E6C351C95E543578120EBC" Guid="{F60A8792-9BBE-4C6B-8C8A-722D2EF49666}">
- <File Id="fil8C9CD9C30E94D873DCE63ACBC237F00F" KeyPath="yes" Source="fio\usr\share\man\man1\select.1.gz" />
- </Component>
- <Component Id="cmp273F859AB61D6DC68D64B1F855DE42C9" Guid="{835A2115-6D20-4FC6-922B-0C560FE85797}">
- <File Id="fil0D025F4847561CD572F5D2F404BEA49C" KeyPath="yes" Source="fio\usr\share\man\man1\seq.1.gz" />
- </Component>
- <Component Id="cmpE160E9249CC1E07CDAE44DC2D2409442" Guid="{0BEAEF0A-1BBA-4C92-9F2B-2A80784EF188}">
- <File Id="filBB501E803CC985026DA4587D8625DE61" KeyPath="yes" Source="fio\usr\share\man\man1\set.1.gz" />
- </Component>
- <Component Id="cmp79E90618A11297606C3606910D03B8A8" Guid="{7CEE7731-21C3-466B-BBC7-155C0DF6B2A8}">
- <File Id="filA2A75ED7772FAD44F35A32170F6A2737" KeyPath="yes" Source="fio\usr\share\man\man1\setfacl.1.gz" />
- </Component>
- <Component Id="cmp4747EC968C9F8D860C1A8B155E6DF8BE" Guid="{17B6DCF6-4F84-4D8D-B7AC-8D9C02CE4EA9}">
- <File Id="filD072D02A8F5AFFC08278B7273C3C2AF3" KeyPath="yes" Source="fio\usr\share\man\man1\sh.1.gz" />
- </Component>
- <Component Id="cmp4BE14319A5E433C169EA06A637388A4B" Guid="{0ADDDC6B-0ED0-4D8F-AB2C-0B22CDF01014}">
- <File Id="fil6439123DDF71AA586A3C6536EEDE769E" KeyPath="yes" Source="fio\usr\share\man\man1\sha1sum.1.gz" />
- </Component>
- <Component Id="cmp03D6C5F8206F4DA2D9122C95B4BCF826" Guid="{0E1A33D8-3217-4C19-8627-D21FA850054F}">
- <File Id="filD272D47C92E3A8DC8BDA1D388F8DC71C" KeyPath="yes" Source="fio\usr\share\man\man1\sha224sum.1.gz" />
- </Component>
- <Component Id="cmpAC625F07FAE0D51ACEF5A587B10351DF" Guid="{7AC7831E-57F5-489C-A147-6B219A9D6881}">
- <File Id="fil142AF01C59EB085854203F1A567008BC" KeyPath="yes" Source="fio\usr\share\man\man1\sha256sum.1.gz" />
- </Component>
- <Component Id="cmpBFF57DB6882BB8F1D5CC2CF5D318422F" Guid="{5C5DC467-469F-4EF7-9A5B-57EDF6B561C2}">
- <File Id="fil278F4EE2BC4DC03C1C193A815972DF67" KeyPath="yes" Source="fio\usr\share\man\man1\sha384sum.1.gz" />
- </Component>
- <Component Id="cmp3A3BD2C1DFA0D6CFA765743E963D94CF" Guid="{8641103B-20F1-4296-8685-25932A01C502}">
- <File Id="filB9C5BF0D88499A35791C75775A989DAD" KeyPath="yes" Source="fio\usr\share\man\man1\sha512sum.1.gz" />
- </Component>
- <Component Id="cmp876E6C9DC7F9AEF70D8F3DA90EB8ED3B" Guid="{1D97AC04-BDD1-416D-ACE8-D926971F94BD}">
- <File Id="filC58803E2BC93D717B3F061216C0CFAE9" KeyPath="yes" Source="fio\usr\share\man\man1\shift.1.gz" />
- </Component>
- <Component Id="cmp7A40C0F6D9B83A3F05BED4944A468DC0" Guid="{DADFE9E1-A32A-4C3D-B4DE-F2BF0029F149}">
- <File Id="filA618139C8F960EC2B226CC70C33BD18F" KeyPath="yes" Source="fio\usr\share\man\man1\shopt.1.gz" />
- </Component>
- <Component Id="cmpD3EDEE0D249865389A1DE056F9F291AF" Guid="{523D3066-B4C3-4223-BCB7-907E4D2C00EA}">
- <File Id="fil3C819B5D0F3BF21A24BCF5EB47DAD479" KeyPath="yes" Source="fio\usr\share\man\man1\shred.1.gz" />
- </Component>
- <Component Id="cmp5E56694CF70500BF06D34341FE9F5FB0" Guid="{A6460ADF-D13F-45B0-8B2B-2AA5DAB6D8BA}">
- <File Id="fil6137110CB21491C9F18D05ED6CBF8FE5" KeyPath="yes" Source="fio\usr\share\man\man1\shuf.1.gz" />
- </Component>
- <Component Id="cmp438DC2C170C988E96C6A16A7C0012A38" Guid="{A0691D50-9B7B-4C7F-92B0-4F3CC6649B2F}">
- <File Id="fil2CEC8EA658BF9400999124CE77AAD161" KeyPath="yes" Source="fio\usr\share\man\man1\sleep.1.gz" />
- </Component>
- <Component Id="cmp2330D18F5CD45C0324385BA09C6B7EDD" Guid="{57A6D16A-4D6D-4E4F-911E-209F5D89F652}">
- <File Id="fil628CB47A18671314EADA2C42B1B82D30" KeyPath="yes" Source="fio\usr\share\man\man1\soelim.1.gz" />
- </Component>
- <Component Id="cmpB0AC8B0D3B6FDB7202B4AD878249FF0A" Guid="{FE50CADB-3DBE-42D0-BF8F-646CED9BEE4D}">
- <File Id="filEB79A8A92F8AB2B3B9639B1B73BBBE70" KeyPath="yes" Source="fio\usr\share\man\man1\sort.1.gz" />
- </Component>
- <Component Id="cmp2567DC2F1B1C13BA5061A390F2D52FA1" Guid="{A488BB4F-0C72-4A15-8360-7CF20E7E1275}">
- <File Id="fil1825E725868E49999174C31409912054" KeyPath="yes" Source="fio\usr\share\man\man1\source.1.gz" />
- </Component>
- <Component Id="cmpD3265C88F328ED1042C851B4A165F129" Guid="{AFA46C03-2FDA-472C-8FAC-EC9DEC867422}">
- <File Id="fil33FA89D2973771FD1BFB99CDCAD9F78C" KeyPath="yes" Source="fio\usr\share\man\man1\split.1.gz" />
- </Component>
- <Component Id="cmpA89A7C79883AA8F588433F6B195C5446" Guid="{E273DB8A-B77C-4A8E-A3C3-5C78E4E5F767}">
- <File Id="fil484E629D4FA311386F69978749D3691A" KeyPath="yes" Source="fio\usr\share\man\man1\ssp.1.gz" />
- </Component>
- <Component Id="cmp1CFC9648B2D39F2369AAC05F6F1C5AEB" Guid="{CC5344D3-C207-4E32-A9C1-C49516D7F8CE}">
- <File Id="filEA6BBDF202BFAF4C2C0B33F098EB7B59" KeyPath="yes" Source="fio\usr\share\man\man1\stat.1.gz" />
- </Component>
- <Component Id="cmp905FACB669E7A2030660DFD2D4DF9F6C" Guid="{875F0E4A-50F6-46C5-B5C8-E759D463EB08}">
- <File Id="filFACB87088D9AFAF80412DF2B03A85C53" KeyPath="yes" Source="fio\usr\share\man\man1\strace.1.gz" />
- </Component>
- <Component Id="cmp8E659486B4ED17CAAFDBFB5998C82A77" Guid="{87449DBC-6642-42D4-95C9-C337C574832B}">
- <File Id="fil9DCB9A74E93DEB331082FC75B877F603" KeyPath="yes" Source="fio\usr\share\man\man1\stty.1.gz" />
- </Component>
- <Component Id="cmpB193C69697936221D19C4967EFC8BA9F" Guid="{ADFE0BF5-6020-4CEE-B787-CA98473A3054}">
- <File Id="fil864C870431B4B1145E49E17CC8321F42" KeyPath="yes" Source="fio\usr\share\man\man1\su.1.gz" />
- </Component>
- <Component Id="cmp3B616AAD3F87628D475986E248166789" Guid="{999C15C4-10E0-452C-9DE3-B36A3423511B}">
- <File Id="fil40D173D832F0D1341C7EED9D0713FB40" KeyPath="yes" Source="fio\usr\share\man\man1\sum.1.gz" />
- </Component>
- <Component Id="cmp658AB46193B72A158E305F003029F3BD" Guid="{1CB26C07-DA71-4086-8F0E-A6C58AFC0237}">
- <File Id="filF2F903FA0015E096AA2784A987173D9F" KeyPath="yes" Source="fio\usr\share\man\man1\suspend.1.gz" />
- </Component>
- <Component Id="cmpD274D5286BE109704737EECED8A39138" Guid="{0D833856-F8AE-4559-801F-9C7B07C504DF}">
- <File Id="fil219B441F97508E48950599BF4460264C" KeyPath="yes" Source="fio\usr\share\man\man1\sync.1.gz" />
- </Component>
- <Component Id="cmp7D5D6464A1438737F0A1F1A1587EF87E" Guid="{1451A0A7-6CBD-4349-8AAE-F3637D42A030}">
- <File Id="fil64CF9E23C26F4839CAAC4932E39A8DE3" KeyPath="yes" Source="fio\usr\share\man\man1\tac.1.gz" />
- </Component>
- <Component Id="cmp454FDC5CC1A9CA18204918C833C79327" Guid="{8F802DC1-BADE-4704-A05A-07861F304EDB}">
- <File Id="filB59B1957F3BBF360B7A9FCB8968541F7" KeyPath="yes" Source="fio\usr\share\man\man1\tail.1.gz" />
- </Component>
- <Component Id="cmpD83514E6CFDD82C3396682AB85AD6E55" Guid="{3380CA28-B417-4487-931B-39F6490035B9}">
- <File Id="filD3AB95FD017C1DBE36274BDABC0AB2DA" KeyPath="yes" Source="fio\usr\share\man\man1\tbl.1.gz" />
- </Component>
- <Component Id="cmpDA19330F94B5AB69A76FB3CF6E9AE82C" Guid="{AAF2E392-6D1B-409F-BBB2-69A5ED0EE32E}">
- <File Id="filDD658C046D1CDC1F1D43B4B03C24E6B9" KeyPath="yes" Source="fio\usr\share\man\man1\tee.1.gz" />
- </Component>
- <Component Id="cmpD20A9E9987D06ACE044AC4E482E7470B" Guid="{DDFBD095-2D6B-45E2-9BF1-B088572318B2}">
- <File Id="fil506D08835EDC6853381888F5C9DDF6B1" KeyPath="yes" Source="fio\usr\share\man\man1\test.1.gz" />
- </Component>
- <Component Id="cmp86CDDE9533FACBA9117C189336B50CB8" Guid="{DBE09CF0-3787-4DFC-A1BD-4A10E6BD808D}">
- <File Id="filB24894E4FC82CE2E30C7323755CAF857" KeyPath="yes" Source="fio\usr\share\man\man1\texi2dvi.1.gz" />
- </Component>
- <Component Id="cmp2F35925EED795ED7784AC41F622BFA53" Guid="{DA3F2FCC-9E8A-4D80-85B4-9D6AE1F6CD1A}">
- <File Id="fil9666B3DAB2DE7B5D2FED0DB993BE9555" KeyPath="yes" Source="fio\usr\share\man\man1\texi2pdf.1.gz" />
- </Component>
- <Component Id="cmpD3898EAFA3030A2D8D0BB084F34065F7" Guid="{CA7D5F2B-FDE3-402A-ABB6-03308057383D}">
- <File Id="fil33CEFC258BACA09FC1FE6C5CFEE348CE" KeyPath="yes" Source="fio\usr\share\man\man1\texindex.1.gz" />
- </Component>
- <Component Id="cmp6AD20B978703EBE553FE5B7D67FBBFE2" Guid="{7C6ED296-330F-42AE-95E4-B20212339D80}">
- <File Id="filF3BC083C1239EE4B0444CF1235F649E4" KeyPath="yes" Source="fio\usr\share\man\man1\tfmtodit.1.gz" />
- </Component>
- <Component Id="cmp3279BC449125EE557F6CD6ED5449AA04" Guid="{CD84CC69-230E-4D40-AEE7-7B1FEAA393F9}">
- <File Id="fil73B1664B81BA2E7542A6B2A97218BEE9" KeyPath="yes" Source="fio\usr\share\man\man1\then.1.gz" />
- </Component>
- <Component Id="cmpB8973DB62615A36A114D417FBF7F5477" Guid="{9FBA0B1A-69A3-427E-A6BE-54227672DB41}">
- <File Id="fil2289A5D0105CACF1663EA4CFD12C4242" KeyPath="yes" Source="fio\usr\share\man\man1\time.1.gz" />
- </Component>
- <Component Id="cmpADECA3726B7ED6688A01C67930760153" Guid="{4B1CB1FB-C368-4BE6-92FB-565D1DE86F7C}">
- <File Id="filA525DC212381687AE4807D65E86F3F96" KeyPath="yes" Source="fio\usr\share\man\man1\timeout.1.gz" />
- </Component>
- <Component Id="cmpA210532EE87AFB2C8F886A61B9684880" Guid="{135BFDEB-BF91-435B-934C-30795D93DC27}">
- <File Id="fil4879F299703CDFB4B89768C770D098AB" KeyPath="yes" Source="fio\usr\share\man\man1\times.1.gz" />
- </Component>
- <Component Id="cmp8D27DBF59A8F1C6D65DE255F825CCF89" Guid="{4BA69D7E-981E-49BC-B06F-304EB8BDB8B0}">
- <File Id="fil07F528B41709C85B6FADF26C241E9306" KeyPath="yes" Source="fio\usr\share\man\man1\touch.1.gz" />
- </Component>
- <Component Id="cmpC93EC4EA4E084256C87FC2E1F5075757" Guid="{1826D93A-8E77-4AC7-A39E-22823B5AC765}">
- <File Id="fil8B412AE46AE44F8D69C5B5D5936208C2" KeyPath="yes" Source="fio\usr\share\man\man1\tr.1.gz" />
- </Component>
- <Component Id="cmpE465ED28798293FE59DED7D9739C5048" Guid="{4A98D977-6AA7-49B5-B392-CEBFFF60CE80}">
- <File Id="filCA68E167CA94AFD29E0D7A79795C719D" KeyPath="yes" Source="fio\usr\share\man\man1\trap.1.gz" />
- </Component>
- <Component Id="cmp0BB75302A5D9BF9B517696CF96F59696" Guid="{EF4DBC42-7A73-409B-8C96-E126F27A3326}">
- <File Id="filA8E105FD7970C58F447E946B569CBC3A" KeyPath="yes" Source="fio\usr\share\man\man1\troff.1.gz" />
- </Component>
- <Component Id="cmpD74232DC462E9FD6DB39177D3DD28CF6" Guid="{85892D43-43A6-4240-9C76-E4563A2EBB69}">
- <File Id="fil1C5FADE7E4657C7C64987EF78334671B" KeyPath="yes" Source="fio\usr\share\man\man1\true.1.gz" />
- </Component>
- <Component Id="cmp08CCFF5470D3165EC6099943B0541DFF" Guid="{6E1B0836-4FAE-4A65-9C47-CC8A63D9C08F}">
- <File Id="filCE78543718419C0D6A5AA79C1DEF3FCB" KeyPath="yes" Source="fio\usr\share\man\man1\truncate.1.gz" />
- </Component>
- <Component Id="cmp05AAA8FA1FB17490819469063DA85A83" Guid="{93F9CF9E-6916-4191-B44D-B29F37D45D72}">
- <File Id="fil789084E64DE7297FC13E7A57FA5AD22B" KeyPath="yes" Source="fio\usr\share\man\man1\tsort.1.gz" />
- </Component>
- <Component Id="cmp6C974040E91349EDD265853C382A85B8" Guid="{40A5C6A0-DABA-41F4-8996-8A625D404F54}">
- <File Id="filAF2CAFE08D631C9CCF27EFBF93BC6C04" KeyPath="yes" Source="fio\usr\share\man\man1\tty.1.gz" />
- </Component>
- <Component Id="cmp3852E526A1C7D81E3099E30DC162CB9F" Guid="{912051B7-B1D1-45B9-A371-CEE710AE791D}">
- <File Id="fil9D2867B3BE9F10B579E2ECC4E30F23F6" KeyPath="yes" Source="fio\usr\share\man\man1\type.1.gz" />
- </Component>
- <Component Id="cmpC82FED1D621EF15C9E171DDA5A6DBF22" Guid="{955C146D-8ED5-4FB8-941E-E370F03FC594}">
- <File Id="fil3AFA3C7837EEF6DCAB36A50B181F2978" KeyPath="yes" Source="fio\usr\share\man\man1\typeset.1.gz" />
- </Component>
- <Component Id="cmp3338260C74E13A866E372A148894E1D6" Guid="{F0378FAD-3278-4CC0-81C9-594FB9E139BE}">
- <File Id="fil8448AAE57406E8B95CB569701368B680" KeyPath="yes" Source="fio\usr\share\man\man1\ulimit.1.gz" />
- </Component>
- <Component Id="cmpBDEA73C59984C62505A1FAA433AF9075" Guid="{DC5AB283-4B0B-41F8-A884-E8D246A088CE}">
- <File Id="fil7C4FEC7110DC1B341BEB3DCB7A285696" KeyPath="yes" Source="fio\usr\share\man\man1\umask.1.gz" />
- </Component>
- <Component Id="cmp032B59F873B202BE8911787C0BFC875D" Guid="{D35CFAA2-5A22-46FB-8195-5CD313EDD4AA}">
- <File Id="filFA989AEB83E63194DF144AED3510061B" KeyPath="yes" Source="fio\usr\share\man\man1\umount.1.gz" />
- </Component>
- <Component Id="cmpDCF166AD6095A7C501E9F6B774BF43F2" Guid="{4EB519FE-1E6C-42C8-8705-BF6AA4C66259}">
- <File Id="fil2AE3DFCE5E7B6D547590B21B9FF9E4BF" KeyPath="yes" Source="fio\usr\share\man\man1\unalias.1.gz" />
- </Component>
- <Component Id="cmp55B433D5F9A19A464C2964310199EAA1" Guid="{C85CDB80-864C-498F-866D-B73A43724504}">
- <File Id="filEBF905F1BE009175BCFF8540F89F5BC1" KeyPath="yes" Source="fio\usr\share\man\man1\uname.1.gz" />
- </Component>
- <Component Id="cmp34FDCEC8B153B002C4CC565C6713D66F" Guid="{E9EB9167-6221-4095-B6DE-8E36DAACAE57}">
- <File Id="fil0C2C61B27603493F6DB3B19F2CCF060C" KeyPath="yes" Source="fio\usr\share\man\man1\unexpand.1.gz" />
- </Component>
- <Component Id="cmpFC24A531C03885E37C7117298BAD8616" Guid="{FE534EFD-C160-455B-BF3C-63CD2D58EA90}">
- <File Id="fil62BFBC9265F3EBEA09ED4A8BF278BF0D" KeyPath="yes" Source="fio\usr\share\man\man1\uniq.1.gz" />
- </Component>
- <Component Id="cmp9333E5359F309EC661E1127F42CCBBC6" Guid="{925869B1-8D9B-453C-A94C-4EF7A9F72E03}">
- <File Id="filD10564DA77944C9A5C4382B94FCAAAD8" KeyPath="yes" Source="fio\usr\share\man\man1\unlink.1.gz" />
- </Component>
- <Component Id="cmp36C7414A9044F78FBDB1610BE37DF7F3" Guid="{07C9542F-AE42-46B9-BA11-CBB20D76FDC1}">
- <File Id="filD8361A16133A35B43C8C03A0755E0698" KeyPath="yes" Source="fio\usr\share\man\man1\unlzma.1.gz" />
- </Component>
- <Component Id="cmp7810D01D8257B57FA159C1741FB629AC" Guid="{E81216DB-3F59-493A-8DB4-CB57AA425027}">
- <File Id="filD96985F80FA3A1CB40F8847B881D537A" KeyPath="yes" Source="fio\usr\share\man\man1\unset.1.gz" />
- </Component>
- <Component Id="cmp93C876108E5A2220395E69591A7ED05E" Guid="{ECA1FE29-4E4D-461B-BEDE-37723BCDB0C4}">
- <File Id="fil20DBE61235229D59B6EA79183E65D17C" KeyPath="yes" Source="fio\usr\share\man\man1\until.1.gz" />
- </Component>
- <Component Id="cmpA4863B18CE81DE9FF8E281E67E87EBA5" Guid="{6CFEB317-28C0-444E-9EB6-3F004D1CDDF1}">
- <File Id="fil0511C0DC21A7F034088D28C7BF112800" KeyPath="yes" Source="fio\usr\share\man\man1\unxz.1.gz" />
- </Component>
- <Component Id="cmpFB0235E317E790274C419A0EFCDA452C" Guid="{031EA15B-5B45-42E2-B37E-891EEFEAA082}">
- <File Id="fil8F5C508BE032CFABA68BA56139254822" KeyPath="yes" Source="fio\usr\share\man\man1\updatedb.1.gz" />
- </Component>
- <Component Id="cmp954EE1728E080CF4A01664722C5717A3" Guid="{45129ABF-20FD-4302-9609-F791FA2A872F}">
- <File Id="filBF51C88EA45A595253258A21F0E6AE33" KeyPath="yes" Source="fio\usr\share\man\man1\users.1.gz" />
- </Component>
- <Component Id="cmpCB19FC482D5886DA7C68B7CF14BCA61D" Guid="{B70842F1-3A1F-4BA6-9B91-30D45A3FEA74}">
- <File Id="fil9DEBAB6BD57C1179FD24ED0DF92D4730" KeyPath="yes" Source="fio\usr\share\man\man1\vdir.1.gz" />
- </Component>
- <Component Id="cmp4A9DC7631414820869F2876DC913A253" Guid="{9B4BCFDA-4E39-4C78-A4E5-9DFE4FC48E60}">
- <File Id="fil0160EB0BB7B48104DBEA214F87C1E560" KeyPath="yes" Source="fio\usr\share\man\man1\wait.1.gz" />
- </Component>
- <Component Id="cmp0939D67BA6BA2AE94FE1FF302498B681" Guid="{037E0A33-8012-463C-ABB1-14C8C5987CB2}">
- <File Id="fil462BBB100ACE92F685EE4A450C87E1BC" KeyPath="yes" Source="fio\usr\share\man\man1\wc.1.gz" />
- </Component>
- <Component Id="cmp8A55D550A7140BF1A20C426A4F1B66A4" Guid="{477BBF99-5FF3-46DC-A329-C03B81C451CA}">
- <File Id="fil104D29904FC39FFF2D38FC71FBCDCB68" KeyPath="yes" Source="fio\usr\share\man\man1\whatis.1.gz" />
- </Component>
- <Component Id="cmp959C3B6A1E9AE62856E37033AB804F42" Guid="{D7EBF1FA-534B-4A2B-BEE2-393F07A1CB51}">
- <File Id="filE954E0A4F3D7F6B424A5C9757E5B446E" KeyPath="yes" Source="fio\usr\share\man\man1\which.1.gz" />
- </Component>
- <Component Id="cmp58955C938DB2BD9DA74B78820BDA8251" Guid="{E8523F38-A2CA-4B96-8902-7F74AD9604E0}">
- <File Id="fil7C20C38B1055BBA33929E56FDA6B92D7" KeyPath="yes" Source="fio\usr\share\man\man1\while.1.gz" />
- </Component>
- <Component Id="cmp4EF6D1532E874EC2BD29011C16A9D8F1" Guid="{44F7D2C1-7480-4A52-94B9-09AB4D0616D5}">
- <File Id="fil2E809E066477EF0559B15FA72A5423C4" KeyPath="yes" Source="fio\usr\share\man\man1\who.1.gz" />
- </Component>
- <Component Id="cmp62138E83AE202ED7C80E279AB44ED61E" Guid="{8ADA43DA-EE36-4E53-8A9C-1CBC44D37699}">
- <File Id="filB25E8A56E92C2EE866BA09E49E3A53D3" KeyPath="yes" Source="fio\usr\share\man\man1\whoami.1.gz" />
- </Component>
- <Component Id="cmpA14E14C42E894BC6291501658498BB95" Guid="{B55297BB-D01D-4A37-A42F-13EF75D3A86C}">
- <File Id="fil4EA7906570CE00D15E1ADCB2A865CDFE" KeyPath="yes" Source="fio\usr\share\man\man1\xargs.1.gz" />
- </Component>
- <Component Id="cmp21BE4C7901F9913825BBD0F9FB10F1C4" Guid="{CB459107-9378-419F-869B-9C5C26094E99}">
- <File Id="fil6DDE790876E1124D5F61687DDAB4445D" KeyPath="yes" Source="fio\usr\share\man\man1\xz.1.gz" />
- </Component>
- <Component Id="cmp2EC886CEEB1B66E7B6B43E34C295BDA7" Guid="{D42A9296-D005-4B1B-874E-95DD5D55809E}">
- <File Id="fil6A9C5020070FB72B87D78FAB382B52F5" KeyPath="yes" Source="fio\usr\share\man\man1\xzcat.1.gz" />
- </Component>
- <Component Id="cmpD55D9DDF3D00CEAAFDB780081C6D85B5" Guid="{25C7A2CA-945B-4136-BFF2-6F4390BCCB2D}">
- <File Id="fil153AC69C29D781A08A5575BEBDE6C7AF" KeyPath="yes" Source="fio\usr\share\man\man1\xzcmp.1.gz" />
- </Component>
- <Component Id="cmp07FD1412F12869527EAB585C6270348E" Guid="{70FB860E-0AA7-46DB-87F2-57577D7C8F17}">
- <File Id="fil8669D08D61407811407A7025933AECCF" KeyPath="yes" Source="fio\usr\share\man\man1\xzdec.1.gz" />
- </Component>
- <Component Id="cmpB5775AE5F97456CB789A4EA92ADA76F9" Guid="{A200E801-2458-47D5-8EF7-E5CA628A61A6}">
- <File Id="fil4859D90BE03813F1D32CE038959D93BF" KeyPath="yes" Source="fio\usr\share\man\man1\xzdiff.1.gz" />
- </Component>
- <Component Id="cmpBF4267595B6AC663F3228603CE5C3C29" Guid="{E824E817-E97E-4FE5-8BFF-439CA126A363}">
- <File Id="fil71FBFDB7B062950FD20669B6282E2056" KeyPath="yes" Source="fio\usr\share\man\man1\xzegrep.1.gz" />
- </Component>
- <Component Id="cmpA0A22C9659F12D37BE0F92F6EBFC172C" Guid="{AF37985E-4590-47B0-9FA6-D74D7AE575B7}">
- <File Id="fil295075C81739E67A091EAB9536EC6202" KeyPath="yes" Source="fio\usr\share\man\man1\xzfgrep.1.gz" />
- </Component>
- <Component Id="cmpD4CD80714D933E65AF57F62A0C2FD83A" Guid="{2E7903B4-F873-4A0A-BB39-C5DF109D366A}">
- <File Id="filBC1C06C1ABCF0A7D85DA7C9AA36CE32C" KeyPath="yes" Source="fio\usr\share\man\man1\xzgrep.1.gz" />
- </Component>
- <Component Id="cmp758057C12DF530CF94FA28B9E4600C44" Guid="{92D80BD8-5D31-4640-9749-A4967F378950}">
- <File Id="filF8AC902367B793F01DE6475223BB49E1" KeyPath="yes" Source="fio\usr\share\man\man1\xzless.1.gz" />
- </Component>
- <Component Id="cmpDC23D123D21D5E5112A5183EB5616887" Guid="{75682069-4CE5-4ACE-9604-629CFE1B234A}">
- <File Id="filA0266BC616FD60A2A4927CC92DA003B3" KeyPath="yes" Source="fio\usr\share\man\man1\xzmore.1.gz" />
- </Component>
- <Component Id="cmp82219B71BBB3C812B00621700649B00B" Guid="{7079A183-1435-467F-BF36-EFD18B6741A6}">
- <File Id="fil03DC5EB0FD2892C60A2228547A0AD2BA" KeyPath="yes" Source="fio\usr\share\man\man1\yes.1.gz" />
- </Component>
- <Component Id="cmp6664DB4CC5ED39AF9C51E4366FB856F7" Guid="{63AAB3B6-9D9B-4856-9A48-7F1EF1BBC023}">
- <File Id="fil70C87EB3380AE1FC2EA7B3723450C400" KeyPath="yes" Source="fio\usr\share\man\man1\zcat.1.gz" />
- </Component>
- <Component Id="cmp10E18E238AB99E2C259724B7B37CC15E" Guid="{613E45D8-A5A4-4D22-BC29-C246D8F51D5C}">
- <File Id="filE96EF73A980BA74DA1392EA087183808" KeyPath="yes" Source="fio\usr\share\man\man1\zcmp.1.gz" />
- </Component>
- <Component Id="cmp132D0E0382D6EEBD79C3F89B84846907" Guid="{9F48D677-050A-43B4-8702-7290C1914F17}">
- <File Id="fil34BDF07CCC242323FC530863CD0B05B1" KeyPath="yes" Source="fio\usr\share\man\man1\zdiff.1.gz" />
- </Component>
- <Component Id="cmp14A55A9EB4AC79EE98F325A23514B3A2" Guid="{85D225F6-6B18-4AF7-83E5-8CA0A83CA7B7}">
- <File Id="fil5DF9F1FC27401A79415303CD857E6861" KeyPath="yes" Source="fio\usr\share\man\man1\zforce.1.gz" />
- </Component>
- <Component Id="cmp25EF115F3306D373713DF18B6FF8C8C0" Guid="{EC574A3F-2080-42F3-92A9-6C03D33DB1FC}">
- <File Id="filD64F37778013BFB11D5C8092E941D956" KeyPath="yes" Source="fio\usr\share\man\man1\zgrep.1.gz" />
- </Component>
- <Component Id="cmpFD7415216DD6AF431A289CA2E1FCD7E3" Guid="{1FF94D4E-0B44-46A6-AC60-4BE4DAD071A5}">
- <File Id="fil6930FDC0D8F0FAFCE031F5E30688D6F8" KeyPath="yes" Source="fio\usr\share\man\man1\zless.1.gz" />
- </Component>
- <Component Id="cmpA7371B7BC4BC0CA477E0A2B814517E11" Guid="{F585D41E-A815-4FCB-969E-60D37A63DB77}">
- <File Id="fil425944566308F1F2517B32EC3BCE7398" KeyPath="yes" Source="fio\usr\share\man\man1\zmore.1.gz" />
- </Component>
- <Component Id="cmp4072898807B5D641F907DD8592D30FA1" Guid="{F9A13A8E-9E54-4E2F-A155-DAF502C83ED1}">
- <File Id="fil27A5B4864B87E73833F3B461D837D2DB" KeyPath="yes" Source="fio\usr\share\man\man1\znew.1.gz" />
- </Component>
- </Directory>
- <Directory Id="dir0FD33E9FA476685066695E20A7A3992B" Name="man2">
- <Component Id="cmp580633328E7438BD19FEC5A34129303D" Guid="{19BC2406-E8CA-4D6B-B400-19982EB966F7}" KeyPath="yes">
- <CreateFolder />
- </Component>
- </Directory>
- <Directory Id="dir3804ED1ED128329B80A875EE103BB21E" Name="man3">
- <Component Id="cmp7F9D95655D56C71F741AFFC1449853CB" Guid="{C1D7D527-20A9-41A3-9DC6-1B6E078840F2}">
- <File Id="fil5FDF71E8C1EA00047FD7768C10FB3E71" KeyPath="yes" Source="fio\usr\share\man\man3\a64l.3.gz" />
- </Component>
- <Component Id="cmp0D465371369F9EAA4801C959C8D0C5C5" Guid="{A08E6069-EAB5-4DE6-B5AA-86807D9ADB7E}">
- <File Id="fil5AEC4EB2BAFF93ABD1AC61DCC59483A4" KeyPath="yes" Source="fio\usr\share\man\man3\abort.3.gz" />
- </Component>
- <Component Id="cmp622D7CCE5198A8F9C79C151BC8C88C61" Guid="{732368A0-268E-4C72-86A1-A7A76F0F307E}">
- <File Id="fil88FCF7DF7FE3D4D59F7DD1A69F1C62A6" KeyPath="yes" Source="fio\usr\share\man\man3\abs.3.gz" />
- </Component>
- <Component Id="cmp6D146808B2143F800E732E4B66607A40" Guid="{998F1DEB-5C44-47C4-B722-800525F24819}">
- <File Id="fil3BDCB0277DE8FC58B504F7DFAB9FF410" KeyPath="yes" Source="fio\usr\share\man\man3\acos.3.gz" />
- </Component>
- <Component Id="cmp832156E394E647014453A6FCDA9FA305" Guid="{701CF081-7D1D-4790-B5C0-F91365BC5B2F}">
- <File Id="filB3D150CC7FF033BE8A1008BB0A3E7134" KeyPath="yes" Source="fio\usr\share\man\man3\acosf.3.gz" />
- </Component>
- <Component Id="cmp5858F5306B6857A265015C8E9BE5AECC" Guid="{1305C1D4-CC49-47BA-8D68-250887A6FD9E}">
- <File Id="fil29820DBA049F55F0D56BB89326FEEEC2" KeyPath="yes" Source="fio\usr\share\man\man3\acosh.3.gz" />
- </Component>
- <Component Id="cmpBEDA9035FDBB363AC638532DD2EC526B" Guid="{BB25F9F4-604E-4EA1-8FEE-DE74324CB2FF}">
- <File Id="fil15FFDEF8135A47D5D113E954898043F2" KeyPath="yes" Source="fio\usr\share\man\man3\acoshf.3.gz" />
- </Component>
- <Component Id="cmp738C6EA63214C6288756E9CE57707C43" Guid="{76683FAA-F274-48B7-9900-F383A829CA90}">
- <File Id="fil58E5C6B44004367D276A3B35A4CD40D2" KeyPath="yes" Source="fio\usr\share\man\man3\asctime.3.gz" />
- </Component>
- <Component Id="cmpF4AD883C1629A06C39E2BF36B109252B" Guid="{16D40E90-E369-41F9-8F43-6D120676143D}">
- <File Id="filB3AEAE8E0694F1E4E18658F52C683C42" KeyPath="yes" Source="fio\usr\share\man\man3\asin.3.gz" />
- </Component>
- <Component Id="cmpF56EBE4AFDF2A9E3E3AB6BD441B72001" Guid="{8B0FE4C3-0D79-40AF-A324-942B0CCD5584}">
- <File Id="filE52C4B9481575987B19AC8CDB94A66BD" KeyPath="yes" Source="fio\usr\share\man\man3\asinf.3.gz" />
- </Component>
- <Component Id="cmpF4EA6B947D13A40027AADB8DBD58D3D2" Guid="{635F0E08-1549-412B-AD4B-E06FC634EBD2}">
- <File Id="filB1BA6052A2691C46B7DD3A1F490A8540" KeyPath="yes" Source="fio\usr\share\man\man3\asinh.3.gz" />
- </Component>
- <Component Id="cmp11C685E8B4F154A152CCC765ED53B08B" Guid="{D7E6265C-A534-4D4F-991C-79AEC2B60220}">
- <File Id="filD8460CC83A34E650127266069EF62506" KeyPath="yes" Source="fio\usr\share\man\man3\asinhf.3.gz" />
- </Component>
- <Component Id="cmpDC46D5EC74394B7C8508BD1B73F08D3E" Guid="{09C0F363-E52E-4386-8F3F-6981CF5D0B1B}">
- <File Id="fil6CE7C57DE25A6BECAC1A5F5882808E70" KeyPath="yes" Source="fio\usr\share\man\man3\assert.3.gz" />
- </Component>
- <Component Id="cmp6F40F57DB36D685ABE1572EF53A55A15" Guid="{97147F31-7CF8-426E-A23F-EF89F057E105}">
- <File Id="filCBD75DC3A63192DBD72C5E9AE7186E64" KeyPath="yes" Source="fio\usr\share\man\man3\atan.3.gz" />
- </Component>
- <Component Id="cmpEACCB1556633816C04E482AF9B364F24" Guid="{4250F1A6-C3E2-4708-A78E-FA366318420C}">
- <File Id="fil9D9015C8C5789C48E552B0382A1BD571" KeyPath="yes" Source="fio\usr\share\man\man3\atan2.3.gz" />
- </Component>
- <Component Id="cmpE5ADF00FB4929EA34D1798D79B58E385" Guid="{F472BD61-7256-4039-8F8F-6A38F2C36B83}">
- <File Id="fil9BCBBD9DAE9D344C0811AA9DDC431C4D" KeyPath="yes" Source="fio\usr\share\man\man3\atan2f.3.gz" />
- </Component>
- <Component Id="cmp08C031D640CA8D82F37A94B15CE3A658" Guid="{81ACB5D7-83C8-4830-8F7D-F6EC7134372E}">
- <File Id="filD78F05EE4FA804648B286D3108971D9F" KeyPath="yes" Source="fio\usr\share\man\man3\atanf.3.gz" />
- </Component>
- <Component Id="cmpE9031F6579DD16AA41C80E1B65F9EAD7" Guid="{274D11F1-DFE7-4ABA-A980-7D4D1F5F079B}">
- <File Id="fil6E687143D8F8CEF1C5D22D7A0FF443D8" KeyPath="yes" Source="fio\usr\share\man\man3\atanh.3.gz" />
- </Component>
- <Component Id="cmpF8B94DE68A40EEC7EC3737BB2C1B281E" Guid="{BD27FCA9-C00A-4C1C-A65E-DC749FA7A112}">
- <File Id="fil11562CCB117AADA0EAC3C2AE4761240B" KeyPath="yes" Source="fio\usr\share\man\man3\atanhf.3.gz" />
- </Component>
- <Component Id="cmp5B4CA0CCF1521295311C9C019DFAD847" Guid="{FC24B623-DD4B-40DC-9D90-CD09A539DBB5}">
- <File Id="fil17E5DF96D0AFD62F974924D280745592" KeyPath="yes" Source="fio\usr\share\man\man3\atexit.3.gz" />
- </Component>
- <Component Id="cmp99D17DFEC405BEDE3B26226394311069" Guid="{FCD7DC08-4228-4FDE-9FBF-C973EE9E2F79}">
- <File Id="fil5398392D74B7FC32F692DF2E6F8FD177" KeyPath="yes" Source="fio\usr\share\man\man3\atof.3.gz" />
- </Component>
- <Component Id="cmp4BA6D643AFE87BEBF563F5B1B0EE37F7" Guid="{A93BFA66-8C3C-483B-8E33-BD32E412B61F}">
- <File Id="fil8023D6FDB6C547DE5929A98E65F2C13F" KeyPath="yes" Source="fio\usr\share\man\man3\atoi.3.gz" />
- </Component>
- <Component Id="cmpC0C0CF3792C3328F7B5ECD986F0CA64F" Guid="{AB5EC2B4-64FD-4BA7-872B-BF026E92CD6C}">
- <File Id="filA1707EE2924986ED566F6936B4E8100D" KeyPath="yes" Source="fio\usr\share\man\man3\atoll.3.gz" />
- </Component>
- <Component Id="cmp2583197643AC64D920D9B729DB51D0E7" Guid="{956F4C61-CB82-49FD-83DB-3704D305F7A4}">
- <File Id="fil4BAB83AD90EBA17BDBDDB4F726D29E79" KeyPath="yes" Source="fio\usr\share\man\man3\bcmp.3.gz" />
- </Component>
- <Component Id="cmpD62DC27A02124F75B29803D48C058855" Guid="{DE2CAA2D-18C1-4024-AFCB-1008B07D07A8}">
- <File Id="fil6A9B8D9D9DEDFD81D570F5D76977BA53" KeyPath="yes" Source="fio\usr\share\man\man3\bcopy.3.gz" />
- </Component>
- <Component Id="cmpFC7A3E95A66E71BCD954252DEC0460D8" Guid="{DFC0CFF7-F7CC-4FED-8312-E74E69761D80}">
- <File Id="fil0ABBFDB933EFF9B7C7EA4888E506C373" KeyPath="yes" Source="fio\usr\share\man\man3\bindtextdomain.3.gz" />
- </Component>
- <Component Id="cmp81DB90B6C1352CC8100EF24844B97D25" Guid="{A4D5EC13-82DE-4116-AF18-4FA35F7424D9}">
- <File Id="filE20DB7A64E09091D6D2D1B9B021087FE" KeyPath="yes" Source="fio\usr\share\man\man3\bind_textdomain_codeset.3.gz" />
- </Component>
- <Component Id="cmp1E2F456973B8D6BB17F18B49844C87F3" Guid="{C429FA66-D004-4BDA-BF5B-15434BD29A89}">
- <File Id="fil705DDC9CC5C0716DD1C9DE029C7A70D1" KeyPath="yes" Source="fio\usr\share\man\man3\bsearch.3.gz" />
- </Component>
- <Component Id="cmpD2D417BDBABB23AFCE692DF553135764" Guid="{9EA00508-DB03-4704-A0DE-17D5B872C219}">
- <File Id="fil0EFFE210289F86F0CDABC0B2AD8087E0" KeyPath="yes" Source="fio\usr\share\man\man3\bzero.3.gz" />
- </Component>
- <Component Id="cmp7E1438C3D672DCC3568F5BCC26D67D3D" Guid="{4B51A539-4A3F-4FD9-9C56-A14F905C18C9}">
- <File Id="fil2CD68D2E608FF7532DABFD82929C14F7" KeyPath="yes" Source="fio\usr\share\man\man3\calloc.3.gz" />
- </Component>
- <Component Id="cmpBB4D7AD68767AEDE435C674F2D05D258" Guid="{D51C376E-E444-438C-A695-F213BBFBCB3F}">
- <File Id="filD99A03EAC756DF2E9CA9D2ADF9B3FFBF" KeyPath="yes" Source="fio\usr\share\man\man3\cbrt.3.gz" />
- </Component>
- <Component Id="cmpA9D32A089CA49122ED31175312D0C57C" Guid="{7E6890AE-EDBD-4241-A47C-B183C9B22A83}">
- <File Id="filF692E102E5C0E2CE7A76BF140300705D" KeyPath="yes" Source="fio\usr\share\man\man3\cbrtf.3.gz" />
- </Component>
- <Component Id="cmp9745D8563B8DDC37D83F0EC87EB6D5E0" Guid="{4009F183-694B-4A9B-928B-429655E08D74}">
- <File Id="fil91FB22E5143BD76AC77CC220468F70A1" KeyPath="yes" Source="fio\usr\share\man\man3\ceil.3.gz" />
- |