forked from DigitalKhatt/oldmadinafont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglyphs.mp
8147 lines (6410 loc) · 214 KB
/
glyphs.mp
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
defchar(allah,-1,2000,602,-24);
%%backgroundimage:images/Allah.jpg,-150.518,-1131.25,1,0,0,1
%%beginparams
z1 = (334.009,47.936);
z2 = (566.936,80.5363);
z3 = (571.855,-27.5849);
z4 = (316.455,-50.6365);
%%beginpaths
fill
(1.73611,39.3519) .. tension 1.08559 and 1.40034 ..
(91.5317,184.992) .. tension 1.18822 and 2.7276 ..
(192.515,260.128) .. tension 1.47366 and 1.45346 ..
{right}(233.181,352.592) .. tension 3.37403 and 10000 ..
(261.571,207.766) .. tension 2.25396 and 0.951134 ..
{right}z1 .. tension 1 and 1 ..
(385.452,65.3454) .. tension 0.791136 and 1.20485 ..
{up}(422.995,104.836) .. tension 2.53865 and 1.23111 ..
{up}(387.539,382.138) .. tension 2.02879 and 1.37353 ..
{right}(415.214,464.871) .. tension 1.36839 and 1.37187 ..
(441.165,417.921) .. tension 1.48638 and 2.23839 ..
(494.791,116.223) .. tension 2.19128 and 0.75 ..
{right}z2 .. tension 1 and 1.63689 ..
{up}(615.837,98.6687) .. tension 2.29228 and 1 ..
(574.652,222.511) .. tension 1 and 1.36007 ..
{up}(539.256,411.266) .. tension 1 and 1.69311 ..
{right}(575.575,492.894) .. tension 1.23227 and 1.23227 ..
{down}(598.958,460.069) .. tension 1 and 1 ..
(619.026,326.913) .. tension 1 and 0.75 ..
{down}(675.83,92.7856) .. tension 1.4891 and 0.75 ..
{left}z3 .. tension 0.855968 and 1.23383 ..
(478.931,4.11036) .. tension 1 and 8.22102 ..
{left}(446.47,33.2756) .. tension 21.6119 and 1 ..
(408.241,-13.2866) .. tension 1.17827 and 1 ..
{left}z4 .. tension 0.827491 and 1 ..
(230.057,8.97974) .. tension 1 and 4.43068 ..
{left}(200.758,68.831) .. tension 6.65058 and 1 ..
(174.672,40.5092) .. tension 1.45947 and 0.75 ..
{left}(70.6983,11.1883) .. tension 1 and 2.39869 ..
{up} cycle
;
fill
(88.5417,113.716) .. tension 3.83529 and 5.56227 ..
(198.978,127.797) .. tension 6.21562 and 4.22514 ..
{left}(195.506,194.059) .. tension 10.9839 and 2.52398 ..
{down} cycle
;
%%endpaths
%%beginbody
glyphs[allah].points[1] := z1;
glyphs[allah].points[2] := z2;
glyphs[allah].points[3] := z3;
glyphs[allah].points[4] := z4;
savepicture:=1;
enddefchar;
defchar(behmediyehfina,-1,1100,-1,-1);
%%backgroundimage:images/behmediyehfina.jpg,-2931.69,-1241.9,1,0,0,1
%%beginparams
z1 = (328.914,133.709);
z2 = (495,58);
z3 = (487,127);
z4 = (682,247);
z6 = (617,79);
%%beginverbatim
righttatweel_const := (52,-3);
%z5 = z4 - (0,lineheight);
z4 = z5 + joinvector;
%%endverbatim
%%beginpaths
fill
(27,28) .. tension 1.15253 and 3.3611 ..
{right}(106.688,250.075) .. tension 1 and 1 ..
{down}(111.549,241.741) .. tension 5.63294 and 0.757542 ..
{down}(59.4167,87.8056) .. tension 1 and 0.915494 ..
{right}(255.164,-76.5994) .. tension 0.992248 and 7.28829 ..
{up}(564.007,55.1932) .. tension 2.37563 and 1 ..
{left}z2 .. tension 0.75 and 1.23646 ..
{up}z1 .. tension 0.88586 and 1 ..
(413.934,303.418) .. tension 1 and 1.31753 ..
{right}(507.37,355.997) .. tension 1.65127 and 0.829391 ..
{right}z4 .. tension 0.990282 and 1 ..
(826,294) .. tension 1 and 2.17307 ..
{right}(886.823,394.929) .. tension 1 and 1 ..
{down}(890.447,379.447) .. tension 1.77855 and 1 ..
{down}(871.965,311.589) .. tension 4.24093 and 1.50218 ..
{right}(957.755,277.778) .. tension 1 and 1 ..
{up}(972.704,288.387) .. tension 1 and 1 ..
{up}(964.506,371.335) .. tension 1 and 5.11817 ..
{right}(990.548,450.907) .. tension 3.91941 and 1 ..
{down}(1011.34,315.837) .. tension 5.70435 and 0.84063 ..
{left}(940.394,192.419) .. tension 1 and 4.1596 ..
{left}(831.887,240.162) .. tension 5.64608 and 1 ..
(816.454,220.332) .. tension 1 and 1.31013 ..
{left}z5 .. tension 1.24883 and 1 ..
(562.771,206.155) .. tension 1 and 2.2613 ..
{left}(482.184,281.911) .. tension 1.93794 and 2.48175 ..
{down}(364.043,186.878) .. tension 1 and 1.07483 ..
{right}z3 .. tension 1 and 2.9362 ..
{right}(564.973,128.619) .. tension 1 and 1.87612 ..
{down}z6 .. tension 1.67143 and 1.27101 ..
{left}(243.127,-157.232) .. tension 0.907684 and 0.923566 ..
{up} cycle
;
%%endpaths
enddefchar;
defchar(lam_hah.init,-1,-1,-1,-1);
%%backgroundimage:images/lam_hah.jpg,-2275,-1322,1,0,0,1
%%beginparams
leftVerticalRatio := 6;
lefttatweel := 1.14;
z1 = (240.526,53.1637);
z3 = (99.2837,288.729);
z4 = (312.09,276.392);
z5 = (643.65,229.071);
%%beginverbatim
lefttatweel := charlt + 0;
%%endverbatim
%%beginpaths
fill
bldmvi ( z1, (-32.5,-12.6389) ) ..
bldmvi ( (169.089,23.0307), (-256.667,-85.6944) ) ..
bldmvi ( (132.006,18.758), (-610.139,-130.833) ) ..
bldmvi ( (123.044,18.3225), nuqta * (-7,-7 / leftVerticalRatio) ) link
bldmvi ( (149.654,106.573), (-602.639,-132.5) ) ..
bldmvi ( (181.237,109.858), (104.712,42.7263) ) ..
bldmvi ( (274.704,147.703), (53.3333,26.9444) ) .. tension 1 and 2.0868 ..
{up}(339.876,184.562) .. tension 10.8298 and 1.79081 ..
(229.926,211.323) .. tension 0.815564 and 3.20171 ..
{left}(113.343,219.514) .. tension 0.75 and 6.35213 ..
{left}(59.8623,197.764) .. tension 1.39544 and 1 ..
{up}(53.7016,206.034) .. tension 1.74599 ..
z3 .. tension 2.3758 and 6.46414 ..
{up}(296.226,318.129) .. tension 2.44495 and 2.44495 ..
(249.945,572.217) .. tension 1 and 7.35794 ..
(222.285,759.25) .. tension 1.66263 and 0.966451 ..
{up}(194.557,803.303) .. tension 1.88324 and 7.2459 ..
{right}(240.29,881.804) .. tension 22.6369 and 52.9346 ..
{down}(301.251,788.925) .. tension 1.17354 and 4.55519 ..
{down}(266.637,731.489) .. tension 4.87812 and 3.22481 ..
(321.065,451.85) .. tension 1.33352 and 3.40307 ..
{down}(326.718,330.69) .. tension 2.33188 and 3.30683 ..
{down}z4 .. tension 7.15165 and 1.05411 ..
(571.671,232.754) .. tension 1 and 1.14446 ..
{right}(638.508,235.235) .. tension 2.71262 and 0.75 ..
{down}z5 .. tension 7.62288 ..
{left}(589.319,146.203) .. tension 2.71262 and 0.75 ..
{left}(479.209,163.152) .. tension 1.01367 and 0.75 ..
(354.271,126.025) .. tension 1 and 1 ..
cycle
;
%%endpaths
enddefchar;
defchar(lamalef.isol,-1,680,-1,-1);
%%backgroundimage:images/lam.alef.jpg,-15028.6,-1007.68,1,0,0,1
%%beginparams
z1 = (420.498,66.433);
z2 = (297.271,-34.7893);
%%beginpaths
fill
(314.511,45.0547) .. tension 1.34374 and 1 ..
(418.083,135.055) .. tension 0.968917 and 0.818765 ..
{up}(504.793,390.497) .. tension 3.32247 and 3.93128 ..
{up}(510.735,560.557) .. tension 1.78394 and 1.41973 ..
{up}(508.099,603.248) .. tension 1 and 6.44873 ..
{right}(551.777,695.323) .. tension 1 and 1 ..
(558.798,683.811) .. tension 1 and 1 ..
(574.786,615.607) .. tension 1 and 2.70359 ..
{down}(608.595,586.364) .. tension 0.75 and 7.65451 ..
(564.066,516.581) .. tension 6.90433 and 2.12776 ..
(553.893,378.777) .. tension 0.823914 and 1.46144 ..
(478.562,155.379) .. tension 0.93248 and 3.79098 ..
{down}z1 .. tension 3.36951 and 9.7044 ..
(472.016,63.2229) .. tension 16.0521 and 0.75 ..
(380.78,253.512) .. tension 1 and 8.15346 ..
(247.868,411.346) .. tension 1.82294 and 2.55762 ..
{left}(172.002,477.837) .. tension 1.51642 and 3.05861 ..
{left}(134.622,470.259) .. tension 3.15275 and 1.18186 ..
{up}(40.5104,537.297) .. tension 1 and 1.885 ..
{right}(66.6082,634.434) .. tension 4.23328 and 0.830346 ..
(263.565,491.044) .. tension 1.34344 and 2.16394 ..
{down}(528.739,77.226) .. tension 1 and 6.48608 ..
(505.907,-16.2266) .. tension 27.3804 and 21.246 ..
{left}z2 .. tension 0.75 and 2.33151 ..
{up}(260.541,-17.2488) .. tension 3.94368 and 3.57896 ..
{right}(283.577,56.8397) .. tension 1.24669 and 1.17281 ..
{right} cycle
;
%%endpaths
%%beginbody
%charwd := xpart lrcorner currentpicture -x1 + rightbearing;
%currentpicture := currentpicture shifted (-x1,0);
%labels(1,2);
enddefchar;
defchar(behbeh,-1,680,-1,-1);
%%backgroundimage:images/beh.init_beh.jpg,-1607,-947,1,0,0,1
%%beginparams
z1 = (388.954,105);
z2 = (377.915,13.6396);
%%beginpaths
fill
(238.33,163) .. tension 2.22 and 0.75 ..
{right}z1 .. tension 1 and 1.08873 ..
{up}(420.66,118.34) .. tension 1 and 1 ..
{up}(410.995,212) .. tension 1 and 3.01697 ..
{right}(438.344,280.344) .. tension 2.19457 and 1 ..
{down}(472.689,171.665) .. tension 1 and 0.782649 ..
{left}z2 .. tension 0.75 and 7.29269 ..
{left}(229.665,67.302) .. tension 1 and 1 ..
bldmv ( (163.656,39.302), (37.6157,17.9398), (30.6713,4.05093) ) .. tension 1 and 1 ..
bldmv ( (79.8379,8.2598), (0,0), (69.7338,-2.12191) ) leftjoin
bldmv ( (73,93), (0,0), (90.5671,6.36574) ) .. tension 1 and 1 ..
bldmv ( (182.509,135.084), (0,0), (6.94444,-2.89352) ) .. tension 1 and 1.91014 ..
{right} cycle
;
%%endpaths
%%beginbody
%charwd := xpart lrcorner currentpicture -x1 + rightbearing;
%currentpicture := currentpicture shifted (-x1,0);
%labels(1,2);
enddefchar;
beginchar(notdef,0,-1,-1,-1);
%%backgroundimage:images/nodef.png,-752.949,-1178.7,8,0,0,8
%%beginpaths
fill
(-42.2071,588.054) .. tension 1 and 1 ..
{right}(165.312,781.92) .. tension 1 and 1 ..
{down}(350.438,636.595) .. tension 1 and 1 ..
{left}(279.936,518.4) .. tension 1 and 1 ..
{up}(186.624,586.829) .. tension 0.93744 and 1.09623 ..
{up}(256.666,697.075) .. tension 1 and 1 ..
{left}(184.55,740.275) .. tension 1 and 1 ..
{down}(78.7968,659.405) .. tension 1 and 1 ..
{down}(201.898,363.101) .. tension 1 and 3.43742 ..
{left}(168.269,223.776) .. tension 1.56096 and 1 ..
{up}(151.046,269.088) .. tension 1 and 1 ..
{up} cycle
;
fill
(73.6776,83.6076) .. tension 1 and 1 ..
(234.921,86.5935) .. tension 1 and 1 ..
cycle
;
%%endpaths
%%beginbody
% glyphname:space
%%begincomponents
%%endcomponents
endchar;
beginchar(null,1,-1,-1,-1);
%%beginbody
charwd := 0;
endchar;
beginchar(linefeed,10,-1,-1,-1);
%%beginbody
charwd := 0;
endchar;
beginchar(zwj,8205,-1,-1,-1);
%%beginbody
%847
charwd := 0;
endchar;
beginchar(cgj,847,-1,-1,-1);
%%beginbody
%847
charwd := 0;
endchar;
defchar(space,32,-1,-1,-1);
%%beginbody
charwd := 100 + lefttatweel *nuqta ;
enddefchar;
beginchar(space.ii,-1,-1,-1,-1);
%%beginbody
charwd := 0;
endchar;
beginchar(rubelhizb,1758,-1,-1,-1);
%%backgroundimage:images/hizb.jpg,-83.9299,-1330.16,1,0,0,1
%%beginparams
z1 = (850,503);
z2 = (419,1007);
%%beginpaths
controlledPath (0,6)(_pii)(
(683.667,610.5) {dir -13.9499} .. tension 0.772654 and 2.66474 ..
(808.578,541.206) .. tension 1 and 1.06215 ..
{down}z1 ..
{up} cycle
);
controlledPath (1,0)(_piii)(
(419.313,893.498) .. tension 3.60599 and 21.4143 ..
{down}(503.251,731.028) .. tension 1.84928 and 2.5898 ..
{left}(476.096,678.376) .. tension 1.34783 and 0.75 ..
{up}(466.901,712.146) .. tension 6.08006 and 2.40022 ..
{left}(419.556,798.1) .. tension 2.85131 ..
{right} cycle
);
controlledPath (3,0)(_piv)(
(788.877,y1) {up} .. tension 3.58293 and 1.33316 ..
{left}(686.38,577.457) .. tension 3.24976 and 1.11595 ..
{down}(602.538,542.2) .. tension 3.08007 and 1 ..
{right}(630.589,541.999) .. tension 1 and 1.61767 ..
{down}(712.042,y1) --
cycle
);
controlledPath (10,0)(_pi)(
z2 {right} .. tension 1.09798 and 1 ..
(451,947) .. tension 3.24976 and 3.31181 ..
{dir -96}(532,763) --
cycle
);
%%endpaths
%%beginbody
save _paths; path _paths[];
_paths0 := _pi;
_paths1 := _pii;
_paths2 := subpath(0,length _paths1 - 1) of _paths1;
points0 := point 2 of _paths2;
_paths3 := reverse _paths2 reflectedabout (z1, z1 + (10,0));
_paths4 := _paths2 .. controls postcontrol 0 of _paths3 and precontrol 1 of _paths3 .. subpath(1, length _paths3) of _paths3;
_paths5 := _paths4 shifted (point length _paths4 of _paths4 - point 0 of _paths4) rotatedaround (point length _paths4 of _paths4,-45);
_paths6 := _paths4 shifted -(point length _paths4 of _paths4 - point 0 of _paths4) rotatedaround (point 0 of _paths4,45);
_paths7 := subpath(0,1) of _paths0 .. controls postcontrol 1 of _paths0 and precontrol 2 of _paths0 .. point 0 of _paths6;
_paths8 := reverse _paths7 reflectedabout (z1, z1 + (10,0));
_paths10 := _paths7 & _paths6 & _paths4 & _paths5 .. _paths8;
fill _paths10 .. reverse _paths10 reflectedabout (z2, z2 + (0,10)) .. cycle ;
_paths11 := _piii; _paths12 := reverse subpath(0,length _paths11 - 1) of _paths11;
_paths13 := _paths12 .. reverse _paths12 reflectedabout (z2, z2 + (0,10)) .. cycle ; fill _paths13; fill reverse _paths13 reflectedabout (z1, z1 + (10,0));
_paths14 := _piv; _paths15 := subpath(0,length _paths14 - 1) of _paths14; _paths16 := _paths15 .. reverse _paths15 reflectedabout (z1, z1 + (10,0)) .. cycle;
z3 = (x2,y1);
fill _paths16;fill _paths16 rotatedaround (z3, 180);
fill _paths16 rotatedaround (z3, 45); fill _paths16 rotatedaround (z3, -45);
fill _paths16 rotatedaround (z3, 135); fill _paths16 rotatedaround (z3, -135);
fill fullcircle scaled 125 shifted z3;
fill fullcircle scaled 250 shifted z3;
currentpicture := currentpicture scaled 0.8 shifted (0,-150);
endchar;
beginchar(placeofsajdah,1769,-1,-1,-1);
%%backgroundimage:images/sajda.jpg,-1086.5,-1089.55,1,0,0,1
%%beginpaths
fill
(216.976,57.5783) .. tension 1 and 1 ..
{up}(239.326,92.239) .. tension 1 and 1 ..
{up}(231.626,330.504) .. tension 10.3117 and 0.75 ..
{up}(148.276,406.314) .. tension 1.03636 and 1.34025 ..
(307.999,562.339) .. tension 1 and 5.21582 ..
{right}(335.697,626.688) .. tension 7.853 and 1 ..
(372.178,563.172) .. tension 1.23371 and 1.00181 ..
{down}(539.931,417.245) .. tension 0.762728 and 6.87108 ..
{down}(471.644,347.801) .. tension 1 and 1.34752 ..
{down}(481.288,135.513) .. tension 0.916134 and 2.79655 ..
{down}(521.656,81.2328) .. tension 12.0083 and 5.3958 ..
(365.1,62.441) .. tension 5.4814 and 11.064 ..
{up} cycle
;
fill
(338.381,571.47) .. tension 7.79178 and 1 ..
(301.33,533.158) .. tension 1 and 1 ..
{down}(167.583,403.485) .. tension 0.777617 and 3.94323 ..
{down}(247.221,339.662) .. tension 1 and 1 ..
{down}(256.03,116.042) .. tension 1 and 1.41754 ..
{down}(251.419,71.0595) .. tension 13.6448 and 2.41969 ..
(369.571,74.3808) .. tension 2.18139 and 10.3562 ..
{up}(481.315,90.3108) .. tension 0.75 and 1 ..
{up}(463.543,131.637) .. tension 2.66531 and 1 ..
{up}(453.64,353.733) .. tension 3.40012 and 0.851637 ..
{up}(517.216,410.317) .. tension 1 and 1.00683 ..
(375.719,536.485) .. tension 1 and 3.10649 ..
{left} cycle
;
fill
(220.441,402.636) .. tension 1.86077 and 1 ..
(287.454,462.159) .. tension 1 and 2.92388 ..
{right}(339.698,505.529) .. tension 2.39921 and 1 ..
(394.901,465.787) .. tension 1 and 1.7426 ..
{down}(469.415,413.041) .. tension 0.978867 and 2.43577 ..
{down}(417.361,370.486) .. tension 1 and 1 ..
{down}(432.577,141.494) .. tension 3.59482 and 0.933838 ..
(358.91,126.914) .. tension 1 and 6.52764 ..
{up}(292.399,127.183) .. tension 1 and 1 ..
{up}(278.803,362.248) .. tension 3.25519 and 1.12185 ..
{up} cycle
;
%%endpaths
%%beginbody
leftbearing:=0;
rightbearing:=100;
endchar;
defchar(endofaya,1757,-1,-1,-1);
%%backgroundimage:images/aya2.JPG,-205.054,-919.225,1,0,0,1
%%beginparams
thickness_ := 20;
z1 = (441,727);
z1.n1 = (xpart.z1,-273);
z1.n2 = (xpart.z1,-249);
z1.n3 = (xpart.z1,-154);
z1.n4 = (xpart.z1,ypart.z1.n3 + thickness_);
z1.n5 = (xpart.z1,ypart.z1 - thickness_);
z2 = (440,786);
z3 = (882,282);
%%beginverbatim
%%endverbatim
%%beginpaths
fill
z1 ..
{dir 0}(467,725) {dir 140.227} ..
{up}z2 ..
{right}(530,873) ..
{down}(623,ypart.z2) ..
{dir -133.736}(607,741) {dir -11.7662} .. tension 0.906888 and 1 ..
{dir -38.019}(780,665) {dir 75.9387} .. tension 0.984617 and 1.1724 ..
{dir 9.32696}(851,746) {dir -92.5571} .. tension 1.17576 and 1 ..
(897,613) .. tension 1 and 1.45857 ..
{dir -58.1711}(987,523) {dir 34.7492} .. tension 0.760681 and 1.19379 ..
{dir 6.52681}(1058,542) {dir -116.849} .. tension 0.920526 and 1 ..
{down}(1029,413) .. tension 1 and 1 ..
(1036,262) .. tension 1 and 1 ..
{left}(1003,246) .. tension 1 and 0.75 ..
{dir 141.418}(973,258) {down} ..
{left}z1.n1 .. tension 1 and 1 ..
{right}z1.n2 ..
{up}(953,257) .. tension 1.06633 and 0.764259 ..
{dir 96.2847}(951,307) {dir -49.7743} ..
{right}(999,269) ..
{up}(1008,405) ..
{dir 61.522}(1028,515) {dir 174.326} .. tension 0.972502 and 1.52367 ..
{dir -99.1799}(938,419) {dir 90.999} .. tension 0.75354 and 1 ..
(937,471) .. tension 0.965318 and 1.04914 ..
{dir 48.295}(968,513) {dir 124.83} .. tension 1.47369 and 1 ..
(878,601) .. tension 1 and 0.75 ..
{dir 102.678}(833,710) {dir -156.685} .. tension 0.956759 and 4.83272 ..
{dir -70.6238}(801,539) {left} .. tension 4.76661 and 1.27814 ..
{dir 121.695}(780,565) .. tension 3.64246 and 1.01452 ..
{dir 85.7017}(776,645) {dir 135.318} .. tension 1.57031 and 1.00182 ..
{dir 173.721}(575,728) {dir 35.4839} ..
{up}(602,ypart.z2) ..
{left}(530,855) ..
{down}(461,ypart.z2) .. tension 0.975908 and 0.772607 ..
(624,689) .. tension 1.33082 and 1 ..
(786,558) ..
{down}z3 ..
{left}z1.n3 ..
{right}z1.n4 ..
{up}(xpart.z3 - thickness_,ypart.z3) ..
{left}z1.n5 ..
{right} cycle
;
%%endpaths
%%beginbody
path _p[];
_p0 := pathpart currentpicture;
currentpicture := nullpicture;
_p1 := subpath (ypart (z1 intersectiontimes _p0), ypart ( z1.n1 intersectiontimes _p0)) of _p0;
fill _p1 .. reverse (_p1 reflectedabout (z1,z1+(0,50))) .. cycle withcolor black;
_p1 := subpath (ypart (z1.n2 intersectiontimes _p0), ypart ( z1.n3 intersectiontimes _p0)) of _p0;
fill _p1 .. reverse (_p1 reflectedabout (z1,z1+(0,50))) .. cycle withcolor white;
_p1 := subpath (ypart (z1.n4 intersectiontimes _p0), ypart ( z1.n5 intersectiontimes _p0)) of _p0;
fill _p1 .. reverse (_p1 reflectedabout (z1,z1+(0,50))) .. cycle withcolor white;;
savepicture:=1;
currentpicture := currentpicture shifted (0,20) scaled 0.95;
enddefchar;
beginchar(endofaya.ii,-1,-1,-1,-1);
%%backgroundimage:images/hizb.jpg,-1277.59,-1060.2,1,0,0,1
%%beginparams
z1 = (407,1000);
%%beginverbatim
save _color; color _color[];
_color1 := (229.0/255,216.0/255,164.0/255); %dacc8f (yellow)
_color2:= (190.0/255,208.0/255,166.0/255); %bed0a6 (green)
%%endverbatim
%%beginpaths
controlledPath (0,0)(_pi)(
z1 .. tension 1.34662 and 1 ..
(431,960) .. tension 2.17161 and 1 ..
(505.307,881) .. tension 1 and 1 ..
(709.307,780) .. tension 0.75 and 1 ..
(903.307,652) .. tension 1 and 2.06235 ..
{down}(963.443,607) .. tension 2.53564 and 1 ..
{left}(869.926,545.965) .. tension 1 and 1 ..
{left}(768.114,555.716) .. tension 1 and 1.30863 ..
{left}(705.837,523.589) .. tension 1.57355 and 1 ..
{left}(541.041,622) .. tension 1 and 1.6568 ..
{left}(x1,550) .. tension 3.04005 and 10000 ..
{right} cycle
);
controlledPath (1,0)(_pii)(
(x1,601.834) .. tension 1 and 1 ..
{right}(540.452,662) .. tension 1 and 5.79299 ..
{right}(712.026,573.518) .. tension 1 and 0.75 ..
{right}(769.11,601) .. tension 1 and 1 ..
{right}(857.001,586.798) .. tension 1 and 2.67019 ..
{up}(910,597) .. tension 9.69283 and 1 ..
(697.305,746) .. tension 1 and 1 ..
(442.305,888) .. tension 1 and 2.77377 ..
(x1,930.166) .. tension 3.61131 and 3.89693 ..
{right} cycle
);
controlledPath (2,0)(_piii)(
(552.296,759.212) .. tension 4.26468 and 1 ..
(637.016,727.431) .. tension 1 and 6.10119 ..
{down}(720.965,669.876) .. tension 2.36638 and 1.96816 ..
{left}(691.248,633.295) .. tension 4.5127 and 1 ..
(609.816,681.713) .. tension 1 and 4.54003 ..
{up}(530.557,718.372) .. tension 2.1223 and 2.35586 ..
{right} cycle
);
%%endpaths
%%beginbody
path _path[];
z.center2 = (x1,y1 - 720);
picture _temppic;
_temppic := image(
_path1 := _pi;
_path2 := subpath(0,length _path1 -1) of _path1;
fill _path2 .. (reverse _path2 reflectedabout (z1, z1 + (0,10))) .. cycle;
_path3 := _pii;
_path4 := subpath(0,length _path3 -1 ) of _path3;
fill _path4 .. reverse _path4 reflectedabout (z1, z1 + (0,10)) .. cycle withcolor _color1;
_path5 := _piii;
fill _path5;
fill _path5 reflectedabout (z1, z1 + (0,10));
z.center = (x1,ypart point 0 of _path5);
fill fullcircle scaled 125 shifted z.center;
draw currentpicture reflectedabout (z.center2, z.center2 + (10,0));
);
fill fullcircle scaled 1120 shifted z.center2;
fill reverse fullcircle scaled 1030 shifted z.center2 withcolor _color1;
fill fullcircle scaled 940 shifted z.center2;
fill reverse fullcircle scaled 850 shifted z.center2 withcolor _color2;
draw _temppic;
currentpicture := currentpicture scaled 1.0467;
show currentwidth;
endchar;
defchar(one_dot,-1,-1,-1,-1);
%%backgroundimage:images/alef.isol.jpg,-2845.44,-653.853,1,0,0,1
%%beginpaths
fill
(-82.3849,42.1971) .. tension 1.46921 and 2.7974 ..
{right}(-40.9794,115.04) .. tension 1.36793 and 3.58612 ..
{down}(38.5069,76.673) .. tension 1.70766 and 2.99797 ..
{left}(-0.811701,2.16009) .. tension 1.02929 and 3.96234 ..
{up} cycle
;
%%endpaths
%%beginbody
tr_ := identity shifted (0,-ypart llcorner currentpicture);
leftbearing:=0;
savepicture:=1;
enddefchar;
defchar(two_dots,-1,-1,-1,-1);
%%backgroundimage:images/alef.isol.jpg,-1752.35,-1311.9,1,0,0,1
%%beginpaths
fill
(226.569,35.4306) .. tension 2.01595 and 2.78021 ..
{right}(280.759,101.538) .. tension 2.17451 and 3.64423 ..
{right}(337.701,71.588) .. tension 3.75734 and 1.83003 ..
{right}(398.22,119.876) .. tension 6.24659 and 4.08584 ..
{down}(454.634,67.7353) .. tension 8.41937 and 3.02118 ..
{left}(400.199,1.47251) .. tension 2.54187 and 2.97311 ..
{left}(342.992,32.1111) .. tension 3.14194 and 2.65824 ..
{left}(296.514,-9.85648) .. tension 5.07412 and 2.39164 ..
{up} cycle
;
%%endpaths
%%beginbody
%tr_ := identity shifted (0,-ypart llcorner currentpicture);
leftbearing:=0;
savepicture:=1;
enddefchar;
beginchar(onedotup,-1,-1,-1,-1);
%%beginbody
one_dot_(0,0);
endchar;
beginchar(onedotdown,-1,-1,-1,-1);
%%beginbody
one_dot_(0,0);
endchar;
beginchar(twodotsup,-1,-1,-1,-1);
%%beginbody
two_dots_(0,0);
endchar;
beginchar(twodotsdown,-1,-1,-1,-1);
%%beginbody
two_dots_(0,0);
endchar;
beginchar(three_dots,-1,-1,-1,-1);
%%backgroundimage:images/lam.alef.fina.jpg,-15368,-710,1,0,0,1
%%beginparams
z1 = (344.041,110.882);
%%beginbody
two_dots_(0,0);
draw image(one_dot_(0,0)) shifted z1;
leftbearing := 0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
endchar;
defchar(minikaf,-1,-1,-1,-1);
%%backgroundimage:images/minikaf.jpg,-101.535,-1117,1,0,0,1
%%beginpaths
fill
(174.982,205.475) .. tension 1.6784 and 1.33888 ..
{right}(182.536,218.134) .. tension 4.85985 and 2.8036 ..
{up}(294.117,251.491) .. tension 1.87337 and 0.75 ..
{up}(192.729,315.2) .. tension 1 and 2.02954 ..
{right}(322.305,485.91) .. tension 1 and 1.563 ..
{down}(350.791,457.397) .. tension 1.52995 and 1.31644 ..
{left}(313.32,394.869) .. tension 1.10481 and 1 ..
{left}(287.63,401.194) .. tension 1.37215 and 1.6639 ..
{down}(261.11,363.869) .. tension 1.89793 and 1.04835 ..
{down}(380.149,304.992) .. tension 1.16642 and 0.75 ..
{left}(248.892,180.957) .. tension 1 and 2.03546 ..
{up} cycle
;
%%endpaths
%%beginbody
leftbearing:=0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
savepicture:=1;
enddefchar;
defchar(fatha,1614,-1,-1,-1);
%%backgroundimage:images/fatha.jpg,-5046.28,-374.821,1,0,0,1
%%beginparams
z1 = (-3.1983,454.645);
%%beginverbatim
lefttatweel := lefttatweel - 0.9;
minLeft := -2;
maxLeft := 5;
x1 := nuqta * 7;
%%endverbatim
%%beginpaths
fill
bldmvi ( (-244.829,-6.34112), (0,0) ) .. tension 1.08991 and 1.4558 ..
{up}bldmvi ( (-258.277,20.7984), (0,0) ) .. tension 2.02037 and 2.06267 ..
bldmvi ( (-256.042,45.1523), (0,0) ) .. tension bldmvi ( 10.8154, 6.2409 ) and 5.91049 ..
bldmvi ( (-228.703,60.1886), (421.654,234.35) ) .. tension 4.06677 and 26.8638 ..
{right}bldmvi ( (-200.008,75.4713), (831.284,456.767) ) .. tension 1.32384 and 1 ..
{down}bldmvi ( (-188.488,49.2134), z1 ) .. tension 0.75 and 2.19215 ..
bldmvi ( (-191.505,22.5553), (830.376,456.356) ) .. tension 14.6732 and 1.55369 ..
bldmvi ( (-218.851,6.89728), (425.867,234.467) ) .. tension 4.27611 and 14.2287 ..
{left} cycle
;
%%endpaths
%%beginbody
leftbearing := 0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
savepicture:=1;
enddefchar;
defchar(kasra,1616,-1,-1,-1);
%%beginbody
fatha_(lefttatweel,0);
leftbearing := 0;
rightbearing := 0;
enddefchar;
beginchar(fathatan,1611,-1,-1,-1);
%%beginbody
picture _temppic;
_temppic := image(
fatha_(0,0);
);
draw _temppic;
draw _temppic shifted (0,120);
leftbearing := 0;
rightbearing := 0;
savepicture:=1;
endchar;
defchar(kasratanidgham,2290,-1,-1,-1);
%%beginbody
lefttatweel := lefttatweel - 0.5;
picture _temppic;
_temppic := image(
fatha_(lefttatweel,righttatweel);
);
draw _temppic;
z.ul = ulcorner _temppic;
z.ur = urcorner _temppic;
z.lr = lrcorner _temppic;
draw _temppic shifted (1/3(x.ul - x.ur), -(y.ur-y.lr));
enddefchar;
beginchar(kasratan,1613,-1,-1,-1);
%%beginbody
leftbearing := rightbearing := 0;
drawcomp(fathatan,identity);
endchar;
defchar(fathatanidgham,2288,-1,-1,-1);
%%beginbody
lefttatweel := lefttatweel - 0.0;
picture _temppic;
_temppic := image(
fatha_(lefttatweel,righttatweel);
);
draw _temppic;
z.ul = ulcorner _temppic;
z.ur = urcorner _temppic;
z.lr = lrcorner _temppic;
%draw _temppic shifted (2/3(x.ul - x.ur), 50);
draw _temppic shifted (1.3/3(x.ul - x.ur), -1.0(y.ur-y.lr));
leftbearing := 0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
savepicture:=1;
enddefchar;
beginchar(damma,1615,-1,-1,-1);
%%backgroundimage:images/dammatan_idgham.jpg,-15216.6,-545.187,1,0,0,1
%%beginpaths
fill
(44,154) {up} .. tension 3.72783 and 1 ..
(111,205) .. tension 1 and 1.72538 ..
{dir 59.5174}(165.869,253.023) {dir 141.813} .. tension 1.85261 and 1 ..
{up}(136.182,299.935) .. tension 1.25258 and 2.0234 ..
{right}(228.854,421.486) .. tension 2.14999 and 0.787782 ..
(256.586,349.727) .. tension 1.70513 and 5.15758 ..
(249.707,287.695) .. tension 1.87818 and 1.29424 ..
(259,267) .. tension 1 and 1.63085 ..
{dir -135.002}(238,213) {dir -174.021} .. tension 3.29661 and 1.30381 ..
{dir 136.59}(205.253,231.682) {dir -128.343} .. tension 0.903761 and 1 ..
(149,181) .. tension 1.00116 and 2.37559 ..
{left}(58,148) .. tension 1 and 1 ..
cycle
;
fill
(178.568,332.014) {dir -58.4221} .. tension 1.89258 and 1.78891 ..
{dir -18.8158}(210.337,308.323) .. tension 3.3732 and 3.36972 ..
{left}(205.896,361.221) .. tension 1.6707 ..
{curl1} cycle
;
%%endpaths
%%beginbody
leftbearing := 0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
savepicture:=1;
endchar;
beginchar(damma.ii,-1,-1,-1,-1);
%%backgroundimage:images/alef.isol.jpg,-12143.6,-801.943,1,0,0,1
%%beginpaths
fill
(8.19828,123.456) {up} .. tension 3.72783 and 1 ..
(91.2528,199.238) .. tension 1 and 1.72538 ..
{dir 59.5174}(177.925,278.341) {dir 141.813} .. tension 1.85261 and 1 ..
{up}(125.331,352.179) .. tension 1.25258 and 2.0234 ..
{right}(206.349,456.851) .. tension 1 and 1 ..
{down}(251.763,372.634) .. tension 1 and 3.72636 ..
(247.698,324.266) .. tension 3.50022 and 1.29424 ..
(291.522,292.031) .. tension 1 and 1.63085 ..
{dir -135.002}(276.452,236.773) {dir -173.659} .. tension 1.76597 and 1.30381 ..
{dir 136.59}(220.524,262.225) {dir -130.21} .. tension 0.841978 and 1 ..
(136.618,182.257) .. tension 1.00116 and 2.37559 ..
{left}(22.2104,116.679) .. tension 1 and 1 ..
cycle
;
fill
(170.128,362.557) {dir -58.4221} .. tension 1.89258 and 4.13835 ..
{dir 26.1677}(205.514,340.071) .. tension 5.59808 and 1.84408 ..
{left}(198.26,394.175) .. tension 1.6707 ..
{curl1} cycle
;
%%endpaths
%%beginbody
leftbearing := 0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
savepicture:=1;
endchar;
beginchar(damma.iii,-1,-1,-1,-1);
%%backgroundimage:images/dammatan_idgham.jpg,-15216.6,-545.187,1,0,0,1
%%beginpaths
fill
(8.19828,123.456) {up} .. tension 3.72783 and 1 ..
(96.0753,196.023) .. tension 1 and 1.72538 ..
{dir 59.5174}(165.869,253.023) {dir 141.813} .. tension 1.85261 and 1 ..
{up}(136.182,299.935) .. tension 1.25258 and 2.0234 ..
{right}(228.854,421.486) .. tension 2.14999 and 0.787782 ..
(256.586,349.727) .. tension 1.70513 and 5.15758 ..
(249.707,287.695) .. tension 1.87818 and 1.29424 ..
(280.269,251.039) .. tension 1 and 1.63085 ..
{dir -135.002}(261.583,198.595) {dir -174.021} .. tension 3.29661 and 1.30381 ..
{dir 136.59}(205.253,231.682) {dir -128.343} .. tension 0.903761 and 1 ..
(142.244,175.425) .. tension 1.00116 and 2.37559 ..
{left}(22.2104,116.679) .. tension 1 and 1 ..
cycle
;
fill
(178.568,332.014) {dir -58.4221} .. tension 1.89258 and 1.78891 ..
{dir -18.8158}(210.337,308.323) .. tension 3.3732 and 3.36972 ..
{left}(205.896,361.221) .. tension 1.6707 ..
{curl1} cycle
;
%%endpaths
%%beginbody
leftbearing := 0;
tr_ := identity shifted (0,-ypart llcorner currentpicture);
savepicture:=1;
endchar;
beginchar(dammatanidgham,2289,477,327,-2);
%%backgroundimage:images/dammatan_idgham.jpg,-11969,-568,1,0,0,1
%%beginbody
drawcomp(damma,identity scaled 0.9 rotated 5);
drawcomp(damma,identity shifted (120,-10));
leftbearing := 0;
rightbearing := 0;
currentpicture := currentpicture shifted (0,-ypart llcorner currentpicture);
endchar;
beginchar(dammatan,1612,-1,-1,-1);
%%backgroundimage:images/dammatan.jpg,-182.336,-574.239,1,0,0,1
%%beginpaths
fill
(36,100) .. tension 1.19572 and 1 ..
{up}(6,155) .. tension 1.16703 and 1.51384 ..
{right}(195,386) .. tension 1.43613 and 0.75 ..
{down}(253,329) .. tension 1 and 2.71424 ..
{left}(230,289) .. tension 1.66366 and 0.799644 ..
{left}(173,320) .. tension 1.72702 and 0.973461 ..
{down}(42,174) .. tension 0.75 and 0.997204 ..
{down}(63,140) .. tension 1.24169 and 1.7831 ..
{left} cycle
;
%%endpaths
%%beginbody
draw damma.pic;
currentpicture := currentpicture shifted (0,-ypart llcorner currentpicture);
leftbearing := 0;
rightbearing := 0;
endchar;
beginchar(dammatan.ii,-1,-1,-1,-1);
%%backgroundimage:images/dammatan.jpg,-167.29,-636.739,1,0,0,1
%%beginpaths
fill
(68.7096,132.162) .. tension 1.19572 and 1 ..
{up}(29.471,202.881) .. tension 1.16703 and 1.51384 ..
{right}(232.419,444.41) .. tension 1.43613 and 0.75 ..
{down}(290.133,387.421) .. tension 1 and 2.71424 ..
{left}(267.304,347.233) .. tension 1.66366 and 0.799644 ..
{left}(210.316,377.876) .. tension 1.72702 and 0.973461 ..
{down}(65.0372,222.238) .. tension 0.75 and 0.997204 ..
{down}(95.7808,172.071) .. tension 1.24169 and 1.7831 ..
{left} cycle
;
%%endpaths
%%beginbody
draw damma.pic;
currentpicture := currentpicture shifted (0,-ypart llcorner currentpicture);
leftbearing := 0;
rightbearing := 0;
endchar;
beginchar(shadda,1617,-1,-1,-1);
%%backgroundimage:images/beh.init.jpg,-3835.02,-514.861,1,0,0,1