-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathroutes.js
810 lines (768 loc) · 71.5 KB
/
routes.js
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
// prototype views
// app.set('views', __dirname + '/views/prototype_161025');
// routes
app.use(require('./routes/start'));
app.use('/prototype_161025/static', require('./routes/prototype_161025/static'));
app.use('/prototype_161025/forms', require('./routes/prototype_161025/forms'));
app.use('/prototype_161025/sar', require('./routes/prototype_161025/sar'));
app.use('/prototype_161025/overseas', require('./routes/prototype_161025/overseas'));
app.use('/prototype_161025/uploadphoto', require('./routes/prototype_161025/uploadphoto'));
app.use('/prototype_161025/photoguide-myself', require('./routes/prototype_161025/photoguide-myself'));
app.use('/prototype_161025/renew', require('./routes/prototype_161025/renew'));
app.use('/prototype_161025/intro', require('./routes/prototype_161025/intro'));
app.use('/prototype_161025/filter', require('./routes/prototype_161025/filter'));
app.use('/prototype_161025/startpage', require('./routes/prototype_161025/startpage'));
app.use('/prototype_161025/renew', require('./routes/prototype_161025/renew'));
//prototype 161110
app.use('/prototype_161110/static', require('./routes/prototype_161110/static'));
app.use('/prototype_161110/forms', require('./routes/prototype_161110/forms'));
app.use('/prototype_161110/sar', require('./routes/prototype_161110/sar'));
app.use('/prototype_161110/overseas', require('./routes/prototype_161110/overseas'));
app.use('/prototype_161110/uploadphoto', require('./routes/prototype_161110/uploadphoto'));
app.use('/prototype_161110/photoguide-myself', require('./routes/prototype_161110/photoguide-myself'));
app.use('/prototype_161110/renew', require('./routes/prototype_161110/renew'));
app.use('/prototype_161110/intro', require('./routes/prototype_161110/intro'));
app.use('/prototype_161110/filter', require('./routes/prototype_161110/filter'));
app.use('/prototype_161110/startpage', require('./routes/prototype_161110/startpage'));
app.use('/prototype_161110/photoguide-short', require('./routes/prototype_161110/photoguide-short'));
app.use('/prototype_161110/photoguide-static', require('./routes/prototype_161110/photoguide-static'));
//prototype 161124
app.use('/prototype_161124/overseas', require('./routes/prototype_161124/overseas'));
app.use('/prototype_161124/uploadphoto', require('./routes/prototype_161124/uploadphoto'));
app.use('/prototype_161124/photoguide-myself', require('./routes/prototype_161124/photoguide-myself'));
app.use('/prototype_161124/renew', require('./routes/prototype_161124/renew'));
app.use('/prototype_161124/intro', require('./routes/prototype_161124/intro'));
app.use('/prototype_161124/filter', require('./routes/prototype_161124/filter'));
app.use('/prototype_161124/startpage', require('./routes/prototype_161124/startpage'));
app.use('/prototype_161124/photoguide-short', require('./routes/prototype_161124/photoguide-short'));
app.use('/prototype_161124/photoguide-static', require('./routes/prototype_161124/photoguide-static'));
app.use('/prototype_161124/photoguide-shop', require('./routes/prototype_161124/photoguide-shop'));
app.use('/prototype_161124/renew-without-photo', require('./routes/prototype_161124/renew-without-photo'));
app.use('/prototype_161124/takephoto', require('./routes/prototype_161124/takephoto'));
app.use('/prototype_161124/upload', require('./routes/prototype_161124/upload'));
//prototype 161212
app.use('/prototype_161212/overseas', require('./routes/prototype_161212/overseas'));
app.use('/prototype_161212/overseas-not-eligible', require('./routes/prototype_161212/overseas-not-eligible'));
app.use('/prototype_161212/uploadphoto', require('./routes/prototype_161212/uploadphoto'));
app.use('/prototype_161212/filter-common', require('./routes/prototype_161212/filter-common'));
app.use('/prototype_161212/renew', require('./routes/prototype_161212/renew'));
app.use('/prototype_161212/intro', require('./routes/prototype_161212/intro'));
app.use('/prototype_161212/filter', require('./routes/prototype_161212/filter'));
app.use('/prototype_161212/startpage', require('./routes/prototype_161212/startpage'));
app.use('/prototype_161212/startpage-overseas', require('./routes/prototype_161212/startpage-overseas'));
app.use('/prototype_161212/photoguide-short', require('./routes/prototype_161212/photoguide-short'));
app.use('/prototype_161212/photoguide-static', require('./routes/prototype_161212/photoguide-static'));
app.use('/prototype_161212/photoguide-shop', require('./routes/prototype_161212/photoguide-shop'));
app.use('/prototype_161212/renew-without-photo', require('./routes/prototype_161212/renew-without-photo'));
app.use('/prototype_161212/takephoto', require('./routes/prototype_161212/takephoto'));
app.use('/prototype_161212/upload', require('./routes/prototype_161212/upload'));
app.use('/prototype_161212/rejectedphoto', require('./routes/prototype_161212/rejectedphoto'));
app.use('/prototype_161212/filter-common-temp', require('./routes/prototype_161212/filter-common-temp'));
app.use('/prototype_161212/startpage-temp', require('./routes/prototype_161212/startpage-temp'));
//prototype 170123
app.use('/prototype_170123/overseas', require('./routes/prototype_170123/overseas'));
app.use('/prototype_170123/overseas-not-eligible', require('./routes/prototype_170123/overseas-not-eligible'));
app.use('/prototype_170123/overseas-first', require('./routes/prototype_170123/overseas-first'));
app.use('/prototype_170123/overseas-lost-change', require('./routes/prototype_170123/overseas-lost-change'));
app.use('/prototype_170123/uploadphoto', require('./routes/prototype_170123/uploadphoto'));
app.use('/prototype_170123/filter-common', require('./routes/prototype_170123/filter-common'));
app.use('/prototype_170123/renew', require('./routes/prototype_170123/renew'));
app.use('/prototype_170123/intro', require('./routes/prototype_170123/intro'));
app.use('/prototype_170123/filter', require('./routes/prototype_170123/filter'));
app.use('/prototype_170123/startpage', require('./routes/prototype_170123/startpage'));
app.use('/prototype_170123/startpage-overseas', require('./routes/prototype_170123/startpage-overseas'));
app.use('/prototype_170123/photoguide-short', require('./routes/prototype_170123/photoguide-short'));
app.use('/prototype_170123/photoguide-static', require('./routes/prototype_170123/photoguide-static'));
app.use('/prototype_170123/photoguide-shop', require('./routes/prototype_170123/photoguide-shop'));
app.use('/prototype_170123/takephoto', require('./routes/prototype_170123/takephoto'));
app.use('/prototype_170123/upload', require('./routes/prototype_170123/upload'));
app.use('/prototype_170123/rejectedphoto', require('./routes/prototype_170123/rejectedphoto'));
app.use('/prototype_170123/filter-common-temp', require('./routes/prototype_170123/filter-common-temp'));
app.use('/prototype_170123/startpage-temp', require('./routes/prototype_170123/startpage-temp'));
app.use('/prototype_170123/overseas-not-available', require('./routes/prototype_170123/overseas-not-available'));
//prototype ovs - or 170331
app.use('/change_of_name_171101/overseas', require('./routes/change_of_name_171101/overseas'));
app.use('/change_of_name_171101/overseas-not-eligible', require('./routes/change_of_name_171101/overseas-not-eligible'));
app.use('/change_of_name_171101/overseas-first', require('./routes/change_of_name_171101/overseas-first'));
app.use('/change_of_name_171101/overseas-lost-change', require('./routes/change_of_name_171101/overseas-lost-change'));
app.use('/change_of_name_171101/uploadphoto', require('./routes/change_of_name_171101/uploadphoto'));
app.use('/change_of_name_171101/filter-common', require('./routes/change_of_name_171101/filter-common'));
app.use('/change_of_name_171101/renew', require('./routes/change_of_name_171101/renew'));
app.use('/change_of_name_171101/intro', require('./routes/change_of_name_171101/intro'));
app.use('/change_of_name_171101/filter', require('./routes/change_of_name_171101/filter'));
app.use('/change_of_name_171101/startpage', require('./routes/change_of_name_171101/startpage'));
app.use('/change_of_name_171101/startpage-overseas', require('./routes/change_of_name_171101/startpage-overseas'));
app.use('/change_of_name_171101/photoguide-short', require('./routes/change_of_name_171101/photoguide-short'));
app.use('/change_of_name_171101/photoguide-static', require('./routes/change_of_name_171101/photoguide-static'));
app.use('/change_of_name_171101/photoguide-shop', require('./routes/change_of_name_171101/photoguide-shop'));
app.use('/change_of_name_171101/takephoto', require('./routes/change_of_name_171101/takephoto'));
app.use('/change_of_name_171101/upload', require('./routes/change_of_name_171101/upload'));
app.use('/change_of_name_171101/rejectedphoto', require('./routes/change_of_name_171101/rejectedphoto'));
app.use('/change_of_name_171101/filter-common-temp', require('./routes/change_of_name_171101/filter-common-temp'));
app.use('/change_of_name_171101/startpage-temp', require('./routes/change_of_name_171101/startpage-temp'));
app.use('/change_of_name_171101/overseas-not-available', require('./routes/change_of_name_171101/overseas-not-available'));
app.use('/change_of_name_171101/throttle', require('./routes/change_of_name_171101/throttle'));
app.use('/change_of_name_171101/payment', require('./routes/change_of_name_171101/payment'));
app.use('/change_of_name_171101/submission-failed', require('./routes/change_of_name_171101/submission-failed'));
app.use('/change_of_name_171101/sar', require('./routes/change_of_name_171101/sar'));
app.use('/change_of_name_171101/photo-url', require('./routes/change_of_name_171101/photo-url'));
app.use('/change_of_name_171101/photo-code', require('./routes/change_of_name_171101/photo-code'));
app.use('/change_of_name_171101/mismatch', require('./routes/change_of_name_171101/mismatch'));
app.use('/change_of_name_171101/redirect-tracking', require('./routes/change_of_name_171101/redirect-tracking'));
//prototype OIX 120518
app.use('/prototype_oix_170518/uploadphoto', require('./routes/prototype_oix_170518/uploadphoto'));
app.use('/prototype_oix_170518/filter-common', require('./routes/prototype_oix_170518/filter-common'));
app.use('/prototype_oix_170518/renew', require('./routes/prototype_oix_170518/renew'));
app.use('/prototype_oix_170518/intro', require('./routes/prototype_oix_170518/intro'));
app.use('/prototype_oix_170518/filter', require('./routes/prototype_oix_170518/filter'));
app.use('/prototype_oix_170518/startpage', require('./routes/prototype_oix_170518/startpage'));
app.use('/prototype_oix_170518/photoguide-short', require('./routes/prototype_oix_170518/photoguide-short'));
app.use('/prototype_oix_170518/photoguide-static', require('./routes/prototype_oix_170518/photoguide-static'));
app.use('/prototype_oix_170518/photoguide-shop', require('./routes/prototype_oix_170518/photoguide-shop'));
app.use('/prototype_oix_170518/takephoto', require('./routes/prototype_oix_170518/takephoto'));
app.use('/prototype_oix_170518/upload', require('./routes/prototype_oix_170518/upload'));
app.use('/prototype_oix_170518/rejectedphoto', require('./routes/prototype_oix_170518/rejectedphoto'));
app.use('/prototype_oix_170518/throttle', require('./routes/prototype_oix_170518/throttle'));
app.use('/prototype_oix_170518/payment', require('./routes/prototype_oix_170518/payment'));
app.use('/prototype_oix_170518/submission-failed', require('./routes/prototype_oix_170518/submission-failed'));
app.use('/prototype_oix_170518/sar', require('./routes/prototype_oix_170518/sar'));
app.use('/prototype_oix_170518/photo-url', require('./routes/prototype_oix_170518/photo-url'));
app.use('/prototype_oix_170518/photo-code', require('./routes/prototype_oix_170518/photo-code'));
app.use('/prototype_oix_170518/oix', require('./routes/prototype_oix_170518/oix'));
app.use('/prototype_oix_170518/intro-oix', require('./routes/prototype_oix_170518/intro-oix'));
app.use('/prototype_oix_170518/photo-retrieved', require('./routes/prototype_oix_170518/photo-retrieved'));
app.use('/prototype_oix_170518/startpage-oix', require('./routes/prototype_oix_170518/startpage-oix'));
app.use('/prototype_oix_170518/filter-oix', require('./routes/prototype_oix_170518/filter-oix'));
app.use('/prototype_oix_170518/filter-common-oix', require('./routes/prototype_oix_170518/filter-common-oix'));
//prototype OIX 120518
app.use('/prototype_oix_170601/uploadphoto', require('./routes/prototype_oix_170601/uploadphoto'));
app.use('/prototype_oix_170601/filter-common', require('./routes/prototype_oix_170601/filter-common'));
app.use('/prototype_oix_170601/renew', require('./routes/prototype_oix_170601/renew'));
app.use('/prototype_oix_170601/intro', require('./routes/prototype_oix_170601/intro'));
app.use('/prototype_oix_170601/filter', require('./routes/prototype_oix_170601/filter'));
app.use('/prototype_oix_170601/startpage', require('./routes/prototype_oix_170601/startpage'));
app.use('/prototype_oix_170601/photoguide-short', require('./routes/prototype_oix_170601/photoguide-short'));
app.use('/prototype_oix_170601/photoguide-static', require('./routes/prototype_oix_170601/photoguide-static'));
app.use('/prototype_oix_170601/photoguide-shop', require('./routes/prototype_oix_170601/photoguide-shop'));
app.use('/prototype_oix_170601/takephoto', require('./routes/prototype_oix_170601/takephoto'));
app.use('/prototype_oix_170601/upload', require('./routes/prototype_oix_170601/upload'));
app.use('/prototype_oix_170601/rejectedphoto', require('./routes/prototype_oix_170601/rejectedphoto'));
app.use('/prototype_oix_170601/throttle', require('./routes/prototype_oix_170601/throttle'));
app.use('/prototype_oix_170601/payment', require('./routes/prototype_oix_170601/payment'));
app.use('/prototype_oix_170601/submission-failed', require('./routes/prototype_oix_170601/submission-failed'));
app.use('/prototype_oix_170601/sar', require('./routes/prototype_oix_170601/sar'));
app.use('/prototype_oix_170601/photo-url', require('./routes/prototype_oix_170601/photo-url'));
app.use('/prototype_oix_170601/photo-code', require('./routes/prototype_oix_170601/photo-code'));
app.use('/prototype_oix_170601/oix', require('./routes/prototype_oix_170601/oix'));
app.use('/prototype_oix_170601/intro-oix', require('./routes/prototype_oix_170601/intro-oix'));
app.use('/prototype_oix_170601/photo-retrieved', require('./routes/prototype_oix_170601/photo-retrieved'));
app.use('/prototype_oix_170601/startpage-oix', require('./routes/prototype_oix_170601/startpage-oix'));
app.use('/prototype_oix_170601/filter-oix', require('./routes/prototype_oix_170601/filter-oix'));
app.use('/prototype_oix_170601/filter-common-oix', require('./routes/prototype_oix_170601/filter-common-oix'));
//prototype 170118
app.use('/priority_service_170118/overseas', require('./routes/priority_service_170118/overseas'));
app.use('/priority_service_170118/overseas-not-eligible', require('./routes/priority_service_170118/overseas-not-eligible'));
app.use('/priority_service_170118/overseas-first', require('./routes/priority_service_170118/overseas-first'));
app.use('/priority_service_170118/overseas-lost-change', require('./routes/priority_service_170118/overseas-lost-change')); app.use('/priority_service_170118/uploadphoto', require('./routes/priority_service_170118/uploadphoto'));
app.use('/priority_service_170118/filter-common', require('./routes/priority_service_170118/filter-common'))
app.use('/priority_service_170118/renew', require('./routes/priority_service_170118/renew'));
app.use('/priority_service_170118/intro', require('./routes/priority_service_170118/intro'));
app.use('/priority_service_170118/filter', require('./routes/priority_service_170118/filter'));
app.use('/priority_service_170118/startpage', require('./routes/priority_service_170118/startpage'));
app.use('/priority_service_170118/startpage-overseas', require('./routes/priority_service_170118/startpage-overseas'));
app.use('/priority_service_170118/photoguide-short', require('./routes/priority_service_170118/photoguide-short'));
app.use('/priority_service_170118/photoguide-static', require('./routes/priority_service_170118/photoguide-static'));
app.use('/priority_service_170118/photoguide-shop', require('./routes/priority_service_170118/photoguide-shop'));
app.use('/priority_service_170118/takephoto', require('./routes/priority_service_170118/takephoto')); app.use('/priority_service_170118/upload', require('./routes/priority_service_170118/upload'));
app.use('/priority_service_170118/rejectedphoto', require('./routes/priority_service_170118/rejectedphoto'));
app.use('/priority_service_170118/filter-common-temp', require('./routes/priority_service_170118/filter-common-temp'));
app.use('/priority_service_170118/startpage-temp', require('./routes/priority_service_170118/startpage-temp'));
app.use('/priority_service_170118/get-urgent-passport', require('./routes/priority_service_170118/get-urgent-passport'));
app.use('/priority_service_170118/book-appointment', require('./routes/priority_service_170118/book-appointment'));
app.use('/priority_service_170118/not-eligible', require('./routes/priority_service_170118/not-eligible'));
//prototype 170202
app.use('/priority_service_170202/overseas', require('./routes/priority_service_170202/overseas'));
app.use('/priority_service_170202/overseas-not-eligible', require('./routes/priority_service_170202/overseas-not-eligible'));
app.use('/priority_service_170202/overseas-first', require('./routes/priority_service_170202/overseas-first'));
app.use('/priority_service_170202/overseas-lost-change', require('./routes/priority_service_170202/overseas-lost-change')); app.use('/priority_service_170202/uploadphoto', require('./routes/priority_service_170202/uploadphoto'));
app.use('/priority_service_170202/filter-common', require('./routes/priority_service_170202/filter-common'))
app.use('/priority_service_170202/renew', require('./routes/priority_service_170202/renew'));
app.use('/priority_service_170202/intro', require('./routes/priority_service_170202/intro'));
app.use('/priority_service_170202/filter', require('./routes/priority_service_170202/filter'));
app.use('/priority_service_170202/startpage', require('./routes/priority_service_170202/startpage'));
app.use('/priority_service_170202/startpage-overseas', require('./routes/priority_service_170202/startpage-overseas'));
app.use('/priority_service_170202/photoguide-short', require('./routes/priority_service_170202/photoguide-short'));
app.use('/priority_service_170202/photoguide-static', require('./routes/priority_service_170202/photoguide-static'));
app.use('/priority_service_170202/photoguide-shop', require('./routes/priority_service_170202/photoguide-shop'));
app.use('/priority_service_170202/takephoto', require('./routes/priority_service_170202/takephoto')); app.use('/priority_service_170202/upload', require('./routes/priority_service_170202/upload'));
app.use('/priority_service_170202/rejectedphoto', require('./routes/priority_service_170202/rejectedphoto'));
app.use('/priority_service_170202/filter-common-temp', require('./routes/priority_service_170202/filter-common-temp'));
app.use('/priority_service_170202/startpage-temp', require('./routes/priority_service_170202/startpage-temp'));
app.use('/priority_service_170202/get-urgent-passport', require('./routes/priority_service_170202/get-urgent-passport'));
app.use('/priority_service_170202/book-appointment', require('./routes/priority_service_170202/book-appointment'));
app.use('/priority_service_170202/not-eligible', require('./routes/priority_service_170202/not-eligible'));
//prototype 170215
app.use('/priority_service_170215/overseas', require('./routes/priority_service_170215/overseas'));
app.use('/priority_service_170215/overseas-not-eligible', require('./routes/priority_service_170215/overseas-not-eligible'));
app.use('/priority_service_170215/overseas-first', require('./routes/priority_service_170215/overseas-first'));
app.use('/priority_service_170215/overseas-lost-change', require('./routes/priority_service_170215/overseas-lost-change'));
app.use('/priority_service_170215/uploadphoto', require('./routes/priority_service_170215/uploadphoto'));
app.use('/priority_service_170215/filter-common', require('./routes/priority_service_170215/filter-common'))
app.use('/priority_service_170215/renew', require('./routes/priority_service_170215/renew'));
app.use('/priority_service_170215/intro', require('./routes/priority_service_170215/intro'));
app.use('/priority_service_170215/filter', require('./routes/priority_service_170215/filter'));
app.use('/priority_service_170215/startpage', require('./routes/priority_service_170215/startpage'));
app.use('/priority_service_170215/startpage-overseas', require('./routes/priority_service_170215/startpage-overseas'));
app.use('/priority_service_170215/photoguide-short', require('./routes/priority_service_170215/photoguide-short'));
app.use('/priority_service_170215/photoguide-static', require('./routes/priority_service_170215/photoguide-static'));
app.use('/priority_service_170215/photoguide-shop', require('./routes/priority_service_170215/photoguide-shop'));
app.use('/priority_service_170215/takephoto', require('./routes/priority_service_170215/takephoto'));
app.use('/priority_service_170215/upload', require('./routes/priority_service_170215/upload'));
app.use('/priority_service_170215/rejectedphoto', require('./routes/priority_service_170215/rejectedphoto'));
app.use('/priority_service_170215/filter-common-temp', require('./routes/priority_service_170215/filter-common-temp'));
app.use('/priority_service_170215/startpage-temp', require('./routes/priority_service_170215/startpage-temp'));
app.use('/priority_service_170215/get-urgent-passport', require('./routes/priority_service_170215/get-urgent-passport'));
app.use('/priority_service_170215/book-appointment', require('./routes/priority_service_170215/book-appointment'));
app.use('/priority_service_170215/not-eligible', require('./routes/priority_service_170215/not-eligible'));
app.use('/priority_service_170215/timeout', require('./routes/priority_service_170215/timeout'));
//prototype 170301
app.use('/priority_service_170301/overseas', require('./routes/priority_service_170301/overseas'));
app.use('/priority_service_170301/overseas-not-eligible', require('./routes/priority_service_170301/overseas-not-eligible'));
app.use('/priority_service_170301/overseas-first', require('./routes/priority_service_170301/overseas-first'));
app.use('/priority_service_170301/overseas-lost-change', require('./routes/priority_service_170301/overseas-lost-change'));
app.use('/priority_service_170301/uploadphoto', require('./routes/priority_service_170301/uploadphoto'));
app.use('/priority_service_170301/filter-common', require('./routes/priority_service_170301/filter-common'))
app.use('/priority_service_170301/renew', require('./routes/priority_service_170301/renew'));
app.use('/priority_service_170301/intro', require('./routes/priority_service_170301/intro'));
app.use('/priority_service_170301/filter', require('./routes/priority_service_170301/filter'));
app.use('/priority_service_170301/startpage', require('./routes/priority_service_170301/startpage'));
app.use('/priority_service_170301/startpage-overseas', require('./routes/priority_service_170301/startpage-overseas'));
app.use('/priority_service_170301/photoguide-short', require('./routes/priority_service_170301/photoguide-short'));
app.use('/priority_service_170301/photoguide-static', require('./routes/priority_service_170301/photoguide-static'));
app.use('/priority_service_170301/photoguide-shop', require('./routes/priority_service_170301/photoguide-shop'));
app.use('/priority_service_170301/takephoto', require('./routes/priority_service_170301/takephoto'));
app.use('/priority_service_170301/upload', require('./routes/priority_service_170301/upload'));
app.use('/priority_service_170301/rejectedphoto', require('./routes/priority_service_170301/rejectedphoto'));
app.use('/priority_service_170301/filter-common-temp', require('./routes/priority_service_170301/filter-common-temp'));
app.use('/priority_service_170301/startpage-temp', require('./routes/priority_service_170301/startpage-temp'));
app.use('/priority_service_170301/get-urgent-passport', require('./routes/priority_service_170301/get-urgent-passport'));
app.use('/priority_service_170301/book-appointment', require('./routes/priority_service_170301/book-appointment'));
app.use('/priority_service_170301/not-eligible', require('./routes/priority_service_170301/not-eligible'));
app.use('/priority_service_170301/timeout', require('./routes/priority_service_170301/timeout'));
//prototype 170315
app.use('/priority_service_170315/overseas', require('./routes/priority_service_170315/overseas'));
app.use('/priority_service_170315/overseas-not-eligible', require('./routes/priority_service_170315/overseas-not-eligible'));
app.use('/priority_service_170315/overseas-first', require('./routes/priority_service_170315/overseas-first'));
app.use('/priority_service_170315/overseas-lost-change', require('./routes/priority_service_170315/overseas-lost-change'));
app.use('/priority_service_170315/uploadphoto', require('./routes/priority_service_170315/uploadphoto'));
app.use('/priority_service_170315/filter-common', require('./routes/priority_service_170315/filter-common'))
app.use('/priority_service_170315/renew', require('./routes/priority_service_170315/renew'));
app.use('/priority_service_170315/intro', require('./routes/priority_service_170315/intro'));
app.use('/priority_service_170315/filter', require('./routes/priority_service_170315/filter'));
app.use('/priority_service_170315/startpage', require('./routes/priority_service_170315/startpage'));
app.use('/priority_service_170315/startpage-overseas', require('./routes/priority_service_170315/startpage-overseas'));
app.use('/priority_service_170315/photoguide-short', require('./routes/priority_service_170315/photoguide-short'));
app.use('/priority_service_170315/photoguide-static', require('./routes/priority_service_170315/photoguide-static'));
app.use('/priority_service_170315/photoguide-shop', require('./routes/priority_service_170315/photoguide-shop'));
app.use('/priority_service_170315/takephoto', require('./routes/priority_service_170315/takephoto'));
app.use('/priority_service_170315/upload', require('./routes/priority_service_170315/upload'));
app.use('/priority_service_170315/rejectedphoto', require('./routes/priority_service_170315/rejectedphoto'));
app.use('/priority_service_170315/filter-common-temp', require('./routes/priority_service_170315/filter-common-temp'));
app.use('/priority_service_170315/startpage-temp', require('./routes/priority_service_170315/startpage-temp'));
app.use('/priority_service_170315/get-urgent-passport', require('./routes/priority_service_170315/get-urgent-passport'));
app.use('/priority_service_170315/book-appointment', require('./routes/priority_service_170315/book-appointment'));
app.use('/priority_service_170315/not-eligible', require('./routes/priority_service_170315/not-eligible'));
app.use('/priority_service_170315/timeout', require('./routes/priority_service_170315/timeout'));
//prototype 170330
app.use('/priority_service_170330/overseas', require('./routes/priority_service_170330/overseas'));
app.use('/priority_service_170330/overseas-not-eligible', require('./routes/priority_service_170330/overseas-not-eligible'));
app.use('/priority_service_170330/overseas-first', require('./routes/priority_service_170330/overseas-first'));
app.use('/priority_service_170330/overseas-lost-change', require('./routes/priority_service_170330/overseas-lost-change'));
app.use('/priority_service_170330/uploadphoto', require('./routes/priority_service_170330/uploadphoto'));
app.use('/priority_service_170330/filter-common', require('./routes/priority_service_170330/filter-common'))
app.use('/priority_service_170330/renew', require('./routes/priority_service_170330/renew'));
app.use('/priority_service_170330/intro', require('./routes/priority_service_170330/intro'));
app.use('/priority_service_170330/filter', require('./routes/priority_service_170330/filter'));
app.use('/priority_service_170330/startpage', require('./routes/priority_service_170330/startpage'));
app.use('/priority_service_170330/startpage-overseas', require('./routes/priority_service_170330/startpage-overseas'));
app.use('/priority_service_170330/photoguide-short', require('./routes/priority_service_170330/photoguide-short'));
app.use('/priority_service_170330/photoguide-static', require('./routes/priority_service_170330/photoguide-static'));
app.use('/priority_service_170330/photoguide-shop', require('./routes/priority_service_170330/photoguide-shop'));
app.use('/priority_service_170330/takephoto', require('./routes/priority_service_170330/takephoto'));
app.use('/priority_service_170330/upload', require('./routes/priority_service_170330/upload'));
app.use('/priority_service_170330/rejectedphoto', require('./routes/priority_service_170330/rejectedphoto'));
app.use('/priority_service_170330/filter-common-temp', require('./routes/priority_service_170330/filter-common-temp'));
app.use('/priority_service_170330/startpage-temp', require('./routes/priority_service_170330/startpage-temp'));
app.use('/priority_service_170330/get-urgent-passport', require('./routes/priority_service_170330/get-urgent-passport'));
app.use('/priority_service_170330/book-appointment', require('./routes/priority_service_170330/book-appointment'));
app.use('/priority_service_170330/not-eligible', require('./routes/priority_service_170330/not-eligible'));
app.use('/priority_service_170330/timeout', require('./routes/priority_service_170330/timeout'));
//prototype 170419
app.use('/priority_service_170419/overseas', require('./routes/priority_service_170419/overseas'));
app.use('/priority_service_170419/overseas-not-eligible', require('./routes/priority_service_170419/overseas-not-eligible'));
app.use('/priority_service_170419/overseas-first', require('./routes/priority_service_170419/overseas-first'));
app.use('/priority_service_170419/overseas-lost-change', require('./routes/priority_service_170419/overseas-lost-change'));
app.use('/priority_service_170419/uploadphoto', require('./routes/priority_service_170419/uploadphoto'));
app.use('/priority_service_170419/filter-common', require('./routes/priority_service_170419/filter-common'))
app.use('/priority_service_170419/renew', require('./routes/priority_service_170419/renew'));
app.use('/priority_service_170419/intro', require('./routes/priority_service_170419/intro'));
app.use('/priority_service_170419/filter', require('./routes/priority_service_170419/filter'));
app.use('/priority_service_170419/startpage', require('./routes/priority_service_170419/startpage'));
app.use('/priority_service_170419/startpage-overseas', require('./routes/priority_service_170419/startpage-overseas'));
app.use('/priority_service_170419/photoguide-short', require('./routes/priority_service_170419/photoguide-short'));
app.use('/priority_service_170419/photoguide-static', require('./routes/priority_service_170419/photoguide-static'));
app.use('/priority_service_170419/photoguide-shop', require('./routes/priority_service_170419/photoguide-shop'));
app.use('/priority_service_170419/takephoto', require('./routes/priority_service_170419/takephoto'));
app.use('/priority_service_170419/upload', require('./routes/priority_service_170419/upload'));
app.use('/priority_service_170419/rejectedphoto', require('./routes/priority_service_170419/rejectedphoto'));
app.use('/priority_service_170419/filter-common-temp', require('./routes/priority_service_170419/filter-common-temp'));
app.use('/priority_service_170419/startpage-temp', require('./routes/priority_service_170419/startpage-temp'));
app.use('/priority_service_170419/get-urgent-passport', require('./routes/priority_service_170419/get-urgent-passport'));
app.use('/priority_service_170419/book-appointment', require('./routes/priority_service_170419/book-appointment'));
app.use('/priority_service_170419/not-eligible', require('./routes/priority_service_170419/not-eligible'));
app.use('/priority_service_170419/timeout', require('./routes/priority_service_170419/timeout'));
//prototype 170419
app.use('/priority_service_170510/overseas', require('./routes/priority_service_170510/overseas'));
app.use('/priority_service_170510/overseas-not-eligible', require('./routes/priority_service_170510/overseas-not-eligible'));
app.use('/priority_service_170510/overseas-first', require('./routes/priority_service_170510/overseas-first'));
app.use('/priority_service_170510/overseas-lost-change', require('./routes/priority_service_170510/overseas-lost-change'));
app.use('/priority_service_170510/uploadphoto', require('./routes/priority_service_170510/uploadphoto'));
app.use('/priority_service_170510/filter-common', require('./routes/priority_service_170510/filter-common'))
app.use('/priority_service_170510/renew', require('./routes/priority_service_170510/renew'));
app.use('/priority_service_170510/intro', require('./routes/priority_service_170510/intro'));
app.use('/priority_service_170510/filter', require('./routes/priority_service_170510/filter'));
app.use('/priority_service_170510/startpage', require('./routes/priority_service_170510/startpage'));
app.use('/priority_service_170510/startpage-overseas', require('./routes/priority_service_170510/startpage-overseas'));
app.use('/priority_service_170510/photoguide-short', require('./routes/priority_service_170510/photoguide-short'));
app.use('/priority_service_170510/photoguide-static', require('./routes/priority_service_170510/photoguide-static'));
app.use('/priority_service_170510/photoguide-shop', require('./routes/priority_service_170510/photoguide-shop'));
app.use('/priority_service_170510/takephoto', require('./routes/priority_service_170510/takephoto'));
app.use('/priority_service_170510/upload', require('./routes/priority_service_170510/upload'));
app.use('/priority_service_170510/rejectedphoto', require('./routes/priority_service_170510/rejectedphoto'));
app.use('/priority_service_170510/filter-common-temp', require('./routes/priority_service_170510/filter-common-temp'));
app.use('/priority_service_170510/startpage-temp', require('./routes/priority_service_170510/startpage-temp'));
app.use('/priority_service_170510/get-urgent-passport', require('./routes/priority_service_170510/get-urgent-passport'));
app.use('/priority_service_170510/book-appointment', require('./routes/priority_service_170510/book-appointment'));
app.use('/priority_service_170510/not-eligible', require('./routes/priority_service_170510/not-eligible'));
app.use('/priority_service_170510/timeout', require('./routes/priority_service_170510/timeout'));
app.use('/priority_service_170510/no-appointment', require('./routes/priority_service_170510/no-appointment'));
//prototype 170419
app.use('/priority_service_170705/overseas', require('./routes/priority_service_170705/overseas'));
app.use('/priority_service_170705/overseas-not-eligible', require('./routes/priority_service_170705/overseas-not-eligible'));
app.use('/priority_service_170705/overseas-first', require('./routes/priority_service_170705/overseas-first'));
app.use('/priority_service_170705/overseas-lost-change', require('./routes/priority_service_170705/overseas-lost-change'));
app.use('/priority_service_170705/uploadphoto', require('./routes/priority_service_170705/uploadphoto'));
app.use('/priority_service_170705/filter-common', require('./routes/priority_service_170705/filter-common'))
app.use('/priority_service_170705/renew', require('./routes/priority_service_170705/renew'));
app.use('/priority_service_170705/intro', require('./routes/priority_service_170705/intro'));
app.use('/priority_service_170705/filter', require('./routes/priority_service_170705/filter'));
app.use('/priority_service_170705/startpage', require('./routes/priority_service_170705/startpage'));
app.use('/priority_service_170705/startpage-overseas', require('./routes/priority_service_170705/startpage-overseas'));
app.use('/priority_service_170705/photoguide-short', require('./routes/priority_service_170705/photoguide-short'));
app.use('/priority_service_170705/photoguide-static', require('./routes/priority_service_170705/photoguide-static'));
app.use('/priority_service_170705/photoguide-shop', require('./routes/priority_service_170705/photoguide-shop'));
app.use('/priority_service_170705/takephoto', require('./routes/priority_service_170705/takephoto'));
app.use('/priority_service_170705/upload', require('./routes/priority_service_170705/upload'));
app.use('/priority_service_170705/rejectedphoto', require('./routes/priority_service_170705/rejectedphoto'));
app.use('/priority_service_170705/filter-common-temp', require('./routes/priority_service_170705/filter-common-temp'));
app.use('/priority_service_170705/startpage-temp', require('./routes/priority_service_170705/startpage-temp'));
app.use('/priority_service_170705/get-urgent-passport', require('./routes/priority_service_170705/get-urgent-passport'));
app.use('/priority_service_170705/book-appointment', require('./routes/priority_service_170705/book-appointment'));
app.use('/priority_service_170705/not-eligible', require('./routes/priority_service_170705/not-eligible'));
app.use('/priority_service_170705/timeout', require('./routes/priority_service_170705/timeout'));
app.use('/priority_service_170705/no-appointment', require('./routes/priority_service_170705/no-appointment'));
app.use('/priority_service_170705/service-intro', require('./routes/priority_service_170705/service-intro'));
//prototype 170731
app.use('/priority_service_170731/overseas', require('./routes/priority_service_170731/overseas'));
app.use('/priority_service_170731/overseas-not-eligible', require('./routes/priority_service_170731/overseas-not-eligible'));
app.use('/priority_service_170731/overseas-first', require('./routes/priority_service_170731/overseas-first'));
app.use('/priority_service_170731/overseas-lost-change', require('./routes/priority_service_170731/overseas-lost-change'));
app.use('/priority_service_170731/uploadphoto', require('./routes/priority_service_170731/uploadphoto'));
app.use('/priority_service_170731/filter-common', require('./routes/priority_service_170731/filter-common'))
app.use('/priority_service_170731/renew', require('./routes/priority_service_170731/renew'));
app.use('/priority_service_170731/intro', require('./routes/priority_service_170731/intro'));
app.use('/priority_service_170731/filter', require('./routes/priority_service_170731/filter'));
app.use('/priority_service_170731/startpage', require('./routes/priority_service_170731/startpage'));
app.use('/priority_service_170731/startpage-overseas', require('./routes/priority_service_170731/startpage-overseas'));
app.use('/priority_service_170731/photoguide-short', require('./routes/priority_service_170731/photoguide-short'));
app.use('/priority_service_170731/photoguide-static', require('./routes/priority_service_170731/photoguide-static'));
app.use('/priority_service_170731/photoguide-shop', require('./routes/priority_service_170731/photoguide-shop'));
app.use('/priority_service_170731/takephoto', require('./routes/priority_service_170731/takephoto'));
app.use('/priority_service_170731/upload', require('./routes/priority_service_170731/upload'));
app.use('/priority_service_170731/rejectedphoto', require('./routes/priority_service_170731/rejectedphoto'));
app.use('/priority_service_170731/filter-common-temp', require('./routes/priority_service_170731/filter-common-temp'));
app.use('/priority_service_170731/startpage-temp', require('./routes/priority_service_170731/startpage-temp'));
app.use('/priority_service_170731/get-urgent-passport', require('./routes/priority_service_170731/get-urgent-passport'));
app.use('/priority_service_170731/book-appointment', require('./routes/priority_service_170731/book-appointment'));
app.use('/priority_service_170731/not-eligible', require('./routes/priority_service_170731/not-eligible'));
app.use('/priority_service_170731/timeout', require('./routes/priority_service_170731/timeout'));
app.use('/priority_service_170731/no-appointment', require('./routes/priority_service_170731/no-appointment'));
app.use('/priority_service_170731/service-intro', require('./routes/priority_service_170731/service-intro'));
// prototype_170331
app.use('/prototype_170331/overseas', require('./routes/prototype_170331/overseas'));
app.use('/prototype_170331/overseas-not-eligible', require('./routes/prototype_170331/overseas-not-eligible'));
app.use('/prototype_170331/overseas-first', require('./routes/prototype_170331/overseas-first'));
app.use('/prototype_170331/overseas-lost-change', require('./routes/prototype_170331/overseas-lost-change'));
app.use('/prototype_170331/uploadphoto', require('./routes/prototype_170331/uploadphoto'));
app.use('/prototype_170331/filter-common', require('./routes/prototype_170331/filter-common'));
app.use('/prototype_170331/renew', require('./routes/prototype_170331/renew'));
app.use('/prototype_170331/intro', require('./routes/prototype_170331/intro'));
app.use('/prototype_170331/filter', require('./routes/prototype_170331/filter'));
app.use('/prototype_170331/startpage', require('./routes/prototype_170331/startpage'));
app.use('/prototype_170331/startpage-overseas', require('./routes/prototype_170331/startpage-overseas'));
app.use('/prototype_170331/photoguide-short', require('./routes/prototype_170331/photoguide-short'));
app.use('/prototype_170331/photoguide-static', require('./routes/prototype_170331/photoguide-static'));
app.use('/prototype_170331/photoguide-shop', require('./routes/prototype_170331/photoguide-shop'));
app.use('/prototype_170331/takephoto', require('./routes/prototype_170331/takephoto'));
app.use('/prototype_170331/upload', require('./routes/prototype_170331/upload'));
app.use('/prototype_170331/rejectedphoto', require('./routes/prototype_170331/rejectedphoto'));
app.use('/prototype_170331/filter-common-temp', require('./routes/prototype_170331/filter-common-temp'));
app.use('/prototype_170331/startpage-temp', require('./routes/prototype_170331/startpage-temp'));
app.use('/prototype_170331/overseas-not-available', require('./routes/prototype_170331/overseas-not-available'));
app.use('/prototype_170331/throttle', require('./routes/prototype_170331/throttle'));
app.use('/prototype_170331/payment', require('./routes/prototype_170331/payment'));
app.use('/prototype_170331/submission-failed', require('./routes/prototype_170331/submission-failed'));
app.use('/prototype_170331/sar', require('./routes/prototype_170331/sar'));
app.use('/prototype_170331/photo-url', require('./routes/prototype_170331/photo-url'));
app.use('/prototype_170331/photo-code', require('./routes/prototype_170331/photo-code'));
app.use('/prototype_170331/mismatch', require('./routes/prototype_170331/mismatch'));
app.use('/prototype_170331/redirect-tracking', require('./routes/prototype_170331/redirect-tracking'));
// prototype_171127
app.use('/prototype_171127/overseas', require('./routes/prototype_171127/overseas'));
app.use('/prototype_171127/overseas-not-eligible', require('./routes/prototype_171127/overseas-not-eligible'));
app.use('/prototype_171127/overseas-first', require('./routes/prototype_171127/overseas-first'));
app.use('/prototype_171127/overseas-lost-change', require('./routes/prototype_171127/overseas-lost-change'));
app.use('/prototype_171127/uploadphoto', require('./routes/prototype_171127/uploadphoto'));
app.use('/prototype_171127/uploadphoto', require('./routes/prototype_171127/uploadphoto'));
app.use('/prototype_171127/filter-common', require('./routes/prototype_171127/filter-common'));
app.use('/prototype_171127/renew', require('./routes/prototype_171127/renew'));
app.use('/prototype_171127/intro', require('./routes/prototype_171127/intro'));
app.use('/prototype_171127/filter', require('./routes/prototype_171127/filter'));
app.use('/prototype_171127/startpage', require('./routes/prototype_171127/startpage'));
app.use('/prototype_171127/startpage-overseas', require('./routes/prototype_171127/startpage-overseas'));
app.use('/prototype_171127/photoguide-short', require('./routes/prototype_171127/photoguide-short'));
app.use('/prototype_171127/photoguide-static', require('./routes/prototype_171127/photoguide-static'));
app.use('/prototype_171127/photoguide-shop', require('./routes/prototype_171127/photoguide-shop'));
app.use('/prototype_171127/takephoto', require('./routes/prototype_171127/takephoto'));
app.use('/prototype_171127/upload', require('./routes/prototype_171127/upload'));
app.use('/prototype_171127/rejectedphoto', require('./routes/prototype_171127/rejectedphoto'));
app.use('/prototype_171127/filter-common-temp', require('./routes/prototype_171127/filter-common-temp'));
app.use('/prototype_171127/startpage-temp', require('./routes/prototype_171127/startpage-temp'));
app.use('/prototype_171127/overseas-not-available', require('./routes/prototype_171127/overseas-not-available'));
app.use('/prototype_171127/throttle', require('./routes/prototype_171127/throttle'));
app.use('/prototype_171127/payment', require('./routes/prototype_171127/payment'));
app.use('/prototype_171127/submission-failed', require('./routes/prototype_171127/submission-failed'));
app.use('/prototype_171127/sar', require('./routes/prototype_171127/sar'));
app.use('/prototype_171127/photo-url', require('./routes/prototype_171127/photo-url'));
app.use('/prototype_171127/photo-code', require('./routes/prototype_171127/photo-code'));
app.use('/prototype_171127/mismatch', require('./routes/prototype_171127/mismatch'));
app.use('/prototype_171127/redirect-tracking', require('./routes/prototype_171127/redirect-tracking'));
//Priority service
app.use('/priority-service', require('./routes/priority-service'));
app.use('/priority-service-filter-common', require('./routes/priority-service/filter-common'));
app.use('/priority-service-filter', require('./routes/priority-service/filter'));
app.use('/priority-service-intro', require('./routes/priority-service/intro'));
app.use('/not-eligible', require('./routes/priority-service/not-eligible'));
//Priority service-161221
app.use('/priority-service-161221', require('./routes/priority-service-161221'));
app.use('/priority-service-161221-filter-common', require('./routes/priority-service-161221/filter-common'));
app.use('/priority-service-161221/filter', require('./routes/priority-service-161221/filter'));
app.use('/priority-service-161221/intro', require('./routes/priority-service-161221/intro'));
app.use('/not-eligible', require('./routes/priority-service-161221/not-eligible'));
//Priority service-170118
app.use('/priority-service-170118', require('./routes/priority-service-170118'));
app.use('/priority-service-170118-filter-common', require('./routes/priority-service-170118/filter-common'));
app.use('/priority-service-170118/filter', require('./routes/priority-service-170118/filter'));
app.use('/priority-service-170118/intro', require('./routes/priority-service-170118/intro'));
app.use('/not-eligible', require('./routes/priority-service-170118/not-eligible'));
//How to
app.use('/how-to', require('./routes/how-to'));
//Gov.uk pages
app.use('/govuk', require('./routes/govuk'));
app.use('/govuk/damaged', require('./routes/govuk/damaged'));
//Tracking
app.use('/tracking', require('./routes/tracking'));
app.use('/tracking-ovs', require('./routes/tracking-ovs'));
app.use('/tracking-email', require('./routes/tracking-email'));
app.use('/tracking-dps', require('./routes/tracking-dps'));
app.use('/tracking-change-of-name', require('./routes/tracking-change-of-name'));
//Csig 170601
app.use('/csig_170601/user', require('./routes/csig_170601/user'));
app.use('/csig_170601/referee', require('./routes/csig_170601/referee'));
//Csig 170731
app.use('/csig_170731/user', require('./routes/csig_170731/user'));
app.use('/csig_170731/start', require('./routes/csig_170731/start'));
app.use('/csig_170731/referee', require('./routes/csig_170731/referee'));
app.use('/csig_170731/referee-5', require('./routes/csig_170731/referee-5'));
//Csig 170810
app.use('/csig_170810/user', require('./routes/csig_170810/user'));
app.use('/csig_170810/start', require('./routes/csig_170810/start'));
app.use('/csig_170810/referee', require('./routes/csig_170810/referee'));
app.use('/csig_170810/referee-5', require('./routes/csig_170810/referee-5'));
app.use('/confirm-identity', require('./routes/csig_170810/referee-5'));
//Csig 170830
app.use('/csig_170830/user', require('./routes/csig_170830/user'));
app.use('/csig_170830/start', require('./routes/csig_170830/start'));
app.use('/csig_170830/referee', require('./routes/csig_170830/referee'));
app.use('/csig_170830/referee-5', require('./routes/csig_170830/referee-5'));
app.use('/confirm-identity', require('./routes/csig_170830/referee-5'));
//csig_170912
app.use('/csig_170912/user', require('./routes/csig_170912/user'));
app.use('/csig_170912/start', require('./routes/csig_170912/start'));
app.use('/csig_170912/referee', require('./routes/csig_170912/referee'));
app.use('/csig_170912/referee-5', require('./routes/csig_170912/referee-5'));
app.use('/confirm-identity', require('./routes/csig_170912/referee-5'));
app.use('/track', require('./routes/csig_170912/user'));
//csig_170921
app.use('/csig_170921/user', require('./routes/csig_170921/user'));
app.use('/csig_170921/start', require('./routes/csig_170921/start'));
app.use('/csig_170921/referee', require('./routes/csig_170921/referee'));
app.use('/csig_170921/referee-5', require('./routes/csig_170921/referee-5'));
app.use('/confirm-identity', require('./routes/csig_170921/referee-5'));
app.use('/track', require('./routes/csig_170921/user'));
//csig_171101
app.use('/csig_171101/user', require('./routes/csig_171101/user'));
app.use('/csig_171101/user-send-book', require('./routes/csig_171101/user-send-book'));
app.use('/csig_171101/csig', require('./routes/csig_171101/csig'));
app.use('/csig_171101/start', require('./routes/csig_171101/start'));
app.use('/csig_171101/referee', require('./routes/csig_171101/referee'));
app.use('/csig_171101/referee-5', require('./routes/csig_171101/referee-5'));
app.use('/confirm-identity', require('./routes/csig_171101/referee-5'));
app.use('/track', require('./routes/csig_171101/user'));
// damaged_170830
app.use('/damaged_170830/overseas', require('./routes/damaged_170830/overseas'));
app.use('/damaged_170830/overseas-not-eligible', require('./routes/damaged_170830/overseas-not-eligible'));
app.use('/damaged_170830/overseas-first', require('./routes/damaged_170830/overseas-first'));
app.use('/damaged_170830/overseas-lost-change', require('./routes/damaged_170830/overseas-lost-change'));
app.use('/damaged_170830/uploadphoto', require('./routes/damaged_170830/uploadphoto'));
app.use('/damaged_170830/filter-common', require('./routes/damaged_170830/filter-common'));
app.use('/damaged_170830/renew', require('./routes/damaged_170830/renew'));
app.use('/damaged_170830/intro', require('./routes/damaged_170830/intro'));
app.use('/damaged_170830/filter', require('./routes/damaged_170830/filter'));
app.use('/damaged_170830/startpage', require('./routes/damaged_170830/startpage'));
app.use('/damaged_170830/startpage-overseas', require('./routes/damaged_170830/startpage-overseas'));
app.use('/damaged_170830/photoguide-short', require('./routes/damaged_170830/photoguide-short'));
app.use('/damaged_170830/photoguide-static', require('./routes/damaged_170830/photoguide-static'));
app.use('/damaged_170830/photoguide-shop', require('./routes/damaged_170830/photoguide-shop'));
app.use('/damaged_170830/takephoto', require('./routes/damaged_170830/takephoto'));
app.use('/damaged_170830/upload', require('./routes/damaged_170830/upload'));
app.use('/damaged_170830/rejectedphoto', require('./routes/damaged_170830/rejectedphoto'));
app.use('/damaged_170830/filter-common-temp', require('./routes/damaged_170830/filter-common-temp'));
app.use('/damaged_170830/startpage-temp', require('./routes/damaged_170830/startpage-temp'));
app.use('/damaged_170830/overseas-not-available', require('./routes/damaged_170830/overseas-not-available'));
app.use('/damaged_170830/throttle', require('./routes/damaged_170830/throttle'));
app.use('/damaged_170830/payment', require('./routes/damaged_170830/payment'));
app.use('/damaged_170830/submission-failed', require('./routes/damaged_170830/submission-failed'));
app.use('/damaged_170830/sar', require('./routes/damaged_170830/sar'));
app.use('/damaged_170830/photo-url', require('./routes/damaged_170830/photo-url'));
app.use('/damaged_170830/photo-code', require('./routes/damaged_170830/photo-code'));
app.use('/damaged_170830/mismatch', require('./routes/damaged_170830/mismatch'));
app.use('/damaged_170830/redirect-tracking', require('./routes/damaged_170830/redirect-tracking'));
// damaged_171018
app.use('/damaged_171018/overseas', require('./routes/damaged_171018/overseas'));
app.use('/damaged_171018/overseas-not-eligible', require('./routes/damaged_171018/overseas-not-eligible'));
app.use('/damaged_171018/overseas-first', require('./routes/damaged_171018/overseas-first'));
app.use('/damaged_171018/overseas-lost-change', require('./routes/damaged_171018/overseas-lost-change'));
app.use('/damaged_171018/uploadphoto', require('./routes/damaged_171018/uploadphoto'));
app.use('/damaged_171018/filter-common', require('./routes/damaged_171018/filter-common'));
app.use('/damaged_171018/renew', require('./routes/damaged_171018/renew'));
app.use('/damaged_171018/intro', require('./routes/damaged_171018/intro'));
app.use('/damaged_171018/filter', require('./routes/damaged_171018/filter'));
app.use('/damaged_171018/startpage', require('./routes/damaged_171018/startpage'));
app.use('/damaged_171018/startpage-overseas', require('./routes/damaged_171018/startpage-overseas'));
app.use('/damaged_171018/photoguide-short', require('./routes/damaged_171018/photoguide-short'));
app.use('/damaged_171018/photoguide-static', require('./routes/damaged_171018/photoguide-static'));
app.use('/damaged_171018/photoguide-shop', require('./routes/damaged_171018/photoguide-shop'));
app.use('/damaged_171018/takephoto', require('./routes/damaged_171018/takephoto'));
app.use('/damaged_171018/upload', require('./routes/damaged_171018/upload'));
app.use('/damaged_171018/rejectedphoto', require('./routes/damaged_171018/rejectedphoto'));
app.use('/damaged_171018/filter-common-temp', require('./routes/damaged_171018/filter-common-temp'));
app.use('/damaged_171018/startpage-temp', require('./routes/damaged_171018/startpage-temp'));
app.use('/damaged_171018/overseas-not-available', require('./routes/damaged_171018/overseas-not-available'));
app.use('/damaged_171018/throttle', require('./routes/damaged_171018/throttle'));
app.use('/damaged_171018/payment', require('./routes/damaged_171018/payment'));
app.use('/damaged_171018/submission-failed', require('./routes/damaged_171018/submission-failed'));
app.use('/damaged_171018/sar', require('./routes/damaged_171018/sar'));
app.use('/damaged_171018/photo-url', require('./routes/damaged_171018/photo-url'));
app.use('/damaged_171018/photo-code', require('./routes/damaged_171018/photo-code'));
app.use('/damaged_171018/mismatch', require('./routes/damaged_171018/mismatch'));
app.use('/damaged_171018/redirect-tracking', require('./routes/damaged_171018/redirect-tracking'));
// change_of_name_171101 Change of name and dual nationality
app.use('/change_of_name_171101/overseas', require('./routes/change_of_name_171101/overseas'));
app.use('/change_of_name_171101/overseas-not-eligible', require('./routes/change_of_name_171101/overseas-not-eligible'));
app.use('/change_of_name_171101/overseas-first', require('./routes/change_of_name_171101/overseas-first'));
app.use('/change_of_name_171101/overseas-lost-change', require('./routes/change_of_name_171101/overseas-lost-change'));
app.use('/change_of_name_171101/uploadphoto', require('./routes/change_of_name_171101/uploadphoto'));
app.use('/change_of_name_171101/filter-common', require('./routes/change_of_name_171101/filter-common'));
app.use('/change_of_name_171101/renew', require('./routes/change_of_name_171101/renew'));
app.use('/change_of_name_171101/intro', require('./routes/change_of_name_171101/intro'));
app.use('/change_of_name_171101/filter', require('./routes/change_of_name_171101/filter'));
app.use('/change_of_name_171101/startpage', require('./routes/change_of_name_171101/startpage'));
app.use('/change_of_name_171101/startpage-overseas', require('./routes/change_of_name_171101/startpage-overseas'));
app.use('/change_of_name_171101/photoguide-short', require('./routes/change_of_name_171101/photoguide-short'));
app.use('/change_of_name_171101/photoguide-static', require('./routes/change_of_name_171101/photoguide-static'));
app.use('/change_of_name_171101/photoguide-shop', require('./routes/change_of_name_171101/photoguide-shop'));
app.use('/change_of_name_171101/takephoto', require('./routes/change_of_name_171101/takephoto'));
app.use('/change_of_name_171101/upload', require('./routes/change_of_name_171101/upload'));
app.use('/change_of_name_171101/rejectedphoto', require('./routes/change_of_name_171101/rejectedphoto'));
app.use('/change_of_name_171101/filter-common-temp', require('./routes/change_of_name_171101/filter-common-temp'));
app.use('/change_of_name_171101/startpage-temp', require('./routes/change_of_name_171101/startpage-temp'));
app.use('/change_of_name_171101/overseas-not-available', require('./routes/change_of_name_171101/overseas-not-available'));
app.use('/change_of_name_171101/throttle', require('./routes/change_of_name_171101/throttle'));
app.use('/change_of_name_171101/payment', require('./routes/change_of_name_171101/payment'));
app.use('/change_of_name_171101/submission-failed', require('./routes/change_of_name_171101/submission-failed'));
app.use('/change_of_name_171101/sar', require('./routes/change_of_name_171101/sar'));
app.use('/change_of_name_171101/photo-url', require('./routes/change_of_name_171101/photo-url'));
app.use('/change_of_name_171101/photo-code', require('./routes/change_of_name_171101/photo-code'));
app.use('/change_of_name_171101/mismatch', require('./routes/change_of_name_171101/mismatch'));
app.use('/change_of_name_171101/redirect-tracking', require('./routes/change_of_name_171101/redirect-tracking'));
// change_of_name_171117 Change of name and dual nationality
app.use('/change_of_name_171117/overseas', require('./routes/change_of_name_171117/overseas'));
app.use('/change_of_name_171117/overseas-not-eligible', require('./routes/change_of_name_171117/overseas-not-eligible'));
app.use('/change_of_name_171117/overseas-first', require('./routes/change_of_name_171117/overseas-first'));
app.use('/change_of_name_171117/overseas-lost-change', require('./routes/change_of_name_171117/overseas-lost-change'));
app.use('/change_of_name_171117/uploadphoto', require('./routes/change_of_name_171117/uploadphoto'));
app.use('/change_of_name_171117/filter-common', require('./routes/change_of_name_171117/filter-common'));
app.use('/change_of_name_171117/renew', require('./routes/change_of_name_171117/renew'));
app.use('/change_of_name_171117/intro', require('./routes/change_of_name_171117/intro'));
app.use('/change_of_name_171117/filter', require('./routes/change_of_name_171117/filter'));
app.use('/change_of_name_171117/startpage', require('./routes/change_of_name_171117/startpage'));
app.use('/change_of_name_171117/startpage-overseas', require('./routes/change_of_name_171117/startpage-overseas'));
app.use('/change_of_name_171117/photoguide-short', require('./routes/change_of_name_171117/photoguide-short'));
app.use('/change_of_name_171117/photoguide-static', require('./routes/change_of_name_171117/photoguide-static'));
app.use('/change_of_name_171117/photoguide-shop', require('./routes/change_of_name_171117/photoguide-shop'));
app.use('/change_of_name_171117/takephoto', require('./routes/change_of_name_171117/takephoto'));
app.use('/change_of_name_171117/upload', require('./routes/change_of_name_171117/upload'));
app.use('/change_of_name_171117/rejectedphoto', require('./routes/change_of_name_171117/rejectedphoto'));
app.use('/change_of_name_171117/filter-common-temp', require('./routes/change_of_name_171117/filter-common-temp'));
app.use('/change_of_name_171117/startpage-temp', require('./routes/change_of_name_171117/startpage-temp'));
app.use('/change_of_name_171117/overseas-not-available', require('./routes/change_of_name_171117/overseas-not-available'));
app.use('/change_of_name_171117/throttle', require('./routes/change_of_name_171117/throttle'));
app.use('/change_of_name_171117/payment', require('./routes/change_of_name_171117/payment'));
app.use('/change_of_name_171117/submission-failed', require('./routes/change_of_name_171117/submission-failed'));
app.use('/change_of_name_171117/sar', require('./routes/change_of_name_171117/sar'));
app.use('/change_of_name_171117/photo-url', require('./routes/change_of_name_171117/photo-url'));
app.use('/change_of_name_171117/photo-code', require('./routes/change_of_name_171117/photo-code'));
app.use('/change_of_name_171117/mismatch', require('./routes/change_of_name_171117/mismatch'));
app.use('/change_of_name_171117/redirect-tracking', require('./routes/change_of_name_171117/redirect-tracking'));
// change_of_name_171218 Change of name and dual nationality
app.use('/change_of_name_171218/overseas', require('./routes/change_of_name_171218/overseas'));
app.use('/change_of_name_171218/overseas-not-eligible', require('./routes/change_of_name_171218/overseas-not-eligible'));
app.use('/change_of_name_171218/overseas-first', require('./routes/change_of_name_171218/overseas-first'));
app.use('/change_of_name_171218/overseas-lost-change', require('./routes/change_of_name_171218/overseas-lost-change'));
app.use('/change_of_name_171218/uploadphoto', require('./routes/change_of_name_171218/uploadphoto'));
app.use('/change_of_name_171218/filter-common', require('./routes/change_of_name_171218/filter-common'));
app.use('/change_of_name_171218/renew', require('./routes/change_of_name_171218/renew'));
app.use('/change_of_name_171218/intro', require('./routes/change_of_name_171218/intro'));
app.use('/change_of_name_171218/filter', require('./routes/change_of_name_171218/filter'));
app.use('/change_of_name_171218/startpage', require('./routes/change_of_name_171218/startpage'));
app.use('/change_of_name_171218/startpage-overseas', require('./routes/change_of_name_171218/startpage-overseas'));
app.use('/change_of_name_171218/photoguide-short', require('./routes/change_of_name_171218/photoguide-short'));
app.use('/change_of_name_171218/photoguide-static', require('./routes/change_of_name_171218/photoguide-static'));
app.use('/change_of_name_171218/photoguide-shop', require('./routes/change_of_name_171218/photoguide-shop'));
app.use('/change_of_name_171218/takephoto', require('./routes/change_of_name_171218/takephoto'));
app.use('/change_of_name_171218/upload', require('./routes/change_of_name_171218/upload'));
app.use('/change_of_name_171218/rejectedphoto', require('./routes/change_of_name_171218/rejectedphoto'));
app.use('/change_of_name_171218/filter-common-temp', require('./routes/change_of_name_171218/filter-common-temp'));
app.use('/change_of_name_171218/startpage-temp', require('./routes/change_of_name_171218/startpage-temp'));
app.use('/change_of_name_171218/overseas-not-available', require('./routes/change_of_name_171218/overseas-not-available'));
app.use('/change_of_name_171218/throttle', require('./routes/change_of_name_171218/throttle'));
app.use('/change_of_name_171218/payment', require('./routes/change_of_name_171218/payment'));
app.use('/change_of_name_171218/submission-failed', require('./routes/change_of_name_171218/submission-failed'));
app.use('/change_of_name_171218/sar', require('./routes/change_of_name_171218/sar'));
app.use('/change_of_name_171218/photo-url', require('./routes/change_of_name_171218/photo-url'));
app.use('/change_of_name_171218/photo-code', require('./routes/change_of_name_171218/photo-code'));
app.use('/change_of_name_171218/mismatch', require('./routes/change_of_name_171218/mismatch'));
app.use('/change_of_name_171218/redirect-tracking', require('./routes/change_of_name_171218/redirect-tracking'));
// change_of_name_180122 Change of name and dual nationality
app.use('/change_of_name_180122/overseas', require('./routes/change_of_name_180122/overseas'));
app.use('/change_of_name_180122/overseas-not-eligible', require('./routes/change_of_name_180122/overseas-not-eligible'));
app.use('/change_of_name_180122/overseas-first', require('./routes/change_of_name_180122/overseas-first'));
app.use('/change_of_name_180122/overseas-lost-change', require('./routes/change_of_name_180122/overseas-lost-change'));
app.use('/change_of_name_180122/uploadphoto', require('./routes/change_of_name_180122/uploadphoto'));
app.use('/change_of_name_180122/filter-common', require('./routes/change_of_name_180122/filter-common'));
app.use('/change_of_name_180122/renew', require('./routes/change_of_name_180122/renew'));
app.use('/change_of_name_180122/intro', require('./routes/change_of_name_180122/intro'));
app.use('/change_of_name_180122/filter', require('./routes/change_of_name_180122/filter'));
app.use('/change_of_name_180122/startpage', require('./routes/change_of_name_180122/startpage'));
app.use('/change_of_name_180122/startpage-overseas', require('./routes/change_of_name_180122/startpage-overseas'));
app.use('/change_of_name_180122/photoguide-short', require('./routes/change_of_name_180122/photoguide-short'));
app.use('/change_of_name_180122/photoguide-static', require('./routes/change_of_name_180122/photoguide-static'));
app.use('/change_of_name_180122/photoguide-shop', require('./routes/change_of_name_180122/photoguide-shop'));
app.use('/change_of_name_180122/takephoto', require('./routes/change_of_name_180122/takephoto'));
app.use('/change_of_name_180122/upload', require('./routes/change_of_name_180122/upload'));
app.use('/change_of_name_180122/rejectedphoto', require('./routes/change_of_name_180122/rejectedphoto'));
app.use('/change_of_name_180122/filter-common-temp', require('./routes/change_of_name_180122/filter-common-temp'));
app.use('/change_of_name_180122/startpage-temp', require('./routes/change_of_name_180122/startpage-temp'));
app.use('/change_of_name_180122/overseas-not-available', require('./routes/change_of_name_180122/overseas-not-available'));
app.use('/change_of_name_180122/throttle', require('./routes/change_of_name_180122/throttle'));
app.use('/change_of_name_180122/payment', require('./routes/change_of_name_180122/payment'));
app.use('/change_of_name_180122/submission-failed', require('./routes/change_of_name_180122/submission-failed'));
app.use('/change_of_name_180122/sar', require('./routes/change_of_name_180122/sar'));
app.use('/change_of_name_180122/photo-url', require('./routes/change_of_name_180122/photo-url'));
app.use('/change_of_name_180122/photo-code', require('./routes/change_of_name_180122/photo-code'));
app.use('/change_of_name_180122/mismatch', require('./routes/change_of_name_180122/mismatch'));
app.use('/change_of_name_180122/redirect-tracking', require('./routes/change_of_name_180122/redirect-tracking'));
// change_of_name_180530 Change of name and dual nationality
app.use('/change_of_name_180530/overseas', require('./routes/change_of_name_180530/overseas'));
app.use('/change_of_name_180530/overseas-not-eligible', require('./routes/change_of_name_180530/overseas-not-eligible'));
app.use('/change_of_name_180530/overseas-first', require('./routes/change_of_name_180530/overseas-first'));
app.use('/change_of_name_180530/overseas-lost-change', require('./routes/change_of_name_180530/overseas-lost-change'));
app.use('/change_of_name_180530/uploadphoto', require('./routes/change_of_name_180530/uploadphoto'));
app.use('/change_of_name_180530/filter-common', require('./routes/change_of_name_180530/filter-common'));
app.use('/change_of_name_180530/renew', require('./routes/change_of_name_180530/renew'));
app.use('/change_of_name_180530/intro', require('./routes/change_of_name_180530/intro'));
app.use('/change_of_name_180530/filter', require('./routes/change_of_name_180530/filter'));
app.use('/change_of_name_180530/startpage', require('./routes/change_of_name_180530/startpage'));
app.use('/change_of_name_180530/startpage-overseas', require('./routes/change_of_name_180530/startpage-overseas'));
app.use('/change_of_name_180530/photoguide-short', require('./routes/change_of_name_180530/photoguide-short'));
app.use('/change_of_name_180530/photoguide-static', require('./routes/change_of_name_180530/photoguide-static'));
app.use('/change_of_name_180530/photoguide-shop', require('./routes/change_of_name_180530/photoguide-shop'));
app.use('/change_of_name_180530/takephoto', require('./routes/change_of_name_180530/takephoto'));
app.use('/change_of_name_180530/upload', require('./routes/change_of_name_180530/upload'));
app.use('/change_of_name_180530/rejectedphoto', require('./routes/change_of_name_180530/rejectedphoto'));
app.use('/change_of_name_180530/filter-common-temp', require('./routes/change_of_name_180530/filter-common-temp'));
app.use('/change_of_name_180530/startpage-temp', require('./routes/change_of_name_180530/startpage-temp'));
app.use('/change_of_name_180530/overseas-not-available', require('./routes/change_of_name_180530/overseas-not-available'));
app.use('/change_of_name_180530/throttle', require('./routes/change_of_name_180530/throttle'));
app.use('/change_of_name_180530/payment', require('./routes/change_of_name_180530/payment'));
app.use('/change_of_name_180530/submission-failed', require('./routes/change_of_name_180530/submission-failed'));
app.use('/change_of_name_180530/sar', require('./routes/change_of_name_180530/sar'));
app.use('/change_of_name_180530/photo-url', require('./routes/change_of_name_180530/photo-url'));
app.use('/change_of_name_180530/photo-code', require('./routes/change_of_name_180530/photo-code'));
app.use('/change_of_name_180530/mismatch', require('./routes/change_of_name_180530/mismatch'));
app.use('/change_of_name_180530/redirect-tracking', require('./routes/change_of_name_180530/redirect-tracking'));
// oix_171117
app.use('/prototype_oix_171117/uploadphoto', require('./routes/prototype_oix_171117/uploadphoto'));
app.use('/prototype_oix_171117/filter-common', require('./routes/prototype_oix_171117/filter-common'));
app.use('/prototype_oix_171117/renew', require('./routes/prototype_oix_171117/renew'));
app.use('/prototype_oix_171117/intro', require('./routes/prototype_oix_171117/intro'));
app.use('/prototype_oix_171117/filter', require('./routes/prototype_oix_171117/filter'));
app.use('/prototype_oix_171117/startpage', require('./routes/prototype_oix_171117/startpage'));
app.use('/prototype_oix_171117/photoguide-short', require('./routes/prototype_oix_171117/photoguide-short'));
app.use('/prototype_oix_171117/photoguide-static', require('./routes/prototype_oix_171117/photoguide-static'));
app.use('/prototype_oix_171117/photoguide-shop', require('./routes/prototype_oix_171117/photoguide-shop'));
app.use('/prototype_oix_171117/takephoto', require('./routes/prototype_oix_171117/takephoto'));
app.use('/prototype_oix_171117/upload', require('./routes/prototype_oix_171117/upload'));
app.use('/prototype_oix_171117/rejectedphoto', require('./routes/prototype_oix_171117/rejectedphoto'));
app.use('/prototype_oix_171117/throttle', require('./routes/prototype_oix_171117/throttle'));
app.use('/prototype_oix_171117/payment', require('./routes/prototype_oix_171117/payment'));
app.use('/prototype_oix_171117/submission-failed', require('./routes/prototype_oix_171117/submission-failed'));
app.use('/prototype_oix_171117/sar', require('./routes/prototype_oix_171117/sar'));
app.use('/prototype_oix_171117/photo-url', require('./routes/prototype_oix_171117/photo-url'));
app.use('/prototype_oix_171117/photo-code', require('./routes/prototype_oix_171117/photo-code'));
app.use('/prototype_oix_171117/oix', require('./routes/prototype_oix_171117/oix'));
app.use('/prototype_oix_171117/intro-oix', require('./routes/prototype_oix_171117/intro-oix'));
app.use('/prototype_oix_171117/photo-retrieved', require('./routes/prototype_oix_171117/photo-retrieved'));
app.use('/prototype_oix_171117/startpage-oix', require('./routes/prototype_oix_171117/startpage-oix'));
app.use('/prototype_oix_171117/filter-oix', require('./routes/prototype_oix_171117/filter-oix'));
app.use('/prototype_oix_171117/filter-common-oix', require('./routes/prototype_oix_171117/filter-common-oix'));
//3rd party shops photo checker
app.use('/shops-photo-checker', require('./routes/shops-photo-checker'));
// Examples
app.use('/static', require('./routes/static'));
app.use('/forms', require('./routes/forms'));
app.use('/sar', require('./routes/sar'));
app.use('/typeahead', require('./routes/typeahead'));
// CSig
app.use('/csig', require('./routes/csig'));