-
Notifications
You must be signed in to change notification settings - Fork 1
/
sparql11-grammar.xhtml
3259 lines (3259 loc) · 796 KB
/
sparql11-grammar.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" http-equiv="Content-Type" content="application/xhtml+xml"></xhtml:meta><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="generator" content="Railroad Diagram Generator 1.24.557"></xhtml:meta><style type="text/css">
::-moz-selection
{
color: #FFFCF0;
background: #4D3D00;
}
::selection
{
color: #FFFCF0;
background: #4D3D00;
}
.ebnf a
{
text-decoration: none;
}
.ebnf a:hover
{
color: #1A1400;
text-decoration: underline;
}
.signature
{
color: #806600;
font-size: 11px;
text-align: right;
}
body
{
font: normal 12px Verdana, sans-serif;
color: #4D3D00;
background: #FFFCF0;
}
a:link, a:visited
{
color: #4D3D00;
}
a:link.signature, a:visited.signature
{
color: #806600;
}
a.button, #tabs li a
{
padding: 0.25em 0.5em;
border: 1px solid #806600;
background: #F1E8C6;
color: #806600;
text-decoration: none;
font-weight: bold;
}
a:hover, #tabs li a:hover
{
color: #1A1400;
background: #FFF5CC;
border-color: #1A1400;
}
#tabs
{
padding: 3px 10px;
margin-left: 0;
margin-top: 58px;
border-bottom: 1px solid #4D3D00;
}
#tabs li
{
list-style: none;
margin-left: 5px;
display: inline;
}
#tabs li a
{
border-bottom: 1px solid #4D3D00;
}
#tabs li a.active
{
color: #4D3D00;
background: #FFFCF0;
border-color: #4D3D00;
border-bottom: 1px solid #FFFCF0;
outline: none;
}
#divs div
{
display: none;
overflow:auto;
}
#divs div.active
{
display: block;
}
#text
{
border-color: #806600;
background: #FFFEFA;
color: #1A1400;
}
td.time
{
vertical-align: top;
}
span.time
{
font-size: 9px;
visibility: hidden;
}
td.time:hover span.time
{
visibility: visible;
}
div.download
{
display:none;
background:#FFFCF0;
position:absolute;
right:34px;
top:94px;
padding:10px;
border:1px dotted #4D3D00;
}
#divs div.ebnf, div.ebnf
{
display: block;
padding-left: 16px;
padding-top: 2px;
padding-bottom: 2px;
background:#FFF5CC;"
}
</style><svg xmlns="http://www.w3.org/2000/svg"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs></svg></head><body><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="QueryUnit">QueryUnit:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="116" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#Query" xlink:title="Query"><rect x="31" y="3" width="58" height="32"></rect><rect x="29" y="1" width="58" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">Query</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><line x1="100" y1="17" x2="97" y2="17" class="line"></line><polygon points="107 17 115 13 115 21" class="filled"></polygon><polygon points="107 17 99 13 99 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Query">Query:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="436" height="168"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#Prologue" xlink:title="Prologue"><rect x="31" y="3" width="76" height="32"></rect><rect x="29" y="1" width="76" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">Prologue</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="105" y1="17" x2="115" y2="17" class="line"></line><a xlink:href="#SelectQuery" xlink:title="SelectQuery"><rect x="147" y="3" width="96" height="32"></rect><rect x="145" y="1" width="96" height="32" class="nonterminal"></rect><text class="nonterminal" x="155" y="21">SelectQuery</text></a><line x1="135" y1="17" x2="145" y2="17" class="line"></line><line x1="241" y1="17" x2="251" y2="17" class="line"></line><line x1="251" y1="17" x2="273" y2="17" class="line"></line><line x1="115" y1="17" x2="135" y2="17" class="line"></line><line x1="273" y1="17" x2="293" y2="17" class="line"></line><path d="M115 17 Q125 17 125 27" class="line"></path><path d="M283 27 Q283 17 293 17" class="line"></path><line x1="125" y1="27" x2="125" y2="51" class="line"></line><line x1="283" y1="51" x2="283" y2="27" class="line"></line><path d="M125 51 Q125 61 135 61" class="line"></path><path d="M273 61 Q283 61 283 51" class="line"></path><a xlink:href="#ConstructQuery" xlink:title="ConstructQuery"><rect x="147" y="47" width="118" height="32"></rect><rect x="145" y="45" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="155" y="65">ConstructQuery</text></a><line x1="135" y1="61" x2="145" y2="61" class="line"></line><line x1="263" y1="61" x2="273" y2="61" class="line"></line><line x1="125" y1="51" x2="125" y2="71" class="line"></line><line x1="283" y1="71" x2="283" y2="51" class="line"></line><line x1="125" y1="71" x2="125" y2="95" class="line"></line><line x1="283" y1="95" x2="283" y2="71" class="line"></line><path d="M125 95 Q125 105 135 105" class="line"></path><path d="M273 105 Q283 105 283 95" class="line"></path><a xlink:href="#DescribeQuery" xlink:title="DescribeQuery"><rect x="147" y="91" width="112" height="32"></rect><rect x="145" y="89" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="155" y="109">DescribeQuery</text></a><line x1="135" y1="105" x2="145" y2="105" class="line"></line><line x1="257" y1="105" x2="267" y2="105" class="line"></line><line x1="267" y1="105" x2="273" y2="105" class="line"></line><line x1="125" y1="95" x2="125" y2="115" class="line"></line><line x1="283" y1="115" x2="283" y2="95" class="line"></line><line x1="125" y1="115" x2="125" y2="139" class="line"></line><line x1="283" y1="139" x2="283" y2="115" class="line"></line><path d="M125 139 Q125 149 135 149" class="line"></path><path d="M273 149 Q283 149 283 139" class="line"></path><a xlink:href="#AskQuery" xlink:title="AskQuery"><rect x="147" y="135" width="80" height="32"></rect><rect x="145" y="133" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="155" y="153">AskQuery</text></a><line x1="135" y1="149" x2="145" y2="149" class="line"></line><line x1="225" y1="149" x2="235" y2="149" class="line"></line><line x1="235" y1="149" x2="273" y2="149" class="line"></line><a xlink:href="#ValuesClause" xlink:title="ValuesClause"><rect x="305" y="3" width="104" height="32"></rect><rect x="303" y="1" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="313" y="21">ValuesClause</text></a><line x1="293" y1="17" x2="303" y2="17" class="line"></line><line x1="407" y1="17" x2="417" y2="17" class="line"></line><line x1="420" y1="17" x2="417" y2="17" class="line"></line><polygon points="427 17 435 13 435 21" class="filled"></polygon><polygon points="427 17 419 13 419 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#QueryUnit" title="QueryUnit">QueryUnit</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="UpdateUnit">UpdateUnit:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="124" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#Update" xlink:title="Update"><rect x="31" y="3" width="66" height="32"></rect><rect x="29" y="1" width="66" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">Update</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="95" y1="17" x2="105" y2="17" class="line"></line><line x1="108" y1="17" x2="105" y2="17" class="line"></line><polygon points="115 17 123 13 123 21" class="filled"></polygon><polygon points="115 17 107 13 107 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Prologue">Prologue:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="258" height="112"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><a xlink:href="#BaseDecl" xlink:title="BaseDecl"><rect x="91" y="19" width="76" height="32"></rect><rect x="89" y="17" width="76" height="32" class="nonterminal"></rect><text class="nonterminal" x="99" y="37">BaseDecl</text></a><line x1="79" y1="33" x2="89" y2="33" class="line"></line><line x1="165" y1="33" x2="175" y2="33" class="line"></line><line x1="175" y1="33" x2="179" y2="33" class="line"></line><line x1="59" y1="33" x2="79" y2="33" class="line"></line><line x1="179" y1="33" x2="199" y2="33" class="line"></line><path d="M59 33 Q69 33 69 43" class="line"></path><path d="M189 43 Q189 33 199 33" class="line"></path><line x1="69" y1="43" x2="69" y2="67" class="line"></line><line x1="189" y1="67" x2="189" y2="43" class="line"></line><path d="M69 67 Q69 77 79 77" class="line"></path><path d="M179 77 Q189 77 189 67" class="line"></path><a xlink:href="#PrefixDecl" xlink:title="PrefixDecl"><rect x="91" y="63" width="80" height="32"></rect><rect x="89" y="61" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="99" y="81">PrefixDecl</text></a><line x1="79" y1="77" x2="89" y2="77" class="line"></line><line x1="169" y1="77" x2="179" y2="77" class="line"></line><path d="M39 33 L59 33 M58 33 Q49 33 49 23 L49 11 Q49 1 59 1" class="line"></path><path d="M199 33 L219 33 M199 33 Q209 33 209 23 L209 11 Q209 1 199 1" class="line"></path><line x1="59" y1="1" x2="69" y2="1" class="line"></line><line x1="69" y1="1" x2="199" y2="1" class="line"></line><line x1="19" y1="33" x2="39" y2="33" class="line"></line><line x1="219" y1="33" x2="239" y2="33" class="line"></line><path d="M19 33 Q29 33 29 43" class="line"></path><path d="M229 43 Q229 33 239 33" class="line"></path><line x1="29" y1="43" x2="29" y2="101" class="line"></line><line x1="229" y1="101" x2="229" y2="43" class="line"></line><path d="M29 101 Q29 111 39 111" class="line"></path><path d="M219 111 Q229 111 229 101" class="line"></path><line x1="39" y1="111" x2="49" y2="111" class="line"></line><line x1="49" y1="111" x2="219" y2="111" class="line"></line><line x1="242" y1="33" x2="239" y2="33" class="line"></line><polygon points="249 33 257 29 257 37" class="filled"></polygon><polygon points="249 33 241 29 241 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Query" title="Query">Query</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Update" title="Update">Update</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="BaseDecl">BaseDecl:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="192" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="54" height="32" rx="10"></rect><rect x="29" y="1" width="54" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">BASE</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="83" y1="17" x2="93" y2="17" class="line"></line><a xlink:href="#IRIREF" xlink:title="IRIREF"><rect x="105" y="3" width="60" height="32"></rect><rect x="103" y="1" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="113" y="21">IRIREF</text></a><line x1="93" y1="17" x2="103" y2="17" class="line"></line><line x1="163" y1="17" x2="173" y2="17" class="line"></line><line x1="176" y1="17" x2="173" y2="17" class="line"></line><polygon points="183 17 191 13 191 21" class="filled"></polygon><polygon points="183 17 175 13 175 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Prologue" title="Prologue">Prologue</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="PrefixDecl">PrefixDecl:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="68" height="32" rx="10"></rect><rect x="29" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">PREFIX</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="97" y1="17" x2="107" y2="17" class="line"></line><a xlink:href="#PNAME_NS" xlink:title="PNAME_NS"><rect x="119" y="3" width="88" height="32"></rect><rect x="117" y="1" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="127" y="21">PNAME_NS</text></a><line x1="107" y1="17" x2="117" y2="17" class="line"></line><line x1="205" y1="17" x2="215" y2="17" class="line"></line><a xlink:href="#IRIREF" xlink:title="IRIREF"><rect x="227" y="3" width="60" height="32"></rect><rect x="225" y="1" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="235" y="21">IRIREF</text></a><line x1="215" y1="17" x2="225" y2="17" class="line"></line><line x1="285" y1="17" x2="295" y2="17" class="line"></line><line x1="298" y1="17" x2="295" y2="17" class="line"></line><polygon points="305 17 313 13 313 21" class="filled"></polygon><polygon points="305 17 297 13 297 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Prologue" title="Prologue">Prologue</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="SelectQuery">SelectQuery:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="634" height="68"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><a xlink:href="#SelectClause" xlink:title="SelectClause"><rect x="31" y="19" width="100" height="32"></rect><rect x="29" y="17" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="37">SelectClause</text></a><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="129" y1="33" x2="139" y2="33" class="line"></line><a xlink:href="#DatasetClause" xlink:title="DatasetClause"><rect x="191" y="19" width="112" height="32"></rect><rect x="189" y="17" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="199" y="37">DatasetClause</text></a><line x1="179" y1="33" x2="189" y2="33" class="line"></line><line x1="301" y1="33" x2="311" y2="33" class="line"></line><path d="M159 33 L179 33 M178 33 Q169 33 169 23 L169 11 Q169 1 179 1" class="line"></path><path d="M311 33 L331 33 M311 33 Q321 33 321 23 L321 11 Q321 1 311 1" class="line"></path><line x1="179" y1="1" x2="189" y2="1" class="line"></line><line x1="189" y1="1" x2="311" y2="1" class="line"></line><line x1="139" y1="33" x2="159" y2="33" class="line"></line><line x1="331" y1="33" x2="351" y2="33" class="line"></line><path d="M139 33 Q149 33 149 43" class="line"></path><path d="M341 43 Q341 33 351 33" class="line"></path><line x1="149" y1="43" x2="149" y2="57" class="line"></line><line x1="341" y1="57" x2="341" y2="43" class="line"></line><path d="M149 57 Q149 67 159 67" class="line"></path><path d="M331 67 Q341 67 341 57" class="line"></path><line x1="159" y1="67" x2="169" y2="67" class="line"></line><line x1="169" y1="67" x2="331" y2="67" class="line"></line><a xlink:href="#WhereClause" xlink:title="WhereClause"><rect x="363" y="19" width="104" height="32"></rect><rect x="361" y="17" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="371" y="37">WhereClause</text></a><line x1="351" y1="33" x2="361" y2="33" class="line"></line><line x1="465" y1="33" x2="475" y2="33" class="line"></line><a xlink:href="#SolutionModifier" xlink:title="SolutionModifier"><rect x="487" y="19" width="120" height="32"></rect><rect x="485" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="495" y="37">SolutionModifier</text></a><line x1="475" y1="33" x2="485" y2="33" class="line"></line><line x1="605" y1="33" x2="615" y2="33" class="line"></line><line x1="618" y1="33" x2="615" y2="33" class="line"></line><polygon points="625 33 633 29 633 37" class="filled"></polygon><polygon points="625 33 617 29 617 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Query" title="Query">Query</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="SubSelect">SubSelect:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="546" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#SelectClause" xlink:title="SelectClause"><rect x="31" y="3" width="100" height="32"></rect><rect x="29" y="1" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">SelectClause</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="129" y1="17" x2="139" y2="17" class="line"></line><a xlink:href="#WhereClause" xlink:title="WhereClause"><rect x="151" y="3" width="104" height="32"></rect><rect x="149" y="1" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="159" y="21">WhereClause</text></a><line x1="139" y1="17" x2="149" y2="17" class="line"></line><line x1="253" y1="17" x2="263" y2="17" class="line"></line><a xlink:href="#SolutionModifier" xlink:title="SolutionModifier"><rect x="275" y="3" width="120" height="32"></rect><rect x="273" y="1" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="283" y="21">SolutionModifier</text></a><line x1="263" y1="17" x2="273" y2="17" class="line"></line><line x1="393" y1="17" x2="403" y2="17" class="line"></line><a xlink:href="#ValuesClause" xlink:title="ValuesClause"><rect x="415" y="3" width="104" height="32"></rect><rect x="413" y="1" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="423" y="21">ValuesClause</text></a><line x1="403" y1="17" x2="413" y2="17" class="line"></line><line x1="517" y1="17" x2="527" y2="17" class="line"></line><line x1="530" y1="17" x2="527" y2="17" class="line"></line><polygon points="537 17 545 13 545 21" class="filled"></polygon><polygon points="537 17 529 13 529 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#GroupGraphPattern" title="GroupGraphPattern">GroupGraphPattern</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="SelectClause">SelectClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="712" height="140"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="70" height="32" rx="10"></rect><rect x="29" y="17" width="70" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">SELECT</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="99" y1="33" x2="109" y2="33" class="line"></line><rect x="141" y="19" width="86" height="32" rx="10"></rect><rect x="139" y="17" width="86" height="32" class="terminal" rx="10"></rect><text class="terminal" x="149" y="37">DISTINCT</text><line x1="129" y1="33" x2="139" y2="33" class="line"></line><line x1="225" y1="33" x2="235" y2="33" class="line"></line><line x1="109" y1="33" x2="129" y2="33" class="line"></line><line x1="235" y1="33" x2="255" y2="33" class="line"></line><path d="M109 33 Q119 33 119 43" class="line"></path><path d="M245 43 Q245 33 255 33" class="line"></path><line x1="119" y1="43" x2="119" y2="67" class="line"></line><line x1="245" y1="67" x2="245" y2="43" class="line"></line><path d="M119 67 Q119 77 129 77" class="line"></path><path d="M235 77 Q245 77 245 67" class="line"></path><rect x="141" y="63" width="84" height="32" rx="10"></rect><rect x="139" y="61" width="84" height="32" class="terminal" rx="10"></rect><text class="terminal" x="149" y="81">REDUCED</text><line x1="129" y1="77" x2="139" y2="77" class="line"></line><line x1="223" y1="77" x2="233" y2="77" class="line"></line><line x1="233" y1="77" x2="235" y2="77" class="line"></line><line x1="119" y1="67" x2="119" y2="87" class="line"></line><line x1="245" y1="87" x2="245" y2="67" class="line"></line><line x1="119" y1="87" x2="119" y2="101" class="line"></line><line x1="245" y1="101" x2="245" y2="87" class="line"></line><path d="M119 101 Q119 111 129 111" class="line"></path><path d="M235 111 Q245 111 245 101" class="line"></path><line x1="129" y1="111" x2="139" y2="111" class="line"></line><line x1="139" y1="111" x2="235" y2="111" class="line"></line><a xlink:href="#Var" xlink:title="Var"><rect x="327" y="19" width="40" height="32"></rect><rect x="325" y="17" width="40" height="32" class="nonterminal"></rect><text class="nonterminal" x="335" y="37">Var</text></a><line x1="315" y1="33" x2="325" y2="33" class="line"></line><line x1="365" y1="33" x2="375" y2="33" class="line"></line><line x1="375" y1="33" x2="633" y2="33" class="line"></line><line x1="295" y1="33" x2="315" y2="33" class="line"></line><line x1="633" y1="33" x2="653" y2="33" class="line"></line><path d="M295 33 Q305 33 305 43" class="line"></path><path d="M643 43 Q643 33 653 33" class="line"></path><line x1="305" y1="43" x2="305" y2="67" class="line"></line><line x1="643" y1="67" x2="643" y2="43" class="line"></line><path d="M305 67 Q305 77 315 77" class="line"></path><path d="M633 77 Q643 77 643 67" class="line"></path><rect x="327" y="63" width="26" height="32" rx="10"></rect><rect x="325" y="61" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="335" y="81">(</text><line x1="315" y1="77" x2="325" y2="77" class="line"></line><line x1="351" y1="77" x2="361" y2="77" class="line"></line><a xlink:href="#Expression" xlink:title="Expression"><rect x="373" y="63" width="88" height="32"></rect><rect x="371" y="61" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="381" y="81">Expression</text></a><line x1="361" y1="77" x2="371" y2="77" class="line"></line><line x1="459" y1="77" x2="469" y2="77" class="line"></line><rect x="481" y="63" width="38" height="32" rx="10"></rect><rect x="479" y="61" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="489" y="81">AS</text><line x1="469" y1="77" x2="479" y2="77" class="line"></line><line x1="517" y1="77" x2="527" y2="77" class="line"></line><a xlink:href="#Var" xlink:title="Var"><rect x="539" y="63" width="40" height="32"></rect><rect x="537" y="61" width="40" height="32" class="nonterminal"></rect><text class="nonterminal" x="547" y="81">Var</text></a><line x1="527" y1="77" x2="537" y2="77" class="line"></line><line x1="577" y1="77" x2="587" y2="77" class="line"></line><rect x="599" y="63" width="26" height="32" rx="10"></rect><rect x="597" y="61" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="607" y="81">)</text><line x1="587" y1="77" x2="597" y2="77" class="line"></line><line x1="623" y1="77" x2="633" y2="77" class="line"></line><path d="M275 33 L295 33 M294 33 Q285 33 285 23 L285 11 Q285 1 295 1" class="line"></path><path d="M653 33 L673 33 M653 33 Q663 33 663 23 L663 11 Q663 1 653 1" class="line"></path><line x1="295" y1="1" x2="305" y2="1" class="line"></line><line x1="305" y1="1" x2="653" y2="1" class="line"></line><line x1="255" y1="33" x2="275" y2="33" class="line"></line><line x1="673" y1="33" x2="693" y2="33" class="line"></line><path d="M255 33 Q265 33 265 43" class="line"></path><path d="M683 43 Q683 33 693 33" class="line"></path><line x1="265" y1="43" x2="265" y2="111" class="line"></line><line x1="683" y1="111" x2="683" y2="43" class="line"></line><path d="M265 111 Q265 121 275 121" class="line"></path><path d="M673 121 Q683 121 683 111" class="line"></path><rect x="287" y="107" width="28" height="32" rx="10"></rect><rect x="285" y="105" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="295" y="125">*</text><line x1="275" y1="121" x2="285" y2="121" class="line"></line><line x1="313" y1="121" x2="323" y2="121" class="line"></line><line x1="323" y1="121" x2="673" y2="121" class="line"></line><line x1="696" y1="33" x2="693" y2="33" class="line"></line><polygon points="703 33 711 29 711 37" class="filled"></polygon><polygon points="703 33 695 29 695 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#SelectQuery" title="SelectQuery">SelectQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SubSelect" title="SubSelect">SubSelect</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="ConstructQuery">ConstructQuery:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="914" height="150"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="102" height="32" rx="10"></rect><rect x="29" y="17" width="102" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">CONSTRUCT</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="131" y1="33" x2="141" y2="33" class="line"></line><a xlink:href="#ConstructTemplate" xlink:title="ConstructTemplate"><rect x="173" y="19" width="138" height="32"></rect><rect x="171" y="17" width="138" height="32" class="nonterminal"></rect><text class="nonterminal" x="181" y="37">ConstructTemplate</text></a><line x1="161" y1="33" x2="171" y2="33" class="line"></line><line x1="309" y1="33" x2="319" y2="33" class="line"></line><a xlink:href="#DatasetClause" xlink:title="DatasetClause"><rect x="371" y="19" width="112" height="32"></rect><rect x="369" y="17" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="379" y="37">DatasetClause</text></a><line x1="359" y1="33" x2="369" y2="33" class="line"></line><line x1="481" y1="33" x2="491" y2="33" class="line"></line><path d="M339 33 L359 33 M358 33 Q349 33 349 23 L349 11 Q349 1 359 1" class="line"></path><path d="M491 33 L511 33 M491 33 Q501 33 501 23 L501 11 Q501 1 491 1" class="line"></path><line x1="359" y1="1" x2="369" y2="1" class="line"></line><line x1="369" y1="1" x2="491" y2="1" class="line"></line><line x1="319" y1="33" x2="339" y2="33" class="line"></line><line x1="511" y1="33" x2="531" y2="33" class="line"></line><path d="M319 33 Q329 33 329 43" class="line"></path><path d="M521 43 Q521 33 531 33" class="line"></path><line x1="329" y1="43" x2="329" y2="57" class="line"></line><line x1="521" y1="57" x2="521" y2="43" class="line"></line><path d="M329 57 Q329 67 339 67" class="line"></path><path d="M511 67 Q521 67 521 57" class="line"></path><line x1="339" y1="67" x2="349" y2="67" class="line"></line><line x1="349" y1="67" x2="511" y2="67" class="line"></line><a xlink:href="#WhereClause" xlink:title="WhereClause"><rect x="543" y="19" width="104" height="32"></rect><rect x="541" y="17" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="551" y="37">WhereClause</text></a><line x1="531" y1="33" x2="541" y2="33" class="line"></line><line x1="645" y1="33" x2="655" y2="33" class="line"></line><a xlink:href="#SolutionModifier" xlink:title="SolutionModifier"><rect x="667" y="19" width="120" height="32"></rect><rect x="665" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="675" y="37">SolutionModifier</text></a><line x1="655" y1="33" x2="665" y2="33" class="line"></line><line x1="785" y1="33" x2="795" y2="33" class="line"></line><line x1="795" y1="33" x2="875" y2="33" class="line"></line><line x1="141" y1="33" x2="161" y2="33" class="line"></line><line x1="875" y1="33" x2="895" y2="33" class="line"></line><path d="M141 33 Q151 33 151 43" class="line"></path><path d="M885 43 Q885 33 895 33" class="line"></path><line x1="151" y1="43" x2="151" y2="105" class="line"></line><line x1="885" y1="105" x2="885" y2="43" class="line"></line><path d="M151 105 Q151 115 161 115" class="line"></path><path d="M875 115 Q885 115 885 105" class="line"></path><a xlink:href="#DatasetClause" xlink:title="DatasetClause"><rect x="213" y="101" width="112" height="32"></rect><rect x="211" y="99" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="221" y="119">DatasetClause</text></a><line x1="201" y1="115" x2="211" y2="115" class="line"></line><line x1="323" y1="115" x2="333" y2="115" class="line"></line><path d="M181 115 L201 115 M200 115 Q191 115 191 105 L191 93 Q191 83 201 83" class="line"></path><path d="M333 115 L353 115 M333 115 Q343 115 343 105 L343 93 Q343 83 333 83" class="line"></path><line x1="201" y1="83" x2="211" y2="83" class="line"></line><line x1="211" y1="83" x2="333" y2="83" class="line"></line><line x1="161" y1="115" x2="181" y2="115" class="line"></line><line x1="353" y1="115" x2="373" y2="115" class="line"></line><path d="M161 115 Q171 115 171 125" class="line"></path><path d="M363 125 Q363 115 373 115" class="line"></path><line x1="171" y1="125" x2="171" y2="139" class="line"></line><line x1="363" y1="139" x2="363" y2="125" class="line"></line><path d="M171 139 Q171 149 181 149" class="line"></path><path d="M353 149 Q363 149 363 139" class="line"></path><line x1="181" y1="149" x2="191" y2="149" class="line"></line><line x1="191" y1="149" x2="353" y2="149" class="line"></line><rect x="385" y="101" width="68" height="32" rx="10"></rect><rect x="383" y="99" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="393" y="119">WHERE</text><line x1="373" y1="115" x2="383" y2="115" class="line"></line><line x1="451" y1="115" x2="461" y2="115" class="line"></line><rect x="473" y="101" width="28" height="32" rx="10"></rect><rect x="471" y="99" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="481" y="119">{</text><line x1="461" y1="115" x2="471" y2="115" class="line"></line><line x1="499" y1="115" x2="509" y2="115" class="line"></line><a xlink:href="#TriplesTemplate" xlink:title="TriplesTemplate"><rect x="541" y="101" width="118" height="32"></rect><rect x="539" y="99" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="549" y="119">TriplesTemplate</text></a><line x1="529" y1="115" x2="539" y2="115" class="line"></line><line x1="657" y1="115" x2="667" y2="115" class="line"></line><line x1="509" y1="115" x2="529" y2="115" class="line"></line><line x1="667" y1="115" x2="687" y2="115" class="line"></line><path d="M509 115 Q519 115 519 125" class="line"></path><path d="M677 125 Q677 115 687 115" class="line"></path><line x1="519" y1="125" x2="519" y2="139" class="line"></line><line x1="677" y1="139" x2="677" y2="125" class="line"></line><path d="M519 139 Q519 149 529 149" class="line"></path><path d="M667 149 Q677 149 677 139" class="line"></path><line x1="529" y1="149" x2="539" y2="149" class="line"></line><line x1="539" y1="149" x2="667" y2="149" class="line"></line><rect x="699" y="101" width="28" height="32" rx="10"></rect><rect x="697" y="99" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="707" y="119">}</text><line x1="687" y1="115" x2="697" y2="115" class="line"></line><line x1="725" y1="115" x2="735" y2="115" class="line"></line><a xlink:href="#SolutionModifier" xlink:title="SolutionModifier"><rect x="747" y="101" width="120" height="32"></rect><rect x="745" y="99" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="755" y="119">SolutionModifier</text></a><line x1="735" y1="115" x2="745" y2="115" class="line"></line><line x1="865" y1="115" x2="875" y2="115" class="line"></line><line x1="898" y1="33" x2="895" y2="33" class="line"></line><polygon points="905 33 913 29 913 37" class="filled"></polygon><polygon points="905 33 897 29 897 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Query" title="Query">Query</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="DescribeQuery">DescribeQuery:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="830" height="96"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="88" height="32" rx="10"></rect><rect x="29" y="17" width="88" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">DESCRIBE</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="117" y1="33" x2="127" y2="33" class="line"></line><a xlink:href="#VarOrIri" xlink:title="VarOrIri"><rect x="179" y="19" width="68" height="32"></rect><rect x="177" y="17" width="68" height="32" class="nonterminal"></rect><text class="nonterminal" x="187" y="37">VarOrIri</text></a><line x1="167" y1="33" x2="177" y2="33" class="line"></line><line x1="245" y1="33" x2="255" y2="33" class="line"></line><path d="M147 33 L167 33 M166 33 Q157 33 157 23 L157 11 Q157 1 167 1" class="line"></path><path d="M255 33 L275 33 M255 33 Q265 33 265 23 L265 11 Q265 1 255 1" class="line"></path><line x1="167" y1="1" x2="177" y2="1" class="line"></line><line x1="177" y1="1" x2="255" y2="1" class="line"></line><line x1="127" y1="33" x2="147" y2="33" class="line"></line><line x1="275" y1="33" x2="295" y2="33" class="line"></line><path d="M127 33 Q137 33 137 43" class="line"></path><path d="M285 43 Q285 33 295 33" class="line"></path><line x1="137" y1="43" x2="137" y2="67" class="line"></line><line x1="285" y1="67" x2="285" y2="43" class="line"></line><path d="M137 67 Q137 77 147 77" class="line"></path><path d="M275 77 Q285 77 285 67" class="line"></path><rect x="159" y="63" width="28" height="32" rx="10"></rect><rect x="157" y="61" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="167" y="81">*</text><line x1="147" y1="77" x2="157" y2="77" class="line"></line><line x1="185" y1="77" x2="195" y2="77" class="line"></line><line x1="195" y1="77" x2="275" y2="77" class="line"></line><a xlink:href="#DatasetClause" xlink:title="DatasetClause"><rect x="347" y="19" width="112" height="32"></rect><rect x="345" y="17" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="355" y="37">DatasetClause</text></a><line x1="335" y1="33" x2="345" y2="33" class="line"></line><line x1="457" y1="33" x2="467" y2="33" class="line"></line><path d="M315 33 L335 33 M334 33 Q325 33 325 23 L325 11 Q325 1 335 1" class="line"></path><path d="M467 33 L487 33 M467 33 Q477 33 477 23 L477 11 Q477 1 467 1" class="line"></path><line x1="335" y1="1" x2="345" y2="1" class="line"></line><line x1="345" y1="1" x2="467" y2="1" class="line"></line><line x1="295" y1="33" x2="315" y2="33" class="line"></line><line x1="487" y1="33" x2="507" y2="33" class="line"></line><path d="M295 33 Q305 33 305 43" class="line"></path><path d="M497 43 Q497 33 507 33" class="line"></path><line x1="305" y1="43" x2="305" y2="57" class="line"></line><line x1="497" y1="57" x2="497" y2="43" class="line"></line><path d="M305 57 Q305 67 315 67" class="line"></path><path d="M487 67 Q497 67 497 57" class="line"></path><line x1="315" y1="67" x2="325" y2="67" class="line"></line><line x1="325" y1="67" x2="487" y2="67" class="line"></line><a xlink:href="#WhereClause" xlink:title="WhereClause"><rect x="539" y="19" width="104" height="32"></rect><rect x="537" y="17" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="547" y="37">WhereClause</text></a><line x1="527" y1="33" x2="537" y2="33" class="line"></line><line x1="641" y1="33" x2="651" y2="33" class="line"></line><line x1="507" y1="33" x2="527" y2="33" class="line"></line><line x1="651" y1="33" x2="671" y2="33" class="line"></line><path d="M507 33 Q517 33 517 43" class="line"></path><path d="M661 43 Q661 33 671 33" class="line"></path><line x1="517" y1="43" x2="517" y2="57" class="line"></line><line x1="661" y1="57" x2="661" y2="43" class="line"></line><path d="M517 57 Q517 67 527 67" class="line"></path><path d="M651 67 Q661 67 661 57" class="line"></path><line x1="527" y1="67" x2="537" y2="67" class="line"></line><line x1="537" y1="67" x2="651" y2="67" class="line"></line><a xlink:href="#SolutionModifier" xlink:title="SolutionModifier"><rect x="683" y="19" width="120" height="32"></rect><rect x="681" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="691" y="37">SolutionModifier</text></a><line x1="671" y1="33" x2="681" y2="33" class="line"></line><line x1="801" y1="33" x2="811" y2="33" class="line"></line><line x1="814" y1="33" x2="811" y2="33" class="line"></line><polygon points="821 33 829 29 829 37" class="filled"></polygon><polygon points="821 33 813 29 813 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Query" title="Query">Query</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="AskQuery">AskQuery:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="580" height="68"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="46" height="32" rx="10"></rect><rect x="29" y="17" width="46" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">ASK</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="75" y1="33" x2="85" y2="33" class="line"></line><a xlink:href="#DatasetClause" xlink:title="DatasetClause"><rect x="137" y="19" width="112" height="32"></rect><rect x="135" y="17" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="145" y="37">DatasetClause</text></a><line x1="125" y1="33" x2="135" y2="33" class="line"></line><line x1="247" y1="33" x2="257" y2="33" class="line"></line><path d="M105 33 L125 33 M124 33 Q115 33 115 23 L115 11 Q115 1 125 1" class="line"></path><path d="M257 33 L277 33 M257 33 Q267 33 267 23 L267 11 Q267 1 257 1" class="line"></path><line x1="125" y1="1" x2="135" y2="1" class="line"></line><line x1="135" y1="1" x2="257" y2="1" class="line"></line><line x1="85" y1="33" x2="105" y2="33" class="line"></line><line x1="277" y1="33" x2="297" y2="33" class="line"></line><path d="M85 33 Q95 33 95 43" class="line"></path><path d="M287 43 Q287 33 297 33" class="line"></path><line x1="95" y1="43" x2="95" y2="57" class="line"></line><line x1="287" y1="57" x2="287" y2="43" class="line"></line><path d="M95 57 Q95 67 105 67" class="line"></path><path d="M277 67 Q287 67 287 57" class="line"></path><line x1="105" y1="67" x2="115" y2="67" class="line"></line><line x1="115" y1="67" x2="277" y2="67" class="line"></line><a xlink:href="#WhereClause" xlink:title="WhereClause"><rect x="309" y="19" width="104" height="32"></rect><rect x="307" y="17" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="317" y="37">WhereClause</text></a><line x1="297" y1="33" x2="307" y2="33" class="line"></line><line x1="411" y1="33" x2="421" y2="33" class="line"></line><a xlink:href="#SolutionModifier" xlink:title="SolutionModifier"><rect x="433" y="19" width="120" height="32"></rect><rect x="431" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="441" y="37">SolutionModifier</text></a><line x1="421" y1="33" x2="431" y2="33" class="line"></line><line x1="551" y1="33" x2="561" y2="33" class="line"></line><line x1="564" y1="33" x2="561" y2="33" class="line"></line><polygon points="571 33 579 29 579 37" class="filled"></polygon><polygon points="571 33 563 29 563 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Query" title="Query">Query</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="DatasetClause">DatasetClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="322" height="80"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="58" height="32" rx="10"></rect><rect x="29" y="1" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">FROM</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><a xlink:href="#DefaultGraphClause" xlink:title="DefaultGraphClause"><rect x="129" y="3" width="146" height="32"></rect><rect x="127" y="1" width="146" height="32" class="nonterminal"></rect><text class="nonterminal" x="137" y="21">DefaultGraphClause</text></a><line x1="117" y1="17" x2="127" y2="17" class="line"></line><line x1="273" y1="17" x2="283" y2="17" class="line"></line><line x1="97" y1="17" x2="117" y2="17" class="line"></line><line x1="283" y1="17" x2="303" y2="17" class="line"></line><path d="M97 17 Q107 17 107 27" class="line"></path><path d="M293 27 Q293 17 303 17" class="line"></path><line x1="107" y1="27" x2="107" y2="51" class="line"></line><line x1="293" y1="51" x2="293" y2="27" class="line"></line><path d="M107 51 Q107 61 117 61" class="line"></path><path d="M283 61 Q293 61 293 51" class="line"></path><a xlink:href="#NamedGraphClause" xlink:title="NamedGraphClause"><rect x="129" y="47" width="144" height="32"></rect><rect x="127" y="45" width="144" height="32" class="nonterminal"></rect><text class="nonterminal" x="137" y="65">NamedGraphClause</text></a><line x1="117" y1="61" x2="127" y2="61" class="line"></line><line x1="271" y1="61" x2="281" y2="61" class="line"></line><line x1="281" y1="61" x2="283" y2="61" class="line"></line><line x1="306" y1="17" x2="303" y2="17" class="line"></line><polygon points="313 17 321 13 321 21" class="filled"></polygon><polygon points="313 17 305 13 305 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#AskQuery" title="AskQuery">AskQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#ConstructQuery" title="ConstructQuery">ConstructQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#DescribeQuery" title="DescribeQuery">DescribeQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SelectQuery" title="SelectQuery">SelectQuery</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="DefaultGraphClause">DefaultGraphClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="172" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#SourceSelector" xlink:title="SourceSelector"><rect x="31" y="3" width="114" height="32"></rect><rect x="29" y="1" width="114" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">SourceSelector</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="143" y1="17" x2="153" y2="17" class="line"></line><line x1="156" y1="17" x2="153" y2="17" class="line"></line><polygon points="163 17 171 13 171 21" class="filled"></polygon><polygon points="163 17 155 13 155 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#DatasetClause" title="DatasetClause">DatasetClause</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="NamedGraphClause">NamedGraphClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="260" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="68" height="32" rx="10"></rect><rect x="29" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">NAMED</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="97" y1="17" x2="107" y2="17" class="line"></line><a xlink:href="#SourceSelector" xlink:title="SourceSelector"><rect x="119" y="3" width="114" height="32"></rect><rect x="117" y="1" width="114" height="32" class="nonterminal"></rect><text class="nonterminal" x="127" y="21">SourceSelector</text></a><line x1="107" y1="17" x2="117" y2="17" class="line"></line><line x1="231" y1="17" x2="241" y2="17" class="line"></line><line x1="244" y1="17" x2="241" y2="17" class="line"></line><polygon points="251 17 259 13 259 21" class="filled"></polygon><polygon points="251 17 243 13 243 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#DatasetClause" title="DatasetClause">DatasetClause</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="SourceSelector">SourceSelector:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="88" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="31" y="3" width="30" height="32"></rect><rect x="29" y="1" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">iri</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="59" y1="17" x2="69" y2="17" class="line"></line><line x1="72" y1="17" x2="69" y2="17" class="line"></line><polygon points="79 17 87 13 87 21" class="filled"></polygon><polygon points="79 17 71 13 71 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#DefaultGraphClause" title="DefaultGraphClause">DefaultGraphClause</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#NamedGraphClause" title="NamedGraphClause">NamedGraphClause</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="WhereClause">WhereClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="328" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="51" y="3" width="68" height="32" rx="10"></rect><rect x="49" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">WHERE</text><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="117" y1="17" x2="127" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="127" y1="17" x2="147" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M137 27 Q137 17 147 17" class="line"></path><line x1="29" y1="27" x2="29" y2="41" class="line"></line><line x1="137" y1="41" x2="137" y2="27" class="line"></line><path d="M29 41 Q29 51 39 51" class="line"></path><path d="M127 51 Q137 51 137 41" class="line"></path><line x1="39" y1="51" x2="49" y2="51" class="line"></line><line x1="49" y1="51" x2="127" y2="51" class="line"></line><a xlink:href="#GroupGraphPattern" xlink:title="GroupGraphPattern"><rect x="159" y="3" width="142" height="32"></rect><rect x="157" y="1" width="142" height="32" class="nonterminal"></rect><text class="nonterminal" x="167" y="21">GroupGraphPattern</text></a><line x1="147" y1="17" x2="157" y2="17" class="line"></line><line x1="299" y1="17" x2="309" y2="17" class="line"></line><line x1="312" y1="17" x2="309" y2="17" class="line"></line><polygon points="319 17 327 13 327 21" class="filled"></polygon><polygon points="319 17 311 13 311 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#AskQuery" title="AskQuery">AskQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#ConstructQuery" title="ConstructQuery">ConstructQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#DescribeQuery" title="DescribeQuery">DescribeQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SelectQuery" title="SelectQuery">SelectQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SubSelect" title="SubSelect">SubSelect</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="SolutionModifier">SolutionModifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="718" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#GroupClause" xlink:title="GroupClause"><rect x="51" y="3" width="100" height="32"></rect><rect x="49" y="1" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">GroupClause</text></a><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="149" y1="17" x2="159" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="159" y1="17" x2="179" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M169 27 Q169 17 179 17" class="line"></path><line x1="29" y1="27" x2="29" y2="41" class="line"></line><line x1="169" y1="41" x2="169" y2="27" class="line"></line><path d="M29 41 Q29 51 39 51" class="line"></path><path d="M159 51 Q169 51 169 41" class="line"></path><line x1="39" y1="51" x2="49" y2="51" class="line"></line><line x1="49" y1="51" x2="159" y2="51" class="line"></line><a xlink:href="#HavingClause" xlink:title="HavingClause"><rect x="211" y="3" width="106" height="32"></rect><rect x="209" y="1" width="106" height="32" class="nonterminal"></rect><text class="nonterminal" x="219" y="21">HavingClause</text></a><line x1="199" y1="17" x2="209" y2="17" class="line"></line><line x1="315" y1="17" x2="325" y2="17" class="line"></line><line x1="179" y1="17" x2="199" y2="17" class="line"></line><line x1="325" y1="17" x2="345" y2="17" class="line"></line><path d="M179 17 Q189 17 189 27" class="line"></path><path d="M335 27 Q335 17 345 17" class="line"></path><line x1="189" y1="27" x2="189" y2="41" class="line"></line><line x1="335" y1="41" x2="335" y2="27" class="line"></line><path d="M189 41 Q189 51 199 51" class="line"></path><path d="M325 51 Q335 51 335 41" class="line"></path><line x1="199" y1="51" x2="209" y2="51" class="line"></line><line x1="209" y1="51" x2="325" y2="51" class="line"></line><a xlink:href="#OrderClause" xlink:title="OrderClause"><rect x="377" y="3" width="98" height="32"></rect><rect x="375" y="1" width="98" height="32" class="nonterminal"></rect><text class="nonterminal" x="385" y="21">OrderClause</text></a><line x1="365" y1="17" x2="375" y2="17" class="line"></line><line x1="473" y1="17" x2="483" y2="17" class="line"></line><line x1="345" y1="17" x2="365" y2="17" class="line"></line><line x1="483" y1="17" x2="503" y2="17" class="line"></line><path d="M345 17 Q355 17 355 27" class="line"></path><path d="M493 27 Q493 17 503 17" class="line"></path><line x1="355" y1="27" x2="355" y2="41" class="line"></line><line x1="493" y1="41" x2="493" y2="27" class="line"></line><path d="M355 41 Q355 51 365 51" class="line"></path><path d="M483 51 Q493 51 493 41" class="line"></path><line x1="365" y1="51" x2="375" y2="51" class="line"></line><line x1="375" y1="51" x2="483" y2="51" class="line"></line><a xlink:href="#LimitOffsetClauses" xlink:title="LimitOffsetClauses"><rect x="535" y="3" width="136" height="32"></rect><rect x="533" y="1" width="136" height="32" class="nonterminal"></rect><text class="nonterminal" x="543" y="21">LimitOffsetClauses</text></a><line x1="523" y1="17" x2="533" y2="17" class="line"></line><line x1="669" y1="17" x2="679" y2="17" class="line"></line><line x1="503" y1="17" x2="523" y2="17" class="line"></line><line x1="679" y1="17" x2="699" y2="17" class="line"></line><path d="M503 17 Q513 17 513 27" class="line"></path><path d="M689 27 Q689 17 699 17" class="line"></path><line x1="513" y1="27" x2="513" y2="41" class="line"></line><line x1="689" y1="41" x2="689" y2="27" class="line"></line><path d="M513 41 Q513 51 523 51" class="line"></path><path d="M679 51 Q689 51 689 41" class="line"></path><line x1="523" y1="51" x2="533" y2="51" class="line"></line><line x1="533" y1="51" x2="679" y2="51" class="line"></line><line x1="702" y1="17" x2="699" y2="17" class="line"></line><polygon points="709 17 717 13 717 21" class="filled"></polygon><polygon points="709 17 701 13 701 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#AskQuery" title="AskQuery">AskQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#ConstructQuery" title="ConstructQuery">ConstructQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#DescribeQuery" title="DescribeQuery">DescribeQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SelectQuery" title="SelectQuery">SelectQuery</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SubSelect" title="SubSelect">SubSelect</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="GroupClause">GroupClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="362" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="68" height="32" rx="10"></rect><rect x="29" y="17" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">GROUP</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="97" y1="33" x2="107" y2="33" class="line"></line><rect x="119" y="19" width="38" height="32" rx="10"></rect><rect x="117" y="17" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="127" y="37">BY</text><line x1="107" y1="33" x2="117" y2="33" class="line"></line><line x1="155" y1="33" x2="165" y2="33" class="line"></line><a xlink:href="#GroupCondition" xlink:title="GroupCondition"><rect x="197" y="19" width="118" height="32"></rect><rect x="195" y="17" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="205" y="37">GroupCondition</text></a><line x1="185" y1="33" x2="195" y2="33" class="line"></line><line x1="313" y1="33" x2="323" y2="33" class="line"></line><path d="M165 33 L185 33 M184 33 Q175 33 175 23 L175 11 Q175 1 185 1" class="line"></path><path d="M323 33 L343 33 M323 33 Q333 33 333 23 L333 11 Q333 1 323 1" class="line"></path><line x1="185" y1="1" x2="195" y2="1" class="line"></line><line x1="195" y1="1" x2="323" y2="1" class="line"></line><line x1="346" y1="33" x2="343" y2="33" class="line"></line><polygon points="353 33 361 29 361 37" class="filled"></polygon><polygon points="353 33 345 29 345 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="GroupCondition">GroupCondition:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="436" height="190"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#BuiltInCall" xlink:title="BuiltInCall"><rect x="51" y="3" width="82" height="32"></rect><rect x="49" y="1" width="82" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">BuiltInCall</text></a><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="131" y1="17" x2="141" y2="17" class="line"></line><line x1="141" y1="17" x2="397" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="397" y1="17" x2="417" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M407 27 Q407 17 417 17" class="line"></path><line x1="29" y1="27" x2="29" y2="51" class="line"></line><line x1="407" y1="51" x2="407" y2="27" class="line"></line><path d="M29 51 Q29 61 39 61" class="line"></path><path d="M397 61 Q407 61 407 51" class="line"></path><a xlink:href="#FunctionCall" xlink:title="FunctionCall"><rect x="51" y="47" width="96" height="32"></rect><rect x="49" y="45" width="96" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="65">FunctionCall</text></a><line x1="39" y1="61" x2="49" y2="61" class="line"></line><line x1="145" y1="61" x2="155" y2="61" class="line"></line><line x1="155" y1="61" x2="397" y2="61" class="line"></line><line x1="29" y1="51" x2="29" y2="71" class="line"></line><line x1="407" y1="71" x2="407" y2="51" class="line"></line><line x1="29" y1="71" x2="29" y2="95" class="line"></line><line x1="407" y1="95" x2="407" y2="71" class="line"></line><path d="M29 95 Q29 105 39 105" class="line"></path><path d="M397 105 Q407 105 407 95" class="line"></path><rect x="51" y="91" width="26" height="32" rx="10"></rect><rect x="49" y="89" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="109">(</text><line x1="39" y1="105" x2="49" y2="105" class="line"></line><line x1="75" y1="105" x2="85" y2="105" class="line"></line><a xlink:href="#Expression" xlink:title="Expression"><rect x="97" y="91" width="88" height="32"></rect><rect x="95" y="89" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="105" y="109">Expression</text></a><line x1="85" y1="105" x2="95" y2="105" class="line"></line><line x1="183" y1="105" x2="193" y2="105" class="line"></line><rect x="225" y="91" width="38" height="32" rx="10"></rect><rect x="223" y="89" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="233" y="109">AS</text><line x1="213" y1="105" x2="223" y2="105" class="line"></line><line x1="261" y1="105" x2="271" y2="105" class="line"></line><a xlink:href="#Var" xlink:title="Var"><rect x="283" y="91" width="40" height="32"></rect><rect x="281" y="89" width="40" height="32" class="nonterminal"></rect><text class="nonterminal" x="291" y="109">Var</text></a><line x1="271" y1="105" x2="281" y2="105" class="line"></line><line x1="321" y1="105" x2="331" y2="105" class="line"></line><line x1="193" y1="105" x2="213" y2="105" class="line"></line><line x1="331" y1="105" x2="351" y2="105" class="line"></line><path d="M193 105 Q203 105 203 115" class="line"></path><path d="M341 115 Q341 105 351 105" class="line"></path><line x1="203" y1="115" x2="203" y2="129" class="line"></line><line x1="341" y1="129" x2="341" y2="115" class="line"></line><path d="M203 129 Q203 139 213 139" class="line"></path><path d="M331 139 Q341 139 341 129" class="line"></path><line x1="213" y1="139" x2="223" y2="139" class="line"></line><line x1="223" y1="139" x2="331" y2="139" class="line"></line><rect x="363" y="91" width="26" height="32" rx="10"></rect><rect x="361" y="89" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="371" y="109">)</text><line x1="351" y1="105" x2="361" y2="105" class="line"></line><line x1="387" y1="105" x2="397" y2="105" class="line"></line><line x1="29" y1="95" x2="29" y2="115" class="line"></line><line x1="407" y1="115" x2="407" y2="95" class="line"></line><line x1="29" y1="115" x2="29" y2="161" class="line"></line><line x1="407" y1="161" x2="407" y2="115" class="line"></line><path d="M29 161 Q29 171 39 171" class="line"></path><path d="M397 171 Q407 171 407 161" class="line"></path><a xlink:href="#Var" xlink:title="Var"><rect x="51" y="157" width="40" height="32"></rect><rect x="49" y="155" width="40" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="175">Var</text></a><line x1="39" y1="171" x2="49" y2="171" class="line"></line><line x1="89" y1="171" x2="99" y2="171" class="line"></line><line x1="99" y1="171" x2="397" y2="171" class="line"></line><line x1="420" y1="17" x2="417" y2="17" class="line"></line><polygon points="427 17 435 13 435 21" class="filled"></polygon><polygon points="427 17 419 13 419 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#GroupClause" title="GroupClause">GroupClause</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="HavingClause">HavingClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="74" height="32" rx="10"></rect><rect x="29" y="17" width="74" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">HAVING</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="103" y1="33" x2="113" y2="33" class="line"></line><a xlink:href="#HavingCondition" xlink:title="HavingCondition"><rect x="145" y="19" width="122" height="32"></rect><rect x="143" y="17" width="122" height="32" class="nonterminal"></rect><text class="nonterminal" x="153" y="37">HavingCondition</text></a><line x1="133" y1="33" x2="143" y2="33" class="line"></line><line x1="265" y1="33" x2="275" y2="33" class="line"></line><path d="M113 33 L133 33 M132 33 Q123 33 123 23 L123 11 Q123 1 133 1" class="line"></path><path d="M275 33 L295 33 M275 33 Q285 33 285 23 L285 11 Q285 1 275 1" class="line"></path><line x1="133" y1="1" x2="143" y2="1" class="line"></line><line x1="143" y1="1" x2="275" y2="1" class="line"></line><line x1="298" y1="33" x2="295" y2="33" class="line"></line><polygon points="305 33 313 29 313 37" class="filled"></polygon><polygon points="305 33 297 29 297 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="HavingCondition">HavingCondition:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="144" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#Constraint" xlink:title="Constraint"><rect x="31" y="3" width="86" height="32"></rect><rect x="29" y="1" width="86" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">Constraint</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="115" y1="17" x2="125" y2="17" class="line"></line><line x1="128" y1="17" x2="125" y2="17" class="line"></line><polygon points="135 17 143 13 143 21" class="filled"></polygon><polygon points="135 17 127 13 127 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#HavingClause" title="HavingClause">HavingClause</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="OrderClause">OrderClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="358" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="31" y="19" width="66" height="32" rx="10"></rect><rect x="29" y="17" width="66" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="37">ORDER</text><line x1="19" y1="33" x2="29" y2="33" class="line"></line><line x1="95" y1="33" x2="105" y2="33" class="line"></line><rect x="117" y="19" width="38" height="32" rx="10"></rect><rect x="115" y="17" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="125" y="37">BY</text><line x1="105" y1="33" x2="115" y2="33" class="line"></line><line x1="153" y1="33" x2="163" y2="33" class="line"></line><a xlink:href="#OrderCondition" xlink:title="OrderCondition"><rect x="195" y="19" width="116" height="32"></rect><rect x="193" y="17" width="116" height="32" class="nonterminal"></rect><text class="nonterminal" x="203" y="37">OrderCondition</text></a><line x1="183" y1="33" x2="193" y2="33" class="line"></line><line x1="309" y1="33" x2="319" y2="33" class="line"></line><path d="M163 33 L183 33 M182 33 Q173 33 173 23 L173 11 Q173 1 183 1" class="line"></path><path d="M319 33 L339 33 M319 33 Q329 33 329 23 L329 11 Q329 1 319 1" class="line"></path><line x1="183" y1="1" x2="193" y2="1" class="line"></line><line x1="193" y1="1" x2="319" y2="1" class="line"></line><line x1="342" y1="33" x2="339" y2="33" class="line"></line><polygon points="349 33 357 29 357 37" class="filled"></polygon><polygon points="349 33 341 29 341 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="OrderCondition">OrderCondition:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="370" height="168"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="71" y="3" width="46" height="32" rx="10"></rect><rect x="69" y="1" width="46" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="21">ASC</text><line x1="59" y1="17" x2="69" y2="17" class="line"></line><line x1="115" y1="17" x2="125" y2="17" class="line"></line><line x1="125" y1="17" x2="135" y2="17" class="line"></line><line x1="39" y1="17" x2="59" y2="17" class="line"></line><line x1="135" y1="17" x2="155" y2="17" class="line"></line><path d="M39 17 Q49 17 49 27" class="line"></path><path d="M145 27 Q145 17 155 17" class="line"></path><line x1="49" y1="27" x2="49" y2="51" class="line"></line><line x1="145" y1="51" x2="145" y2="27" class="line"></line><path d="M49 51 Q49 61 59 61" class="line"></path><path d="M135 61 Q145 61 145 51" class="line"></path><rect x="71" y="47" width="56" height="32" rx="10"></rect><rect x="69" y="45" width="56" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="65">DESC</text><line x1="59" y1="61" x2="69" y2="61" class="line"></line><line x1="125" y1="61" x2="135" y2="61" class="line"></line><a xlink:href="#BrackettedExpression" xlink:title="BrackettedExpression"><rect x="167" y="3" width="156" height="32"></rect><rect x="165" y="1" width="156" height="32" class="nonterminal"></rect><text class="nonterminal" x="175" y="21">BrackettedExpression</text></a><line x1="155" y1="17" x2="165" y2="17" class="line"></line><line x1="321" y1="17" x2="331" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="331" y1="17" x2="351" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M341 27 Q341 17 351 17" class="line"></path><line x1="29" y1="27" x2="29" y2="95" class="line"></line><line x1="341" y1="95" x2="341" y2="27" class="line"></line><path d="M29 95 Q29 105 39 105" class="line"></path><path d="M331 105 Q341 105 341 95" class="line"></path><a xlink:href="#Constraint" xlink:title="Constraint"><rect x="51" y="91" width="86" height="32"></rect><rect x="49" y="89" width="86" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="109">Constraint</text></a><line x1="39" y1="105" x2="49" y2="105" class="line"></line><line x1="135" y1="105" x2="145" y2="105" class="line"></line><line x1="145" y1="105" x2="331" y2="105" class="line"></line><line x1="29" y1="95" x2="29" y2="115" class="line"></line><line x1="341" y1="115" x2="341" y2="95" class="line"></line><line x1="29" y1="115" x2="29" y2="139" class="line"></line><line x1="341" y1="139" x2="341" y2="115" class="line"></line><path d="M29 139 Q29 149 39 149" class="line"></path><path d="M331 149 Q341 149 341 139" class="line"></path><a xlink:href="#Var" xlink:title="Var"><rect x="51" y="135" width="40" height="32"></rect><rect x="49" y="133" width="40" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="153">Var</text></a><line x1="39" y1="149" x2="49" y2="149" class="line"></line><line x1="89" y1="149" x2="99" y2="149" class="line"></line><line x1="99" y1="149" x2="331" y2="149" class="line"></line><line x1="354" y1="17" x2="351" y2="17" class="line"></line><polygon points="361 17 369 13 369 21" class="filled"></polygon><polygon points="361 17 353 13 353 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#OrderClause" title="OrderClause">OrderClause</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="LimitOffsetClauses">LimitOffsetClauses:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="350" height="118"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#LimitClause" xlink:title="LimitClause"><rect x="51" y="3" width="92" height="32"></rect><rect x="49" y="1" width="92" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">LimitClause</text></a><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="141" y1="17" x2="151" y2="17" class="line"></line><a xlink:href="#OffsetClause" xlink:title="OffsetClause"><rect x="183" y="3" width="100" height="32"></rect><rect x="181" y="1" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="191" y="21">OffsetClause</text></a><line x1="171" y1="17" x2="181" y2="17" class="line"></line><line x1="281" y1="17" x2="291" y2="17" class="line"></line><line x1="151" y1="17" x2="171" y2="17" class="line"></line><line x1="291" y1="17" x2="311" y2="17" class="line"></line><path d="M151 17 Q161 17 161 27" class="line"></path><path d="M301 27 Q301 17 311 17" class="line"></path><line x1="161" y1="27" x2="161" y2="41" class="line"></line><line x1="301" y1="41" x2="301" y2="27" class="line"></line><path d="M161 41 Q161 51 171 51" class="line"></path><path d="M291 51 Q301 51 301 41" class="line"></path><line x1="171" y1="51" x2="181" y2="51" class="line"></line><line x1="181" y1="51" x2="291" y2="51" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="311" y1="17" x2="331" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M321 27 Q321 17 331 17" class="line"></path><line x1="29" y1="27" x2="29" y2="73" class="line"></line><line x1="321" y1="73" x2="321" y2="27" class="line"></line><path d="M29 73 Q29 83 39 83" class="line"></path><path d="M311 83 Q321 83 321 73" class="line"></path><a xlink:href="#OffsetClause" xlink:title="OffsetClause"><rect x="51" y="69" width="100" height="32"></rect><rect x="49" y="67" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="87">OffsetClause</text></a><line x1="39" y1="83" x2="49" y2="83" class="line"></line><line x1="149" y1="83" x2="159" y2="83" class="line"></line><a xlink:href="#LimitClause" xlink:title="LimitClause"><rect x="191" y="69" width="92" height="32"></rect><rect x="189" y="67" width="92" height="32" class="nonterminal"></rect><text class="nonterminal" x="199" y="87">LimitClause</text></a><line x1="179" y1="83" x2="189" y2="83" class="line"></line><line x1="281" y1="83" x2="291" y2="83" class="line"></line><line x1="159" y1="83" x2="179" y2="83" class="line"></line><line x1="291" y1="83" x2="311" y2="83" class="line"></line><path d="M159 83 Q169 83 169 93" class="line"></path><path d="M301 93 Q301 83 311 83" class="line"></path><line x1="169" y1="93" x2="169" y2="107" class="line"></line><line x1="301" y1="107" x2="301" y2="93" class="line"></line><path d="M169 107 Q169 117 179 117" class="line"></path><path d="M291 117 Q301 117 301 107" class="line"></path><line x1="179" y1="117" x2="189" y2="117" class="line"></line><line x1="189" y1="117" x2="291" y2="117" class="line"></line><line x1="334" y1="17" x2="331" y2="17" class="line"></line><polygon points="341 17 349 13 349 21" class="filled"></polygon><polygon points="341 17 333 13 333 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#SolutionModifier" title="SolutionModifier">SolutionModifier</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="LimitClause">LimitClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="210" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="58" height="32" rx="10"></rect><rect x="29" y="1" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">LIMIT</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><a xlink:href="#INTEGER" xlink:title="INTEGER"><rect x="109" y="3" width="74" height="32"></rect><rect x="107" y="1" width="74" height="32" class="nonterminal"></rect><text class="nonterminal" x="117" y="21">INTEGER</text></a><line x1="97" y1="17" x2="107" y2="17" class="line"></line><line x1="181" y1="17" x2="191" y2="17" class="line"></line><line x1="194" y1="17" x2="191" y2="17" class="line"></line><polygon points="201 17 209 13 209 21" class="filled"></polygon><polygon points="201 17 193 13 193 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#LimitOffsetClauses" title="LimitOffsetClauses">LimitOffsetClauses</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="OffsetClause">OffsetClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="224" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="72" height="32" rx="10"></rect><rect x="29" y="1" width="72" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">OFFSET</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="101" y1="17" x2="111" y2="17" class="line"></line><a xlink:href="#INTEGER" xlink:title="INTEGER"><rect x="123" y="3" width="74" height="32"></rect><rect x="121" y="1" width="74" height="32" class="nonterminal"></rect><text class="nonterminal" x="131" y="21">INTEGER</text></a><line x1="111" y1="17" x2="121" y2="17" class="line"></line><line x1="195" y1="17" x2="205" y2="17" class="line"></line><line x1="208" y1="17" x2="205" y2="17" class="line"></line><polygon points="215 17 223 13 223 21" class="filled"></polygon><polygon points="215 17 207 13 207 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#LimitOffsetClauses" title="LimitOffsetClauses">LimitOffsetClauses</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="ValuesClause">ValuesClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="272" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="51" y="3" width="72" height="32" rx="10"></rect><rect x="49" y="1" width="72" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">VALUES</text><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="121" y1="17" x2="131" y2="17" class="line"></line><a xlink:href="#DataBlock" xlink:title="DataBlock"><rect x="143" y="3" width="82" height="32"></rect><rect x="141" y="1" width="82" height="32" class="nonterminal"></rect><text class="nonterminal" x="151" y="21">DataBlock</text></a><line x1="131" y1="17" x2="141" y2="17" class="line"></line><line x1="223" y1="17" x2="233" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="233" y1="17" x2="253" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M243 27 Q243 17 253 17" class="line"></path><line x1="29" y1="27" x2="29" y2="41" class="line"></line><line x1="243" y1="41" x2="243" y2="27" class="line"></line><path d="M29 41 Q29 51 39 51" class="line"></path><path d="M233 51 Q243 51 243 41" class="line"></path><line x1="39" y1="51" x2="49" y2="51" class="line"></line><line x1="49" y1="51" x2="233" y2="51" class="line"></line><line x1="256" y1="17" x2="253" y2="17" class="line"></line><polygon points="263 17 271 13 271 21" class="filled"></polygon><polygon points="263 17 255 13 255 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Query" title="Query">Query</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#SubSelect" title="SubSelect">SubSelect</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Update">Update:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="438" height="68"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#Prologue" xlink:title="Prologue"><rect x="31" y="3" width="76" height="32"></rect><rect x="29" y="1" width="76" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">Prologue</text></a><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="105" y1="17" x2="115" y2="17" class="line"></line><a xlink:href="#Update1" xlink:title="Update1"><rect x="147" y="3" width="74" height="32"></rect><rect x="145" y="1" width="74" height="32" class="nonterminal"></rect><text class="nonterminal" x="155" y="21">Update1</text></a><line x1="135" y1="17" x2="145" y2="17" class="line"></line><line x1="219" y1="17" x2="229" y2="17" class="line"></line><rect x="261" y="3" width="24" height="32" rx="10"></rect><rect x="259" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="269" y="21">;</text><line x1="249" y1="17" x2="259" y2="17" class="line"></line><line x1="283" y1="17" x2="293" y2="17" class="line"></line><a xlink:href="#Update" xlink:title="Update"><rect x="305" y="3" width="66" height="32"></rect><rect x="303" y="1" width="66" height="32" class="nonterminal"></rect><text class="nonterminal" x="313" y="21">Update</text></a><line x1="293" y1="17" x2="303" y2="17" class="line"></line><line x1="369" y1="17" x2="379" y2="17" class="line"></line><line x1="229" y1="17" x2="249" y2="17" class="line"></line><line x1="379" y1="17" x2="399" y2="17" class="line"></line><path d="M229 17 Q239 17 239 27" class="line"></path><path d="M389 27 Q389 17 399 17" class="line"></path><line x1="239" y1="27" x2="239" y2="41" class="line"></line><line x1="389" y1="41" x2="389" y2="27" class="line"></line><path d="M239 41 Q239 51 249 51" class="line"></path><path d="M379 51 Q389 51 389 41" class="line"></path><line x1="249" y1="51" x2="259" y2="51" class="line"></line><line x1="259" y1="51" x2="379" y2="51" class="line"></line><line x1="115" y1="17" x2="135" y2="17" class="line"></line><line x1="399" y1="17" x2="419" y2="17" class="line"></line><path d="M115 17 Q125 17 125 27" class="line"></path><path d="M409 27 Q409 17 419 17" class="line"></path><line x1="125" y1="27" x2="125" y2="57" class="line"></line><line x1="409" y1="57" x2="409" y2="27" class="line"></line><path d="M125 57 Q125 67 135 67" class="line"></path><path d="M399 67 Q409 67 409 57" class="line"></path><line x1="135" y1="67" x2="145" y2="67" class="line"></line><line x1="145" y1="67" x2="399" y2="67" class="line"></line><line x1="422" y1="17" x2="419" y2="17" class="line"></line><polygon points="429 17 437 13 437 21" class="filled"></polygon><polygon points="429 17 421 13 421 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update" title="Update">Update</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#UpdateUnit" title="UpdateUnit">UpdateUnit</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Update1">Update1:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="476"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#Load" xlink:title="Load"><rect x="51" y="3" width="50" height="32"></rect><rect x="49" y="1" width="50" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">Load</text></a><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="99" y1="17" x2="109" y2="17" class="line"></line><line x1="109" y1="17" x2="161" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="161" y1="17" x2="181" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M171 27 Q171 17 181 17" class="line"></path><line x1="29" y1="27" x2="29" y2="51" class="line"></line><line x1="171" y1="51" x2="171" y2="27" class="line"></line><path d="M29 51 Q29 61 39 61" class="line"></path><path d="M161 61 Q171 61 171 51" class="line"></path><a xlink:href="#Clear" xlink:title="Clear"><rect x="51" y="47" width="52" height="32"></rect><rect x="49" y="45" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="65">Clear</text></a><line x1="39" y1="61" x2="49" y2="61" class="line"></line><line x1="101" y1="61" x2="111" y2="61" class="line"></line><line x1="111" y1="61" x2="161" y2="61" class="line"></line><line x1="29" y1="51" x2="29" y2="71" class="line"></line><line x1="171" y1="71" x2="171" y2="51" class="line"></line><line x1="29" y1="71" x2="29" y2="95" class="line"></line><line x1="171" y1="95" x2="171" y2="71" class="line"></line><path d="M29 95 Q29 105 39 105" class="line"></path><path d="M161 105 Q171 105 171 95" class="line"></path><a xlink:href="#Drop" xlink:title="Drop"><rect x="51" y="91" width="50" height="32"></rect><rect x="49" y="89" width="50" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="109">Drop</text></a><line x1="39" y1="105" x2="49" y2="105" class="line"></line><line x1="99" y1="105" x2="109" y2="105" class="line"></line><line x1="109" y1="105" x2="161" y2="105" class="line"></line><line x1="29" y1="95" x2="29" y2="115" class="line"></line><line x1="171" y1="115" x2="171" y2="95" class="line"></line><line x1="29" y1="115" x2="29" y2="139" class="line"></line><line x1="171" y1="139" x2="171" y2="115" class="line"></line><path d="M29 139 Q29 149 39 149" class="line"></path><path d="M161 149 Q171 149 171 139" class="line"></path><a xlink:href="#Add" xlink:title="Add"><rect x="51" y="135" width="44" height="32"></rect><rect x="49" y="133" width="44" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="153">Add</text></a><line x1="39" y1="149" x2="49" y2="149" class="line"></line><line x1="93" y1="149" x2="103" y2="149" class="line"></line><line x1="103" y1="149" x2="161" y2="149" class="line"></line><line x1="29" y1="139" x2="29" y2="159" class="line"></line><line x1="171" y1="159" x2="171" y2="139" class="line"></line><line x1="29" y1="159" x2="29" y2="183" class="line"></line><line x1="171" y1="183" x2="171" y2="159" class="line"></line><path d="M29 183 Q29 193 39 193" class="line"></path><path d="M161 193 Q171 193 171 183" class="line"></path><a xlink:href="#Move" xlink:title="Move"><rect x="51" y="179" width="52" height="32"></rect><rect x="49" y="177" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="197">Move</text></a><line x1="39" y1="193" x2="49" y2="193" class="line"></line><line x1="101" y1="193" x2="111" y2="193" class="line"></line><line x1="111" y1="193" x2="161" y2="193" class="line"></line><line x1="29" y1="183" x2="29" y2="203" class="line"></line><line x1="171" y1="203" x2="171" y2="183" class="line"></line><line x1="29" y1="203" x2="29" y2="227" class="line"></line><line x1="171" y1="227" x2="171" y2="203" class="line"></line><path d="M29 227 Q29 237 39 237" class="line"></path><path d="M161 237 Q171 237 171 227" class="line"></path><a xlink:href="#Copy" xlink:title="Copy"><rect x="51" y="223" width="52" height="32"></rect><rect x="49" y="221" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="241">Copy</text></a><line x1="39" y1="237" x2="49" y2="237" class="line"></line><line x1="101" y1="237" x2="111" y2="237" class="line"></line><line x1="111" y1="237" x2="161" y2="237" class="line"></line><line x1="29" y1="227" x2="29" y2="247" class="line"></line><line x1="171" y1="247" x2="171" y2="227" class="line"></line><line x1="29" y1="247" x2="29" y2="271" class="line"></line><line x1="171" y1="271" x2="171" y2="247" class="line"></line><path d="M29 271 Q29 281 39 281" class="line"></path><path d="M161 281 Q171 281 171 271" class="line"></path><a xlink:href="#Create" xlink:title="Create"><rect x="51" y="267" width="62" height="32"></rect><rect x="49" y="265" width="62" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="285">Create</text></a><line x1="39" y1="281" x2="49" y2="281" class="line"></line><line x1="111" y1="281" x2="121" y2="281" class="line"></line><line x1="121" y1="281" x2="161" y2="281" class="line"></line><line x1="29" y1="271" x2="29" y2="291" class="line"></line><line x1="171" y1="291" x2="171" y2="271" class="line"></line><line x1="29" y1="291" x2="29" y2="315" class="line"></line><line x1="171" y1="315" x2="171" y2="291" class="line"></line><path d="M29 315 Q29 325 39 325" class="line"></path><path d="M161 325 Q171 325 171 315" class="line"></path><a xlink:href="#InsertData" xlink:title="InsertData"><rect x="51" y="311" width="88" height="32"></rect><rect x="49" y="309" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="329">InsertData</text></a><line x1="39" y1="325" x2="49" y2="325" class="line"></line><line x1="137" y1="325" x2="147" y2="325" class="line"></line><line x1="147" y1="325" x2="161" y2="325" class="line"></line><line x1="29" y1="315" x2="29" y2="335" class="line"></line><line x1="171" y1="335" x2="171" y2="315" class="line"></line><line x1="29" y1="335" x2="29" y2="359" class="line"></line><line x1="171" y1="359" x2="171" y2="335" class="line"></line><path d="M29 359 Q29 369 39 369" class="line"></path><path d="M161 369 Q171 369 171 359" class="line"></path><a xlink:href="#DeleteData" xlink:title="DeleteData"><rect x="51" y="355" width="90" height="32"></rect><rect x="49" y="353" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="373">DeleteData</text></a><line x1="39" y1="369" x2="49" y2="369" class="line"></line><line x1="139" y1="369" x2="149" y2="369" class="line"></line><line x1="149" y1="369" x2="161" y2="369" class="line"></line><line x1="29" y1="359" x2="29" y2="379" class="line"></line><line x1="171" y1="379" x2="171" y2="359" class="line"></line><line x1="29" y1="379" x2="29" y2="403" class="line"></line><line x1="171" y1="403" x2="171" y2="379" class="line"></line><path d="M29 403 Q29 413 39 413" class="line"></path><path d="M161 413 Q171 413 171 403" class="line"></path><a xlink:href="#DeleteWhere" xlink:title="DeleteWhere"><rect x="51" y="399" width="102" height="32"></rect><rect x="49" y="397" width="102" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="417">DeleteWhere</text></a><line x1="39" y1="413" x2="49" y2="413" class="line"></line><line x1="151" y1="413" x2="161" y2="413" class="line"></line><line x1="29" y1="403" x2="29" y2="423" class="line"></line><line x1="171" y1="423" x2="171" y2="403" class="line"></line><line x1="29" y1="423" x2="29" y2="447" class="line"></line><line x1="171" y1="447" x2="171" y2="423" class="line"></line><path d="M29 447 Q29 457 39 457" class="line"></path><path d="M161 457 Q171 457 171 447" class="line"></path><a xlink:href="#Modify" xlink:title="Modify"><rect x="51" y="443" width="60" height="32"></rect><rect x="49" y="441" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="461">Modify</text></a><line x1="39" y1="457" x2="49" y2="457" class="line"></line><line x1="109" y1="457" x2="119" y2="457" class="line"></line><line x1="119" y1="457" x2="161" y2="457" class="line"></line><line x1="184" y1="17" x2="181" y2="17" class="line"></line><polygon points="191 17 199 13 199 21" class="filled"></polygon><polygon points="191 17 183 13 183 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update" title="Update">Update</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Load">Load:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="506" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="58" height="32" rx="10"></rect><rect x="29" y="1" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">LOAD</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><rect x="129" y="3" width="68" height="32" rx="10"></rect><rect x="127" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="137" y="21">SILENT</text><line x1="117" y1="17" x2="127" y2="17" class="line"></line><line x1="195" y1="17" x2="205" y2="17" class="line"></line><line x1="97" y1="17" x2="117" y2="17" class="line"></line><line x1="205" y1="17" x2="225" y2="17" class="line"></line><path d="M97 17 Q107 17 107 27" class="line"></path><path d="M215 27 Q215 17 225 17" class="line"></path><line x1="107" y1="27" x2="107" y2="41" class="line"></line><line x1="215" y1="41" x2="215" y2="27" class="line"></line><path d="M107 41 Q107 51 117 51" class="line"></path><path d="M205 51 Q215 51 215 41" class="line"></path><line x1="117" y1="51" x2="127" y2="51" class="line"></line><line x1="127" y1="51" x2="205" y2="51" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="237" y="3" width="30" height="32"></rect><rect x="235" y="1" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="245" y="21">iri</text></a><line x1="225" y1="17" x2="235" y2="17" class="line"></line><line x1="265" y1="17" x2="275" y2="17" class="line"></line><rect x="307" y="3" width="54" height="32" rx="10"></rect><rect x="305" y="1" width="54" height="32" class="terminal" rx="10"></rect><text class="terminal" x="315" y="21">INTO</text><line x1="295" y1="17" x2="305" y2="17" class="line"></line><line x1="359" y1="17" x2="369" y2="17" class="line"></line><a xlink:href="#GraphRef" xlink:title="GraphRef"><rect x="381" y="3" width="78" height="32"></rect><rect x="379" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="389" y="21">GraphRef</text></a><line x1="369" y1="17" x2="379" y2="17" class="line"></line><line x1="457" y1="17" x2="467" y2="17" class="line"></line><line x1="275" y1="17" x2="295" y2="17" class="line"></line><line x1="467" y1="17" x2="487" y2="17" class="line"></line><path d="M275 17 Q285 17 285 27" class="line"></path><path d="M477 27 Q477 17 487 17" class="line"></path><line x1="285" y1="27" x2="285" y2="41" class="line"></line><line x1="477" y1="41" x2="477" y2="27" class="line"></line><path d="M285 41 Q285 51 295 51" class="line"></path><path d="M467 51 Q477 51 477 41" class="line"></path><line x1="295" y1="51" x2="305" y2="51" class="line"></line><line x1="305" y1="51" x2="467" y2="51" class="line"></line><line x1="490" y1="17" x2="487" y2="17" class="line"></line><polygon points="497 17 505 13 505 21" class="filled"></polygon><polygon points="497 17 489 13 489 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Clear">Clear:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="62" height="32" rx="10"></rect><rect x="29" y="1" width="62" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">CLEAR</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="91" y1="17" x2="101" y2="17" class="line"></line><rect x="133" y="3" width="68" height="32" rx="10"></rect><rect x="131" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="21">SILENT</text><line x1="121" y1="17" x2="131" y2="17" class="line"></line><line x1="199" y1="17" x2="209" y2="17" class="line"></line><line x1="101" y1="17" x2="121" y2="17" class="line"></line><line x1="209" y1="17" x2="229" y2="17" class="line"></line><path d="M101 17 Q111 17 111 27" class="line"></path><path d="M219 27 Q219 17 229 17" class="line"></path><line x1="111" y1="27" x2="111" y2="41" class="line"></line><line x1="219" y1="41" x2="219" y2="27" class="line"></line><path d="M111 41 Q111 51 121 51" class="line"></path><path d="M209 51 Q219 51 219 41" class="line"></path><line x1="121" y1="51" x2="131" y2="51" class="line"></line><line x1="131" y1="51" x2="209" y2="51" class="line"></line><a xlink:href="#GraphRefAll" xlink:title="GraphRefAll"><rect x="241" y="3" width="92" height="32"></rect><rect x="239" y="1" width="92" height="32" class="nonterminal"></rect><text class="nonterminal" x="249" y="21">GraphRefAll</text></a><line x1="229" y1="17" x2="239" y2="17" class="line"></line><line x1="331" y1="17" x2="341" y2="17" class="line"></line><line x1="344" y1="17" x2="341" y2="17" class="line"></line><polygon points="351 17 359 13 359 21" class="filled"></polygon><polygon points="351 17 343 13 343 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Drop">Drop:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="356" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="58" height="32" rx="10"></rect><rect x="29" y="1" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">DROP</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><rect x="129" y="3" width="68" height="32" rx="10"></rect><rect x="127" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="137" y="21">SILENT</text><line x1="117" y1="17" x2="127" y2="17" class="line"></line><line x1="195" y1="17" x2="205" y2="17" class="line"></line><line x1="97" y1="17" x2="117" y2="17" class="line"></line><line x1="205" y1="17" x2="225" y2="17" class="line"></line><path d="M97 17 Q107 17 107 27" class="line"></path><path d="M215 27 Q215 17 225 17" class="line"></path><line x1="107" y1="27" x2="107" y2="41" class="line"></line><line x1="215" y1="41" x2="215" y2="27" class="line"></line><path d="M107 41 Q107 51 117 51" class="line"></path><path d="M205 51 Q215 51 215 41" class="line"></path><line x1="117" y1="51" x2="127" y2="51" class="line"></line><line x1="127" y1="51" x2="205" y2="51" class="line"></line><a xlink:href="#GraphRefAll" xlink:title="GraphRefAll"><rect x="237" y="3" width="92" height="32"></rect><rect x="235" y="1" width="92" height="32" class="nonterminal"></rect><text class="nonterminal" x="245" y="21">GraphRefAll</text></a><line x1="225" y1="17" x2="235" y2="17" class="line"></line><line x1="327" y1="17" x2="337" y2="17" class="line"></line><line x1="340" y1="17" x2="337" y2="17" class="line"></line><polygon points="347 17 355 13 355 21" class="filled"></polygon><polygon points="347 17 339 13 339 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Create">Create:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="354" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="70" height="32" rx="10"></rect><rect x="29" y="1" width="70" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">CREATE</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="99" y1="17" x2="109" y2="17" class="line"></line><rect x="141" y="3" width="68" height="32" rx="10"></rect><rect x="139" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="149" y="21">SILENT</text><line x1="129" y1="17" x2="139" y2="17" class="line"></line><line x1="207" y1="17" x2="217" y2="17" class="line"></line><line x1="109" y1="17" x2="129" y2="17" class="line"></line><line x1="217" y1="17" x2="237" y2="17" class="line"></line><path d="M109 17 Q119 17 119 27" class="line"></path><path d="M227 27 Q227 17 237 17" class="line"></path><line x1="119" y1="27" x2="119" y2="41" class="line"></line><line x1="227" y1="41" x2="227" y2="27" class="line"></line><path d="M119 41 Q119 51 129 51" class="line"></path><path d="M217 51 Q227 51 227 41" class="line"></path><line x1="129" y1="51" x2="139" y2="51" class="line"></line><line x1="139" y1="51" x2="217" y2="51" class="line"></line><a xlink:href="#GraphRef" xlink:title="GraphRef"><rect x="249" y="3" width="78" height="32"></rect><rect x="247" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="257" y="21">GraphRef</text></a><line x1="237" y1="17" x2="247" y2="17" class="line"></line><line x1="325" y1="17" x2="335" y2="17" class="line"></line><line x1="338" y1="17" x2="335" y2="17" class="line"></line><polygon points="345 17 353 13 353 21" class="filled"></polygon><polygon points="345 17 337 13 337 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Add">Add:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="568" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="48" height="32" rx="10"></rect><rect x="29" y="1" width="48" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">ADD</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="77" y1="17" x2="87" y2="17" class="line"></line><rect x="119" y="3" width="68" height="32" rx="10"></rect><rect x="117" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="127" y="21">SILENT</text><line x1="107" y1="17" x2="117" y2="17" class="line"></line><line x1="185" y1="17" x2="195" y2="17" class="line"></line><line x1="87" y1="17" x2="107" y2="17" class="line"></line><line x1="195" y1="17" x2="215" y2="17" class="line"></line><path d="M87 17 Q97 17 97 27" class="line"></path><path d="M205 27 Q205 17 215 17" class="line"></path><line x1="97" y1="27" x2="97" y2="41" class="line"></line><line x1="205" y1="41" x2="205" y2="27" class="line"></line><path d="M97 41 Q97 51 107 51" class="line"></path><path d="M195 51 Q205 51 205 41" class="line"></path><line x1="107" y1="51" x2="117" y2="51" class="line"></line><line x1="117" y1="51" x2="195" y2="51" class="line"></line><a xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault"><rect x="227" y="3" width="118" height="32"></rect><rect x="225" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="235" y="21">GraphOrDefault</text></a><line x1="215" y1="17" x2="225" y2="17" class="line"></line><line x1="343" y1="17" x2="353" y2="17" class="line"></line><rect x="365" y="3" width="38" height="32" rx="10"></rect><rect x="363" y="1" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="373" y="21">TO</text><line x1="353" y1="17" x2="363" y2="17" class="line"></line><line x1="401" y1="17" x2="411" y2="17" class="line"></line><a xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault"><rect x="423" y="3" width="118" height="32"></rect><rect x="421" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="431" y="21">GraphOrDefault</text></a><line x1="411" y1="17" x2="421" y2="17" class="line"></line><line x1="539" y1="17" x2="549" y2="17" class="line"></line><line x1="552" y1="17" x2="549" y2="17" class="line"></line><polygon points="559 17 567 13 567 21" class="filled"></polygon><polygon points="559 17 551 13 551 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Move">Move:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="578" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="58" height="32" rx="10"></rect><rect x="29" y="1" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">MOVE</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><rect x="129" y="3" width="68" height="32" rx="10"></rect><rect x="127" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="137" y="21">SILENT</text><line x1="117" y1="17" x2="127" y2="17" class="line"></line><line x1="195" y1="17" x2="205" y2="17" class="line"></line><line x1="97" y1="17" x2="117" y2="17" class="line"></line><line x1="205" y1="17" x2="225" y2="17" class="line"></line><path d="M97 17 Q107 17 107 27" class="line"></path><path d="M215 27 Q215 17 225 17" class="line"></path><line x1="107" y1="27" x2="107" y2="41" class="line"></line><line x1="215" y1="41" x2="215" y2="27" class="line"></line><path d="M107 41 Q107 51 117 51" class="line"></path><path d="M205 51 Q215 51 215 41" class="line"></path><line x1="117" y1="51" x2="127" y2="51" class="line"></line><line x1="127" y1="51" x2="205" y2="51" class="line"></line><a xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault"><rect x="237" y="3" width="118" height="32"></rect><rect x="235" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="245" y="21">GraphOrDefault</text></a><line x1="225" y1="17" x2="235" y2="17" class="line"></line><line x1="353" y1="17" x2="363" y2="17" class="line"></line><rect x="375" y="3" width="38" height="32" rx="10"></rect><rect x="373" y="1" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="383" y="21">TO</text><line x1="363" y1="17" x2="373" y2="17" class="line"></line><line x1="411" y1="17" x2="421" y2="17" class="line"></line><a xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault"><rect x="433" y="3" width="118" height="32"></rect><rect x="431" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="441" y="21">GraphOrDefault</text></a><line x1="421" y1="17" x2="431" y2="17" class="line"></line><line x1="549" y1="17" x2="559" y2="17" class="line"></line><line x1="562" y1="17" x2="559" y2="17" class="line"></line><polygon points="569 17 577 13 577 21" class="filled"></polygon><polygon points="569 17 561 13 561 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Copy">Copy:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="578" height="52"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="58" height="32" rx="10"></rect><rect x="29" y="1" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">COPY</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="87" y1="17" x2="97" y2="17" class="line"></line><rect x="129" y="3" width="68" height="32" rx="10"></rect><rect x="127" y="1" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="137" y="21">SILENT</text><line x1="117" y1="17" x2="127" y2="17" class="line"></line><line x1="195" y1="17" x2="205" y2="17" class="line"></line><line x1="97" y1="17" x2="117" y2="17" class="line"></line><line x1="205" y1="17" x2="225" y2="17" class="line"></line><path d="M97 17 Q107 17 107 27" class="line"></path><path d="M215 27 Q215 17 225 17" class="line"></path><line x1="107" y1="27" x2="107" y2="41" class="line"></line><line x1="215" y1="41" x2="215" y2="27" class="line"></line><path d="M107 41 Q107 51 117 51" class="line"></path><path d="M205 51 Q215 51 215 41" class="line"></path><line x1="117" y1="51" x2="127" y2="51" class="line"></line><line x1="127" y1="51" x2="205" y2="51" class="line"></line><a xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault"><rect x="237" y="3" width="118" height="32"></rect><rect x="235" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="245" y="21">GraphOrDefault</text></a><line x1="225" y1="17" x2="235" y2="17" class="line"></line><line x1="353" y1="17" x2="363" y2="17" class="line"></line><rect x="375" y="3" width="38" height="32" rx="10"></rect><rect x="373" y="1" width="38" height="32" class="terminal" rx="10"></rect><text class="terminal" x="383" y="21">TO</text><line x1="363" y1="17" x2="373" y2="17" class="line"></line><line x1="411" y1="17" x2="421" y2="17" class="line"></line><a xlink:href="#GraphOrDefault" xlink:title="GraphOrDefault"><rect x="433" y="3" width="118" height="32"></rect><rect x="431" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="441" y="21">GraphOrDefault</text></a><line x1="421" y1="17" x2="431" y2="17" class="line"></line><line x1="549" y1="17" x2="559" y2="17" class="line"></line><line x1="562" y1="17" x2="559" y2="17" class="line"></line><polygon points="569 17 577 13 577 21" class="filled"></polygon><polygon points="569 17 561 13 561 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="InsertData">InsertData:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="272" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="110" height="32" rx="10"></rect><rect x="29" y="1" width="110" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">INSERT DATA</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="139" y1="17" x2="149" y2="17" class="line"></line><a xlink:href="#QuadData" xlink:title="QuadData"><rect x="161" y="3" width="84" height="32"></rect><rect x="159" y="1" width="84" height="32" class="nonterminal"></rect><text class="nonterminal" x="169" y="21">QuadData</text></a><line x1="149" y1="17" x2="159" y2="17" class="line"></line><line x1="243" y1="17" x2="253" y2="17" class="line"></line><line x1="256" y1="17" x2="253" y2="17" class="line"></line><polygon points="263 17 271 13 271 21" class="filled"></polygon><polygon points="263 17 255 13 255 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="DeleteData">DeleteData:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="272" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="110" height="32" rx="10"></rect><rect x="29" y="1" width="110" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">DELETE DATA</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="139" y1="17" x2="149" y2="17" class="line"></line><a xlink:href="#QuadData" xlink:title="QuadData"><rect x="161" y="3" width="84" height="32"></rect><rect x="159" y="1" width="84" height="32" class="nonterminal"></rect><text class="nonterminal" x="169" y="21">QuadData</text></a><line x1="149" y1="17" x2="159" y2="17" class="line"></line><line x1="243" y1="17" x2="253" y2="17" class="line"></line><line x1="256" y1="17" x2="253" y2="17" class="line"></line><polygon points="263 17 271 13 271 21" class="filled"></polygon><polygon points="263 17 255 13 255 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="DeleteWhere">DeleteWhere:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="122" height="32" rx="10"></rect><rect x="29" y="1" width="122" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">DELETE WHERE</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="151" y1="17" x2="161" y2="17" class="line"></line><a xlink:href="#QuadPattern" xlink:title="QuadPattern"><rect x="173" y="3" width="100" height="32"></rect><rect x="171" y="1" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="181" y="21">QuadPattern</text></a><line x1="161" y1="17" x2="171" y2="17" class="line"></line><line x1="271" y1="17" x2="281" y2="17" class="line"></line><line x1="284" y1="17" x2="281" y2="17" class="line"></line><polygon points="291 17 299 13 299 21" class="filled"></polygon><polygon points="291 17 283 13 283 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="Modify">Modify:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="978" height="118"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 33 1 29 1 37" class="filled"></polygon><polygon points="17 33 9 29 9 37" class="filled"></polygon><line x1="17" y1="33" x2="19" y2="33" class="line"></line><rect x="51" y="19" width="58" height="32" rx="10"></rect><rect x="49" y="17" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="37">WITH</text><line x1="39" y1="33" x2="49" y2="33" class="line"></line><line x1="107" y1="33" x2="117" y2="33" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="129" y="19" width="30" height="32"></rect><rect x="127" y="17" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="137" y="37">iri</text></a><line x1="117" y1="33" x2="127" y2="33" class="line"></line><line x1="157" y1="33" x2="167" y2="33" class="line"></line><line x1="19" y1="33" x2="39" y2="33" class="line"></line><line x1="167" y1="33" x2="187" y2="33" class="line"></line><path d="M19 33 Q29 33 29 43" class="line"></path><path d="M177 43 Q177 33 187 33" class="line"></path><line x1="29" y1="43" x2="29" y2="57" class="line"></line><line x1="177" y1="57" x2="177" y2="43" class="line"></line><path d="M29 57 Q29 67 39 67" class="line"></path><path d="M167 67 Q177 67 177 57" class="line"></path><line x1="39" y1="67" x2="49" y2="67" class="line"></line><line x1="49" y1="67" x2="167" y2="67" class="line"></line><a xlink:href="#DeleteClause" xlink:title="DeleteClause"><rect x="219" y="19" width="104" height="32"></rect><rect x="217" y="17" width="104" height="32" class="nonterminal"></rect><text class="nonterminal" x="227" y="37">DeleteClause</text></a><line x1="207" y1="33" x2="217" y2="33" class="line"></line><line x1="321" y1="33" x2="331" y2="33" class="line"></line><a xlink:href="#InsertClause" xlink:title="InsertClause"><rect x="363" y="19" width="100" height="32"></rect><rect x="361" y="17" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="371" y="37">InsertClause</text></a><line x1="351" y1="33" x2="361" y2="33" class="line"></line><line x1="461" y1="33" x2="471" y2="33" class="line"></line><line x1="331" y1="33" x2="351" y2="33" class="line"></line><line x1="471" y1="33" x2="491" y2="33" class="line"></line><path d="M331 33 Q341 33 341 43" class="line"></path><path d="M481 43 Q481 33 491 33" class="line"></path><line x1="341" y1="43" x2="341" y2="57" class="line"></line><line x1="481" y1="57" x2="481" y2="43" class="line"></line><path d="M341 57 Q341 67 351 67" class="line"></path><path d="M471 67 Q481 67 481 57" class="line"></path><line x1="351" y1="67" x2="361" y2="67" class="line"></line><line x1="361" y1="67" x2="471" y2="67" class="line"></line><line x1="187" y1="33" x2="207" y2="33" class="line"></line><line x1="491" y1="33" x2="511" y2="33" class="line"></line><path d="M187 33 Q197 33 197 43" class="line"></path><path d="M501 43 Q501 33 511 33" class="line"></path><line x1="197" y1="43" x2="197" y2="89" class="line"></line><line x1="501" y1="89" x2="501" y2="43" class="line"></line><path d="M197 89 Q197 99 207 99" class="line"></path><path d="M491 99 Q501 99 501 89" class="line"></path><a xlink:href="#InsertClause" xlink:title="InsertClause"><rect x="219" y="85" width="100" height="32"></rect><rect x="217" y="83" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="227" y="103">InsertClause</text></a><line x1="207" y1="99" x2="217" y2="99" class="line"></line><line x1="317" y1="99" x2="327" y2="99" class="line"></line><line x1="327" y1="99" x2="491" y2="99" class="line"></line><a xlink:href="#UsingClause" xlink:title="UsingClause"><rect x="563" y="19" width="98" height="32"></rect><rect x="561" y="17" width="98" height="32" class="nonterminal"></rect><text class="nonterminal" x="571" y="37">UsingClause</text></a><line x1="551" y1="33" x2="561" y2="33" class="line"></line><line x1="659" y1="33" x2="669" y2="33" class="line"></line><path d="M531 33 L551 33 M550 33 Q541 33 541 23 L541 11 Q541 1 551 1" class="line"></path><path d="M669 33 L689 33 M669 33 Q679 33 679 23 L679 11 Q679 1 669 1" class="line"></path><line x1="551" y1="1" x2="561" y2="1" class="line"></line><line x1="561" y1="1" x2="669" y2="1" class="line"></line><line x1="511" y1="33" x2="531" y2="33" class="line"></line><line x1="689" y1="33" x2="709" y2="33" class="line"></line><path d="M511 33 Q521 33 521 43" class="line"></path><path d="M699 43 Q699 33 709 33" class="line"></path><line x1="521" y1="43" x2="521" y2="57" class="line"></line><line x1="699" y1="57" x2="699" y2="43" class="line"></line><path d="M521 57 Q521 67 531 67" class="line"></path><path d="M689 67 Q699 67 699 57" class="line"></path><line x1="531" y1="67" x2="541" y2="67" class="line"></line><line x1="541" y1="67" x2="689" y2="67" class="line"></line><rect x="721" y="19" width="68" height="32" rx="10"></rect><rect x="719" y="17" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="729" y="37">WHERE</text><line x1="709" y1="33" x2="719" y2="33" class="line"></line><line x1="787" y1="33" x2="797" y2="33" class="line"></line><a xlink:href="#GroupGraphPattern" xlink:title="GroupGraphPattern"><rect x="809" y="19" width="142" height="32"></rect><rect x="807" y="17" width="142" height="32" class="nonterminal"></rect><text class="nonterminal" x="817" y="37">GroupGraphPattern</text></a><line x1="797" y1="33" x2="807" y2="33" class="line"></line><line x1="949" y1="33" x2="959" y2="33" class="line"></line><line x1="962" y1="33" x2="959" y2="33" class="line"></line><polygon points="969 33 977 29 977 37" class="filled"></polygon><polygon points="969 33 961 29 961 37" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Update1" title="Update1">Update1</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="DeleteClause">DeleteClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="248" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="70" height="32" rx="10"></rect><rect x="29" y="1" width="70" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">DELETE</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="99" y1="17" x2="109" y2="17" class="line"></line><a xlink:href="#QuadPattern" xlink:title="QuadPattern"><rect x="121" y="3" width="100" height="32"></rect><rect x="119" y="1" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="129" y="21">QuadPattern</text></a><line x1="109" y1="17" x2="119" y2="17" class="line"></line><line x1="219" y1="17" x2="229" y2="17" class="line"></line><line x1="232" y1="17" x2="229" y2="17" class="line"></line><polygon points="239 17 247 13 247 21" class="filled"></polygon><polygon points="239 17 231 13 231 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Modify" title="Modify">Modify</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="InsertClause">InsertClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="248" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="70" height="32" rx="10"></rect><rect x="29" y="1" width="70" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">INSERT</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="99" y1="17" x2="109" y2="17" class="line"></line><a xlink:href="#QuadPattern" xlink:title="QuadPattern"><rect x="121" y="3" width="100" height="32"></rect><rect x="119" y="1" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="129" y="21">QuadPattern</text></a><line x1="109" y1="17" x2="119" y2="17" class="line"></line><line x1="219" y1="17" x2="229" y2="17" class="line"></line><line x1="232" y1="17" x2="229" y2="17" class="line"></line><polygon points="239 17 247 13 247 21" class="filled"></polygon><polygon points="239 17 231 13 231 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Modify" title="Modify">Modify</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="UsingClause">UsingClause:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="80"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="64" height="32" rx="10"></rect><rect x="29" y="1" width="64" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">USING</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="93" y1="17" x2="103" y2="17" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="135" y="3" width="30" height="32"></rect><rect x="133" y="1" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="143" y="21">iri</text></a><line x1="123" y1="17" x2="133" y2="17" class="line"></line><line x1="163" y1="17" x2="173" y2="17" class="line"></line><line x1="173" y1="17" x2="261" y2="17" class="line"></line><line x1="103" y1="17" x2="123" y2="17" class="line"></line><line x1="261" y1="17" x2="281" y2="17" class="line"></line><path d="M103 17 Q113 17 113 27" class="line"></path><path d="M271 27 Q271 17 281 17" class="line"></path><line x1="113" y1="27" x2="113" y2="51" class="line"></line><line x1="271" y1="51" x2="271" y2="27" class="line"></line><path d="M113 51 Q113 61 123 61" class="line"></path><path d="M261 61 Q271 61 271 51" class="line"></path><rect x="135" y="47" width="68" height="32" rx="10"></rect><rect x="133" y="45" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="143" y="65">NAMED</text><line x1="123" y1="61" x2="133" y2="61" class="line"></line><line x1="201" y1="61" x2="211" y2="61" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="223" y="47" width="30" height="32"></rect><rect x="221" y="45" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="231" y="65">iri</text></a><line x1="211" y1="61" x2="221" y2="61" class="line"></line><line x1="251" y1="61" x2="261" y2="61" class="line"></line><line x1="284" y1="17" x2="281" y2="17" class="line"></line><polygon points="291 17 299 13 299 21" class="filled"></polygon><polygon points="291 17 283 13 283 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Modify" title="Modify">Modify</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="GraphOrDefault">GraphOrDefault:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="254" height="96"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="51" y="3" width="80" height="32" rx="10"></rect><rect x="49" y="1" width="80" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">DEFAULT</text><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="129" y1="17" x2="139" y2="17" class="line"></line><line x1="139" y1="17" x2="215" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="215" y1="17" x2="235" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M225 27 Q225 17 235 17" class="line"></path><line x1="29" y1="27" x2="29" y2="51" class="line"></line><line x1="225" y1="51" x2="225" y2="27" class="line"></line><path d="M29 51 Q29 61 39 61" class="line"></path><path d="M215 61 Q225 61 225 51" class="line"></path><rect x="71" y="47" width="66" height="32" rx="10"></rect><rect x="69" y="45" width="66" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="65">GRAPH</text><line x1="59" y1="61" x2="69" y2="61" class="line"></line><line x1="135" y1="61" x2="145" y2="61" class="line"></line><line x1="39" y1="61" x2="59" y2="61" class="line"></line><line x1="145" y1="61" x2="165" y2="61" class="line"></line><path d="M39 61 Q49 61 49 71" class="line"></path><path d="M155 71 Q155 61 165 61" class="line"></path><line x1="49" y1="71" x2="49" y2="85" class="line"></line><line x1="155" y1="85" x2="155" y2="71" class="line"></line><path d="M49 85 Q49 95 59 95" class="line"></path><path d="M145 95 Q155 95 155 85" class="line"></path><line x1="59" y1="95" x2="69" y2="95" class="line"></line><line x1="69" y1="95" x2="145" y2="95" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="177" y="47" width="30" height="32"></rect><rect x="175" y="45" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="185" y="65">iri</text></a><line x1="165" y1="61" x2="175" y2="61" class="line"></line><line x1="205" y1="61" x2="215" y2="61" class="line"></line><line x1="238" y1="17" x2="235" y2="17" class="line"></line><polygon points="245 17 253 13 253 21" class="filled"></polygon><polygon points="245 17 237 13 237 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Add" title="Add">Add</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Copy" title="Copy">Copy</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Move" title="Move">Move</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="GraphRef">GraphRef:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="174" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><rect x="31" y="3" width="66" height="32" rx="10"></rect><rect x="29" y="1" width="66" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">GRAPH</text><line x1="19" y1="17" x2="29" y2="17" class="line"></line><line x1="95" y1="17" x2="105" y2="17" class="line"></line><a xlink:href="#iri" xlink:title="iri"><rect x="117" y="3" width="30" height="32"></rect><rect x="115" y="1" width="30" height="32" class="nonterminal"></rect><text class="nonterminal" x="125" y="21">iri</text></a><line x1="105" y1="17" x2="115" y2="17" class="line"></line><line x1="145" y1="17" x2="155" y2="17" class="line"></line><line x1="158" y1="17" x2="155" y2="17" class="line"></line><polygon points="165 17 173 13 173 21" class="filled"></polygon><polygon points="165 17 157 13 157 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Create" title="Create">Create</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#GraphRefAll" title="GraphRefAll">GraphRefAll</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Load" title="Load">Load</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="GraphRefAll">GraphRefAll:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="178" height="168"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
font-weight: bold;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFCC00; stroke: #332900;}
rect.nonterminal {fill: #FFEB99; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF5CC; stroke: #332900;}
</style></defs><polygon points="9 17 1 13 1 21" class="filled"></polygon><polygon points="17 17 9 13 9 21" class="filled"></polygon><line x1="17" y1="17" x2="19" y2="17" class="line"></line><a xlink:href="#GraphRef" xlink:title="GraphRef"><rect x="51" y="3" width="78" height="32"></rect><rect x="49" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">GraphRef</text></a><line x1="39" y1="17" x2="49" y2="17" class="line"></line><line x1="127" y1="17" x2="137" y2="17" class="line"></line><line x1="137" y1="17" x2="139" y2="17" class="line"></line><line x1="19" y1="17" x2="39" y2="17" class="line"></line><line x1="139" y1="17" x2="159" y2="17" class="line"></line><path d="M19 17 Q29 17 29 27" class="line"></path><path d="M149 27 Q149 17 159 17" class="line"></path><line x1="29" y1="27" x2="29" y2="51" class="line"></line><line x1="149" y1="51" x2="149" y2="27" class="line"></line><path d="M29 51 Q29 61 39 61" class="line"></path><path d="M139 61 Q149 61 149 51" class="line"></path><rect x="51" y="47" width="80" height="32" rx="10"></rect><rect x="49" y="45" width="80" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="65">DEFAULT</text><line x1="39" y1="61" x2="49" y2="61" class="line"></line><line x1="129" y1="61" x2="139" y2="61" class="line"></line><line x1="29" y1="51" x2="29" y2="71" class="line"></line><line x1="149" y1="71" x2="149" y2="51" class="line"></line><line x1="29" y1="71" x2="29" y2="95" class="line"></line><line x1="149" y1="95" x2="149" y2="71" class="line"></line><path d="M29 95 Q29 105 39 105" class="line"></path><path d="M139 105 Q149 105 149 95" class="line"></path><rect x="51" y="91" width="68" height="32" rx="10"></rect><rect x="49" y="89" width="68" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="109">NAMED</text><line x1="39" y1="105" x2="49" y2="105" class="line"></line><line x1="117" y1="105" x2="127" y2="105" class="line"></line><line x1="127" y1="105" x2="139" y2="105" class="line"></line><line x1="29" y1="95" x2="29" y2="115" class="line"></line><line x1="149" y1="115" x2="149" y2="95" class="line"></line><line x1="29" y1="115" x2="29" y2="139" class="line"></line><line x1="149" y1="139" x2="149" y2="115" class="line"></line><path d="M29 139 Q29 149 39 149" class="line"></path><path d="M139 149 Q149 149 149 139" class="line"></path><rect x="51" y="135" width="44" height="32" rx="10"></rect><rect x="49" y="133" width="44" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="153">ALL</text><line x1="39" y1="149" x2="49" y2="149" class="line"></line><line x1="93" y1="149" x2="103" y2="149" class="line"></line><line x1="103" y1="149" x2="139" y2="149" class="line"></line><line x1="162" y1="17" x2="159" y2="17" class="line"></line><polygon points="169 17 177 13 177 21" class="filled"></polygon><polygon points="169 17 161 13 161 21" class="filled"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:<xhtml:ul><xhtml:li><xhtml:a href="#Clear" title="Clear">Clear</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Drop" title="Drop">Drop</xhtml:a></xhtml:li></xhtml:ul></xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml"></xhtml:br><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="QuadPattern">QuadPattern:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="214" height="36"><defs><style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #4D3D00;
}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;