-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathnginx.conf
More file actions
1026 lines (1011 loc) · 119 KB
/
Copy pathnginx.conf
File metadata and controls
1026 lines (1011 loc) · 119 KB
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
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
rewrite ^/mlt_web/bin/view/MLT/AuthoringExamples$ https://www.mltframework.org/docs/authoringexamples/ permanent;
rewrite ^/mlt_web/bin/view/MLT/BuildOnMe$ https://www.mltframework.org/buildonme/ permanent;
rewrite ^/mlt_web/bin/view/MLT/BuildScripts$ https://www.mltframework.org/docs/buildscripts/ permanent;
rewrite ^/mlt_web/bin/view/MLT/BuildTips$ https://www.mltframework.org/docs/buildtips/ permanent;
rewrite ^/mlt_web/bin/view/MLT/CodeExamples$ https://www.mltframework.org/docs/codeexamples/ permanent;
rewrite ^/mlt_web/bin/view/MLT/CodingStyleGuide$ https://www.mltframework.org/docs/codingstyleguide/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerAvformat$ https://www.mltframework.org/plugins/ConsumerAvformat/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerBlipflash$ https://www.mltframework.org/plugins/ConsumerBlipflash/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerCbrts$ https://www.mltframework.org/plugins/ConsumerCbrts/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerCbrtsMore$ https://www.mltframework.org/plugins/ConsumerCbrtsMore/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerDecklink$ https://www.mltframework.org/plugins/ConsumerDecklink/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerGtk2_preview$ https://www.mltframework.org/plugins/ConsumerGtk2_preview/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerJack$ https://www.mltframework.org/plugins/ConsumerJack/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerLibdv$ https://www.mltframework.org/plugins/ConsumerLibdv/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerMulti$ https://www.mltframework.org/plugins/ConsumerMulti/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerRtaudio$ https://www.mltframework.org/plugins/ConsumerRtaudio/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerSdi$ https://www.mltframework.org/plugins/ConsumerSdi/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerSdl$ https://www.mltframework.org/plugins/ConsumerSdl/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerSdl_audio$ https://www.mltframework.org/plugins/ConsumerSdl_audio/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerSdl_preview$ https://www.mltframework.org/plugins/ConsumerSdl_preview/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerSdl_still$ https://www.mltframework.org/plugins/ConsumerSdl_still/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ConsumerXml$ https://www.mltframework.org/plugins/ConsumerXml/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Contributing$ https://www.mltframework.org/docs/contributing/ permanent;
rewrite ^/mlt_web/bin/view/MLT/CopyrightPolicy$ https://www.mltframework.org/docs/copyrightpolicy/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Documentation$ https://www.mltframework.org/docs/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ExtremeMakeover$ https://www.mltframework.org/changes/ExtremeMakeover/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Features$ https://www.mltframework.org/features/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAffine$ https://www.mltframework.org/plugins/FilterAffine/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAudiolevel$ https://www.mltframework.org/plugins/FilterAudiolevel/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAudiomap$ https://www.mltframework.org/plugins/FilterAudiomap/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAudiospectrum$ https://www.mltframework.org/plugins/FilterAudiospectrum/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAudiowave$ https://www.mltframework.org/plugins/FilterAudiowave/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAudiowaveform$ https://www.mltframework.org/plugins/FilterAudiowaveform/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAutotrackRectangleDiscussion$ https://www.mltframework.org/docs/FilterAutotrackRectangleDiscussion/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAutotrack_rectangle$ https://www.mltframework.org/plugins/FilterAutotrack_rectangle/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-abench$ https://www.mltframework.org/plugins/FilterAvfilter-abench/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-acompressor$ https://www.mltframework.org/plugins/FilterAvfilter-acompressor/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-adelay$ https://www.mltframework.org/plugins/FilterAvfilter-adelay/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-aecho$ https://www.mltframework.org/plugins/FilterAvfilter-aecho/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-aemphasis$ https://www.mltframework.org/plugins/FilterAvfilter-aemphasis/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-aeval$ https://www.mltframework.org/plugins/FilterAvfilter-aeval/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-afade$ https://www.mltframework.org/plugins/FilterAvfilter-afade/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-afftfilt$ https://www.mltframework.org/plugins/FilterAvfilter-afftfilt/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-agate$ https://www.mltframework.org/plugins/FilterAvfilter-agate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-alimiter$ https://www.mltframework.org/plugins/FilterAvfilter-alimiter/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-allpass$ https://www.mltframework.org/plugins/FilterAvfilter-allpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-aloop$ https://www.mltframework.org/plugins/FilterAvfilter-aloop/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-ametadata$ https://www.mltframework.org/plugins/FilterAvfilter-ametadata/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-aphaser$ https://www.mltframework.org/plugins/FilterAvfilter-aphaser/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-apulsator$ https://www.mltframework.org/plugins/FilterAvfilter-apulsator/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-arealtime$ https://www.mltframework.org/plugins/FilterAvfilter-arealtime/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-areverse$ https://www.mltframework.org/plugins/FilterAvfilter-areverse/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-ashowinfo$ https://www.mltframework.org/plugins/FilterAvfilter-ashowinfo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-astats$ https://www.mltframework.org/plugins/FilterAvfilter-astats/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-atadenoise$ https://www.mltframework.org/plugins/FilterAvfilter-atadenoise/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-bandpass$ https://www.mltframework.org/plugins/FilterAvfilter-bandpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-bandreject$ https://www.mltframework.org/plugins/FilterAvfilter-bandreject/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-bass$ https://www.mltframework.org/plugins/FilterAvfilter-bass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-bbox$ https://www.mltframework.org/plugins/FilterAvfilter-bbox/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-bench$ https://www.mltframework.org/plugins/FilterAvfilter-bench/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-biquad$ https://www.mltframework.org/plugins/FilterAvfilter-biquad/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-boxblur$ https://www.mltframework.org/plugins/FilterAvfilter-boxblur/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-bwdif$ https://www.mltframework.org/plugins/FilterAvfilter-bwdif/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-channelmap$ https://www.mltframework.org/plugins/FilterAvfilter-channelmap/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-chorus$ https://www.mltframework.org/plugins/FilterAvfilter-chorus/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-chromakey$ https://www.mltframework.org/plugins/FilterAvfilter-chromakey/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-ciescope$ https://www.mltframework.org/plugins/FilterAvfilter-ciescope/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-colorchannelmixer$ https://www.mltframework.org/plugins/FilterAvfilter-colorchannelmixer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-colorkey$ https://www.mltframework.org/plugins/FilterAvfilter-colorkey/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-colorlevels$ https://www.mltframework.org/plugins/FilterAvfilter-colorlevels/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-colormatrix$ https://www.mltframework.org/plugins/FilterAvfilter-colormatrix/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-compand$ https://www.mltframework.org/plugins/FilterAvfilter-compand/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-compensationdelay$ https://www.mltframework.org/plugins/FilterAvfilter-compensationdelay/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-convolution$ https://www.mltframework.org/plugins/FilterAvfilter-convolution/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-crop$ https://www.mltframework.org/plugins/FilterAvfilter-crop/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-cropdetect$ https://www.mltframework.org/plugins/FilterAvfilter-cropdetect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-curves$ https://www.mltframework.org/plugins/FilterAvfilter-curves/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-datascope$ https://www.mltframework.org/plugins/FilterAvfilter-datascope/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-dcshift$ https://www.mltframework.org/plugins/FilterAvfilter-dcshift/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-dctdnoiz$ https://www.mltframework.org/plugins/FilterAvfilter-dctdnoiz/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-deband$ https://www.mltframework.org/plugins/FilterAvfilter-deband/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-deflate$ https://www.mltframework.org/plugins/FilterAvfilter-deflate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-delogo$ https://www.mltframework.org/plugins/FilterAvfilter-delogo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-deshake$ https://www.mltframework.org/plugins/FilterAvfilter-deshake/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-dilation$ https://www.mltframework.org/plugins/FilterAvfilter-dilation/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-drawbox$ https://www.mltframework.org/plugins/FilterAvfilter-drawbox/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-drawgraph$ https://www.mltframework.org/plugins/FilterAvfilter-drawgraph/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-drawgrid$ https://www.mltframework.org/plugins/FilterAvfilter-drawgrid/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-dynaudnorm$ https://www.mltframework.org/plugins/FilterAvfilter-dynaudnorm/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-earwax$ https://www.mltframework.org/plugins/FilterAvfilter-earwax/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-edgedetect$ https://www.mltframework.org/plugins/FilterAvfilter-edgedetect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-elbg$ https://www.mltframework.org/plugins/FilterAvfilter-elbg/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-eq$ https://www.mltframework.org/plugins/FilterAvfilter-eq/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-equalizer$ https://www.mltframework.org/plugins/FilterAvfilter-equalizer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-erosion$ https://www.mltframework.org/plugins/FilterAvfilter-erosion/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-extrastereo$ https://www.mltframework.org/plugins/FilterAvfilter-extrastereo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-fftfilt$ https://www.mltframework.org/plugins/FilterAvfilter-fftfilt/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-field$ https://www.mltframework.org/plugins/FilterAvfilter-field/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-fieldhint$ https://www.mltframework.org/plugins/FilterAvfilter-fieldhint/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-fieldorder$ https://www.mltframework.org/plugins/FilterAvfilter-fieldorder/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-find_rect$ https://www.mltframework.org/plugins/FilterAvfilter-find_rect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-firequalizer$ https://www.mltframework.org/plugins/FilterAvfilter-firequalizer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-flanger$ https://www.mltframework.org/plugins/FilterAvfilter-flanger/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-framerate$ https://www.mltframework.org/plugins/FilterAvfilter-framerate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-fspp$ https://www.mltframework.org/plugins/FilterAvfilter-fspp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-geq$ https://www.mltframework.org/plugins/FilterAvfilter-geq/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-gradfun$ https://www.mltframework.org/plugins/FilterAvfilter-gradfun/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-hflip$ https://www.mltframework.org/plugins/FilterAvfilter-hflip/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-highpass$ https://www.mltframework.org/plugins/FilterAvfilter-highpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-histeq$ https://www.mltframework.org/plugins/FilterAvfilter-histeq/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-histogram$ https://www.mltframework.org/plugins/FilterAvfilter-histogram/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-hqdn3d$ https://www.mltframework.org/plugins/FilterAvfilter-hqdn3d/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-hqx$ https://www.mltframework.org/plugins/FilterAvfilter-hqx/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-hue$ https://www.mltframework.org/plugins/FilterAvfilter-hue/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-idet$ https://www.mltframework.org/plugins/FilterAvfilter-idet/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-inflate$ https://www.mltframework.org/plugins/FilterAvfilter-inflate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-lenscorrection$ https://www.mltframework.org/plugins/FilterAvfilter-lenscorrection/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-loop$ https://www.mltframework.org/plugins/FilterAvfilter-loop/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-lowpass$ https://www.mltframework.org/plugins/FilterAvfilter-lowpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-lut$ https://www.mltframework.org/plugins/FilterAvfilter-lut/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-lut3d$ https://www.mltframework.org/plugins/FilterAvfilter-lut3d/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-lutrgb$ https://www.mltframework.org/plugins/FilterAvfilter-lutrgb/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-lutyuv$ https://www.mltframework.org/plugins/FilterAvfilter-lutyuv/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-metadata$ https://www.mltframework.org/plugins/FilterAvfilter-metadata/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-negate$ https://www.mltframework.org/plugins/FilterAvfilter-negate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-nnedi$ https://www.mltframework.org/plugins/FilterAvfilter-nnedi/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-noise$ https://www.mltframework.org/plugins/FilterAvfilter-noise/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-owdenoise$ https://www.mltframework.org/plugins/FilterAvfilter-owdenoise/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-pad$ https://www.mltframework.org/plugins/FilterAvfilter-pad/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-perspective$ https://www.mltframework.org/plugins/FilterAvfilter-perspective/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-pp$ https://www.mltframework.org/plugins/FilterAvfilter-pp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-pp7$ https://www.mltframework.org/plugins/FilterAvfilter-pp7/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-qp$ https://www.mltframework.org/plugins/FilterAvfilter-qp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-random$ https://www.mltframework.org/plugins/FilterAvfilter-random/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-realtime$ https://www.mltframework.org/plugins/FilterAvfilter-realtime/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-removegrain$ https://www.mltframework.org/plugins/FilterAvfilter-removegrain/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-removelogo$ https://www.mltframework.org/plugins/FilterAvfilter-removelogo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-reverse$ https://www.mltframework.org/plugins/FilterAvfilter-reverse/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-rotate$ https://www.mltframework.org/plugins/FilterAvfilter-rotate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-sab$ https://www.mltframework.org/plugins/FilterAvfilter-sab/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-selectivecolor$ https://www.mltframework.org/plugins/FilterAvfilter-selectivecolor/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-showinfo$ https://www.mltframework.org/plugins/FilterAvfilter-showinfo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-shuffleframes$ https://www.mltframework.org/plugins/FilterAvfilter-shuffleframes/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-shuffleplanes$ https://www.mltframework.org/plugins/FilterAvfilter-shuffleplanes/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-signalstats$ https://www.mltframework.org/plugins/FilterAvfilter-signalstats/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-silencedetect$ https://www.mltframework.org/plugins/FilterAvfilter-silencedetect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-smartblur$ https://www.mltframework.org/plugins/FilterAvfilter-smartblur/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-spp$ https://www.mltframework.org/plugins/FilterAvfilter-spp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-stereo3d$ https://www.mltframework.org/plugins/FilterAvfilter-stereo3d/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-stereotools$ https://www.mltframework.org/plugins/FilterAvfilter-stereotools/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-stereowiden$ https://www.mltframework.org/plugins/FilterAvfilter-stereowiden/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-super2xsai$ https://www.mltframework.org/plugins/FilterAvfilter-super2xsai/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-swaprect$ https://www.mltframework.org/plugins/FilterAvfilter-swaprect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-swapuv$ https://www.mltframework.org/plugins/FilterAvfilter-swapuv/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-tblend$ https://www.mltframework.org/plugins/FilterAvfilter-tblend/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-transpose$ https://www.mltframework.org/plugins/FilterAvfilter-transpose/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-treble$ https://www.mltframework.org/plugins/FilterAvfilter-treble/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-tremolo$ https://www.mltframework.org/plugins/FilterAvfilter-tremolo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-unsharp$ https://www.mltframework.org/plugins/FilterAvfilter-unsharp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-uspp$ https://www.mltframework.org/plugins/FilterAvfilter-uspp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-vectorscope$ https://www.mltframework.org/plugins/FilterAvfilter-vectorscope/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-vflip$ https://www.mltframework.org/plugins/FilterAvfilter-vflip/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-vibrato$ https://www.mltframework.org/plugins/FilterAvfilter-vibrato/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-vignette$ https://www.mltframework.org/plugins/FilterAvfilter-vignette/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-volume$ https://www.mltframework.org/plugins/FilterAvfilter-volume/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-volumedetect$ https://www.mltframework.org/plugins/FilterAvfilter-volumedetect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-w3fdif$ https://www.mltframework.org/plugins/FilterAvfilter-w3fdif/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-waveform$ https://www.mltframework.org/plugins/FilterAvfilter-waveform/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-xbr$ https://www.mltframework.org/plugins/FilterAvfilter-xbr/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterAvfilter-zoompan$ https://www.mltframework.org/plugins/FilterAvfilter-zoompan/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterBoxblur$ https://www.mltframework.org/plugins/FilterBoxblur/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterBrightness$ https://www.mltframework.org/plugins/FilterBrightness/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterBurningtv$ https://www.mltframework.org/plugins/FilterBurningtv/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterChannelcopy$ https://www.mltframework.org/plugins/FilterChannelcopy/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterChannelswap$ https://www.mltframework.org/plugins/FilterChannelswap/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterCharcoal$ https://www.mltframework.org/plugins/FilterCharcoal/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterChroma$ https://www.mltframework.org/plugins/FilterChroma/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterChroma_hold$ https://www.mltframework.org/plugins/FilterChroma_hold/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterCrop$ https://www.mltframework.org/plugins/FilterCrop/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterCrop_detect$ https://www.mltframework.org/plugins/FilterCrop_detect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterDance$ https://www.mltframework.org/plugins/FilterDance/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterData_show$ https://www.mltframework.org/plugins/FilterData_show/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterDeshake$ https://www.mltframework.org/plugins/FilterDeshake/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterDust$ https://www.mltframework.org/plugins/FilterDust/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterDynamic_loudness$ https://www.mltframework.org/plugins/FilterDynamic_loudness/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterDynamictext$ https://www.mltframework.org/plugins/FilterDynamictext/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFft$ https://www.mltframework.org/plugins/FilterFft/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFieldorder$ https://www.mltframework.org/plugins/FilterFieldorder/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFreeze$ https://www.mltframework.org/plugins/FilterFreeze/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-3dflippo$ https://www.mltframework.org/plugins/FilterFrei0r-3dflippo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-alpha0ps$ https://www.mltframework.org/plugins/FilterFrei0r-alpha0ps/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-alphagrad$ https://www.mltframework.org/plugins/FilterFrei0r-alphagrad/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-alphaspot$ https://www.mltframework.org/plugins/FilterFrei0r-alphaspot/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-b$ https://www.mltframework.org/plugins/FilterFrei0r-b/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-balanc0r$ https://www.mltframework.org/plugins/FilterFrei0r-balanc0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-baltan$ https://www.mltframework.org/plugins/FilterFrei0r-baltan/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-bluescreen0r$ https://www.mltframework.org/plugins/FilterFrei0r-bluescreen0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-brightness$ https://www.mltframework.org/plugins/FilterFrei0r-brightness/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-bw0r$ https://www.mltframework.org/plugins/FilterFrei0r-bw0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-c0rners$ https://www.mltframework.org/plugins/FilterFrei0r-c0rners/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-cairogradient$ https://www.mltframework.org/plugins/FilterFrei0r-cairogradient/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-cairoimagegrid$ https://www.mltframework.org/plugins/FilterFrei0r-cairoimagegrid/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-cartoon$ https://www.mltframework.org/plugins/FilterFrei0r-cartoon/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-cluster$ https://www.mltframework.org/plugins/FilterFrei0r-cluster/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-colgate$ https://www.mltframework.org/plugins/FilterFrei0r-colgate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-coloradj_rgb$ https://www.mltframework.org/plugins/FilterFrei0r-coloradj_rgb/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-colordistance$ https://www.mltframework.org/plugins/FilterFrei0r-colordistance/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-colorhalftone$ https://www.mltframework.org/plugins/FilterFrei0r-colorhalftone/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-colorize$ https://www.mltframework.org/plugins/FilterFrei0r-colorize/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-colortap$ https://www.mltframework.org/plugins/FilterFrei0r-colortap/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-contrast0r$ https://www.mltframework.org/plugins/FilterFrei0r-contrast0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-curves$ https://www.mltframework.org/plugins/FilterFrei0r-curves/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-d90stairsteppingfix$ https://www.mltframework.org/plugins/FilterFrei0r-d90stairsteppingfix/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-defish0r$ https://www.mltframework.org/plugins/FilterFrei0r-defish0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-delay0r$ https://www.mltframework.org/plugins/FilterFrei0r-delay0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-delaygrab$ https://www.mltframework.org/plugins/FilterFrei0r-delaygrab/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-distort0r$ https://www.mltframework.org/plugins/FilterFrei0r-distort0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-dither$ https://www.mltframework.org/plugins/FilterFrei0r-dither/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-edgeglow$ https://www.mltframework.org/plugins/FilterFrei0r-edgeglow/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-emboss$ https://www.mltframework.org/plugins/FilterFrei0r-emboss/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-equaliz0r$ https://www.mltframework.org/plugins/FilterFrei0r-equaliz0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-facebl0r$ https://www.mltframework.org/plugins/FilterFrei0r-facebl0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-facedetect$ https://www.mltframework.org/plugins/FilterFrei0r-facedetect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-flippo$ https://www.mltframework.org/plugins/FilterFrei0r-flippo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-g$ https://www.mltframework.org/plugins/FilterFrei0r-g/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-gamma$ https://www.mltframework.org/plugins/FilterFrei0r-gamma/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-glow$ https://www.mltframework.org/plugins/FilterFrei0r-glow/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-hqdn3d$ https://www.mltframework.org/plugins/FilterFrei0r-hqdn3d/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-hueshift0r$ https://www.mltframework.org/plugins/FilterFrei0r-hueshift0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-iirblur$ https://www.mltframework.org/plugins/FilterFrei0r-iirblur/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-invert0r$ https://www.mltframework.org/plugins/FilterFrei0r-invert0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-keyspillm0pup$ https://www.mltframework.org/plugins/FilterFrei0r-keyspillm0pup/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-lenscorrection$ https://www.mltframework.org/plugins/FilterFrei0r-lenscorrection/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-letterb0xed$ https://www.mltframework.org/plugins/FilterFrei0r-letterb0xed/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-levels$ https://www.mltframework.org/plugins/FilterFrei0r-levels/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-lightgraffiti$ https://www.mltframework.org/plugins/FilterFrei0r-lightgraffiti/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-luminance$ https://www.mltframework.org/plugins/FilterFrei0r-luminance/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-mask0mate$ https://www.mltframework.org/plugins/FilterFrei0r-mask0mate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-medians$ https://www.mltframework.org/plugins/FilterFrei0r-medians/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-ndvi$ https://www.mltframework.org/plugins/FilterFrei0r-ndvi/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-nervous$ https://www.mltframework.org/plugins/FilterFrei0r-nervous/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-nosync0r$ https://www.mltframework.org/plugins/FilterFrei0r-nosync0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-pixeliz0r$ https://www.mltframework.org/plugins/FilterFrei0r-pixeliz0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-posterize$ https://www.mltframework.org/plugins/FilterFrei0r-posterize/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-pr0be$ https://www.mltframework.org/plugins/FilterFrei0r-pr0be/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-pr0file$ https://www.mltframework.org/plugins/FilterFrei0r-pr0file/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-primaries$ https://www.mltframework.org/plugins/FilterFrei0r-primaries/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-r$ https://www.mltframework.org/plugins/FilterFrei0r-r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-rgbnoise$ https://www.mltframework.org/plugins/FilterFrei0r-rgbnoise/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-rgbparade$ https://www.mltframework.org/plugins/FilterFrei0r-rgbparade/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-saturat0r$ https://www.mltframework.org/plugins/FilterFrei0r-saturat0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-scale0tilt$ https://www.mltframework.org/plugins/FilterFrei0r-scale0tilt/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-scanline0r$ https://www.mltframework.org/plugins/FilterFrei0r-scanline0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-select0r$ https://www.mltframework.org/plugins/FilterFrei0r-select0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-sharpness$ https://www.mltframework.org/plugins/FilterFrei0r-sharpness/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-sigmoidaltransfer$ https://www.mltframework.org/plugins/FilterFrei0r-sigmoidaltransfer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-sobel$ https://www.mltframework.org/plugins/FilterFrei0r-sobel/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-softglow$ https://www.mltframework.org/plugins/FilterFrei0r-softglow/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-sopsat$ https://www.mltframework.org/plugins/FilterFrei0r-sopsat/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-spillsupress$ https://www.mltframework.org/plugins/FilterFrei0r-spillsupress/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-squareblur$ https://www.mltframework.org/plugins/FilterFrei0r-squareblur/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-tehroxx0r$ https://www.mltframework.org/plugins/FilterFrei0r-tehroxx0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-three_point_balance$ https://www.mltframework.org/plugins/FilterFrei0r-three_point_balance/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-threelay0r$ https://www.mltframework.org/plugins/FilterFrei0r-threelay0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-threshold0r$ https://www.mltframework.org/plugins/FilterFrei0r-threshold0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-timeout$ https://www.mltframework.org/plugins/FilterFrei0r-timeout/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-tint0r$ https://www.mltframework.org/plugins/FilterFrei0r-tint0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-transparency$ https://www.mltframework.org/plugins/FilterFrei0r-transparency/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-twolay0r$ https://www.mltframework.org/plugins/FilterFrei0r-twolay0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-vectorscope$ https://www.mltframework.org/plugins/FilterFrei0r-vectorscope/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-vertigo$ https://www.mltframework.org/plugins/FilterFrei0r-vertigo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterFrei0r-vignette$ https://www.mltframework.org/plugins/FilterFrei0r-vignette/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterGamma$ https://www.mltframework.org/plugins/FilterGamma/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterGrain$ https://www.mltframework.org/plugins/FilterGrain/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterGrayscale$ https://www.mltframework.org/plugins/FilterGrayscale/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterGreyscale$ https://www.mltframework.org/plugins/FilterGreyscale/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterGtkrescale$ https://www.mltframework.org/plugins/FilterGtkrescale/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterInvert$ https://www.mltframework.org/plugins/FilterInvert/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterJackrack$ https://www.mltframework.org/plugins/FilterJackrack/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1041$ https://www.mltframework.org/plugins/FilterLadspa-1041/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1042$ https://www.mltframework.org/plugins/FilterLadspa-1042/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1043$ https://www.mltframework.org/plugins/FilterLadspa-1043/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1044$ https://www.mltframework.org/plugins/FilterLadspa-1044/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1045$ https://www.mltframework.org/plugins/FilterLadspa-1045/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1046$ https://www.mltframework.org/plugins/FilterLadspa-1046/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1048$ https://www.mltframework.org/plugins/FilterLadspa-1048/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1049$ https://www.mltframework.org/plugins/FilterLadspa-1049/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1051$ https://www.mltframework.org/plugins/FilterLadspa-1051/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1052$ https://www.mltframework.org/plugins/FilterLadspa-1052/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1053$ https://www.mltframework.org/plugins/FilterLadspa-1053/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1054$ https://www.mltframework.org/plugins/FilterLadspa-1054/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1055$ https://www.mltframework.org/plugins/FilterLadspa-1055/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1056$ https://www.mltframework.org/plugins/FilterLadspa-1056/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1057$ https://www.mltframework.org/plugins/FilterLadspa-1057/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1058$ https://www.mltframework.org/plugins/FilterLadspa-1058/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1059$ https://www.mltframework.org/plugins/FilterLadspa-1059/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1060$ https://www.mltframework.org/plugins/FilterLadspa-1060/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1061$ https://www.mltframework.org/plugins/FilterLadspa-1061/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1062$ https://www.mltframework.org/plugins/FilterLadspa-1062/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1063$ https://www.mltframework.org/plugins/FilterLadspa-1063/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1064$ https://www.mltframework.org/plugins/FilterLadspa-1064/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1065$ https://www.mltframework.org/plugins/FilterLadspa-1065/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1067$ https://www.mltframework.org/plugins/FilterLadspa-1067/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1068$ https://www.mltframework.org/plugins/FilterLadspa-1068/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1070$ https://www.mltframework.org/plugins/FilterLadspa-1070/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1071$ https://www.mltframework.org/plugins/FilterLadspa-1071/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1072$ https://www.mltframework.org/plugins/FilterLadspa-1072/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1073$ https://www.mltframework.org/plugins/FilterLadspa-1073/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1074$ https://www.mltframework.org/plugins/FilterLadspa-1074/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1075$ https://www.mltframework.org/plugins/FilterLadspa-1075/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1076$ https://www.mltframework.org/plugins/FilterLadspa-1076/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1077$ https://www.mltframework.org/plugins/FilterLadspa-1077/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1087$ https://www.mltframework.org/plugins/FilterLadspa-1087/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1088$ https://www.mltframework.org/plugins/FilterLadspa-1088/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1089$ https://www.mltframework.org/plugins/FilterLadspa-1089/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1090$ https://www.mltframework.org/plugins/FilterLadspa-1090/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1091$ https://www.mltframework.org/plugins/FilterLadspa-1091/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1092$ https://www.mltframework.org/plugins/FilterLadspa-1092/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1093$ https://www.mltframework.org/plugins/FilterLadspa-1093/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1094$ https://www.mltframework.org/plugins/FilterLadspa-1094/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1095$ https://www.mltframework.org/plugins/FilterLadspa-1095/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1096$ https://www.mltframework.org/plugins/FilterLadspa-1096/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1096286208$ https://www.mltframework.org/plugins/FilterLadspa-1096286208/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1096290309$ https://www.mltframework.org/plugins/FilterLadspa-1096290309/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1096290310$ https://www.mltframework.org/plugins/FilterLadspa-1096290310/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1096290312$ https://www.mltframework.org/plugins/FilterLadspa-1096290312/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1096314880$ https://www.mltframework.org/plugins/FilterLadspa-1096314880/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1097$ https://www.mltframework.org/plugins/FilterLadspa-1097/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1097681261$ https://www.mltframework.org/plugins/FilterLadspa-1097681261/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1098$ https://www.mltframework.org/plugins/FilterLadspa-1098/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1123$ https://www.mltframework.org/plugins/FilterLadspa-1123/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1129539188$ https://www.mltframework.org/plugins/FilterLadspa-1129539188/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1144210769$ https://www.mltframework.org/plugins/FilterLadspa-1144210769/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1144210771$ https://www.mltframework.org/plugins/FilterLadspa-1144210771/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1145921863$ https://www.mltframework.org/plugins/FilterLadspa-1145921863/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1146114128$ https://www.mltframework.org/plugins/FilterLadspa-1146114128/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1181$ https://www.mltframework.org/plugins/FilterLadspa-1181/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1185$ https://www.mltframework.org/plugins/FilterLadspa-1185/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1186$ https://www.mltframework.org/plugins/FilterLadspa-1186/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1187$ https://www.mltframework.org/plugins/FilterLadspa-1187/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1188$ https://www.mltframework.org/plugins/FilterLadspa-1188/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1189$ https://www.mltframework.org/plugins/FilterLadspa-1189/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1190$ https://www.mltframework.org/plugins/FilterLadspa-1190/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1191$ https://www.mltframework.org/plugins/FilterLadspa-1191/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1192$ https://www.mltframework.org/plugins/FilterLadspa-1192/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1193$ https://www.mltframework.org/plugins/FilterLadspa-1193/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1194$ https://www.mltframework.org/plugins/FilterLadspa-1194/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1195$ https://www.mltframework.org/plugins/FilterLadspa-1195/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1196$ https://www.mltframework.org/plugins/FilterLadspa-1196/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1197$ https://www.mltframework.org/plugins/FilterLadspa-1197/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1198$ https://www.mltframework.org/plugins/FilterLadspa-1198/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1199$ https://www.mltframework.org/plugins/FilterLadspa-1199/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1200$ https://www.mltframework.org/plugins/FilterLadspa-1200/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1201$ https://www.mltframework.org/plugins/FilterLadspa-1201/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1202$ https://www.mltframework.org/plugins/FilterLadspa-1202/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1203$ https://www.mltframework.org/plugins/FilterLadspa-1203/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1204$ https://www.mltframework.org/plugins/FilterLadspa-1204/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1206$ https://www.mltframework.org/plugins/FilterLadspa-1206/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1207$ https://www.mltframework.org/plugins/FilterLadspa-1207/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1208$ https://www.mltframework.org/plugins/FilterLadspa-1208/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1209$ https://www.mltframework.org/plugins/FilterLadspa-1209/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1210$ https://www.mltframework.org/plugins/FilterLadspa-1210/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1211$ https://www.mltframework.org/plugins/FilterLadspa-1211/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1212$ https://www.mltframework.org/plugins/FilterLadspa-1212/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1213$ https://www.mltframework.org/plugins/FilterLadspa-1213/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1214$ https://www.mltframework.org/plugins/FilterLadspa-1214/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1215$ https://www.mltframework.org/plugins/FilterLadspa-1215/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1216$ https://www.mltframework.org/plugins/FilterLadspa-1216/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1217$ https://www.mltframework.org/plugins/FilterLadspa-1217/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1218$ https://www.mltframework.org/plugins/FilterLadspa-1218/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1219$ https://www.mltframework.org/plugins/FilterLadspa-1219/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1220$ https://www.mltframework.org/plugins/FilterLadspa-1220/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1224$ https://www.mltframework.org/plugins/FilterLadspa-1224/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1225$ https://www.mltframework.org/plugins/FilterLadspa-1225/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1227$ https://www.mltframework.org/plugins/FilterLadspa-1227/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1297511010$ https://www.mltframework.org/plugins/FilterLadspa-1297511010/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1399604850$ https://www.mltframework.org/plugins/FilterLadspa-1399604850/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1401$ https://www.mltframework.org/plugins/FilterLadspa-1401/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1402$ https://www.mltframework.org/plugins/FilterLadspa-1402/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1403$ https://www.mltframework.org/plugins/FilterLadspa-1403/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1404$ https://www.mltframework.org/plugins/FilterLadspa-1404/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1405$ https://www.mltframework.org/plugins/FilterLadspa-1405/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1406$ https://www.mltframework.org/plugins/FilterLadspa-1406/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1407$ https://www.mltframework.org/plugins/FilterLadspa-1407/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1408$ https://www.mltframework.org/plugins/FilterLadspa-1408/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1409$ https://www.mltframework.org/plugins/FilterLadspa-1409/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1410$ https://www.mltframework.org/plugins/FilterLadspa-1410/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1411$ https://www.mltframework.org/plugins/FilterLadspa-1411/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1412$ https://www.mltframework.org/plugins/FilterLadspa-1412/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1413$ https://www.mltframework.org/plugins/FilterLadspa-1413/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1414$ https://www.mltframework.org/plugins/FilterLadspa-1414/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1415$ https://www.mltframework.org/plugins/FilterLadspa-1415/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1417$ https://www.mltframework.org/plugins/FilterLadspa-1417/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1418$ https://www.mltframework.org/plugins/FilterLadspa-1418/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1419$ https://www.mltframework.org/plugins/FilterLadspa-1419/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1420$ https://www.mltframework.org/plugins/FilterLadspa-1420/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1421$ https://www.mltframework.org/plugins/FilterLadspa-1421/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1422$ https://www.mltframework.org/plugins/FilterLadspa-1422/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1423$ https://www.mltframework.org/plugins/FilterLadspa-1423/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1424$ https://www.mltframework.org/plugins/FilterLadspa-1424/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1425$ https://www.mltframework.org/plugins/FilterLadspa-1425/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1426$ https://www.mltframework.org/plugins/FilterLadspa-1426/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1427$ https://www.mltframework.org/plugins/FilterLadspa-1427/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1428$ https://www.mltframework.org/plugins/FilterLadspa-1428/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1429$ https://www.mltframework.org/plugins/FilterLadspa-1429/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1430$ https://www.mltframework.org/plugins/FilterLadspa-1430/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1431$ https://www.mltframework.org/plugins/FilterLadspa-1431/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1432$ https://www.mltframework.org/plugins/FilterLadspa-1432/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1433$ https://www.mltframework.org/plugins/FilterLadspa-1433/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1436$ https://www.mltframework.org/plugins/FilterLadspa-1436/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1437$ https://www.mltframework.org/plugins/FilterLadspa-1437/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1438$ https://www.mltframework.org/plugins/FilterLadspa-1438/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1439$ https://www.mltframework.org/plugins/FilterLadspa-1439/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1440$ https://www.mltframework.org/plugins/FilterLadspa-1440/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1441$ https://www.mltframework.org/plugins/FilterLadspa-1441/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514360144$ https://www.mltframework.org/plugins/FilterLadspa-1514360144/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514360882$ https://www.mltframework.org/plugins/FilterLadspa-1514360882/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514492210$ https://www.mltframework.org/plugins/FilterLadspa-1514492210/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514615601$ https://www.mltframework.org/plugins/FilterLadspa-1514615601/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514619220$ https://www.mltframework.org/plugins/FilterLadspa-1514619220/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514624050$ https://www.mltframework.org/plugins/FilterLadspa-1514624050/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1514685490$ https://www.mltframework.org/plugins/FilterLadspa-1514685490/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515012944$ https://www.mltframework.org/plugins/FilterLadspa-1515012944/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515013196$ https://www.mltframework.org/plugins/FilterLadspa-1515013196/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515015474$ https://www.mltframework.org/plugins/FilterLadspa-1515015474/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515015491$ https://www.mltframework.org/plugins/FilterLadspa-1515015491/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515018290$ https://www.mltframework.org/plugins/FilterLadspa-1515018290/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515405652$ https://www.mltframework.org/plugins/FilterLadspa-1515405652/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1515476290$ https://www.mltframework.org/plugins/FilterLadspa-1515476290/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1605$ https://www.mltframework.org/plugins/FilterLadspa-1605/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1641$ https://www.mltframework.org/plugins/FilterLadspa-1641/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1643$ https://www.mltframework.org/plugins/FilterLadspa-1643/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1645$ https://www.mltframework.org/plugins/FilterLadspa-1645/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1646$ https://www.mltframework.org/plugins/FilterLadspa-1646/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1647$ https://www.mltframework.org/plugins/FilterLadspa-1647/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1649$ https://www.mltframework.org/plugins/FilterLadspa-1649/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1650$ https://www.mltframework.org/plugins/FilterLadspa-1650/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1651$ https://www.mltframework.org/plugins/FilterLadspa-1651/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1653$ https://www.mltframework.org/plugins/FilterLadspa-1653/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1654$ https://www.mltframework.org/plugins/FilterLadspa-1654/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1655$ https://www.mltframework.org/plugins/FilterLadspa-1655/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1656$ https://www.mltframework.org/plugins/FilterLadspa-1656/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1657$ https://www.mltframework.org/plugins/FilterLadspa-1657/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1658$ https://www.mltframework.org/plugins/FilterLadspa-1658/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1661$ https://www.mltframework.org/plugins/FilterLadspa-1661/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1662$ https://www.mltframework.org/plugins/FilterLadspa-1662/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1663$ https://www.mltframework.org/plugins/FilterLadspa-1663/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1665$ https://www.mltframework.org/plugins/FilterLadspa-1665/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1666$ https://www.mltframework.org/plugins/FilterLadspa-1666/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1668$ https://www.mltframework.org/plugins/FilterLadspa-1668/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1669$ https://www.mltframework.org/plugins/FilterLadspa-1669/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1671$ https://www.mltframework.org/plugins/FilterLadspa-1671/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1672$ https://www.mltframework.org/plugins/FilterLadspa-1672/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1673$ https://www.mltframework.org/plugins/FilterLadspa-1673/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1675$ https://www.mltframework.org/plugins/FilterLadspa-1675/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1676$ https://www.mltframework.org/plugins/FilterLadspa-1676/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1677$ https://www.mltframework.org/plugins/FilterLadspa-1677/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1678$ https://www.mltframework.org/plugins/FilterLadspa-1678/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1679$ https://www.mltframework.org/plugins/FilterLadspa-1679/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1680$ https://www.mltframework.org/plugins/FilterLadspa-1680/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1721$ https://www.mltframework.org/plugins/FilterLadspa-1721/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1722$ https://www.mltframework.org/plugins/FilterLadspa-1722/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1723$ https://www.mltframework.org/plugins/FilterLadspa-1723/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1724$ https://www.mltframework.org/plugins/FilterLadspa-1724/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1725$ https://www.mltframework.org/plugins/FilterLadspa-1725/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1726$ https://www.mltframework.org/plugins/FilterLadspa-1726/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1727$ https://www.mltframework.org/plugins/FilterLadspa-1727/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1728$ https://www.mltframework.org/plugins/FilterLadspa-1728/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1729$ https://www.mltframework.org/plugins/FilterLadspa-1729/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1766$ https://www.mltframework.org/plugins/FilterLadspa-1766/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1767$ https://www.mltframework.org/plugins/FilterLadspa-1767/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1768$ https://www.mltframework.org/plugins/FilterLadspa-1768/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1771$ https://www.mltframework.org/plugins/FilterLadspa-1771/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1772$ https://www.mltframework.org/plugins/FilterLadspa-1772/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1773$ https://www.mltframework.org/plugins/FilterLadspa-1773/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1775$ https://www.mltframework.org/plugins/FilterLadspa-1775/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1776$ https://www.mltframework.org/plugins/FilterLadspa-1776/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1777$ https://www.mltframework.org/plugins/FilterLadspa-1777/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1778$ https://www.mltframework.org/plugins/FilterLadspa-1778/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1779$ https://www.mltframework.org/plugins/FilterLadspa-1779/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1782$ https://www.mltframework.org/plugins/FilterLadspa-1782/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1786$ https://www.mltframework.org/plugins/FilterLadspa-1786/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1787$ https://www.mltframework.org/plugins/FilterLadspa-1787/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1788$ https://www.mltframework.org/plugins/FilterLadspa-1788/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1794$ https://www.mltframework.org/plugins/FilterLadspa-1794/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1795$ https://www.mltframework.org/plugins/FilterLadspa-1795/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1845$ https://www.mltframework.org/plugins/FilterLadspa-1845/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1846$ https://www.mltframework.org/plugins/FilterLadspa-1846/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1848$ https://www.mltframework.org/plugins/FilterLadspa-1848/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1882$ https://www.mltframework.org/plugins/FilterLadspa-1882/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1883$ https://www.mltframework.org/plugins/FilterLadspa-1883/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1886$ https://www.mltframework.org/plugins/FilterLadspa-1886/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1887$ https://www.mltframework.org/plugins/FilterLadspa-1887/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1888$ https://www.mltframework.org/plugins/FilterLadspa-1888/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1889$ https://www.mltframework.org/plugins/FilterLadspa-1889/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1890$ https://www.mltframework.org/plugins/FilterLadspa-1890/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1891$ https://www.mltframework.org/plugins/FilterLadspa-1891/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1892$ https://www.mltframework.org/plugins/FilterLadspa-1892/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1893$ https://www.mltframework.org/plugins/FilterLadspa-1893/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1894$ https://www.mltframework.org/plugins/FilterLadspa-1894/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1895$ https://www.mltframework.org/plugins/FilterLadspa-1895/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1896$ https://www.mltframework.org/plugins/FilterLadspa-1896/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1897$ https://www.mltframework.org/plugins/FilterLadspa-1897/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1898$ https://www.mltframework.org/plugins/FilterLadspa-1898/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1899$ https://www.mltframework.org/plugins/FilterLadspa-1899/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1900$ https://www.mltframework.org/plugins/FilterLadspa-1900/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1901$ https://www.mltframework.org/plugins/FilterLadspa-1901/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1902$ https://www.mltframework.org/plugins/FilterLadspa-1902/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1903$ https://www.mltframework.org/plugins/FilterLadspa-1903/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1904$ https://www.mltframework.org/plugins/FilterLadspa-1904/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1905$ https://www.mltframework.org/plugins/FilterLadspa-1905/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1907$ https://www.mltframework.org/plugins/FilterLadspa-1907/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1908$ https://www.mltframework.org/plugins/FilterLadspa-1908/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1909$ https://www.mltframework.org/plugins/FilterLadspa-1909/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1910$ https://www.mltframework.org/plugins/FilterLadspa-1910/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1912$ https://www.mltframework.org/plugins/FilterLadspa-1912/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1913$ https://www.mltframework.org/plugins/FilterLadspa-1913/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1914$ https://www.mltframework.org/plugins/FilterLadspa-1914/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1915$ https://www.mltframework.org/plugins/FilterLadspa-1915/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1916$ https://www.mltframework.org/plugins/FilterLadspa-1916/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1917$ https://www.mltframework.org/plugins/FilterLadspa-1917/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1941$ https://www.mltframework.org/plugins/FilterLadspa-1941/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1942$ https://www.mltframework.org/plugins/FilterLadspa-1942/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1943$ https://www.mltframework.org/plugins/FilterLadspa-1943/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1944$ https://www.mltframework.org/plugins/FilterLadspa-1944/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1945$ https://www.mltframework.org/plugins/FilterLadspa-1945/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1946$ https://www.mltframework.org/plugins/FilterLadspa-1946/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1947$ https://www.mltframework.org/plugins/FilterLadspa-1947/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1948$ https://www.mltframework.org/plugins/FilterLadspa-1948/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1949$ https://www.mltframework.org/plugins/FilterLadspa-1949/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1950$ https://www.mltframework.org/plugins/FilterLadspa-1950/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1951$ https://www.mltframework.org/plugins/FilterLadspa-1951/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1952$ https://www.mltframework.org/plugins/FilterLadspa-1952/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1953$ https://www.mltframework.org/plugins/FilterLadspa-1953/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1954$ https://www.mltframework.org/plugins/FilterLadspa-1954/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1955$ https://www.mltframework.org/plugins/FilterLadspa-1955/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1956$ https://www.mltframework.org/plugins/FilterLadspa-1956/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1957$ https://www.mltframework.org/plugins/FilterLadspa-1957/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1958$ https://www.mltframework.org/plugins/FilterLadspa-1958/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1960$ https://www.mltframework.org/plugins/FilterLadspa-1960/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1961$ https://www.mltframework.org/plugins/FilterLadspa-1961/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1962$ https://www.mltframework.org/plugins/FilterLadspa-1962/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1963$ https://www.mltframework.org/plugins/FilterLadspa-1963/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1964$ https://www.mltframework.org/plugins/FilterLadspa-1964/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1965$ https://www.mltframework.org/plugins/FilterLadspa-1965/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1966$ https://www.mltframework.org/plugins/FilterLadspa-1966/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1967$ https://www.mltframework.org/plugins/FilterLadspa-1967/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1968$ https://www.mltframework.org/plugins/FilterLadspa-1968/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1970$ https://www.mltframework.org/plugins/FilterLadspa-1970/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1973$ https://www.mltframework.org/plugins/FilterLadspa-1973/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1974$ https://www.mltframework.org/plugins/FilterLadspa-1974/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1975$ https://www.mltframework.org/plugins/FilterLadspa-1975/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1976$ https://www.mltframework.org/plugins/FilterLadspa-1976/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1977$ https://www.mltframework.org/plugins/FilterLadspa-1977/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1978$ https://www.mltframework.org/plugins/FilterLadspa-1978/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1979$ https://www.mltframework.org/plugins/FilterLadspa-1979/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-1980$ https://www.mltframework.org/plugins/FilterLadspa-1980/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2021$ https://www.mltframework.org/plugins/FilterLadspa-2021/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2022$ https://www.mltframework.org/plugins/FilterLadspa-2022/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2023$ https://www.mltframework.org/plugins/FilterLadspa-2023/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2024$ https://www.mltframework.org/plugins/FilterLadspa-2024/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2025$ https://www.mltframework.org/plugins/FilterLadspa-2025/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2026$ https://www.mltframework.org/plugins/FilterLadspa-2026/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2027$ https://www.mltframework.org/plugins/FilterLadspa-2027/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2028$ https://www.mltframework.org/plugins/FilterLadspa-2028/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2029$ https://www.mltframework.org/plugins/FilterLadspa-2029/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2030$ https://www.mltframework.org/plugins/FilterLadspa-2030/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2031$ https://www.mltframework.org/plugins/FilterLadspa-2031/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2032$ https://www.mltframework.org/plugins/FilterLadspa-2032/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2034$ https://www.mltframework.org/plugins/FilterLadspa-2034/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2035$ https://www.mltframework.org/plugins/FilterLadspa-2035/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2036$ https://www.mltframework.org/plugins/FilterLadspa-2036/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2141$ https://www.mltframework.org/plugins/FilterLadspa-2141/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2142$ https://www.mltframework.org/plugins/FilterLadspa-2142/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2143$ https://www.mltframework.org/plugins/FilterLadspa-2143/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2144$ https://www.mltframework.org/plugins/FilterLadspa-2144/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2145$ https://www.mltframework.org/plugins/FilterLadspa-2145/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2146$ https://www.mltframework.org/plugins/FilterLadspa-2146/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2147$ https://www.mltframework.org/plugins/FilterLadspa-2147/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2148$ https://www.mltframework.org/plugins/FilterLadspa-2148/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2149$ https://www.mltframework.org/plugins/FilterLadspa-2149/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2150$ https://www.mltframework.org/plugins/FilterLadspa-2150/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2151$ https://www.mltframework.org/plugins/FilterLadspa-2151/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2152$ https://www.mltframework.org/plugins/FilterLadspa-2152/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2153$ https://www.mltframework.org/plugins/FilterLadspa-2153/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2154$ https://www.mltframework.org/plugins/FilterLadspa-2154/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2155$ https://www.mltframework.org/plugins/FilterLadspa-2155/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2156$ https://www.mltframework.org/plugins/FilterLadspa-2156/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2157$ https://www.mltframework.org/plugins/FilterLadspa-2157/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2158$ https://www.mltframework.org/plugins/FilterLadspa-2158/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2159$ https://www.mltframework.org/plugins/FilterLadspa-2159/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2184$ https://www.mltframework.org/plugins/FilterLadspa-2184/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2185$ https://www.mltframework.org/plugins/FilterLadspa-2185/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2186$ https://www.mltframework.org/plugins/FilterLadspa-2186/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2543$ https://www.mltframework.org/plugins/FilterLadspa-2543/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2544$ https://www.mltframework.org/plugins/FilterLadspa-2544/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2545$ https://www.mltframework.org/plugins/FilterLadspa-2545/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2546$ https://www.mltframework.org/plugins/FilterLadspa-2546/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2547$ https://www.mltframework.org/plugins/FilterLadspa-2547/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2548$ https://www.mltframework.org/plugins/FilterLadspa-2548/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2581$ https://www.mltframework.org/plugins/FilterLadspa-2581/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2582$ https://www.mltframework.org/plugins/FilterLadspa-2582/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2583$ https://www.mltframework.org/plugins/FilterLadspa-2583/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2584$ https://www.mltframework.org/plugins/FilterLadspa-2584/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2586$ https://www.mltframework.org/plugins/FilterLadspa-2586/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2587$ https://www.mltframework.org/plugins/FilterLadspa-2587/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2588$ https://www.mltframework.org/plugins/FilterLadspa-2588/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2589$ https://www.mltframework.org/plugins/FilterLadspa-2589/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2590$ https://www.mltframework.org/plugins/FilterLadspa-2590/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2592$ https://www.mltframework.org/plugins/FilterLadspa-2592/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2593$ https://www.mltframework.org/plugins/FilterLadspa-2593/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2594$ https://www.mltframework.org/plugins/FilterLadspa-2594/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2595$ https://www.mltframework.org/plugins/FilterLadspa-2595/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2598$ https://www.mltframework.org/plugins/FilterLadspa-2598/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2602$ https://www.mltframework.org/plugins/FilterLadspa-2602/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2603$ https://www.mltframework.org/plugins/FilterLadspa-2603/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2606$ https://www.mltframework.org/plugins/FilterLadspa-2606/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2607$ https://www.mltframework.org/plugins/FilterLadspa-2607/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2608$ https://www.mltframework.org/plugins/FilterLadspa-2608/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2661$ https://www.mltframework.org/plugins/FilterLadspa-2661/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2662$ https://www.mltframework.org/plugins/FilterLadspa-2662/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2663$ https://www.mltframework.org/plugins/FilterLadspa-2663/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2664$ https://www.mltframework.org/plugins/FilterLadspa-2664/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2667$ https://www.mltframework.org/plugins/FilterLadspa-2667/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2668$ https://www.mltframework.org/plugins/FilterLadspa-2668/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2669$ https://www.mltframework.org/plugins/FilterLadspa-2669/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2670$ https://www.mltframework.org/plugins/FilterLadspa-2670/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2741$ https://www.mltframework.org/plugins/FilterLadspa-2741/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2742$ https://www.mltframework.org/plugins/FilterLadspa-2742/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2743$ https://www.mltframework.org/plugins/FilterLadspa-2743/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2744$ https://www.mltframework.org/plugins/FilterLadspa-2744/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-2979$ https://www.mltframework.org/plugins/FilterLadspa-2979/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-313371$ https://www.mltframework.org/plugins/FilterLadspa-313371/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-313372$ https://www.mltframework.org/plugins/FilterLadspa-313372/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-313373$ https://www.mltframework.org/plugins/FilterLadspa-313373/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3181$ https://www.mltframework.org/plugins/FilterLadspa-3181/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3182$ https://www.mltframework.org/plugins/FilterLadspa-3182/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3183$ https://www.mltframework.org/plugins/FilterLadspa-3183/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3184$ https://www.mltframework.org/plugins/FilterLadspa-3184/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3185$ https://www.mltframework.org/plugins/FilterLadspa-3185/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3186$ https://www.mltframework.org/plugins/FilterLadspa-3186/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3187$ https://www.mltframework.org/plugins/FilterLadspa-3187/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3188$ https://www.mltframework.org/plugins/FilterLadspa-3188/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3301$ https://www.mltframework.org/plugins/FilterLadspa-3301/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3302$ https://www.mltframework.org/plugins/FilterLadspa-3302/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3303$ https://www.mltframework.org/plugins/FilterLadspa-3303/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3304$ https://www.mltframework.org/plugins/FilterLadspa-3304/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3305$ https://www.mltframework.org/plugins/FilterLadspa-3305/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3306$ https://www.mltframework.org/plugins/FilterLadspa-3306/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3307$ https://www.mltframework.org/plugins/FilterLadspa-3307/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3308$ https://www.mltframework.org/plugins/FilterLadspa-3308/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3309$ https://www.mltframework.org/plugins/FilterLadspa-3309/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3311$ https://www.mltframework.org/plugins/FilterLadspa-3311/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3312$ https://www.mltframework.org/plugins/FilterLadspa-3312/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33917$ https://www.mltframework.org/plugins/FilterLadspa-33917/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33918$ https://www.mltframework.org/plugins/FilterLadspa-33918/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33919$ https://www.mltframework.org/plugins/FilterLadspa-33919/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33922$ https://www.mltframework.org/plugins/FilterLadspa-33922/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33923$ https://www.mltframework.org/plugins/FilterLadspa-33923/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33924$ https://www.mltframework.org/plugins/FilterLadspa-33924/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-33951$ https://www.mltframework.org/plugins/FilterLadspa-33951/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34049$ https://www.mltframework.org/plugins/FilterLadspa-34049/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34050$ https://www.mltframework.org/plugins/FilterLadspa-34050/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34051$ https://www.mltframework.org/plugins/FilterLadspa-34051/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34052$ https://www.mltframework.org/plugins/FilterLadspa-34052/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34053$ https://www.mltframework.org/plugins/FilterLadspa-34053/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34065$ https://www.mltframework.org/plugins/FilterLadspa-34065/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34066$ https://www.mltframework.org/plugins/FilterLadspa-34066/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34067$ https://www.mltframework.org/plugins/FilterLadspa-34067/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34068$ https://www.mltframework.org/plugins/FilterLadspa-34068/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34069$ https://www.mltframework.org/plugins/FilterLadspa-34069/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34070$ https://www.mltframework.org/plugins/FilterLadspa-34070/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34071$ https://www.mltframework.org/plugins/FilterLadspa-34071/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34080$ https://www.mltframework.org/plugins/FilterLadspa-34080/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34081$ https://www.mltframework.org/plugins/FilterLadspa-34081/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34096$ https://www.mltframework.org/plugins/FilterLadspa-34096/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34097$ https://www.mltframework.org/plugins/FilterLadspa-34097/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34098$ https://www.mltframework.org/plugins/FilterLadspa-34098/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34183$ https://www.mltframework.org/plugins/FilterLadspa-34183/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34184$ https://www.mltframework.org/plugins/FilterLadspa-34184/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-34185$ https://www.mltframework.org/plugins/FilterLadspa-34185/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3701$ https://www.mltframework.org/plugins/FilterLadspa-3701/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3702$ https://www.mltframework.org/plugins/FilterLadspa-3702/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3983$ https://www.mltframework.org/plugins/FilterLadspa-3983/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3984$ https://www.mltframework.org/plugins/FilterLadspa-3984/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3985$ https://www.mltframework.org/plugins/FilterLadspa-3985/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3986$ https://www.mltframework.org/plugins/FilterLadspa-3986/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3987$ https://www.mltframework.org/plugins/FilterLadspa-3987/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3988$ https://www.mltframework.org/plugins/FilterLadspa-3988/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3989$ https://www.mltframework.org/plugins/FilterLadspa-3989/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-3990$ https://www.mltframework.org/plugins/FilterLadspa-3990/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4061$ https://www.mltframework.org/plugins/FilterLadspa-4061/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4062$ https://www.mltframework.org/plugins/FilterLadspa-4062/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4063$ https://www.mltframework.org/plugins/FilterLadspa-4063/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4064$ https://www.mltframework.org/plugins/FilterLadspa-4064/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4065$ https://www.mltframework.org/plugins/FilterLadspa-4065/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4066$ https://www.mltframework.org/plugins/FilterLadspa-4066/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4067$ https://www.mltframework.org/plugins/FilterLadspa-4067/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4068$ https://www.mltframework.org/plugins/FilterLadspa-4068/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4069$ https://www.mltframework.org/plugins/FilterLadspa-4069/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4070$ https://www.mltframework.org/plugins/FilterLadspa-4070/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4201$ https://www.mltframework.org/plugins/FilterLadspa-4201/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4210$ https://www.mltframework.org/plugins/FilterLadspa-4210/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4211$ https://www.mltframework.org/plugins/FilterLadspa-4211/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4221$ https://www.mltframework.org/plugins/FilterLadspa-4221/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4262$ https://www.mltframework.org/plugins/FilterLadspa-4262/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4300$ https://www.mltframework.org/plugins/FilterLadspa-4300/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4310$ https://www.mltframework.org/plugins/FilterLadspa-4310/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4401$ https://www.mltframework.org/plugins/FilterLadspa-4401/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4410$ https://www.mltframework.org/plugins/FilterLadspa-4410/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4421$ https://www.mltframework.org/plugins/FilterLadspa-4421/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4430$ https://www.mltframework.org/plugins/FilterLadspa-4430/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4431$ https://www.mltframework.org/plugins/FilterLadspa-4431/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4440$ https://www.mltframework.org/plugins/FilterLadspa-4440/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-4441$ https://www.mltframework.org/plugins/FilterLadspa-4441/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-9792$ https://www.mltframework.org/plugins/FilterLadspa-9792/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-992$ https://www.mltframework.org/plugins/FilterLadspa-992/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-993$ https://www.mltframework.org/plugins/FilterLadspa-993/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-994$ https://www.mltframework.org/plugins/FilterLadspa-994/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-995$ https://www.mltframework.org/plugins/FilterLadspa-995/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-996$ https://www.mltframework.org/plugins/FilterLadspa-996/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-997$ https://www.mltframework.org/plugins/FilterLadspa-997/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-998$ https://www.mltframework.org/plugins/FilterLadspa-998/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa-999$ https://www.mltframework.org/plugins/FilterLadspa-999/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLadspa$ https://www.mltframework.org/plugins/FilterLadspa/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLift_gamma_gain$ https://www.mltframework.org/plugins/FilterLift_gamma_gain/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLightshow$ https://www.mltframework.org/plugins/FilterLightshow/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLines$ https://www.mltframework.org/plugins/FilterLines/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLoudness$ https://www.mltframework.org/plugins/FilterLoudness/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLoudness_meter$ https://www.mltframework.org/plugins/FilterLoudness_meter/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLuma$ https://www.mltframework.org/plugins/FilterLuma/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLumakey$ https://www.mltframework.org/plugins/FilterLumakey/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterLumaliftgaingamma$ https://www.mltframework.org/plugins/FilterLumaliftgaingamma/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMirror$ https://www.mltframework.org/plugins/FilterMirror/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMono$ https://www.mltframework.org/plugins/FilterMono/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMotion_est$ https://www.mltframework.org/plugins/FilterMotion_est/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-blur$ https://www.mltframework.org/plugins/FilterMovit-blur/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-diffusion$ https://www.mltframework.org/plugins/FilterMovit-diffusion/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-glow$ https://www.mltframework.org/plugins/FilterMovit-glow/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-lift_gamma_gain$ https://www.mltframework.org/plugins/FilterMovit-lift_gamma_gain/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-mirror$ https://www.mltframework.org/plugins/FilterMovit-mirror/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-opacity$ https://www.mltframework.org/plugins/FilterMovit-opacity/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-rect$ https://www.mltframework.org/plugins/FilterMovit-rect/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-saturation$ https://www.mltframework.org/plugins/FilterMovit-saturation/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-sharpen$ https://www.mltframework.org/plugins/FilterMovit-sharpen/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-vignette$ https://www.mltframework.org/plugins/FilterMovit-vignette/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterMovit-white_balance$ https://www.mltframework.org/plugins/FilterMovit-white_balance/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterObscure$ https://www.mltframework.org/plugins/FilterObscure/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterOldfilm$ https://www.mltframework.org/plugins/FilterOldfilm/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterPanner$ https://www.mltframework.org/plugins/FilterPanner/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterRegion$ https://www.mltframework.org/plugins/FilterRegion/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterResample$ https://www.mltframework.org/plugins/FilterResample/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterRescale$ https://www.mltframework.org/plugins/FilterRescale/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterResize$ https://www.mltframework.org/plugins/FilterResize/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterRgblut$ https://www.mltframework.org/plugins/FilterRgblut/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterRotoscoping$ https://www.mltframework.org/plugins/FilterRotoscoping/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSepia$ https://www.mltframework.org/plugins/FilterSepia/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterShape$ https://www.mltframework.org/plugins/FilterShape/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-allpass$ https://www.mltframework.org/plugins/FilterSox-allpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-band$ https://www.mltframework.org/plugins/FilterSox-band/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-bandpass$ https://www.mltframework.org/plugins/FilterSox-bandpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-bandreject$ https://www.mltframework.org/plugins/FilterSox-bandreject/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-bass$ https://www.mltframework.org/plugins/FilterSox-bass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-bend$ https://www.mltframework.org/plugins/FilterSox-bend/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-biquad$ https://www.mltframework.org/plugins/FilterSox-biquad/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-channels$ https://www.mltframework.org/plugins/FilterSox-channels/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-chorus$ https://www.mltframework.org/plugins/FilterSox-chorus/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-compand$ https://www.mltframework.org/plugins/FilterSox-compand/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-contrast$ https://www.mltframework.org/plugins/FilterSox-contrast/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-crop$ https://www.mltframework.org/plugins/FilterSox-crop/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-dcshift$ https://www.mltframework.org/plugins/FilterSox-dcshift/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-deemph$ https://www.mltframework.org/plugins/FilterSox-deemph/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-delay$ https://www.mltframework.org/plugins/FilterSox-delay/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-dither$ https://www.mltframework.org/plugins/FilterSox-dither/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-divide$ https://www.mltframework.org/plugins/FilterSox-divide/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-downsample$ https://www.mltframework.org/plugins/FilterSox-downsample/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-earwax$ https://www.mltframework.org/plugins/FilterSox-earwax/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-echo$ https://www.mltframework.org/plugins/FilterSox-echo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-echos$ https://www.mltframework.org/plugins/FilterSox-echos/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-equalizer$ https://www.mltframework.org/plugins/FilterSox-equalizer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-fade$ https://www.mltframework.org/plugins/FilterSox-fade/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-fir$ https://www.mltframework.org/plugins/FilterSox-fir/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-firfit$ https://www.mltframework.org/plugins/FilterSox-firfit/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-flanger$ https://www.mltframework.org/plugins/FilterSox-flanger/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-gain$ https://www.mltframework.org/plugins/FilterSox-gain/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-highpass$ https://www.mltframework.org/plugins/FilterSox-highpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-hilbert$ https://www.mltframework.org/plugins/FilterSox-hilbert/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-ladspa$ https://www.mltframework.org/plugins/FilterSox-ladspa/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-loudness$ https://www.mltframework.org/plugins/FilterSox-loudness/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-lowpass$ https://www.mltframework.org/plugins/FilterSox-lowpass/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-mcompand$ https://www.mltframework.org/plugins/FilterSox-mcompand/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-mixer$ https://www.mltframework.org/plugins/FilterSox-mixer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-noiseprof$ https://www.mltframework.org/plugins/FilterSox-noiseprof/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-noisered$ https://www.mltframework.org/plugins/FilterSox-noisered/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-norm$ https://www.mltframework.org/plugins/FilterSox-norm/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-oops$ https://www.mltframework.org/plugins/FilterSox-oops/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-overdrive$ https://www.mltframework.org/plugins/FilterSox-overdrive/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-pad$ https://www.mltframework.org/plugins/FilterSox-pad/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-phaser$ https://www.mltframework.org/plugins/FilterSox-phaser/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-pitch$ https://www.mltframework.org/plugins/FilterSox-pitch/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-rate$ https://www.mltframework.org/plugins/FilterSox-rate/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-remix$ https://www.mltframework.org/plugins/FilterSox-remix/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-repeat$ https://www.mltframework.org/plugins/FilterSox-repeat/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-reverb$ https://www.mltframework.org/plugins/FilterSox-reverb/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-reverse$ https://www.mltframework.org/plugins/FilterSox-reverse/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-riaa$ https://www.mltframework.org/plugins/FilterSox-riaa/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-silence$ https://www.mltframework.org/plugins/FilterSox-silence/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-sinc$ https://www.mltframework.org/plugins/FilterSox-sinc/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-spectrogram$ https://www.mltframework.org/plugins/FilterSox-spectrogram/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-speed$ https://www.mltframework.org/plugins/FilterSox-speed/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-splice$ https://www.mltframework.org/plugins/FilterSox-splice/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-stat$ https://www.mltframework.org/plugins/FilterSox-stat/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-stats$ https://www.mltframework.org/plugins/FilterSox-stats/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-stretch$ https://www.mltframework.org/plugins/FilterSox-stretch/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-swap$ https://www.mltframework.org/plugins/FilterSox-swap/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-synth$ https://www.mltframework.org/plugins/FilterSox-synth/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-tempo$ https://www.mltframework.org/plugins/FilterSox-tempo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-treble$ https://www.mltframework.org/plugins/FilterSox-treble/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-tremolo$ https://www.mltframework.org/plugins/FilterSox-tremolo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-trim$ https://www.mltframework.org/plugins/FilterSox-trim/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-upsample$ https://www.mltframework.org/plugins/FilterSox-upsample/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-vad$ https://www.mltframework.org/plugins/FilterSox-vad/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox-vol$ https://www.mltframework.org/plugins/FilterSox-vol/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterSox$ https://www.mltframework.org/plugins/FilterSox/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterTcolor$ https://www.mltframework.org/plugins/FilterTcolor/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterThreshold$ https://www.mltframework.org/plugins/FilterThreshold/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterTransition$ https://www.mltframework.org/plugins/FilterTransition/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterVideostab$ https://www.mltframework.org/plugins/FilterVideostab/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterVideostab2$ https://www.mltframework.org/plugins/FilterVideostab2/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterVidstab$ https://www.mltframework.org/plugins/FilterVidstab/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterVignette$ https://www.mltframework.org/plugins/FilterVignette/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterVismv$ https://www.mltframework.org/plugins/FilterVismv/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterVolume$ https://www.mltframework.org/plugins/FilterVolume/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterWatermark$ https://www.mltframework.org/plugins/FilterWatermark/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FilterWave$ https://www.mltframework.org/plugins/FilterWave/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Framework$ https://www.mltframework.org/docs/framework/ permanent;
rewrite ^/mlt_web/bin/view/MLT/FxCut$ https://www.mltframework.org/docs/fxcut/ permanent;
rewrite ^/mlt_web/bin/view/MLT/HallOfFame$ https://www.mltframework.org/halloffame/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Install$ https://www.mltframework.org/docs/install/ permanent;
rewrite ^/mlt_web/bin/view/MLT/LibMvcp$ https://www.mltframework.org/docs/libmvcp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MVCP$ https://www.mltframework.org/docs/mvcp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Melted$ https://www.mltframework.org/melted/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MeltedMultiConsumer$ https://www.mltframework.org/docs/meltedmulticonsumer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MeltedResources$ https://www.mltframework.org/melted/resources/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MetadataRequirements$ https://www.mltframework.org/docs/metadatarequirements/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MetadataSchema$ https://www.mltframework.org/docs/metadatarequirements/metadataschema/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MetadataYamlSample$ https://www.mltframework.org/docs/metadatarequirements/metadatayamlsample/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MltMelt$ https://www.mltframework.org/docs/melt/ permanent;
rewrite ^/mlt_web/bin/view/MLT/MltXml$ https://www.mltframework.org/docs/mltxml/ permanent;
rewrite ^/mlt_web/bin/view/MLT/OnlineSupport$ https://www.mltframework.org/support/ permanent;
rewrite ^/mlt_web/bin/view/MLT/OpenGL$ https://www.mltframework.org/docs/opengl/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PerlExamples$ https://www.mltframework.org/docs/perlthumbnail/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PluginsConsumers$ https://www.mltframework.org/plugins/PluginsConsumers/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PluginsFilters$ https://www.mltframework.org/plugins/PluginsFilters/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PluginsProducers$ https://www.mltframework.org/plugins/PluginsProducers/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PluginsTransitions$ https://www.mltframework.org/plugins/PluginsTransitions/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerAvformat$ https://www.mltframework.org/plugins/ProducerAvformat/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerBlipflash$ https://www.mltframework.org/plugins/ProducerBlipflash/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerColor$ https://www.mltframework.org/plugins/ProducerColor/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerColour$ https://www.mltframework.org/plugins/ProducerColour/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerConsumer$ https://www.mltframework.org/plugins/ProducerConsumer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerCount$ https://www.mltframework.org/plugins/ProducerCount/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerDecklink$ https://www.mltframework.org/plugins/ProducerDecklink/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFramebuffer$ https://www.mltframework.org/plugins/ProducerFramebuffer/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-ising0r$ https://www.mltframework.org/plugins/ProducerFrei0r-ising0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-lissajous0r$ https://www.mltframework.org/plugins/ProducerFrei0r-lissajous0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-nois0r$ https://www.mltframework.org/plugins/ProducerFrei0r-nois0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-onecol0r$ https://www.mltframework.org/plugins/ProducerFrei0r-onecol0r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-partik0l$ https://www.mltframework.org/plugins/ProducerFrei0r-partik0l/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-plasma$ https://www.mltframework.org/plugins/ProducerFrei0r-plasma/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-test_pat_b$ https://www.mltframework.org/plugins/ProducerFrei0r-test_pat_b/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-test_pat_c$ https://www.mltframework.org/plugins/ProducerFrei0r-test_pat_c/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-test_pat_g$ https://www.mltframework.org/plugins/ProducerFrei0r-test_pat_g/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-test_pat_i$ https://www.mltframework.org/plugins/ProducerFrei0r-test_pat_i/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-test_pat_l$ https://www.mltframework.org/plugins/ProducerFrei0r-test_pat_l/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerFrei0r-test_pat_r$ https://www.mltframework.org/plugins/ProducerFrei0r-test_pat_r/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerHold$ https://www.mltframework.org/plugins/ProducerHold/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerKdenlivetitle$ https://www.mltframework.org/plugins/ProducerKdenlivetitle/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1047$ https://www.mltframework.org/plugins/ProducerLadspa-1047/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1050$ https://www.mltframework.org/plugins/ProducerLadspa-1050/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1066$ https://www.mltframework.org/plugins/ProducerLadspa-1066/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1069$ https://www.mltframework.org/plugins/ProducerLadspa-1069/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1086$ https://www.mltframework.org/plugins/ProducerLadspa-1086/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1221$ https://www.mltframework.org/plugins/ProducerLadspa-1221/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1222$ https://www.mltframework.org/plugins/ProducerLadspa-1222/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1223$ https://www.mltframework.org/plugins/ProducerLadspa-1223/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1226$ https://www.mltframework.org/plugins/ProducerLadspa-1226/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1416$ https://www.mltframework.org/plugins/ProducerLadspa-1416/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1642$ https://www.mltframework.org/plugins/ProducerLadspa-1642/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1644$ https://www.mltframework.org/plugins/ProducerLadspa-1644/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1648$ https://www.mltframework.org/plugins/ProducerLadspa-1648/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1652$ https://www.mltframework.org/plugins/ProducerLadspa-1652/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1660$ https://www.mltframework.org/plugins/ProducerLadspa-1660/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1664$ https://www.mltframework.org/plugins/ProducerLadspa-1664/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1769$ https://www.mltframework.org/plugins/ProducerLadspa-1769/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1770$ https://www.mltframework.org/plugins/ProducerLadspa-1770/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1774$ https://www.mltframework.org/plugins/ProducerLadspa-1774/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1780$ https://www.mltframework.org/plugins/ProducerLadspa-1780/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1781$ https://www.mltframework.org/plugins/ProducerLadspa-1781/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1783$ https://www.mltframework.org/plugins/ProducerLadspa-1783/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1784$ https://www.mltframework.org/plugins/ProducerLadspa-1784/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1785$ https://www.mltframework.org/plugins/ProducerLadspa-1785/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1841$ https://www.mltframework.org/plugins/ProducerLadspa-1841/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1843$ https://www.mltframework.org/plugins/ProducerLadspa-1843/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1844$ https://www.mltframework.org/plugins/ProducerLadspa-1844/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1881$ https://www.mltframework.org/plugins/ProducerLadspa-1881/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-1885$ https://www.mltframework.org/plugins/ProducerLadspa-1885/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-2038$ https://www.mltframework.org/plugins/ProducerLadspa-2038/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-2541$ https://www.mltframework.org/plugins/ProducerLadspa-2541/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-2542$ https://www.mltframework.org/plugins/ProducerLadspa-2542/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLadspa-2585$ https://www.mltframework.org/plugins/ProducerLadspa-2585/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLibdv$ https://www.mltframework.org/plugins/ProducerLibdv/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerLoader$ https://www.mltframework.org/plugins/ProducerLoader/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerMelt$ https://www.mltframework.org/plugins/ProducerMelt/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerMelt_file$ https://www.mltframework.org/plugins/ProducerMelt_file/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerNoise$ https://www.mltframework.org/plugins/ProducerNoise/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerPango$ https://www.mltframework.org/plugins/ProducerPango/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerPgm$ https://www.mltframework.org/plugins/ProducerPgm/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerPixbuf$ https://www.mltframework.org/plugins/ProducerPixbuf/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerQimage$ https://www.mltframework.org/plugins/ProducerQimage/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerQtext$ https://www.mltframework.org/plugins/ProducerQtext/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerSlowmotion$ https://www.mltframework.org/plugins/ProducerSlowmotion/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerSwfdec$ https://www.mltframework.org/plugins/ProducerSwfdec/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerTimewarp$ https://www.mltframework.org/plugins/ProducerTimewarp/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerTone$ https://www.mltframework.org/plugins/ProducerTone/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerVorbis$ https://www.mltframework.org/plugins/ProducerVorbis/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerXml-nogl$ https://www.mltframework.org/plugins/ProducerXml-nogl/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerXml-string$ https://www.mltframework.org/plugins/ProducerXml-string/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProducerXml$ https://www.mltframework.org/plugins/ProducerXml/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Profiles$ https://www.mltframework.org/docs/profiles/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ProjectNews$ https://www.mltframework.org/blog/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Projects$ https://www.mltframework.org/projects/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PropertyAnimation$ https://www.mltframework.org/docs/propertyanimation/ permanent;
rewrite ^/mlt_web/bin/view/MLT/PropertyPresets$ https://www.mltframework.org/docs/presets/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Questions$ https://www.mltframework.org/faq/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ScriptBindings$ https://www.mltframework.org/docs/scriptbindings/ permanent;
rewrite ^/mlt_web/bin/view/MLT/Services$ https://www.mltframework.org/docs/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ThumbnailGenerator$ https://www.mltframework.org/docs/perlthumbnail/ permanent;
rewrite ^/mlt_web/bin/view/MLT/ToDo$ https://www.mltframework.org/changes/ToDo/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionAffine$ https://www.mltframework.org/plugins/TransitionAffine/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionComposite$ https://www.mltframework.org/plugins/TransitionComposite/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-addition$ https://www.mltframework.org/plugins/TransitionFrei0r-addition/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-addition_alpha$ https://www.mltframework.org/plugins/TransitionFrei0r-addition_alpha/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-alphaatop$ https://www.mltframework.org/plugins/TransitionFrei0r-alphaatop/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-alphain$ https://www.mltframework.org/plugins/TransitionFrei0r-alphain/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-alphainjection$ https://www.mltframework.org/plugins/TransitionFrei0r-alphainjection/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-alphaout$ https://www.mltframework.org/plugins/TransitionFrei0r-alphaout/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-alphaover$ https://www.mltframework.org/plugins/TransitionFrei0r-alphaover/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-alphaxor$ https://www.mltframework.org/plugins/TransitionFrei0r-alphaxor/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-blend$ https://www.mltframework.org/plugins/TransitionFrei0r-blend/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-burn$ https://www.mltframework.org/plugins/TransitionFrei0r-burn/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-cairoaffineblend$ https://www.mltframework.org/plugins/TransitionFrei0r-cairoaffineblend/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-cairoblend$ https://www.mltframework.org/plugins/TransitionFrei0r-cairoblend/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-color_only$ https://www.mltframework.org/plugins/TransitionFrei0r-color_only/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-composition$ https://www.mltframework.org/plugins/TransitionFrei0r-composition/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-darken$ https://www.mltframework.org/plugins/TransitionFrei0r-darken/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-difference$ https://www.mltframework.org/plugins/TransitionFrei0r-difference/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-divide$ https://www.mltframework.org/plugins/TransitionFrei0r-divide/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-dodge$ https://www.mltframework.org/plugins/TransitionFrei0r-dodge/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-grain_extract$ https://www.mltframework.org/plugins/TransitionFrei0r-grain_extract/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-grain_merge$ https://www.mltframework.org/plugins/TransitionFrei0r-grain_merge/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-hardlight$ https://www.mltframework.org/plugins/TransitionFrei0r-hardlight/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-hue$ https://www.mltframework.org/plugins/TransitionFrei0r-hue/ permanent;
rewrite ^/mlt_web/bin/view/MLT/TransitionFrei0r-lighten$ https://www.mltframework.org/plugins/TransitionFrei0r-lighten/ permanent;