This file is indexed.

/usr/share/kobo-deluxe/sfx/hardsync1.agw is in kobodeluxe-data 0.5.1-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/////////////////////////////////////////////
// Hardsync 1
// Copyright (C) David Olofson, 2002
/////////////////////////////////////////////

w_format target, MONO16, 32000;
w_blank target, 128000, 0;

//fundamental
w_env FREQUENCY, 261.625 / 2;
w_env AMPLITUDE, .3;
w_env MOD2, 1;
w_osc target, SINEMORPH;

//hardsync'ed harmonics
w_env AMPLITUDE,
		0,	.4,
		1,	.25,
		1,	.1,
		1,	.07,
		1,	0;
w_env FREQUENCY,
		0,	200,
		4,	4000;
w_env MOD2, 1;
w_osc target, SINEMORPH, SYNC_ADD;

//filter
w_env AMPLITUDE,
		0,	15,
		1,	5,
		3,	0;
w_env FREQUENCY,
		0,	5000,
		.5,	2500,
		3,	1500;
w_filter target, LOWPASS_12;

//final envelope
w_env AMPLITUDE,
		0,	1,
		3,	1,
		1,	0;
w_gain target;