digraph pkg_files_dictionary {
	graph [rankdir=LR,ranksep="0.7"];
	edge [arrowhead="vee",arrowsize="0.2",fontname="DejaVuSansCondensed",fontsize="8"];
	node [height=".1",shape=box,fontname="DejaVuSansCondensed",fontsize="8"];
	files_plist -> main;
	files_plist [style=filled,fillcolor=darksalmon,label="files.plist"];
	main [label="Package dictionary"];
	main -> files [label=array];
	files -> files_dict;
	files -> files_dict1;
	files_dict [style=filled,label="dictionary[0]"];
	files_dict1 [style=filled,label="dictionary[N+1]"];
	files_dict -> file [label=string];
	files_dict -> file_sha256 [label=string];
	file -> file_value;
	file_value [style=filled,fillcolor="yellowgreen",label="/bin/file"];
	file_sha256 [label=sha256];
	file_sha256 -> sha256_value;
	sha256_value [style=filled,fillcolor="yellowgreen",label="..."];
	files_dict1 -> files_dict1_objs [style=filled,label="objects"];
	files_dict1_objs [style=filled,label="..."];
	main -> conf_files [label=array];
	conf_files [style=filled];
	conf_files -> conf_files_dict;
	conf_files -> conf_files_dict1;
	conf_files_dict [style=filled,label="dictionary[0]"];
	conf_files_dict1 [style=filled,label="dictionary[N+1]"];
	conf_files_dict -> cf_file [label=string];
	conf_files_dict -> cf_sha256 [label=string];
	conf_files_dict1 -> conf_files_dict1_objs [style=filled,label="objects"];
	conf_files_dict1_objs [style=filled,label="..."];
	cf_file [label=file];
	cf_sha256 [label=sha256];
	conf_files_dict [style=filled];
	main -> links [label=array];
	links -> links_dict;
	links -> links_dict1;
	links_dict [style=filled,label="dictionary[0]"];
	links_dict1 [style=filled,label="dictionary[N+1]"];
	links_dict -> link_file [label=string];
	links_dict -> link_target [label=string];
	link_file [label=file];
	link_target [label=target];
	links_dict1 -> links_dict1_objs [style=filled,label="objects"];
	links_dict1_objs [style=filled,label="..."];
	main -> dirs [label=array];
	dirs -> dirs_dict;
	dirs -> dirs_dict1;
	dirs_dict [style=filled,label="dictionary[0]"];
	dirs_dict1 [style=filled,label="dictionary[N+1]"];
	dirs_dict -> dirs_file [label=string];
	dirs_file [label=file];
	dirs_dict1 -> dirs_dict1_objs [style=filled,label="objects"];
	dirs_dict1_objs [style=filled,label="..."];
}