[1050] | 1 | %!PS-Adobe-3.0
|
---|
| 2 | %%Creator: graphviz version 2.28.0 (20110507.0327)
|
---|
| 3 | %%Title: G
|
---|
| 4 | %%Pages: (atend)
|
---|
| 5 | %%BoundingBox: (atend)
|
---|
| 6 | %%EndComments
|
---|
| 7 | save
|
---|
| 8 | %%BeginProlog
|
---|
| 9 | /DotDict 200 dict def
|
---|
| 10 | DotDict begin
|
---|
| 11 |
|
---|
| 12 | /setupLatin1 {
|
---|
| 13 | mark
|
---|
| 14 | /EncodingVector 256 array def
|
---|
| 15 | EncodingVector 0
|
---|
| 16 |
|
---|
| 17 | ISOLatin1Encoding 0 255 getinterval putinterval
|
---|
| 18 | EncodingVector 45 /hyphen put
|
---|
| 19 |
|
---|
| 20 | % Set up ISO Latin 1 character encoding
|
---|
| 21 | /starnetISO {
|
---|
| 22 | dup dup findfont dup length dict begin
|
---|
| 23 | { 1 index /FID ne { def }{ pop pop } ifelse
|
---|
| 24 | } forall
|
---|
| 25 | /Encoding EncodingVector def
|
---|
| 26 | currentdict end definefont
|
---|
| 27 | } def
|
---|
| 28 | /Times-Roman starnetISO def
|
---|
| 29 | /Times-Italic starnetISO def
|
---|
| 30 | /Times-Bold starnetISO def
|
---|
| 31 | /Times-BoldItalic starnetISO def
|
---|
| 32 | /Helvetica starnetISO def
|
---|
| 33 | /Helvetica-Oblique starnetISO def
|
---|
| 34 | /Helvetica-Bold starnetISO def
|
---|
| 35 | /Helvetica-BoldOblique starnetISO def
|
---|
| 36 | /Courier starnetISO def
|
---|
| 37 | /Courier-Oblique starnetISO def
|
---|
| 38 | /Courier-Bold starnetISO def
|
---|
| 39 | /Courier-BoldOblique starnetISO def
|
---|
| 40 | cleartomark
|
---|
| 41 | } bind def
|
---|
| 42 |
|
---|
| 43 | %%BeginResource: procset graphviz 0 0
|
---|
| 44 | /coord-font-family /Times-Roman def
|
---|
| 45 | /default-font-family /Times-Roman def
|
---|
| 46 | /coordfont coord-font-family findfont 8 scalefont def
|
---|
| 47 |
|
---|
| 48 | /InvScaleFactor 1.0 def
|
---|
| 49 | /set_scale {
|
---|
| 50 | dup 1 exch div /InvScaleFactor exch def
|
---|
| 51 | scale
|
---|
| 52 | } bind def
|
---|
| 53 |
|
---|
| 54 | % styles
|
---|
| 55 | /solid { [] 0 setdash } bind def
|
---|
| 56 | /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def
|
---|
| 57 | /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def
|
---|
| 58 | /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def
|
---|
| 59 | /bold { 2 setlinewidth } bind def
|
---|
| 60 | /filled { } bind def
|
---|
| 61 | /unfilled { } bind def
|
---|
| 62 | /rounded { } bind def
|
---|
| 63 | /diagonals { } bind def
|
---|
| 64 |
|
---|
| 65 | % hooks for setting color
|
---|
| 66 | /nodecolor { sethsbcolor } bind def
|
---|
| 67 | /edgecolor { sethsbcolor } bind def
|
---|
| 68 | /graphcolor { sethsbcolor } bind def
|
---|
| 69 | /nopcolor {pop pop pop} bind def
|
---|
| 70 |
|
---|
| 71 | /beginpage { % i j npages
|
---|
| 72 | /npages exch def
|
---|
| 73 | /j exch def
|
---|
| 74 | /i exch def
|
---|
| 75 | /str 10 string def
|
---|
| 76 | npages 1 gt {
|
---|
| 77 | gsave
|
---|
| 78 | coordfont setfont
|
---|
| 79 | 0 0 moveto
|
---|
| 80 | (\() show i str cvs show (,) show j str cvs show (\)) show
|
---|
| 81 | grestore
|
---|
| 82 | } if
|
---|
| 83 | } bind def
|
---|
| 84 |
|
---|
| 85 | /set_font {
|
---|
| 86 | findfont exch
|
---|
| 87 | scalefont setfont
|
---|
| 88 | } def
|
---|
| 89 |
|
---|
| 90 | % draw text fitted to its expected width
|
---|
| 91 | /alignedtext { % width text
|
---|
| 92 | /text exch def
|
---|
| 93 | /width exch def
|
---|
| 94 | gsave
|
---|
| 95 | width 0 gt {
|
---|
| 96 | [] 0 setdash
|
---|
| 97 | text stringwidth pop width exch sub text length div 0 text ashow
|
---|
| 98 | } if
|
---|
| 99 | grestore
|
---|
| 100 | } def
|
---|
| 101 |
|
---|
| 102 | /boxprim { % xcorner ycorner xsize ysize
|
---|
| 103 | 4 2 roll
|
---|
| 104 | moveto
|
---|
| 105 | 2 copy
|
---|
| 106 | exch 0 rlineto
|
---|
| 107 | 0 exch rlineto
|
---|
| 108 | pop neg 0 rlineto
|
---|
| 109 | closepath
|
---|
| 110 | } bind def
|
---|
| 111 |
|
---|
| 112 | /ellipse_path {
|
---|
| 113 | /ry exch def
|
---|
| 114 | /rx exch def
|
---|
| 115 | /y exch def
|
---|
| 116 | /x exch def
|
---|
| 117 | matrix currentmatrix
|
---|
| 118 | newpath
|
---|
| 119 | x y translate
|
---|
| 120 | rx ry scale
|
---|
| 121 | 0 0 1 0 360 arc
|
---|
| 122 | setmatrix
|
---|
| 123 | } bind def
|
---|
| 124 |
|
---|
| 125 | /endpage { showpage } bind def
|
---|
| 126 | /showpage { } def
|
---|
| 127 |
|
---|
| 128 | /layercolorseq
|
---|
| 129 | [ % layer color sequence - darkest to lightest
|
---|
| 130 | [0 0 0]
|
---|
| 131 | [.2 .8 .8]
|
---|
| 132 | [.4 .8 .8]
|
---|
| 133 | [.6 .8 .8]
|
---|
| 134 | [.8 .8 .8]
|
---|
| 135 | ]
|
---|
| 136 | def
|
---|
| 137 |
|
---|
| 138 | /layerlen layercolorseq length def
|
---|
| 139 |
|
---|
| 140 | /setlayer {/maxlayer exch def /curlayer exch def
|
---|
| 141 | layercolorseq curlayer 1 sub layerlen mod get
|
---|
| 142 | aload pop sethsbcolor
|
---|
| 143 | /nodecolor {nopcolor} def
|
---|
| 144 | /edgecolor {nopcolor} def
|
---|
| 145 | /graphcolor {nopcolor} def
|
---|
| 146 | } bind def
|
---|
| 147 |
|
---|
| 148 | /onlayer { curlayer ne {invis} if } def
|
---|
| 149 |
|
---|
| 150 | /onlayers {
|
---|
| 151 | /myupper exch def
|
---|
| 152 | /mylower exch def
|
---|
| 153 | curlayer mylower lt
|
---|
| 154 | curlayer myupper gt
|
---|
| 155 | or
|
---|
| 156 | {invis} if
|
---|
| 157 | } def
|
---|
| 158 |
|
---|
| 159 | /curlayer 0 def
|
---|
| 160 |
|
---|
| 161 | %%EndResource
|
---|
| 162 | %%EndProlog
|
---|
| 163 | %%BeginSetup
|
---|
| 164 | 14 default-font-family set_font
|
---|
| 165 | 1 setmiterlimit
|
---|
| 166 | % /arrowlength 10 def
|
---|
| 167 | % /arrowwidth 5 def
|
---|
| 168 |
|
---|
| 169 | % make sure pdfmark is harmless for PS-interpreters other than Distiller
|
---|
| 170 | /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
|
---|
| 171 | % make '<<' and '>>' safe on PS Level 1 devices
|
---|
| 172 | /languagelevel where {pop languagelevel}{1} ifelse
|
---|
| 173 | 2 lt {
|
---|
| 174 | userdict (<<) cvn ([) cvn load put
|
---|
| 175 | userdict (>>) cvn ([) cvn load put
|
---|
| 176 | } if
|
---|
| 177 |
|
---|
| 178 | %%EndSetup
|
---|
| 179 | setupLatin1
|
---|
| 180 | %%Page: 1 1
|
---|
| 181 | %%PageBoundingBox: 36 36 498 280
|
---|
| 182 | %%PageOrientation: Portrait
|
---|
| 183 | 0 0 1 beginpage
|
---|
| 184 | gsave
|
---|
| 185 | 36 36 462 244 boxprim clip newpath
|
---|
| 186 | 1 1 set_scale 0 rotate 40 41 translate
|
---|
| 187 | % Node1
|
---|
| 188 | gsave
|
---|
| 189 | 0 0 0.74902 nodecolor
|
---|
| 190 | newpath 222.5 68.5 moveto
|
---|
| 191 | 222.5 87.5 lineto
|
---|
| 192 | 299.5 87.5 lineto
|
---|
| 193 | 299.5 68.5 lineto
|
---|
| 194 | closepath fill
|
---|
| 195 | 1 setlinewidth
|
---|
| 196 | filled
|
---|
| 197 | 0 0 0 nodecolor
|
---|
| 198 | newpath 222.5 68.5 moveto
|
---|
| 199 | 222.5 87.5 lineto
|
---|
| 200 | 299.5 87.5 lineto
|
---|
| 201 | 299.5 68.5 lineto
|
---|
| 202 | closepath stroke
|
---|
| 203 | 0 0 0 nodecolor
|
---|
| 204 | 10 /Helvetica set_font
|
---|
| 205 | 230.5 75.5 moveto 61 (QuaZipPrivate) alignedtext
|
---|
| 206 | grestore
|
---|
| 207 | % Node2
|
---|
| 208 | gsave
|
---|
| 209 | [ /Rect [ 237.5 0 284 20 ]
|
---|
| 210 | /Border [ 0 0 0 ]
|
---|
| 211 | /Action << /Subtype /URI /URI ($classQuaZip.html) >>
|
---|
| 212 | /Subtype /Link
|
---|
| 213 | /ANN pdfmark
|
---|
| 214 | 0 0 1 nodecolor
|
---|
| 215 | newpath 237.5 .5 moveto
|
---|
| 216 | 237.5 19.5 lineto
|
---|
| 217 | 284.5 19.5 lineto
|
---|
| 218 | 284.5 .5 lineto
|
---|
| 219 | closepath fill
|
---|
| 220 | 1 setlinewidth
|
---|
| 221 | filled
|
---|
| 222 | 0 0 0 nodecolor
|
---|
| 223 | newpath 237.5 .5 moveto
|
---|
| 224 | 237.5 19.5 lineto
|
---|
| 225 | 284.5 19.5 lineto
|
---|
| 226 | 284.5 .5 lineto
|
---|
| 227 | closepath stroke
|
---|
| 228 | 0 0 0 nodecolor
|
---|
| 229 | 10 /Helvetica set_font
|
---|
| 230 | 245.5 7.5 moveto 31 (QuaZip) alignedtext
|
---|
| 231 | grestore
|
---|
| 232 | % Node1->Node2
|
---|
| 233 | gsave
|
---|
| 234 | 1 setlinewidth
|
---|
| 235 | dashed
|
---|
| 236 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 237 | newpath 252.93 58.6 moveto
|
---|
| 238 | 250.99 52.14 249.78 44.79 251 38 curveto
|
---|
| 239 | 252.13 31.7 254.63 24.95 256.85 19.78 curveto
|
---|
| 240 | stroke
|
---|
| 241 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 242 | newpath 249.82 60.27 moveto
|
---|
| 243 | 256.6 68.41 lineto
|
---|
| 244 | 256.37 57.81 lineto
|
---|
| 245 | closepath fill
|
---|
| 246 | 1 setlinewidth
|
---|
| 247 | solid
|
---|
| 248 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 249 | newpath 249.82 60.27 moveto
|
---|
| 250 | 256.6 68.41 lineto
|
---|
| 251 | 256.37 57.81 lineto
|
---|
| 252 | closepath stroke
|
---|
| 253 | 0 0 0 edgecolor
|
---|
| 254 | 10 /Helvetica set_font
|
---|
| 255 | 251 41.5 moveto 6 (p) alignedtext
|
---|
| 256 | grestore
|
---|
| 257 | % Node2->Node1
|
---|
| 258 | gsave
|
---|
| 259 | 1 setlinewidth
|
---|
| 260 | dashed
|
---|
| 261 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 262 | newpath 261 29.85 moveto
|
---|
| 263 | 261 42.53 261 58.64 261 68.37 curveto
|
---|
| 264 | stroke
|
---|
| 265 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 266 | newpath 264.5 29.84 moveto
|
---|
| 267 | 261 19.84 lineto
|
---|
| 268 | 257.5 29.84 lineto
|
---|
| 269 | closepath fill
|
---|
| 270 | 1 setlinewidth
|
---|
| 271 | solid
|
---|
| 272 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 273 | newpath 264.5 29.84 moveto
|
---|
| 274 | 261 19.84 lineto
|
---|
| 275 | 257.5 29.84 lineto
|
---|
| 276 | closepath stroke
|
---|
| 277 | 0 0 0 edgecolor
|
---|
| 278 | 10 /Helvetica set_font
|
---|
| 279 | 261 41.5 moveto 6 (q) alignedtext
|
---|
| 280 | grestore
|
---|
| 281 | % Node3
|
---|
| 282 | gsave
|
---|
| 283 | [ /Rect [ 0 158 168 178 ]
|
---|
| 284 | /Border [ 0 0 0 ]
|
---|
| 285 | /Action << /Subtype /URI /URI (qtcore.tags$qhash.html) >>
|
---|
| 286 | /Subtype /Link
|
---|
| 287 | /ANN pdfmark
|
---|
| 288 | 0 0 1 nodecolor
|
---|
| 289 | newpath 0 158.5 moveto
|
---|
| 290 | 0 177.5 lineto
|
---|
| 291 | 168 177.5 lineto
|
---|
| 292 | 168 158.5 lineto
|
---|
| 293 | closepath fill
|
---|
| 294 | 1 setlinewidth
|
---|
| 295 | filled
|
---|
| 296 | 0 0 0 nodecolor
|
---|
| 297 | newpath 0 158.5 moveto
|
---|
| 298 | 0 177.5 lineto
|
---|
| 299 | 168 177.5 lineto
|
---|
| 300 | 168 158.5 lineto
|
---|
| 301 | closepath stroke
|
---|
| 302 | 0 0 0 nodecolor
|
---|
| 303 | 10 /Helvetica set_font
|
---|
| 304 | 8 165.5 moveto 152 (QHash< QString, unz64_file_pos >) alignedtext
|
---|
| 305 | grestore
|
---|
| 306 | % Node3->Node1
|
---|
| 307 | gsave
|
---|
| 308 | 1 setlinewidth
|
---|
| 309 | dashed
|
---|
| 310 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 311 | newpath 87.05 148.46 moveto
|
---|
| 312 | 90.32 134.63 96.92 116.41 110 106 curveto
|
---|
| 313 | 126.98 92.48 183.55 85.23 222.42 81.75 curveto
|
---|
| 314 | stroke
|
---|
| 315 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 316 | newpath 83.59 147.88 moveto
|
---|
| 317 | 85.08 158.37 lineto
|
---|
| 318 | 90.46 149.24 lineto
|
---|
| 319 | closepath fill
|
---|
| 320 | 1 setlinewidth
|
---|
| 321 | solid
|
---|
| 322 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 323 | newpath 83.59 147.88 moveto
|
---|
| 324 | 85.08 158.37 lineto
|
---|
| 325 | 90.46 149.24 lineto
|
---|
| 326 | closepath stroke
|
---|
| 327 | 0 0 0 edgecolor
|
---|
| 328 | 10 /Helvetica set_font
|
---|
| 329 | 113 126 moveto 100 (directoryCaseSensitive) alignedtext
|
---|
| 330 | 0 0 0 edgecolor
|
---|
| 331 | 10 /Helvetica set_font
|
---|
| 332 | 110 115 moveto 106 (directoryCaseInsensitive) alignedtext
|
---|
| 333 | grestore
|
---|
| 334 | % Node4
|
---|
| 335 | gsave
|
---|
| 336 | [ /Rect [ 186 158 248 178 ]
|
---|
| 337 | /Border [ 0 0 0 ]
|
---|
| 338 | /Action << /Subtype /URI /URI (qtcore.tags$qiodevice.html) >>
|
---|
| 339 | /Subtype /Link
|
---|
| 340 | /ANN pdfmark
|
---|
| 341 | 0 0 1 nodecolor
|
---|
| 342 | newpath 186 158.5 moveto
|
---|
| 343 | 186 177.5 lineto
|
---|
| 344 | 248 177.5 lineto
|
---|
| 345 | 248 158.5 lineto
|
---|
| 346 | closepath fill
|
---|
| 347 | 1 setlinewidth
|
---|
| 348 | filled
|
---|
| 349 | 0 0 0 nodecolor
|
---|
| 350 | newpath 186 158.5 moveto
|
---|
| 351 | 186 177.5 lineto
|
---|
| 352 | 248 177.5 lineto
|
---|
| 353 | 248 158.5 lineto
|
---|
| 354 | closepath stroke
|
---|
| 355 | 0 0 0 nodecolor
|
---|
| 356 | 10 /Helvetica set_font
|
---|
| 357 | 194 165.5 moveto 46 (QIODevice) alignedtext
|
---|
| 358 | grestore
|
---|
| 359 | % Node4->Node1
|
---|
| 360 | gsave
|
---|
| 361 | 1 setlinewidth
|
---|
| 362 | dashed
|
---|
| 363 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 364 | newpath 217.96 147.8 moveto
|
---|
| 365 | 219.31 135.18 222.51 118.72 230 106 curveto
|
---|
| 366 | 234.35 98.62 241.43 92.23 247.73 87.52 curveto
|
---|
| 367 | stroke
|
---|
| 368 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 369 | newpath 214.44 147.85 moveto
|
---|
| 370 | 217.16 158.09 lineto
|
---|
| 371 | 221.42 148.39 lineto
|
---|
| 372 | closepath fill
|
---|
| 373 | 1 setlinewidth
|
---|
| 374 | solid
|
---|
| 375 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 376 | newpath 214.44 147.85 moveto
|
---|
| 377 | 217.16 158.09 lineto
|
---|
| 378 | 221.42 148.39 lineto
|
---|
| 379 | closepath stroke
|
---|
| 380 | 0 0 0 edgecolor
|
---|
| 381 | 10 /Helvetica set_font
|
---|
| 382 | 230 120.5 moveto 37 (ioDevice) alignedtext
|
---|
| 383 | grestore
|
---|
| 384 | % Node5
|
---|
| 385 | gsave
|
---|
| 386 | [ /Rect [ 190.5 216 243 236 ]
|
---|
| 387 | /Border [ 0 0 0 ]
|
---|
| 388 | /Action << /Subtype /URI /URI (qtcore.tags$qobject.html) >>
|
---|
| 389 | /Subtype /Link
|
---|
| 390 | /ANN pdfmark
|
---|
| 391 | 0 0 1 nodecolor
|
---|
| 392 | newpath 190.5 216.5 moveto
|
---|
| 393 | 190.5 235.5 lineto
|
---|
| 394 | 243.5 235.5 lineto
|
---|
| 395 | 243.5 216.5 lineto
|
---|
| 396 | closepath fill
|
---|
| 397 | 1 setlinewidth
|
---|
| 398 | filled
|
---|
| 399 | 0 0 0 nodecolor
|
---|
| 400 | newpath 190.5 216.5 moveto
|
---|
| 401 | 190.5 235.5 lineto
|
---|
| 402 | 243.5 235.5 lineto
|
---|
| 403 | 243.5 216.5 lineto
|
---|
| 404 | closepath stroke
|
---|
| 405 | 0 0 0 nodecolor
|
---|
| 406 | 10 /Helvetica set_font
|
---|
| 407 | 198.5 223.5 moveto 37 (QObject) alignedtext
|
---|
| 408 | grestore
|
---|
| 409 | % Node5->Node4
|
---|
| 410 | gsave
|
---|
| 411 | 1 setlinewidth
|
---|
| 412 | solid
|
---|
| 413 | 0.66667 0.77647 0.43922 edgecolor
|
---|
| 414 | newpath 217 205.95 moveto
|
---|
| 415 | 217 196.29 217 185.03 217 177.51 curveto
|
---|
| 416 | stroke
|
---|
| 417 | 0.66667 0.77647 0.43922 edgecolor
|
---|
| 418 | newpath 213.5 206.25 moveto
|
---|
| 419 | 217 216.25 lineto
|
---|
| 420 | 220.5 206.25 lineto
|
---|
| 421 | closepath fill
|
---|
| 422 | 1 setlinewidth
|
---|
| 423 | solid
|
---|
| 424 | 0.66667 0.77647 0.43922 edgecolor
|
---|
| 425 | newpath 213.5 206.25 moveto
|
---|
| 426 | 217 216.25 lineto
|
---|
| 427 | 220.5 206.25 lineto
|
---|
| 428 | closepath stroke
|
---|
| 429 | grestore
|
---|
| 430 | % Node6
|
---|
| 431 | gsave
|
---|
| 432 | [ /Rect [ 266 158 316 178 ]
|
---|
| 433 | /Border [ 0 0 0 ]
|
---|
| 434 | /Action << /Subtype /URI /URI (qtcore.tags$qstring.html) >>
|
---|
| 435 | /Subtype /Link
|
---|
| 436 | /ANN pdfmark
|
---|
| 437 | 0 0 1 nodecolor
|
---|
| 438 | newpath 266 158.5 moveto
|
---|
| 439 | 266 177.5 lineto
|
---|
| 440 | 316 177.5 lineto
|
---|
| 441 | 316 158.5 lineto
|
---|
| 442 | closepath fill
|
---|
| 443 | 1 setlinewidth
|
---|
| 444 | filled
|
---|
| 445 | 0 0 0 nodecolor
|
---|
| 446 | newpath 266 158.5 moveto
|
---|
| 447 | 266 177.5 lineto
|
---|
| 448 | 316 177.5 lineto
|
---|
| 449 | 316 158.5 lineto
|
---|
| 450 | closepath stroke
|
---|
| 451 | 0 0 0 nodecolor
|
---|
| 452 | 10 /Helvetica set_font
|
---|
| 453 | 274 165.5 moveto 34 (QString) alignedtext
|
---|
| 454 | grestore
|
---|
| 455 | % Node6->Node1
|
---|
| 456 | gsave
|
---|
| 457 | 1 setlinewidth
|
---|
| 458 | dashed
|
---|
| 459 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 460 | newpath 284.78 148.77 moveto
|
---|
| 461 | 278.42 130.09 268.8 101.87 263.97 87.72 curveto
|
---|
| 462 | stroke
|
---|
| 463 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 464 | newpath 281.47 149.9 moveto
|
---|
| 465 | 288.01 158.24 lineto
|
---|
| 466 | 288.1 147.65 lineto
|
---|
| 467 | closepath fill
|
---|
| 468 | 1 setlinewidth
|
---|
| 469 | solid
|
---|
| 470 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 471 | newpath 281.47 149.9 moveto
|
---|
| 472 | 288.01 158.24 lineto
|
---|
| 473 | 288.1 147.65 lineto
|
---|
| 474 | closepath stroke
|
---|
| 475 | 0 0 0 edgecolor
|
---|
| 476 | 10 /Helvetica set_font
|
---|
| 477 | 282 126 moveto 41 (comment) alignedtext
|
---|
| 478 | 0 0 0 edgecolor
|
---|
| 479 | 10 /Helvetica set_font
|
---|
| 480 | 283 115 moveto 39 (zipName) alignedtext
|
---|
| 481 | grestore
|
---|
| 482 | % Node7
|
---|
| 483 | gsave
|
---|
| 484 | [ /Rect [ 334.5 158 405 178 ]
|
---|
| 485 | /Border [ 0 0 0 ]
|
---|
| 486 | /Action << /Subtype /URI /URI (qtcore.tags$qtextcodec.html) >>
|
---|
| 487 | /Subtype /Link
|
---|
| 488 | /ANN pdfmark
|
---|
| 489 | 0 0 1 nodecolor
|
---|
| 490 | newpath 334.5 158.5 moveto
|
---|
| 491 | 334.5 177.5 lineto
|
---|
| 492 | 405.5 177.5 lineto
|
---|
| 493 | 405.5 158.5 lineto
|
---|
| 494 | closepath fill
|
---|
| 495 | 1 setlinewidth
|
---|
| 496 | filled
|
---|
| 497 | 0 0 0 nodecolor
|
---|
| 498 | newpath 334.5 158.5 moveto
|
---|
| 499 | 334.5 177.5 lineto
|
---|
| 500 | 405.5 177.5 lineto
|
---|
| 501 | 405.5 158.5 lineto
|
---|
| 502 | closepath stroke
|
---|
| 503 | 0 0 0 nodecolor
|
---|
| 504 | 10 /Helvetica set_font
|
---|
| 505 | 342.5 165.5 moveto 55 (QTextCodec) alignedtext
|
---|
| 506 | grestore
|
---|
| 507 | % Node7->Node1
|
---|
| 508 | gsave
|
---|
| 509 | 1 setlinewidth
|
---|
| 510 | dashed
|
---|
| 511 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 512 | newpath 361.05 149.15 moveto
|
---|
| 513 | 353.54 135.73 341.7 117.71 327 106 curveto
|
---|
| 514 | 316.73 97.82 303.65 91.79 291.85 87.53 curveto
|
---|
| 515 | stroke
|
---|
| 516 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 517 | newpath 358.15 151.14 moveto
|
---|
| 518 | 365.92 158.34 lineto
|
---|
| 519 | 364.33 147.86 lineto
|
---|
| 520 | closepath fill
|
---|
| 521 | 1 setlinewidth
|
---|
| 522 | solid
|
---|
| 523 | 0.77647 0.75294 0.80392 edgecolor
|
---|
| 524 | newpath 358.15 151.14 moveto
|
---|
| 525 | 365.92 158.34 lineto
|
---|
| 526 | 364.33 147.86 lineto
|
---|
| 527 | closepath stroke
|
---|
| 528 | 0 0 0 edgecolor
|
---|
| 529 | 10 /Helvetica set_font
|
---|
| 530 | 370.5 131.5 moveto 69 (commentCodec) alignedtext
|
---|
| 531 | 0 0 0 edgecolor
|
---|
| 532 | 10 /Helvetica set_font
|
---|
| 533 | 356 120.5 moveto 98 (defaultFileNameCodec) alignedtext
|
---|
| 534 | 0 0 0 edgecolor
|
---|
| 535 | 10 /Helvetica set_font
|
---|
| 536 | 372 109.5 moveto 66 (fileNameCodec) alignedtext
|
---|
| 537 | grestore
|
---|
| 538 | endpage
|
---|
| 539 | showpage
|
---|
| 540 | grestore
|
---|
| 541 | %%PageTrailer
|
---|
| 542 | %%EndPage: 1
|
---|
| 543 | %%Trailer
|
---|
| 544 | %%Pages: 1
|
---|
| 545 | %%BoundingBox: 36 36 498 280
|
---|
| 546 | end
|
---|
| 547 | restore
|
---|
| 548 | %%EOF
|
---|