1<?php 2//============================================================+ 3// File name : tcpdf_font_data.php 4// Version : 1.0.001 5// Begin : 2008-01-01 6// Last Update : 2013-04-01 7// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com 8// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html) 9// ------------------------------------------------------------------- 10// Copyright (C) 2008-2013 Nicola Asuni - Tecnick.com LTD 11// 12// This file is part of TCPDF software library. 13// 14// TCPDF is free software: you can redistribute it and/or modify it 15// under the terms of the GNU Lesser General Public License as 16// published by the Free Software Foundation, either version 3 of the 17// License, or (at your option) any later version. 18// 19// TCPDF is distributed in the hope that it will be useful, but 20// WITHOUT ANY WARRANTY; without even the implied warranty of 21// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 22// See the GNU Lesser General Public License for more details. 23// 24// You should have received a copy of the GNU Lesser General Public License 25// along with TCPDF. If not, see <http://www.gnu.org/licenses/>. 26// 27// See LICENSE.TXT file for more information. 28// ------------------------------------------------------------------- 29// 30// Description : Unicode data and encoding maps for TCPDF. 31// 32//============================================================+ 33 34/** 35 * @file 36 * Unicode data and encoding maps for TCPDF. 37 * @author Nicola Asuni 38 * @package com.tecnick.tcpdf 39 */ 40 41/** 42 * @class TCPDF_FONT_DATA 43 * Unicode data and encoding maps for TCPDF. 44 * @package com.tecnick.tcpdf 45 * @version 1.0.001 46 * @author Nicola Asuni - info@tecnick.com 47 */ 48class TCPDF_FONT_DATA { 49 50/** 51 * Unicode code for Left-to-Right Mark. 52 * @public 53 */ 54public static $uni_LRM = 8206; 55 56/** 57 * Unicode code for Right-to-Left Mark. 58 * @public 59 */ 60public static $uni_RLM = 8207; 61 62/** 63 * Unicode code for Left-to-Right Embedding. 64 * @public 65 */ 66public static $uni_LRE = 8234; 67 68/** 69 * Unicode code for Right-to-Left Embedding. 70 * @public 71 */ 72public static $uni_RLE = 8235; 73 74/** 75 * Unicode code for Pop Directional Format. 76 * @public 77 */ 78public static $uni_PDF = 8236; 79 80/** 81 * Unicode code for Left-to-Right Override. 82 * @public 83 */ 84public static $uni_LRO = 8237; 85 86/** 87 * Unicode code for Right-to-Left Override. 88 * @public 89 */ 90public static $uni_RLO = 8238; 91 92/** 93 * Pattern to test RTL (Righ-To-Left) strings using regular expressions. 94 * @public 95 */ 96public static $uni_RE_PATTERN_RTL = "/( 97 \xD6\xBE # R 98 | \xD7[\x80\x83\x86\x90-\xAA\xB0-\xB4] # R 99 | \xDF[\x80-\xAA\xB4\xB5\xBA] # R 100 | \xE2\x80\x8F # R 101 | \xEF\xAC[\x9D\x9F\xA0-\xA8\xAA-\xB6\xB8-\xBC\xBE] # R 102 | \xEF\xAD[\x80\x81\x83\x84\x86-\x8F] # R 103 | \xF0\x90\xA0[\x80-\x85\x88\x8A-\xB5\xB7\xB8\xBC\xBF] # R 104 | \xF0\x90\xA4[\x80-\x99] # R 105 | \xF0\x90\xA8[\x80\x90-\x93\x95-\x97\x99-\xB3] # R 106 | \xF0\x90\xA9[\x80-\x87\x90-\x98] # R 107 | \xE2\x80[\xAB\xAE] # RLE & RLO 108 )/x"; 109 110/** 111 * Pattern to test Arabic strings using regular expressions. Source: http://www.w3.org/International/questions/qa-forms-utf-8 112 * @public 113 */ 114public static $uni_RE_PATTERN_ARABIC = "/( 115 \xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA] # AL 116 | \xD9[\x80-\x8A\xAD-\xAF\xB1-\xBF] # AL 117 | \xDA[\x80-\xBF] # AL 118 | \xDB[\x80-\x95\x9D\xA5\xA6\xAE\xAF\xBA-\xBF] # AL 119 | \xDC[\x80-\x8D\x90\x92-\xAF] # AL 120 | \xDD[\x8D-\xAD] # AL 121 | \xDE[\x80-\xA5\xB1] # AL 122 | \xEF\xAD[\x90-\xBF] # AL 123 | \xEF\xAE[\x80-\xB1] # AL 124 | \xEF\xAF[\x93-\xBF] # AL 125 | \xEF[\xB0-\xB3][\x80-\xBF] # AL 126 | \xEF\xB4[\x80-\xBD] # AL 127 | \xEF\xB5[\x90-\xBF] # AL 128 | \xEF\xB6[\x80-\x8F\x92-\xBF] # AL 129 | \xEF\xB7[\x80-\x87\xB0-\xBC] # AL 130 | \xEF\xB9[\xB0-\xB4\xB6-\xBF] # AL 131 | \xEF\xBA[\x80-\xBF] # AL 132 | \xEF\xBB[\x80-\xBC] # AL 133 | \xD9[\xA0-\xA9\xAB\xAC] # AN 134 )/x"; 135 136/** 137 * Array of Unicode types. 138 * @public 139 */ 140public static $uni_type = array( 1410=>'BN', 1421=>'BN', 1432=>'BN', 1443=>'BN', 1454=>'BN', 1465=>'BN', 1476=>'BN', 1487=>'BN', 1498=>'BN', 1509=>'S', 15110=>'B', 15211=>'S', 15312=>'WS', 15413=>'B', 15514=>'BN', 15615=>'BN', 15716=>'BN', 15817=>'BN', 15918=>'BN', 16019=>'BN', 16120=>'BN', 16221=>'BN', 16322=>'BN', 16423=>'BN', 16524=>'BN', 16625=>'BN', 16726=>'BN', 16827=>'BN', 16928=>'B', 17029=>'B', 17130=>'B', 17231=>'S', 17332=>'WS', 17433=>'ON', 17534=>'ON', 17635=>'ET', 17736=>'ET', 17837=>'ET', 17938=>'ON', 18039=>'ON', 18140=>'ON', 18241=>'ON', 18342=>'ON', 18443=>'ES', 18544=>'CS', 18645=>'ES', 18746=>'CS', 18847=>'CS', 18948=>'EN', 19049=>'EN', 19150=>'EN', 19251=>'EN', 19352=>'EN', 19453=>'EN', 19554=>'EN', 19655=>'EN', 19756=>'EN', 19857=>'EN', 19958=>'CS', 20059=>'ON', 20160=>'ON', 20261=>'ON', 20362=>'ON', 20463=>'ON', 20564=>'ON', 20665=>'L', 20766=>'L', 20867=>'L', 20968=>'L', 21069=>'L', 21170=>'L', 21271=>'L', 21372=>'L', 21473=>'L', 21574=>'L', 21675=>'L', 21776=>'L', 21877=>'L', 21978=>'L', 22079=>'L', 22180=>'L', 22281=>'L', 22382=>'L', 22483=>'L', 22584=>'L', 22685=>'L', 22786=>'L', 22887=>'L', 22988=>'L', 23089=>'L', 23190=>'L', 23291=>'ON', 23392=>'ON', 23493=>'ON', 23594=>'ON', 23695=>'ON', 23796=>'ON', 23897=>'L', 23998=>'L', 24099=>'L', 241100=>'L', 242101=>'L', 243102=>'L', 244103=>'L', 245104=>'L', 246105=>'L', 247106=>'L', 248107=>'L', 249108=>'L', 250109=>'L', 251110=>'L', 252111=>'L', 253112=>'L', 254113=>'L', 255114=>'L', 256115=>'L', 257116=>'L', 258117=>'L', 259118=>'L', 260119=>'L', 261120=>'L', 262121=>'L', 263122=>'L', 264123=>'ON', 265124=>'ON', 266125=>'ON', 267126=>'ON', 268127=>'BN', 269128=>'BN', 270129=>'BN', 271130=>'BN', 272131=>'BN', 273132=>'BN', 274133=>'B', 275134=>'BN', 276135=>'BN', 277136=>'BN', 278137=>'BN', 279138=>'BN', 280139=>'BN', 281140=>'BN', 282141=>'BN', 283142=>'BN', 284143=>'BN', 285144=>'BN', 286145=>'BN', 287146=>'BN', 288147=>'BN', 289148=>'BN', 290149=>'BN', 291150=>'BN', 292151=>'BN', 293152=>'BN', 294153=>'BN', 295154=>'BN', 296155=>'BN', 297156=>'BN', 298157=>'BN', 299158=>'BN', 300159=>'BN', 301160=>'CS', 302161=>'ON', 303162=>'ET', 304163=>'ET', 305164=>'ET', 306165=>'ET', 307166=>'ON', 308167=>'ON', 309168=>'ON', 310169=>'ON', 311170=>'L', 312171=>'ON', 313172=>'ON', 314173=>'BN', 315174=>'ON', 316175=>'ON', 317176=>'ET', 318177=>'ET', 319178=>'EN', 320179=>'EN', 321180=>'ON', 322181=>'L', 323182=>'ON', 324183=>'ON', 325184=>'ON', 326185=>'EN', 327186=>'L', 328187=>'ON', 329188=>'ON', 330189=>'ON', 331190=>'ON', 332191=>'ON', 333192=>'L', 334193=>'L', 335194=>'L', 336195=>'L', 337196=>'L', 338197=>'L', 339198=>'L', 340199=>'L', 341200=>'L', 342201=>'L', 343202=>'L', 344203=>'L', 345204=>'L', 346205=>'L', 347206=>'L', 348207=>'L', 349208=>'L', 350209=>'L', 351210=>'L', 352211=>'L', 353212=>'L', 354213=>'L', 355214=>'L', 356215=>'ON', 357216=>'L', 358217=>'L', 359218=>'L', 360219=>'L', 361220=>'L', 362221=>'L', 363222=>'L', 364223=>'L', 365224=>'L', 366225=>'L', 367226=>'L', 368227=>'L', 369228=>'L', 370229=>'L', 371230=>'L', 372231=>'L', 373232=>'L', 374233=>'L', 375234=>'L', 376235=>'L', 377236=>'L', 378237=>'L', 379238=>'L', 380239=>'L', 381240=>'L', 382241=>'L', 383242=>'L', 384243=>'L', 385244=>'L', 386245=>'L', 387246=>'L', 388247=>'ON', 389248=>'L', 390249=>'L', 391250=>'L', 392251=>'L', 393252=>'L', 394253=>'L', 395254=>'L', 396255=>'L', 397256=>'L', 398257=>'L', 399258=>'L', 400259=>'L', 401260=>'L', 402261=>'L', 403262=>'L', 404263=>'L', 405264=>'L', 406265=>'L', 407266=>'L', 408267=>'L', 409268=>'L', 410269=>'L', 411270=>'L', 412271=>'L', 413272=>'L', 414273=>'L', 415274=>'L', 416275=>'L', 417276=>'L', 418277=>'L', 419278=>'L', 420279=>'L', 421280=>'L', 422281=>'L', 423282=>'L', 424283=>'L', 425284=>'L', 426285=>'L', 427286=>'L', 428287=>'L', 429288=>'L', 430289=>'L', 431290=>'L', 432291=>'L', 433292=>'L', 434293=>'L', 435294=>'L', 436295=>'L', 437296=>'L', 438297=>'L', 439298=>'L', 440299=>'L', 441300=>'L', 442301=>'L', 443302=>'L', 444303=>'L', 445304=>'L', 446305=>'L', 447306=>'L', 448307=>'L', 449308=>'L', 450309=>'L', 451310=>'L', 452311=>'L', 453312=>'L', 454313=>'L', 455314=>'L', 456315=>'L', 457316=>'L', 458317=>'L', 459318=>'L', 460319=>'L', 461320=>'L', 462321=>'L', 463322=>'L', 464323=>'L', 465324=>'L', 466325=>'L', 467326=>'L', 468327=>'L', 469328=>'L', 470329=>'L', 471330=>'L', 472331=>'L', 473332=>'L', 474333=>'L', 475334=>'L', 476335=>'L', 477336=>'L', 478337=>'L', 479338=>'L', 480339=>'L', 481340=>'L', 482341=>'L', 483342=>'L', 484343=>'L', 485344=>'L', 486345=>'L', 487346=>'L', 488347=>'L', 489348=>'L', 490349=>'L', 491350=>'L', 492351=>'L', 493352=>'L', 494353=>'L', 495354=>'L', 496355=>'L', 497356=>'L', 498357=>'L', 499358=>'L', 500359=>'L', 501360=>'L', 502361=>'L', 503362=>'L', 504363=>'L', 505364=>'L', 506365=>'L', 507366=>'L', 508367=>'L', 509368=>'L', 510369=>'L', 511370=>'L', 512371=>'L', 513372=>'L', 514373=>'L', 515374=>'L', 516375=>'L', 517376=>'L', 518377=>'L', 519378=>'L', 520379=>'L', 521380=>'L', 522381=>'L', 523382=>'L', 524383=>'L', 525384=>'L', 526385=>'L', 527386=>'L', 528387=>'L', 529388=>'L', 530389=>'L', 531390=>'L', 532391=>'L', 533392=>'L', 534393=>'L', 535394=>'L', 536395=>'L', 537396=>'L', 538397=>'L', 539398=>'L', 540399=>'L', 541400=>'L', 542401=>'L', 543402=>'L', 544403=>'L', 545404=>'L', 546405=>'L', 547406=>'L', 548407=>'L', 549408=>'L', 550409=>'L', 551410=>'L', 552411=>'L', 553412=>'L', 554413=>'L', 555414=>'L', 556415=>'L', 557416=>'L', 558417=>'L', 559418=>'L', 560419=>'L', 561420=>'L', 562421=>'L', 563422=>'L', 564423=>'L', 565424=>'L', 566425=>'L', 567426=>'L', 568427=>'L', 569428=>'L', 570429=>'L', 571430=>'L', 572431=>'L', 573432=>'L', 574433=>'L', 575434=>'L', 576435=>'L', 577436=>'L', 578437=>'L', 579438=>'L', 580439=>'L', 581440=>'L', 582441=>'L', 583442=>'L', 584443=>'L', 585444=>'L', 586445=>'L', 587446=>'L', 588447=>'L', 589448=>'L', 590449=>'L', 591450=>'L', 592451=>'L', 593452=>'L', 594453=>'L', 595454=>'L', 596455=>'L', 597456=>'L', 598457=>'L', 599458=>'L', 600459=>'L', 601460=>'L', 602461=>'L', 603462=>'L', 604463=>'L', 605464=>'L', 606465=>'L', 607466=>'L', 608467=>'L', 609468=>'L', 610469=>'L', 611470=>'L', 612471=>'L', 613472=>'L', 614473=>'L', 615474=>'L', 616475=>'L', 617476=>'L', 618477=>'L', 619478=>'L', 620479=>'L', 621480=>'L', 622481=>'L', 623482=>'L', 624483=>'L', 625484=>'L', 626485=>'L', 627486=>'L', 628487=>'L', 629488=>'L', 630489=>'L', 631490=>'L', 632491=>'L', 633492=>'L', 634493=>'L', 635494=>'L', 636495=>'L', 637496=>'L', 638497=>'L', 639498=>'L', 640499=>'L', 641500=>'L', 642501=>'L', 643502=>'L', 644503=>'L', 645504=>'L', 646505=>'L', 647506=>'L', 648507=>'L', 649508=>'L', 650509=>'L', 651510=>'L', 652511=>'L', 653512=>'L', 654513=>'L', 655514=>'L', 656515=>'L', 657516=>'L', 658517=>'L', 659518=>'L', 660519=>'L', 661520=>'L', 662521=>'L', 663522=>'L', 664523=>'L', 665524=>'L', 666525=>'L', 667526=>'L', 668527=>'L', 669528=>'L', 670529=>'L', 671530=>'L', 672531=>'L', 673532=>'L', 674533=>'L', 675534=>'L', 676535=>'L', 677536=>'L', 678537=>'L', 679538=>'L', 680539=>'L', 681540=>'L', 682541=>'L', 683542=>'L', 684543=>'L', 685544=>'L', 686545=>'L', 687546=>'L', 688547=>'L', 689548=>'L', 690549=>'L', 691550=>'L', 692551=>'L', 693552=>'L', 694553=>'L', 695554=>'L', 696555=>'L', 697556=>'L', 698557=>'L', 699558=>'L', 700559=>'L', 701560=>'L', 702561=>'L', 703562=>'L', 704563=>'L', 705564=>'L', 706565=>'L', 707566=>'L', 708567=>'L', 709568=>'L', 710569=>'L', 711570=>'L', 712571=>'L', 713572=>'L', 714573=>'L', 715574=>'L', 716575=>'L', 717576=>'L', 718577=>'L', 719578=>'L', 720579=>'L', 721580=>'L', 722581=>'L', 723582=>'L', 724583=>'L', 725584=>'L', 726585=>'L', 727586=>'L', 728587=>'L', 729588=>'L', 730589=>'L', 731590=>'L', 732591=>'L', 733592=>'L', 734593=>'L', 735594=>'L', 736595=>'L', 737596=>'L', 738597=>'L', 739598=>'L', 740599=>'L', 741600=>'L', 742601=>'L', 743602=>'L', 744603=>'L', 745604=>'L', 746605=>'L', 747606=>'L', 748607=>'L', 749608=>'L', 750609=>'L', 751610=>'L', 752611=>'L', 753612=>'L', 754613=>'L', 755614=>'L', 756615=>'L', 757616=>'L', 758617=>'L', 759618=>'L', 760619=>'L', 761620=>'L', 762621=>'L', 763622=>'L', 764623=>'L', 765624=>'L', 766625=>'L', 767626=>'L', 768627=>'L', 769628=>'L', 770629=>'L', 771630=>'L', 772631=>'L', 773632=>'L', 774633=>'L', 775634=>'L', 776635=>'L', 777636=>'L', 778637=>'L', 779638=>'L', 780639=>'L', 781640=>'L', 782641=>'L', 783642=>'L', 784643=>'L', 785644=>'L', 786645=>'L', 787646=>'L', 788647=>'L', 789648=>'L', 790649=>'L', 791650=>'L', 792651=>'L', 793652=>'L', 794653=>'L', 795654=>'L', 796655=>'L', 797656=>'L', 798657=>'L', 799658=>'L', 800659=>'L', 801660=>'L', 802661=>'L', 803662=>'L', 804663=>'L', 805664=>'L', 806665=>'L', 807666=>'L', 808667=>'L', 809668=>'L', 810669=>'L', 811670=>'L', 812671=>'L', 813672=>'L', 814673=>'L', 815674=>'L', 816675=>'L', 817676=>'L', 818677=>'L', 819678=>'L', 820679=>'L', 821680=>'L', 822681=>'L', 823682=>'L', 824683=>'L', 825684=>'L', 826685=>'L', 827686=>'L', 828687=>'L', 829688=>'L', 830689=>'L', 831690=>'L', 832691=>'L', 833692=>'L', 834693=>'L', 835694=>'L', 836695=>'L', 837696=>'L', 838697=>'ON', 839698=>'ON', 840699=>'L', 841700=>'L', 842701=>'L', 843702=>'L', 844703=>'L', 845704=>'L', 846705=>'L', 847706=>'ON', 848707=>'ON', 849708=>'ON', 850709=>'ON', 851710=>'ON', 852711=>'ON', 853712=>'ON', 854713=>'ON', 855714=>'ON', 856715=>'ON', 857716=>'ON', 858717=>'ON', 859718=>'ON', 860719=>'ON', 861720=>'L', 862721=>'L', 863722=>'ON', 864723=>'ON', 865724=>'ON', 866725=>'ON', 867726=>'ON', 868727=>'ON', 869728=>'ON', 870729=>'ON', 871730=>'ON', 872731=>'ON', 873732=>'ON', 874733=>'ON', 875734=>'ON', 876735=>'ON', 877736=>'L', 878737=>'L', 879738=>'L', 880739=>'L', 881740=>'L', 882741=>'ON', 883742=>'ON', 884743=>'ON', 885744=>'ON', 886745=>'ON', 887746=>'ON', 888747=>'ON', 889748=>'ON', 890749=>'ON', 891750=>'L', 892751=>'ON', 893752=>'ON', 894753=>'ON', 895754=>'ON', 896755=>'ON', 897756=>'ON', 898757=>'ON', 899758=>'ON', 900759=>'ON', 901760=>'ON', 902761=>'ON', 903762=>'ON', 904763=>'ON', 905764=>'ON', 906765=>'ON', 907766=>'ON', 908767=>'ON', 909768=>'NSM', 910769=>'NSM', 911770=>'NSM', 912771=>'NSM', 913772=>'NSM', 914773=>'NSM', 915774=>'NSM', 916775=>'NSM', 917776=>'NSM', 918777=>'NSM', 919778=>'NSM', 920779=>'NSM', 921780=>'NSM', 922781=>'NSM', 923782=>'NSM', 924783=>'NSM', 925784=>'NSM', 926785=>'NSM', 927786=>'NSM', 928787=>'NSM', 929788=>'NSM', 930789=>'NSM', 931790=>'NSM', 932791=>'NSM', 933792=>'NSM', 934793=>'NSM', 935794=>'NSM', 936795=>'NSM', 937796=>'NSM', 938797=>'NSM', 939798=>'NSM', 940799=>'NSM', 941800=>'NSM', 942801=>'NSM', 943802=>'NSM', 944803=>'NSM', 945804=>'NSM', 946805=>'NSM', 947806=>'NSM', 948807=>'NSM', 949808=>'NSM', 950809=>'NSM', 951810=>'NSM', 952811=>'NSM', 953812=>'NSM', 954813=>'NSM', 955814=>'NSM', 956815=>'NSM', 957816=>'NSM', 958817=>'NSM', 959818=>'NSM', 960819=>'NSM', 961820=>'NSM', 962821=>'NSM', 963822=>'NSM', 964823=>'NSM', 965824=>'NSM', 966825=>'NSM', 967826=>'NSM', 968827=>'NSM', 969828=>'NSM', 970829=>'NSM', 971830=>'NSM', 972831=>'NSM', 973832=>'NSM', 974833=>'NSM', 975834=>'NSM', 976835=>'NSM', 977836=>'NSM', 978837=>'NSM', 979838=>'NSM', 980839=>'NSM', 981840=>'NSM', 982841=>'NSM', 983842=>'NSM', 984843=>'NSM', 985844=>'NSM', 986845=>'NSM', 987846=>'NSM', 988847=>'NSM', 989848=>'NSM', 990849=>'NSM', 991850=>'NSM', 992851=>'NSM', 993852=>'NSM', 994853=>'NSM', 995854=>'NSM', 996855=>'NSM', 997856=>'NSM', 998857=>'NSM', 999858=>'NSM', 1000859=>'NSM', 1001860=>'NSM', 1002861=>'NSM', 1003862=>'NSM', 1004863=>'NSM', 1005864=>'NSM', 1006865=>'NSM', 1007866=>'NSM', 1008867=>'NSM', 1009868=>'NSM', 1010869=>'NSM', 1011870=>'NSM', 1012871=>'NSM', 1013872=>'NSM', 1014873=>'NSM', 1015874=>'NSM', 1016875=>'NSM', 1017876=>'NSM', 1018877=>'NSM', 1019878=>'NSM', 1020879=>'NSM', 1021884=>'ON', 1022885=>'ON', 1023890=>'L', 1024891=>'L', 1025892=>'L', 1026893=>'L', 1027894=>'ON', 1028900=>'ON', 1029901=>'ON', 1030902=>'L', 1031903=>'ON', 1032904=>'L', 1033905=>'L', 1034906=>'L', 1035908=>'L', 1036910=>'L', 1037911=>'L', 1038912=>'L', 1039913=>'L', 1040914=>'L', 1041915=>'L', 1042916=>'L', 1043917=>'L', 1044918=>'L', 1045919=>'L', 1046920=>'L', 1047921=>'L', 1048922=>'L', 1049923=>'L', 1050924=>'L', 1051925=>'L', 1052926=>'L', 1053927=>'L', 1054928=>'L', 1055929=>'L', 1056931=>'L', 1057932=>'L', 1058933=>'L', 1059934=>'L', 1060935=>'L', 1061936=>'L', 1062937=>'L', 1063938=>'L', 1064939=>'L', 1065940=>'L', 1066941=>'L', 1067942=>'L', 1068943=>'L', 1069944=>'L', 1070945=>'L', 1071946=>'L', 1072947=>'L', 1073948=>'L', 1074949=>'L', 1075950=>'L', 1076951=>'L', 1077952=>'L', 1078953=>'L', 1079954=>'L', 1080955=>'L', 1081956=>'L', 1082957=>'L', 1083958=>'L', 1084959=>'L', 1085960=>'L', 1086961=>'L', 1087962=>'L', 1088963=>'L', 1089964=>'L', 1090965=>'L', 1091966=>'L', 1092967=>'L', 1093968=>'L', 1094969=>'L', 1095970=>'L', 1096971=>'L', 1097972=>'L', 1098973=>'L', 1099974=>'L', 1100976=>'L', 1101977=>'L', 1102978=>'L', 1103979=>'L', 1104980=>'L', 1105981=>'L', 1106982=>'L', 1107983=>'L', 1108984=>'L', 1109985=>'L', 1110986=>'L', 1111987=>'L', 1112988=>'L', 1113989=>'L', 1114990=>'L', 1115991=>'L', 1116992=>'L', 1117993=>'L', 1118994=>'L', 1119995=>'L', 1120996=>'L', 1121997=>'L', 1122998=>'L', 1123999=>'L', 11241000=>'L', 11251001=>'L', 11261002=>'L', 11271003=>'L', 11281004=>'L', 11291005=>'L', 11301006=>'L', 11311007=>'L', 11321008=>'L', 11331009=>'L', 11341010=>'L', 11351011=>'L', 11361012=>'L', 11371013=>'L', 11381014=>'ON', 11391015=>'L', 11401016=>'L', 11411017=>'L', 11421018=>'L', 11431019=>'L', 11441020=>'L', 11451021=>'L', 11461022=>'L', 11471023=>'L', 11481024=>'L', 11491025=>'L', 11501026=>'L', 11511027=>'L', 11521028=>'L', 11531029=>'L', 11541030=>'L', 11551031=>'L', 11561032=>'L', 11571033=>'L', 11581034=>'L', 11591035=>'L', 11601036=>'L', 11611037=>'L', 11621038=>'L', 11631039=>'L', 11641040=>'L', 11651041=>'L', 11661042=>'L', 11671043=>'L', 11681044=>'L', 11691045=>'L', 11701046=>'L', 11711047=>'L', 11721048=>'L', 11731049=>'L', 11741050=>'L', 11751051=>'L', 11761052=>'L', 11771053=>'L', 11781054=>'L', 11791055=>'L', 11801056=>'L', 11811057=>'L', 11821058=>'L', 11831059=>'L', 11841060=>'L', 11851061=>'L', 11861062=>'L', 11871063=>'L', 11881064=>'L', 11891065=>'L', 11901066=>'L', 11911067=>'L', 11921068=>'L', 11931069=>'L', 11941070=>'L', 11951071=>'L', 11961072=>'L', 11971073=>'L', 11981074=>'L', 11991075=>'L', 12001076=>'L', 12011077=>'L', 12021078=>'L', 12031079=>'L', 12041080=>'L', 12051081=>'L', 12061082=>'L', 12071083=>'L', 12081084=>'L', 12091085=>'L', 12101086=>'L', 12111087=>'L', 12121088=>'L', 12131089=>'L', 12141090=>'L', 12151091=>'L', 12161092=>'L', 12171093=>'L', 12181094=>'L', 12191095=>'L', 12201096=>'L', 12211097=>'L', 12221098=>'L', 12231099=>'L', 12241100=>'L', 12251101=>'L', 12261102=>'L', 12271103=>'L', 12281104=>'L', 12291105=>'L', 12301106=>'L', 12311107=>'L', 12321108=>'L', 12331109=>'L', 12341110=>'L', 12351111=>'L', 12361112=>'L', 12371113=>'L', 12381114=>'L', 12391115=>'L', 12401116=>'L', 12411117=>'L', 12421118=>'L', 12431119=>'L', 12441120=>'L', 12451121=>'L', 12461122=>'L', 12471123=>'L', 12481124=>'L', 12491125=>'L', 12501126=>'L', 12511127=>'L', 12521128=>'L', 12531129=>'L', 12541130=>'L', 12551131=>'L', 12561132=>'L', 12571133=>'L', 12581134=>'L', 12591135=>'L', 12601136=>'L', 12611137=>'L', 12621138=>'L', 12631139=>'L', 12641140=>'L', 12651141=>'L', 12661142=>'L', 12671143=>'L', 12681144=>'L', 12691145=>'L', 12701146=>'L', 12711147=>'L', 12721148=>'L', 12731149=>'L', 12741150=>'L', 12751151=>'L', 12761152=>'L', 12771153=>'L', 12781154=>'L', 12791155=>'NSM', 12801156=>'NSM', 12811157=>'NSM', 12821158=>'NSM', 12831160=>'NSM', 12841161=>'NSM', 12851162=>'L', 12861163=>'L', 12871164=>'L', 12881165=>'L', 12891166=>'L', 12901167=>'L', 12911168=>'L', 12921169=>'L', 12931170=>'L', 12941171=>'L', 12951172=>'L', 12961173=>'L', 12971174=>'L', 12981175=>'L', 12991176=>'L', 13001177=>'L', 13011178=>'L', 13021179=>'L', 13031180=>'L', 13041181=>'L', 13051182=>'L', 13061183=>'L', 13071184=>'L', 13081185=>'L', 13091186=>'L', 13101187=>'L', 13111188=>'L', 13121189=>'L', 13131190=>'L', 13141191=>'L', 13151192=>'L', 13161193=>'L', 13171194=>'L', 13181195=>'L', 13191196=>'L', 13201197=>'L', 13211198=>'L', 13221199=>'L', 13231200=>'L', 13241201=>'L', 13251202=>'L', 13261203=>'L', 13271204=>'L', 13281205=>'L', 13291206=>'L', 13301207=>'L', 13311208=>'L', 13321209=>'L', 13331210=>'L', 13341211=>'L', 13351212=>'L', 13361213=>'L', 13371214=>'L', 13381215=>'L', 13391216=>'L', 13401217=>'L', 13411218=>'L', 13421219=>'L', 13431220=>'L', 13441221=>'L', 13451222=>'L', 13461223=>'L', 13471224=>'L', 13481225=>'L', 13491226=>'L', 13501227=>'L', 13511228=>'L', 13521229=>'L', 13531230=>'L', 13541231=>'L', 13551232=>'L', 13561233=>'L', 13571234=>'L', 13581235=>'L', 13591236=>'L', 13601237=>'L', 13611238=>'L', 13621239=>'L', 13631240=>'L', 13641241=>'L', 13651242=>'L', 13661243=>'L', 13671244=>'L', 13681245=>'L', 13691246=>'L', 13701247=>'L', 13711248=>'L', 13721249=>'L', 13731250=>'L', 13741251=>'L', 13751252=>'L', 13761253=>'L', 13771254=>'L', 13781255=>'L', 13791256=>'L', 13801257=>'L', 13811258=>'L', 13821259=>'L', 13831260=>'L', 13841261=>'L', 13851262=>'L', 13861263=>'L', 13871264=>'L', 13881265=>'L', 13891266=>'L', 13901267=>'L', 13911268=>'L', 13921269=>'L', 13931270=>'L', 13941271=>'L', 13951272=>'L', 13961273=>'L', 13971274=>'L', 13981275=>'L', 13991276=>'L', 14001277=>'L', 14011278=>'L', 14021279=>'L', 14031280=>'L', 14041281=>'L', 14051282=>'L', 14061283=>'L', 14071284=>'L', 14081285=>'L', 14091286=>'L', 14101287=>'L', 14111288=>'L', 14121289=>'L', 14131290=>'L', 14141291=>'L', 14151292=>'L', 14161293=>'L', 14171294=>'L', 14181295=>'L', 14191296=>'L', 14201297=>'L', 14211298=>'L', 14221299=>'L', 14231329=>'L', 14241330=>'L', 14251331=>'L', 14261332=>'L', 14271333=>'L', 14281334=>'L', 14291335=>'L', 14301336=>'L', 14311337=>'L', 14321338=>'L', 14331339=>'L', 14341340=>'L', 14351341=>'L', 14361342=>'L', 14371343=>'L', 14381344=>'L', 14391345=>'L', 14401346=>'L', 14411347=>'L', 14421348=>'L', 14431349=>'L', 14441350=>'L', 14451351=>'L', 14461352=>'L', 14471353=>'L', 14481354=>'L', 14491355=>'L', 14501356=>'L', 14511357=>'L', 14521358=>'L', 14531359=>'L', 14541360=>'L', 14551361=>'L', 14561362=>'L', 14571363=>'L', 14581364=>'L', 14591365=>'L', 14601366=>'L', 14611369=>'L', 14621370=>'L', 14631371=>'L', 14641372=>'L', 14651373=>'L', 14661374=>'L', 14671375=>'L', 14681377=>'L', 14691378=>'L', 14701379=>'L', 14711380=>'L', 14721381=>'L', 14731382=>'L', 14741383=>'L', 14751384=>'L', 14761385=>'L', 14771386=>'L', 14781387=>'L', 14791388=>'L', 14801389=>'L', 14811390=>'L', 14821391=>'L', 14831392=>'L', 14841393=>'L', 14851394=>'L', 14861395=>'L', 14871396=>'L', 14881397=>'L', 14891398=>'L', 14901399=>'L', 14911400=>'L', 14921401=>'L', 14931402=>'L', 14941403=>'L', 14951404=>'L', 14961405=>'L', 14971406=>'L', 14981407=>'L', 14991408=>'L', 15001409=>'L', 15011410=>'L', 15021411=>'L', 15031412=>'L', 15041413=>'L', 15051414=>'L', 15061415=>'L', 15071417=>'L', 15081418=>'ON', 15091425=>'NSM', 15101426=>'NSM', 15111427=>'NSM', 15121428=>'NSM', 15131429=>'NSM', 15141430=>'NSM', 15151431=>'NSM', 15161432=>'NSM', 15171433=>'NSM', 15181434=>'NSM', 15191435=>'NSM', 15201436=>'NSM', 15211437=>'NSM', 15221438=>'NSM', 15231439=>'NSM', 15241440=>'NSM', 15251441=>'NSM', 15261442=>'NSM', 15271443=>'NSM', 15281444=>'NSM', 15291445=>'NSM', 15301446=>'NSM', 15311447=>'NSM', 15321448=>'NSM', 15331449=>'NSM', 15341450=>'NSM', 15351451=>'NSM', 15361452=>'NSM', 15371453=>'NSM', 15381454=>'NSM', 15391455=>'NSM', 15401456=>'NSM', 15411457=>'NSM', 15421458=>'NSM', 15431459=>'NSM', 15441460=>'NSM', 15451461=>'NSM', 15461462=>'NSM', 15471463=>'NSM', 15481464=>'NSM', 15491465=>'NSM', 15501466=>'NSM', 15511467=>'NSM', 15521468=>'NSM', 15531469=>'NSM', 15541470=>'R', 15551471=>'NSM', 15561472=>'R', 15571473=>'NSM', 15581474=>'NSM', 15591475=>'R', 15601476=>'NSM', 15611477=>'NSM', 15621478=>'R', 15631479=>'NSM', 15641488=>'R', 15651489=>'R', 15661490=>'R', 15671491=>'R', 15681492=>'R', 15691493=>'R', 15701494=>'R', 15711495=>'R', 15721496=>'R', 15731497=>'R', 15741498=>'R', 15751499=>'R', 15761500=>'R', 15771501=>'R', 15781502=>'R', 15791503=>'R', 15801504=>'R', 15811505=>'R', 15821506=>'R', 15831507=>'R', 15841508=>'R', 15851509=>'R', 15861510=>'R', 15871511=>'R', 15881512=>'R', 15891513=>'R', 15901514=>'R', 15911520=>'R', 15921521=>'R', 15931522=>'R', 15941523=>'R', 15951524=>'R', 15961536=>'AL', 15971537=>'AL', 15981538=>'AL', 15991539=>'AL', 16001547=>'AL', 16011548=>'CS', 16021549=>'AL', 16031550=>'ON', 16041551=>'ON', 16051552=>'NSM', 16061553=>'NSM', 16071554=>'NSM', 16081555=>'NSM', 16091556=>'NSM', 16101557=>'NSM', 16111563=>'AL', 16121566=>'AL', 16131567=>'AL', 16141569=>'AL', 16151570=>'AL', 16161571=>'AL', 16171572=>'AL', 16181573=>'AL', 16191574=>'AL', 16201575=>'AL', 16211576=>'AL', 16221577=>'AL', 16231578=>'AL', 16241579=>'AL', 16251580=>'AL', 16261581=>'AL', 16271582=>'AL', 16281583=>'AL', 16291584=>'AL', 16301585=>'AL', 16311586=>'AL', 16321587=>'AL', 16331588=>'AL', 16341589=>'AL', 16351590=>'AL', 16361591=>'AL', 16371592=>'AL', 16381593=>'AL', 16391594=>'AL', 16401600=>'AL', 16411601=>'AL', 16421602=>'AL', 16431603=>'AL', 16441604=>'AL', 16451605=>'AL', 16461606=>'AL', 16471607=>'AL', 16481608=>'AL', 16491609=>'AL', 16501610=>'AL', 16511611=>'NSM', 16521612=>'NSM', 16531613=>'NSM', 16541614=>'NSM', 16551615=>'NSM', 16561616=>'NSM', 16571617=>'NSM', 16581618=>'NSM', 16591619=>'NSM', 16601620=>'NSM', 16611621=>'NSM', 16621622=>'NSM', 16631623=>'NSM', 16641624=>'NSM', 16651625=>'NSM', 16661626=>'NSM', 16671627=>'NSM', 16681628=>'NSM', 16691629=>'NSM', 16701630=>'NSM', 16711632=>'AN', 16721633=>'AN', 16731634=>'AN', 16741635=>'AN', 16751636=>'AN', 16761637=>'AN', 16771638=>'AN', 16781639=>'AN', 16791640=>'AN', 16801641=>'AN', 16811642=>'ET', 16821643=>'AN', 16831644=>'AN', 16841645=>'AL', 16851646=>'AL', 16861647=>'AL', 16871648=>'NSM', 16881649=>'AL', 16891650=>'AL', 16901651=>'AL', 16911652=>'AL', 16921653=>'AL', 16931654=>'AL', 16941655=>'AL', 16951656=>'AL', 16961657=>'AL', 16971658=>'AL', 16981659=>'AL', 16991660=>'AL', 17001661=>'AL', 17011662=>'AL', 17021663=>'AL', 17031664=>'AL', 17041665=>'AL', 17051666=>'AL', 17061667=>'AL', 17071668=>'AL', 17081669=>'AL', 17091670=>'AL', 17101671=>'AL', 17111672=>'AL', 17121673=>'AL', 17131674=>'AL', 17141675=>'AL', 17151676=>'AL', 17161677=>'AL', 17171678=>'AL', 17181679=>'AL', 17191680=>'AL', 17201681=>'AL', 17211682=>'AL', 17221683=>'AL', 17231684=>'AL', 17241685=>'AL', 17251686=>'AL', 17261687=>'AL', 17271688=>'AL', 17281689=>'AL', 17291690=>'AL', 17301691=>'AL', 17311692=>'AL', 17321693=>'AL', 17331694=>'AL', 17341695=>'AL', 17351696=>'AL', 17361697=>'AL', 17371698=>'AL', 17381699=>'AL', 17391700=>'AL', 17401701=>'AL', 17411702=>'AL', 17421703=>'AL', 17431704=>'AL', 17441705=>'AL', 17451706=>'AL', 17461707=>'AL', 17471708=>'AL', 17481709=>'AL', 17491710=>'AL', 17501711=>'AL', 17511712=>'AL', 17521713=>'AL', 17531714=>'AL', 17541715=>'AL', 17551716=>'AL', 17561717=>'AL', 17571718=>'AL', 17581719=>'AL', 17591720=>'AL', 17601721=>'AL', 17611722=>'AL', 17621723=>'AL', 17631724=>'AL', 17641725=>'AL', 17651726=>'AL', 17661727=>'AL', 17671728=>'AL', 17681729=>'AL', 17691730=>'AL', 17701731=>'AL', 17711732=>'AL', 17721733=>'AL', 17731734=>'AL', 17741735=>'AL', 17751736=>'AL', 17761737=>'AL', 17771738=>'AL', 17781739=>'AL', 17791740=>'AL', 17801741=>'AL', 17811742=>'AL', 17821743=>'AL', 17831744=>'AL', 17841745=>'AL', 17851746=>'AL', 17861747=>'AL', 17871748=>'AL', 17881749=>'AL', 17891750=>'NSM', 17901751=>'NSM', 17911752=>'NSM', 17921753=>'NSM', 17931754=>'NSM', 17941755=>'NSM', 17951756=>'NSM', 17961757=>'AL', 17971758=>'NSM', 17981759=>'NSM', 17991760=>'NSM', 18001761=>'NSM', 18011762=>'NSM', 18021763=>'NSM', 18031764=>'NSM', 18041765=>'AL', 18051766=>'AL', 18061767=>'NSM', 18071768=>'NSM', 18081769=>'ON', 18091770=>'NSM', 18101771=>'NSM', 18111772=>'NSM', 18121773=>'NSM', 18131774=>'AL', 18141775=>'AL', 18151776=>'EN', 18161777=>'EN', 18171778=>'EN', 18181779=>'EN', 18191780=>'EN', 18201781=>'EN', 18211782=>'EN', 18221783=>'EN', 18231784=>'EN', 18241785=>'EN', 18251786=>'AL', 18261787=>'AL', 18271788=>'AL', 18281789=>'AL', 18291790=>'AL', 18301791=>'AL', 18311792=>'AL', 18321793=>'AL', 18331794=>'AL', 18341795=>'AL', 18351796=>'AL', 18361797=>'AL', 18371798=>'AL', 18381799=>'AL', 18391800=>'AL', 18401801=>'AL', 18411802=>'AL', 18421803=>'AL', 18431804=>'AL', 18441805=>'AL', 18451807=>'BN', 18461808=>'AL', 18471809=>'NSM', 18481810=>'AL', 18491811=>'AL', 18501812=>'AL', 18511813=>'AL', 18521814=>'AL', 18531815=>'AL', 18541816=>'AL', 18551817=>'AL', 18561818=>'AL', 18571819=>'AL', 18581820=>'AL', 18591821=>'AL', 18601822=>'AL', 18611823=>'AL', 18621824=>'AL', 18631825=>'AL', 18641826=>'AL', 18651827=>'AL', 18661828=>'AL', 18671829=>'AL', 18681830=>'AL', 18691831=>'AL', 18701832=>'AL', 18711833=>'AL', 18721834=>'AL', 18731835=>'AL', 18741836=>'AL', 18751837=>'AL', 18761838=>'AL', 18771839=>'AL', 18781840=>'NSM', 18791841=>'NSM', 18801842=>'NSM', 18811843=>'NSM', 18821844=>'NSM', 18831845=>'NSM', 18841846=>'NSM', 18851847=>'NSM', 18861848=>'NSM', 18871849=>'NSM', 18881850=>'NSM', 18891851=>'NSM', 18901852=>'NSM', 18911853=>'NSM', 18921854=>'NSM', 18931855=>'NSM', 18941856=>'NSM', 18951857=>'NSM', 18961858=>'NSM', 18971859=>'NSM', 18981860=>'NSM', 18991861=>'NSM', 19001862=>'NSM', 19011863=>'NSM', 19021864=>'NSM', 19031865=>'NSM', 19041866=>'NSM', 19051869=>'AL', 19061870=>'AL', 19071871=>'AL', 19081872=>'AL', 19091873=>'AL', 19101874=>'AL', 19111875=>'AL', 19121876=>'AL', 19131877=>'AL', 19141878=>'AL', 19151879=>'AL', 19161880=>'AL', 19171881=>'AL', 19181882=>'AL', 19191883=>'AL', 19201884=>'AL', 19211885=>'AL', 19221886=>'AL', 19231887=>'AL', 19241888=>'AL', 19251889=>'AL', 19261890=>'AL', 19271891=>'AL', 19281892=>'AL', 19291893=>'AL', 19301894=>'AL', 19311895=>'AL', 19321896=>'AL', 19331897=>'AL', 19341898=>'AL', 19351899=>'AL', 19361900=>'AL', 19371901=>'AL', 19381920=>'AL', 19391921=>'AL', 19401922=>'AL', 19411923=>'AL', 19421924=>'AL', 19431925=>'AL', 19441926=>'AL', 19451927=>'AL', 19461928=>'AL', 19471929=>'AL', 19481930=>'AL', 19491931=>'AL', 19501932=>'AL', 19511933=>'AL', 19521934=>'AL', 19531935=>'AL', 19541936=>'AL', 19551937=>'AL', 19561938=>'AL', 19571939=>'AL', 19581940=>'AL', 19591941=>'AL', 19601942=>'AL', 19611943=>'AL', 19621944=>'AL', 19631945=>'AL', 19641946=>'AL', 19651947=>'AL', 19661948=>'AL', 19671949=>'AL', 19681950=>'AL', 19691951=>'AL', 19701952=>'AL', 19711953=>'AL', 19721954=>'AL', 19731955=>'AL', 19741956=>'AL', 19751957=>'AL', 19761958=>'NSM', 19771959=>'NSM', 19781960=>'NSM', 19791961=>'NSM', 19801962=>'NSM', 19811963=>'NSM', 19821964=>'NSM', 19831965=>'NSM', 19841966=>'NSM', 19851967=>'NSM', 19861968=>'NSM', 19871969=>'AL', 19881984=>'R', 19891985=>'R', 19901986=>'R', 19911987=>'R', 19921988=>'R', 19931989=>'R', 19941990=>'R', 19951991=>'R', 19961992=>'R', 19971993=>'R', 19981994=>'R', 19991995=>'R', 20001996=>'R', 20011997=>'R', 20021998=>'R', 20031999=>'R', 20042000=>'R', 20052001=>'R', 20062002=>'R', 20072003=>'R', 20082004=>'R', 20092005=>'R', 20102006=>'R', 20112007=>'R', 20122008=>'R', 20132009=>'R', 20142010=>'R', 20152011=>'R', 20162012=>'R', 20172013=>'R', 20182014=>'R', 20192015=>'R', 20202016=>'R', 20212017=>'R', 20222018=>'R', 20232019=>'R', 20242020=>'R', 20252021=>'R', 20262022=>'R', 20272023=>'R', 20282024=>'R', 20292025=>'R', 20302026=>'R', 20312027=>'NSM', 20322028=>'NSM', 20332029=>'NSM', 20342030=>'NSM', 20352031=>'NSM', 20362032=>'NSM', 20372033=>'NSM', 20382034=>'NSM', 20392035=>'NSM', 20402036=>'R', 20412037=>'R', 20422038=>'ON', 20432039=>'ON', 20442040=>'ON', 20452041=>'ON', 20462042=>'R', 20472305=>'NSM', 20482306=>'NSM', 20492307=>'L', 20502308=>'L', 20512309=>'L', 20522310=>'L', 20532311=>'L', 20542312=>'L', 20552313=>'L', 20562314=>'L', 20572315=>'L', 20582316=>'L', 20592317=>'L', 20602318=>'L', 20612319=>'L', 20622320=>'L', 20632321=>'L', 20642322=>'L', 20652323=>'L', 20662324=>'L', 20672325=>'L', 20682326=>'L', 20692327=>'L', 20702328=>'L', 20712329=>'L', 20722330=>'L', 20732331=>'L', 20742332=>'L', 20752333=>'L', 20762334=>'L', 20772335=>'L', 20782336=>'L', 20792337=>'L', 20802338=>'L', 20812339=>'L', 20822340=>'L', 20832341=>'L', 20842342=>'L', 20852343=>'L', 20862344=>'L', 20872345=>'L', 20882346=>'L', 20892347=>'L', 20902348=>'L', 20912349=>'L', 20922350=>'L', 20932351=>'L', 20942352=>'L', 20952353=>'L', 20962354=>'L', 20972355=>'L', 20982356=>'L', 20992357=>'L', 21002358=>'L', 21012359=>'L', 21022360=>'L', 21032361=>'L', 21042364=>'NSM', 21052365=>'L', 21062366=>'L', 21072367=>'L', 21082368=>'L', 21092369=>'NSM', 21102370=>'NSM', 21112371=>'NSM', 21122372=>'NSM', 21132373=>'NSM', 21142374=>'NSM', 21152375=>'NSM', 21162376=>'NSM', 21172377=>'L', 21182378=>'L', 21192379=>'L', 21202380=>'L', 21212381=>'NSM', 21222384=>'L', 21232385=>'NSM', 21242386=>'NSM', 21252387=>'NSM', 21262388=>'NSM', 21272392=>'L', 21282393=>'L', 21292394=>'L', 21302395=>'L', 21312396=>'L', 21322397=>'L', 21332398=>'L', 21342399=>'L', 21352400=>'L', 21362401=>'L', 21372402=>'NSM', 21382403=>'NSM', 21392404=>'L', 21402405=>'L', 21412406=>'L', 21422407=>'L', 21432408=>'L', 21442409=>'L', 21452410=>'L', 21462411=>'L', 21472412=>'L', 21482413=>'L', 21492414=>'L', 21502415=>'L', 21512416=>'L', 21522427=>'L', 21532428=>'L', 21542429=>'L', 21552430=>'L', 21562431=>'L', 21572433=>'NSM', 21582434=>'L', 21592435=>'L', 21602437=>'L', 21612438=>'L', 21622439=>'L', 21632440=>'L', 21642441=>'L', 21652442=>'L', 21662443=>'L', 21672444=>'L', 21682447=>'L', 21692448=>'L', 21702451=>'L', 21712452=>'L', 21722453=>'L', 21732454=>'L', 21742455=>'L', 21752456=>'L', 21762457=>'L', 21772458=>'L', 21782459=>'L', 21792460=>'L', 21802461=>'L', 21812462=>'L', 21822463=>'L', 21832464=>'L', 21842465=>'L', 21852466=>'L', 21862467=>'L', 21872468=>'L', 21882469=>'L', 21892470=>'L', 21902471=>'L', 21912472=>'L', 21922474=>'L', 21932475=>'L', 21942476=>'L', 21952477=>'L', 21962478=>'L', 21972479=>'L', 21982480=>'L', 21992482=>'L', 22002486=>'L', 22012487=>'L', 22022488=>'L', 22032489=>'L', 22042492=>'NSM', 22052493=>'L', 22062494=>'L', 22072495=>'L', 22082496=>'L', 22092497=>'NSM', 22102498=>'NSM', 22112499=>'NSM', 22122500=>'NSM', 22132503=>'L', 22142504=>'L', 22152507=>'L', 22162508=>'L', 22172509=>'NSM', 22182510=>'L', 22192519=>'L', 22202524=>'L', 22212525=>'L', 22222527=>'L', 22232528=>'L', 22242529=>'L', 22252530=>'NSM', 22262531=>'NSM', 22272534=>'L', 22282535=>'L', 22292536=>'L', 22302537=>'L', 22312538=>'L', 22322539=>'L', 22332540=>'L', 22342541=>'L', 22352542=>'L', 22362543=>'L', 22372544=>'L', 22382545=>'L', 22392546=>'ET', 22402547=>'ET', 22412548=>'L', 22422549=>'L', 22432550=>'L', 22442551=>'L', 22452552=>'L', 22462553=>'L', 22472554=>'L', 22482561=>'NSM', 22492562=>'NSM', 22502563=>'L', 22512565=>'L', 22522566=>'L', 22532567=>'L', 22542568=>'L', 22552569=>'L', 22562570=>'L', 22572575=>'L', 22582576=>'L', 22592579=>'L', 22602580=>'L', 22612581=>'L', 22622582=>'L', 22632583=>'L', 22642584=>'L', 22652585=>'L', 22662586=>'L', 22672587=>'L', 22682588=>'L', 22692589=>'L', 22702590=>'L', 22712591=>'L', 22722592=>'L', 22732593=>'L', 22742594=>'L', 22752595=>'L', 22762596=>'L', 22772597=>'L', 22782598=>'L', 22792599=>'L', 22802600=>'L', 22812602=>'L', 22822603=>'L', 22832604=>'L', 22842605=>'L', 22852606=>'L', 22862607=>'L', 22872608=>'L', 22882610=>'L', 22892611=>'L', 22902613=>'L', 22912614=>'L', 22922616=>'L', 22932617=>'L', 22942620=>'NSM', 22952622=>'L', 22962623=>'L', 22972624=>'L', 22982625=>'NSM', 22992626=>'NSM', 23002631=>'NSM', 23012632=>'NSM', 23022635=>'NSM', 23032636=>'NSM', 23042637=>'NSM', 23052649=>'L', 23062650=>'L', 23072651=>'L', 23082652=>'L', 23092654=>'L', 23102662=>'L', 23112663=>'L', 23122664=>'L', 23132665=>'L', 23142666=>'L', 23152667=>'L', 23162668=>'L', 23172669=>'L', 23182670=>'L', 23192671=>'L', 23202672=>'NSM', 23212673=>'NSM', 23222674=>'L', 23232675=>'L', 23242676=>'L', 23252689=>'NSM', 23262690=>'NSM', 23272691=>'L', 23282693=>'L', 23292694=>'L', 23302695=>'L', 23312696=>'L', 23322697=>'L', 23332698=>'L', 23342699=>'L', 23352700=>'L', 23362701=>'L', 23372703=>'L', 23382704=>'L', 23392705=>'L', 23402707=>'L', 23412708=>'L', 23422709=>'L', 23432710=>'L', 23442711=>'L', 23452712=>'L', 23462713=>'L', 23472714=>'L', 23482715=>'L', 23492716=>'L', 23502717=>'L', 23512718=>'L', 23522719=>'L', 23532720=>'L', 23542721=>'L', 23552722=>'L', 23562723=>'L', 23572724=>'L', 23582725=>'L', 23592726=>'L', 23602727=>'L', 23612728=>'L', 23622730=>'L', 23632731=>'L', 23642732=>'L', 23652733=>'L', 23662734=>'L', 23672735=>'L', 23682736=>'L', 23692738=>'L', 23702739=>'L', 23712741=>'L', 23722742=>'L', 23732743=>'L', 23742744=>'L', 23752745=>'L', 23762748=>'NSM', 23772749=>'L', 23782750=>'L', 23792751=>'L', 23802752=>'L', 23812753=>'NSM', 23822754=>'NSM', 23832755=>'NSM', 23842756=>'NSM', 23852757=>'NSM', 23862759=>'NSM', 23872760=>'NSM', 23882761=>'L', 23892763=>'L', 23902764=>'L', 23912765=>'NSM', 23922768=>'L', 23932784=>'L', 23942785=>'L', 23952786=>'NSM', 23962787=>'NSM', 23972790=>'L', 23982791=>'L', 23992792=>'L', 24002793=>'L', 24012794=>'L', 24022795=>'L', 24032796=>'L', 24042797=>'L', 24052798=>'L', 24062799=>'L', 24072801=>'ET', 24082817=>'NSM', 24092818=>'L', 24102819=>'L', 24112821=>'L', 24122822=>'L', 24132823=>'L', 24142824=>'L', 24152825=>'L', 24162826=>'L', 24172827=>'L', 24182828=>'L', 24192831=>'L', 24202832=>'L', 24212835=>'L', 24222836=>'L', 24232837=>'L', 24242838=>'L', 24252839=>'L', 24262840=>'L', 24272841=>'L', 24282842=>'L', 24292843=>'L', 24302844=>'L', 24312845=>'L', 24322846=>'L', 24332847=>'L', 24342848=>'L', 24352849=>'L', 24362850=>'L', 24372851=>'L', 24382852=>'L', 24392853=>'L', 24402854=>'L', 24412855=>'L', 24422856=>'L', 24432858=>'L', 24442859=>'L', 24452860=>'L', 24462861=>'L', 24472862=>'L', 24482863=>'L', 24492864=>'L', 24502866=>'L', 24512867=>'L', 24522869=>'L', 24532870=>'L', 24542871=>'L', 24552872=>'L', 24562873=>'L', 24572876=>'NSM', 24582877=>'L', 24592878=>'L', 24602879=>'NSM', 24612880=>'L', 24622881=>'NSM', 24632882=>'NSM', 24642883=>'NSM', 24652887=>'L', 24662888=>'L', 24672891=>'L', 24682892=>'L', 24692893=>'NSM', 24702902=>'NSM', 24712903=>'L', 24722908=>'L', 24732909=>'L', 24742911=>'L', 24752912=>'L', 24762913=>'L', 24772918=>'L', 24782919=>'L', 24792920=>'L', 24802921=>'L', 24812922=>'L', 24822923=>'L', 24832924=>'L', 24842925=>'L', 24852926=>'L', 24862927=>'L', 24872928=>'L', 24882929=>'L', 24892946=>'NSM', 24902947=>'L', 24912949=>'L', 24922950=>'L', 24932951=>'L', 24942952=>'L', 24952953=>'L', 24962954=>'L', 24972958=>'L', 24982959=>'L', 24992960=>'L', 25002962=>'L', 25012963=>'L', 25022964=>'L', 25032965=>'L', 25042969=>'L', 25052970=>'L', 25062972=>'L', 25072974=>'L', 25082975=>'L', 25092979=>'L', 25102980=>'L', 25112984=>'L', 25122985=>'L', 25132986=>'L', 25142990=>'L', 25152991=>'L', 25162992=>'L', 25172993=>'L', 25182994=>'L', 25192995=>'L', 25202996=>'L', 25212997=>'L', 25222998=>'L', 25232999=>'L', 25243000=>'L', 25253001=>'L', 25263006=>'L', 25273007=>'L', 25283008=>'NSM', 25293009=>'L', 25303010=>'L', 25313014=>'L', 25323015=>'L', 25333016=>'L', 25343018=>'L', 25353019=>'L', 25363020=>'L', 25373021=>'NSM', 25383031=>'L', 25393046=>'L', 25403047=>'L', 25413048=>'L', 25423049=>'L', 25433050=>'L', 25443051=>'L', 25453052=>'L', 25463053=>'L', 25473054=>'L', 25483055=>'L', 25493056=>'L', 25503057=>'L', 25513058=>'L', 25523059=>'ON', 25533060=>'ON', 25543061=>'ON', 25553062=>'ON', 25563063=>'ON', 25573064=>'ON', 25583065=>'ET', 25593066=>'ON', 25603073=>'L', 25613074=>'L', 25623075=>'L', 25633077=>'L', 25643078=>'L', 25653079=>'L', 25663080=>'L', 25673081=>'L', 25683082=>'L', 25693083=>'L', 25703084=>'L', 25713086=>'L', 25723087=>'L', 25733088=>'L', 25743090=>'L', 25753091=>'L', 25763092=>'L', 25773093=>'L', 25783094=>'L', 25793095=>'L', 25803096=>'L', 25813097=>'L', 25823098=>'L', 25833099=>'L', 25843100=>'L', 25853101=>'L', 25863102=>'L', 25873103=>'L', 25883104=>'L', 25893105=>'L', 25903106=>'L', 25913107=>'L', 25923108=>'L', 25933109=>'L', 25943110=>'L', 25953111=>'L', 25963112=>'L', 25973114=>'L', 25983115=>'L', 25993116=>'L', 26003117=>'L', 26013118=>'L', 26023119=>'L', 26033120=>'L', 26043121=>'L', 26053122=>'L', 26063123=>'L', 26073125=>'L', 26083126=>'L', 26093127=>'L', 26103128=>'L', 26113129=>'L', 26123134=>'NSM', 26133135=>'NSM', 26143136=>'NSM', 26153137=>'L', 26163138=>'L', 26173139=>'L', 26183140=>'L', 26193142=>'NSM', 26203143=>'NSM', 26213144=>'NSM', 26223146=>'NSM', 26233147=>'NSM', 26243148=>'NSM', 26253149=>'NSM', 26263157=>'NSM', 26273158=>'NSM', 26283168=>'L', 26293169=>'L', 26303174=>'L', 26313175=>'L', 26323176=>'L', 26333177=>'L', 26343178=>'L', 26353179=>'L', 26363180=>'L', 26373181=>'L', 26383182=>'L', 26393183=>'L', 26403202=>'L', 26413203=>'L', 26423205=>'L', 26433206=>'L', 26443207=>'L', 26453208=>'L', 26463209=>'L', 26473210=>'L', 26483211=>'L', 26493212=>'L', 26503214=>'L', 26513215=>'L', 26523216=>'L', 26533218=>'L', 26543219=>'L', 26553220=>'L', 26563221=>'L', 26573222=>'L', 26583223=>'L', 26593224=>'L', 26603225=>'L', 26613226=>'L', 26623227=>'L', 26633228=>'L', 26643229=>'L', 26653230=>'L', 26663231=>'L', 26673232=>'L', 26683233=>'L', 26693234=>'L', 26703235=>'L', 26713236=>'L', 26723237=>'L', 26733238=>'L', 26743239=>'L', 26753240=>'L', 26763242=>'L', 26773243=>'L', 26783244=>'L', 26793245=>'L', 26803246=>'L', 26813247=>'L', 26823248=>'L', 26833249=>'L', 26843250=>'L', 26853251=>'L', 26863253=>'L', 26873254=>'L', 26883255=>'L', 26893256=>'L', 26903257=>'L', 26913260=>'NSM', 26923261=>'L', 26933262=>'L', 26943263=>'L', 26953264=>'L', 26963265=>'L', 26973266=>'L', 26983267=>'L', 26993268=>'L', 27003270=>'L', 27013271=>'L', 27023272=>'L', 27033274=>'L', 27043275=>'L', 27053276=>'NSM', 27063277=>'NSM', 27073285=>'L', 27083286=>'L', 27093294=>'L', 27103296=>'L', 27113297=>'L', 27123298=>'NSM', 27133299=>'NSM', 27143302=>'L', 27153303=>'L', 27163304=>'L', 27173305=>'L', 27183306=>'L', 27193307=>'L', 27203308=>'L', 27213309=>'L', 27223310=>'L', 27233311=>'L', 27243313=>'ON', 27253314=>'ON', 27263330=>'L', 27273331=>'L', 27283333=>'L', 27293334=>'L', 27303335=>'L', 27313336=>'L', 27323337=>'L', 27333338=>'L', 27343339=>'L', 27353340=>'L', 27363342=>'L', 27373343=>'L', 27383344=>'L', 27393346=>'L', 27403347=>'L', 27413348=>'L', 27423349=>'L', 27433350=>'L', 27443351=>'L', 27453352=>'L', 27463353=>'L', 27473354=>'L', 27483355=>'L', 27493356=>'L', 27503357=>'L', 27513358=>'L', 27523359=>'L', 27533360=>'L', 27543361=>'L', 27553362=>'L', 27563363=>'L', 27573364=>'L', 27583365=>'L', 27593366=>'L', 27603367=>'L', 27613368=>'L', 27623370=>'L', 27633371=>'L', 27643372=>'L', 27653373=>'L', 27663374=>'L', 27673375=>'L', 27683376=>'L', 27693377=>'L', 27703378=>'L', 27713379=>'L', 27723380=>'L', 27733381=>'L', 27743382=>'L', 27753383=>'L', 27763384=>'L', 27773385=>'L', 27783390=>'L', 27793391=>'L', 27803392=>'L', 27813393=>'NSM', 27823394=>'NSM', 27833395=>'NSM', 27843398=>'L', 27853399=>'L', 27863400=>'L', 27873402=>'L', 27883403=>'L', 27893404=>'L', 27903405=>'NSM', 27913415=>'L', 27923424=>'L', 27933425=>'L', 27943430=>'L', 27953431=>'L', 27963432=>'L', 27973433=>'L', 27983434=>'L', 27993435=>'L', 28003436=>'L', 28013437=>'L', 28023438=>'L', 28033439=>'L', 28043458=>'L', 28053459=>'L', 28063461=>'L', 28073462=>'L', 28083463=>'L', 28093464=>'L', 28103465=>'L', 28113466=>'L', 28123467=>'L', 28133468=>'L', 28143469=>'L', 28153470=>'L', 28163471=>'L', 28173472=>'L', 28183473=>'L', 28193474=>'L', 28203475=>'L', 28213476=>'L', 28223477=>'L', 28233478=>'L', 28243482=>'L', 28253483=>'L', 28263484=>'L', 28273485=>'L', 28283486=>'L', 28293487=>'L', 28303488=>'L', 28313489=>'L', 28323490=>'L', 28333491=>'L', 28343492=>'L', 28353493=>'L', 28363494=>'L', 28373495=>'L', 28383496=>'L', 28393497=>'L', 28403498=>'L', 28413499=>'L', 28423500=>'L', 28433501=>'L', 28443502=>'L', 28453503=>'L', 28463504=>'L', 28473505=>'L', 28483507=>'L', 28493508=>'L', 28503509=>'L', 28513510=>'L', 28523511=>'L', 28533512=>'L', 28543513=>'L', 28553514=>'L', 28563515=>'L', 28573517=>'L', 28583520=>'L', 28593521=>'L', 28603522=>'L', 28613523=>'L', 28623524=>'L', 28633525=>'L', 28643526=>'L', 28653530=>'NSM', 28663535=>'L', 28673536=>'L', 28683537=>'L', 28693538=>'NSM', 28703539=>'NSM', 28713540=>'NSM', 28723542=>'NSM', 28733544=>'L', 28743545=>'L', 28753546=>'L', 28763547=>'L', 28773548=>'L', 28783549=>'L', 28793550=>'L', 28803551=>'L', 28813570=>'L', 28823571=>'L', 28833572=>'L', 28843585=>'L', 28853586=>'L', 28863587=>'L', 28873588=>'L', 28883589=>'L', 28893590=>'L', 28903591=>'L', 28913592=>'L', 28923593=>'L', 28933594=>'L', 28943595=>'L', 28953596=>'L', 28963597=>'L', 28973598=>'L', 28983599=>'L', 28993600=>'L', 29003601=>'L', 29013602=>'L', 29023603=>'L', 29033604=>'L', 29043605=>'L', 29053606=>'L', 29063607=>'L', 29073608=>'L', 29083609=>'L', 29093610=>'L', 29103611=>'L', 29113612=>'L', 29123613=>'L', 29133614=>'L', 29143615=>'L', 29153616=>'L', 29163617=>'L', 29173618=>'L', 29183619=>'L', 29193620=>'L', 29203621=>'L', 29213622=>'L', 29223623=>'L', 29233624=>'L', 29243625=>'L', 29253626=>'L', 29263627=>'L', 29273628=>'L', 29283629=>'L', 29293630=>'L', 29303631=>'L', 29313632=>'L', 29323633=>'NSM', 29333634=>'L', 29343635=>'L', 29353636=>'NSM', 29363637=>'NSM', 29373638=>'NSM', 29383639=>'NSM', 29393640=>'NSM', 29403641=>'NSM', 29413642=>'NSM', 29423647=>'ET', 29433648=>'L', 29443649=>'L', 29453650=>'L', 29463651=>'L', 29473652=>'L', 29483653=>'L', 29493654=>'L', 29503655=>'NSM', 29513656=>'NSM', 29523657=>'NSM', 29533658=>'NSM', 29543659=>'NSM', 29553660=>'NSM', 29563661=>'NSM', 29573662=>'NSM', 29583663=>'L', 29593664=>'L', 29603665=>'L', 29613666=>'L', 29623667=>'L', 29633668=>'L', 29643669=>'L', 29653670=>'L', 29663671=>'L', 29673672=>'L', 29683673=>'L', 29693674=>'L', 29703675=>'L', 29713713=>'L', 29723714=>'L', 29733716=>'L', 29743719=>'L', 29753720=>'L', 29763722=>'L', 29773725=>'L', 29783732=>'L', 29793733=>'L', 29803734=>'L', 29813735=>'L', 29823737=>'L', 29833738=>'L', 29843739=>'L', 29853740=>'L', 29863741=>'L', 29873742=>'L', 29883743=>'L', 29893745=>'L', 29903746=>'L', 29913747=>'L', 29923749=>'L', 29933751=>'L', 29943754=>'L', 29953755=>'L', 29963757=>'L', 29973758=>'L', 29983759=>'L', 29993760=>'L', 30003761=>'NSM', 30013762=>'L', 30023763=>'L', 30033764=>'NSM', 30043765=>'NSM', 30053766=>'NSM', 30063767=>'NSM', 30073768=>'NSM', 30083769=>'NSM', 30093771=>'NSM', 30103772=>'NSM', 30113773=>'L', 30123776=>'L', 30133777=>'L', 30143778=>'L', 30153779=>'L', 30163780=>'L', 30173782=>'L', 30183784=>'NSM', 30193785=>'NSM', 30203786=>'NSM', 30213787=>'NSM', 30223788=>'NSM', 30233789=>'NSM', 30243792=>'L', 30253793=>'L', 30263794=>'L', 30273795=>'L', 30283796=>'L', 30293797=>'L', 30303798=>'L', 30313799=>'L', 30323800=>'L', 30333801=>'L', 30343804=>'L', 30353805=>'L', 30363840=>'L', 30373841=>'L', 30383842=>'L', 30393843=>'L', 30403844=>'L', 30413845=>'L', 30423846=>'L', 30433847=>'L', 30443848=>'L', 30453849=>'L', 30463850=>'L', 30473851=>'L', 30483852=>'L', 30493853=>'L', 30503854=>'L', 30513855=>'L', 30523856=>'L', 30533857=>'L', 30543858=>'L', 30553859=>'L', 30563860=>'L', 30573861=>'L', 30583862=>'L', 30593863=>'L', 30603864=>'NSM', 30613865=>'NSM', 30623866=>'L', 30633867=>'L', 30643868=>'L', 30653869=>'L', 30663870=>'L', 30673871=>'L', 30683872=>'L', 30693873=>'L', 30703874=>'L', 30713875=>'L', 30723876=>'L', 30733877=>'L', 30743878=>'L', 30753879=>'L', 30763880=>'L', 30773881=>'L', 30783882=>'L', 30793883=>'L', 30803884=>'L', 30813885=>'L', 30823886=>'L', 30833887=>'L', 30843888=>'L', 30853889=>'L', 30863890=>'L', 30873891=>'L', 30883892=>'L', 30893893=>'NSM', 30903894=>'L', 30913895=>'NSM', 30923896=>'L', 30933897=>'NSM', 30943898=>'ON', 30953899=>'ON', 30963900=>'ON', 30973901=>'ON', 30983902=>'L', 30993903=>'L', 31003904=>'L', 31013905=>'L', 31023906=>'L', 31033907=>'L', 31043908=>'L', 31053909=>'L', 31063910=>'L', 31073911=>'L', 31083913=>'L', 31093914=>'L', 31103915=>'L', 31113916=>'L', 31123917=>'L', 31133918=>'L', 31143919=>'L', 31153920=>'L', 31163921=>'L', 31173922=>'L', 31183923=>'L', 31193924=>'L', 31203925=>'L', 31213926=>'L', 31223927=>'L', 31233928=>'L', 31243929=>'L', 31253930=>'L', 31263931=>'L', 31273932=>'L', 31283933=>'L', 31293934=>'L', 31303935=>'L', 31313936=>'L', 31323937=>'L', 31333938=>'L', 31343939=>'L', 31353940=>'L', 31363941=>'L', 31373942=>'L', 31383943=>'L', 31393944=>'L', 31403945=>'L', 31413946=>'L', 31423953=>'NSM', 31433954=>'NSM', 31443955=>'NSM', 31453956=>'NSM', 31463957=>'NSM', 31473958=>'NSM', 31483959=>'NSM', 31493960=>'NSM', 31503961=>'NSM', 31513962=>'NSM', 31523963=>'NSM', 31533964=>'NSM', 31543965=>'NSM', 31553966=>'NSM', 31563967=>'L', 31573968=>'NSM', 31583969=>'NSM', 31593970=>'NSM', 31603971=>'NSM', 31613972=>'NSM', 31623973=>'L', 31633974=>'NSM', 31643975=>'NSM', 31653976=>'L', 31663977=>'L', 31673978=>'L', 31683979=>'L', 31693984=>'NSM', 31703985=>'NSM', 31713986=>'NSM', 31723987=>'NSM', 31733988=>'NSM', 31743989=>'NSM', 31753990=>'NSM', 31763991=>'NSM', 31773993=>'NSM', 31783994=>'NSM', 31793995=>'NSM', 31803996=>'NSM', 31813997=>'NSM', 31823998=>'NSM', 31833999=>'NSM', 31844000=>'NSM', 31854001=>'NSM', 31864002=>'NSM', 31874003=>'NSM', 31884004=>'NSM', 31894005=>'NSM', 31904006=>'NSM', 31914007=>'NSM', 31924008=>'NSM', 31934009=>'NSM', 31944010=>'NSM', 31954011=>'NSM', 31964012=>'NSM', 31974013=>'NSM', 31984014=>'NSM', 31994015=>'NSM', 32004016=>'NSM', 32014017=>'NSM', 32024018=>'NSM', 32034019=>'NSM', 32044020=>'NSM', 32054021=>'NSM', 32064022=>'NSM', 32074023=>'NSM', 32084024=>'NSM', 32094025=>'NSM', 32104026=>'NSM', 32114027=>'NSM', 32124028=>'NSM', 32134030=>'L', 32144031=>'L', 32154032=>'L', 32164033=>'L', 32174034=>'L', 32184035=>'L', 32194036=>'L', 32204037=>'L', 32214038=>'NSM', 32224039=>'L', 32234040=>'L', 32244041=>'L', 32254042=>'L', 32264043=>'L', 32274044=>'L', 32284047=>'L', 32294048=>'L', 32304049=>'L', 32314096=>'L', 32324097=>'L', 32334098=>'L', 32344099=>'L', 32354100=>'L', 32364101=>'L', 32374102=>'L', 32384103=>'L', 32394104=>'L', 32404105=>'L', 32414106=>'L', 32424107=>'L', 32434108=>'L', 32444109=>'L', 32454110=>'L', 32464111=>'L', 32474112=>'L', 32484113=>'L', 32494114=>'L', 32504115=>'L', 32514116=>'L', 32524117=>'L', 32534118=>'L', 32544119=>'L', 32554120=>'L', 32564121=>'L', 32574122=>'L', 32584123=>'L', 32594124=>'L', 32604125=>'L', 32614126=>'L', 32624127=>'L', 32634128=>'L', 32644129=>'L', 32654131=>'L', 32664132=>'L', 32674133=>'L', 32684134=>'L', 32694135=>'L', 32704137=>'L', 32714138=>'L', 32724140=>'L', 32734141=>'NSM', 32744142=>'NSM', 32754143=>'NSM', 32764144=>'NSM', 32774145=>'L', 32784146=>'NSM', 32794150=>'NSM', 32804151=>'NSM', 32814152=>'L', 32824153=>'NSM', 32834160=>'L', 32844161=>'L', 32854162=>'L', 32864163=>'L', 32874164=>'L', 32884165=>'L', 32894166=>'L', 32904167=>'L', 32914168=>'L', 32924169=>'L', 32934170=>'L', 32944171=>'L', 32954172=>'L', 32964173=>'L', 32974174=>'L', 32984175=>'L', 32994176=>'L', 33004177=>'L', 33014178=>'L', 33024179=>'L', 33034180=>'L', 33044181=>'L', 33054182=>'L', 33064183=>'L', 33074184=>'NSM', 33084185=>'NSM', 33094256=>'L', 33104257=>'L', 33114258=>'L', 33124259=>'L', 33134260=>'L', 33144261=>'L', 33154262=>'L', 33164263=>'L', 33174264=>'L', 33184265=>'L', 33194266=>'L', 33204267=>'L', 33214268=>'L', 33224269=>'L', 33234270=>'L', 33244271=>'L', 33254272=>'L', 33264273=>'L', 33274274=>'L', 33284275=>'L', 33294276=>'L', 33304277=>'L', 33314278=>'L', 33324279=>'L', 33334280=>'L', 33344281=>'L', 33354282=>'L', 33364283=>'L', 33374284=>'L', 33384285=>'L', 33394286=>'L', 33404287=>'L', 33414288=>'L', 33424289=>'L', 33434290=>'L', 33444291=>'L', 33454292=>'L', 33464293=>'L', 33474304=>'L', 33484305=>'L', 33494306=>'L', 33504307=>'L', 33514308=>'L', 33524309=>'L', 33534310=>'L', 33544311=>'L', 33554312=>'L', 33564313=>'L', 33574314=>'L', 33584315=>'L', 33594316=>'L', 33604317=>'L', 33614318=>'L', 33624319=>'L', 33634320=>'L', 33644321=>'L', 33654322=>'L', 33664323=>'L', 33674324=>'L', 33684325=>'L', 33694326=>'L', 33704327=>'L', 33714328=>'L', 33724329=>'L', 33734330=>'L', 33744331=>'L', 33754332=>'L', 33764333=>'L', 33774334=>'L', 33784335=>'L', 33794336=>'L', 33804337=>'L', 33814338=>'L', 33824339=>'L', 33834340=>'L', 33844341=>'L', 33854342=>'L', 33864343=>'L', 33874344=>'L', 33884345=>'L', 33894346=>'L', 33904347=>'L', 33914348=>'L', 33924352=>'L', 33934353=>'L', 33944354=>'L', 33954355=>'L', 33964356=>'L', 33974357=>'L', 33984358=>'L', 33994359=>'L', 34004360=>'L', 34014361=>'L', 34024362=>'L', 34034363=>'L', 34044364=>'L', 34054365=>'L', 34064366=>'L', 34074367=>'L', 34084368=>'L', 34094369=>'L', 34104370=>'L', 34114371=>'L', 34124372=>'L', 34134373=>'L', 34144374=>'L', 34154375=>'L', 34164376=>'L', 34174377=>'L', 34184378=>'L', 34194379=>'L', 34204380=>'L', 34214381=>'L', 34224382=>'L', 34234383=>'L', 34244384=>'L', 34254385=>'L', 34264386=>'L', 34274387=>'L', 34284388=>'L', 34294389=>'L', 34304390=>'L', 34314391=>'L', 34324392=>'L', 34334393=>'L', 34344394=>'L', 34354395=>'L', 34364396=>'L', 34374397=>'L', 34384398=>'L', 34394399=>'L', 34404400=>'L', 34414401=>'L', 34424402=>'L', 34434403=>'L', 34444404=>'L', 34454405=>'L', 34464406=>'L', 34474407=>'L', 34484408=>'L', 34494409=>'L', 34504410=>'L', 34514411=>'L', 34524412=>'L', 34534413=>'L', 34544414=>'L', 34554415=>'L', 34564416=>'L', 34574417=>'L', 34584418=>'L', 34594419=>'L', 34604420=>'L', 34614421=>'L', 34624422=>'L', 34634423=>'L', 34644424=>'L', 34654425=>'L', 34664426=>'L', 34674427=>'L', 34684428=>'L', 34694429=>'L', 34704430=>'L', 34714431=>'L', 34724432=>'L', 34734433=>'L', 34744434=>'L', 34754435=>'L', 34764436=>'L', 34774437=>'L', 34784438=>'L', 34794439=>'L', 34804440=>'L', 34814441=>'L', 34824447=>'L', 34834448=>'L', 34844449=>'L', 34854450=>'L', 34864451=>'L', 34874452=>'L', 34884453=>'L', 34894454=>'L', 34904455=>'L', 34914456=>'L', 34924457=>'L', 34934458=>'L', 34944459=>'L', 34954460=>'L', 34964461=>'L', 34974462=>'L', 34984463=>'L', 34994464=>'L', 35004465=>'L', 35014466=>'L', 35024467=>'L', 35034468=>'L', 35044469=>'L', 35054470=>'L', 35064471=>'L', 35074472=>'L', 35084473=>'L', 35094474=>'L', 35104475=>'L', 35114476=>'L', 35124477=>'L', 35134478=>'L', 35144479=>'L', 35154480=>'L', 35164481=>'L', 35174482=>'L', 35184483=>'L', 35194484=>'L', 35204485=>'L', 35214486=>'L', 35224487=>'L', 35234488=>'L', 35244489=>'L', 35254490=>'L', 35264491=>'L', 35274492=>'L', 35284493=>'L', 35294494=>'L', 35304495=>'L', 35314496=>'L', 35324497=>'L', 35334498=>'L', 35344499=>'L', 35354500=>'L', 35364501=>'L', 35374502=>'L', 35384503=>'L', 35394504=>'L', 35404505=>'L', 35414506=>'L', 35424507=>'L', 35434508=>'L', 35444509=>'L', 35454510=>'L', 35464511=>'L', 35474512=>'L', 35484513=>'L', 35494514=>'L', 35504520=>'L', 35514521=>'L', 35524522=>'L', 35534523=>'L', 35544524=>'L', 35554525=>'L', 35564526=>'L', 35574527=>'L', 35584528=>'L', 35594529=>'L', 35604530=>'L', 35614531=>'L', 35624532=>'L', 35634533=>'L', 35644534=>'L', 35654535=>'L', 35664536=>'L', 35674537=>'L', 35684538=>'L', 35694539=>'L', 35704540=>'L', 35714541=>'L', 35724542=>'L', 35734543=>'L', 35744544=>'L', 35754545=>'L', 35764546=>'L', 35774547=>'L', 35784548=>'L', 35794549=>'L', 35804550=>'L', 35814551=>'L', 35824552=>'L', 35834553=>'L', 35844554=>'L', 35854555=>'L', 35864556=>'L', 35874557=>'L', 35884558=>'L', 35894559=>'L', 35904560=>'L', 35914561=>'L', 35924562=>'L', 35934563=>'L', 35944564=>'L', 35954565=>'L', 35964566=>'L', 35974567=>'L', 35984568=>'L', 35994569=>'L', 36004570=>'L', 36014571=>'L', 36024572=>'L', 36034573=>'L', 36044574=>'L', 36054575=>'L', 36064576=>'L', 36074577=>'L', 36084578=>'L', 36094579=>'L', 36104580=>'L', 36114581=>'L', 36124582=>'L', 36134583=>'L', 36144584=>'L', 36154585=>'L', 36164586=>'L', 36174587=>'L', 36184588=>'L', 36194589=>'L', 36204590=>'L', 36214591=>'L', 36224592=>'L', 36234593=>'L', 36244594=>'L', 36254595=>'L', 36264596=>'L', 36274597=>'L', 36284598=>'L', 36294599=>'L', 36304600=>'L', 36314601=>'L', 36324608=>'L', 36334609=>'L', 36344610=>'L', 36354611=>'L', 36364612=>'L', 36374613=>'L', 36384614=>'L', 36394615=>'L', 36404616=>'L', 36414617=>'L', 36424618=>'L', 36434619=>'L', 36444620=>'L', 36454621=>'L', 36464622=>'L', 36474623=>'L', 36484624=>'L', 36494625=>'L', 36504626=>'L', 36514627=>'L', 36524628=>'L', 36534629=>'L', 36544630=>'L', 36554631=>'L', 36564632=>'L', 36574633=>'L', 36584634=>'L', 36594635=>'L', 36604636=>'L', 36614637=>'L', 36624638=>'L', 36634639=>'L', 36644640=>'L', 36654641=>'L', 36664642=>'L', 36674643=>'L', 36684644=>'L', 36694645=>'L', 36704646=>'L', 36714647=>'L', 36724648=>'L', 36734649=>'L', 36744650=>'L', 36754651=>'L', 36764652=>'L', 36774653=>'L', 36784654=>'L', 36794655=>'L', 36804656=>'L', 36814657=>'L', 36824658=>'L', 36834659=>'L', 36844660=>'L', 36854661=>'L', 36864662=>'L', 36874663=>'L', 36884664=>'L', 36894665=>'L', 36904666=>'L', 36914667=>'L', 36924668=>'L', 36934669=>'L', 36944670=>'L', 36954671=>'L', 36964672=>'L', 36974673=>'L', 36984674=>'L', 36994675=>'L', 37004676=>'L', 37014677=>'L', 37024678=>'L', 37034679=>'L', 37044680=>'L', 37054682=>'L', 37064683=>'L', 37074684=>'L', 37084685=>'L', 37094688=>'L', 37104689=>'L', 37114690=>'L', 37124691=>'L', 37134692=>'L', 37144693=>'L', 37154694=>'L', 37164696=>'L', 37174698=>'L', 37184699=>'L', 37194700=>'L', 37204701=>'L', 37214704=>'L', 37224705=>'L', 37234706=>'L', 37244707=>'L', 37254708=>'L', 37264709=>'L', 37274710=>'L', 37284711=>'L', 37294712=>'L', 37304713=>'L', 37314714=>'L', 37324715=>'L', 37334716=>'L', 37344717=>'L', 37354718=>'L', 37364719=>'L', 37374720=>'L', 37384721=>'L', 37394722=>'L', 37404723=>'L', 37414724=>'L', 37424725=>'L', 37434726=>'L', 37444727=>'L', 37454728=>'L', 37464729=>'L', 37474730=>'L', 37484731=>'L', 37494732=>'L', 37504733=>'L', 37514734=>'L', 37524735=>'L', 37534736=>'L', 37544737=>'L', 37554738=>'L', 37564739=>'L', 37574740=>'L', 37584741=>'L', 37594742=>'L', 37604743=>'L', 37614744=>'L', 37624746=>'L', 37634747=>'L', 37644748=>'L', 37654749=>'L', 37664752=>'L', 37674753=>'L', 37684754=>'L', 37694755=>'L', 37704756=>'L', 37714757=>'L', 37724758=>'L', 37734759=>'L', 37744760=>'L', 37754761=>'L', 37764762=>'L', 37774763=>'L', 37784764=>'L', 37794765=>'L', 37804766=>'L', 37814767=>'L', 37824768=>'L', 37834769=>'L', 37844770=>'L', 37854771=>'L', 37864772=>'L', 37874773=>'L', 37884774=>'L', 37894775=>'L', 37904776=>'L', 37914777=>'L', 37924778=>'L', 37934779=>'L', 37944780=>'L', 37954781=>'L', 37964782=>'L', 37974783=>'L', 37984784=>'L', 37994786=>'L', 38004787=>'L', 38014788=>'L', 38024789=>'L', 38034792=>'L', 38044793=>'L', 38054794=>'L', 38064795=>'L', 38074796=>'L', 38084797=>'L', 38094798=>'L', 38104800=>'L', 38114802=>'L', 38124803=>'L', 38134804=>'L', 38144805=>'L', 38154808=>'L', 38164809=>'L', 38174810=>'L', 38184811=>'L', 38194812=>'L', 38204813=>'L', 38214814=>'L', 38224815=>'L', 38234816=>'L', 38244817=>'L', 38254818=>'L', 38264819=>'L', 38274820=>'L', 38284821=>'L', 38294822=>'L', 38304824=>'L', 38314825=>'L', 38324826=>'L', 38334827=>'L', 38344828=>'L', 38354829=>'L', 38364830=>'L', 38374831=>'L', 38384832=>'L', 38394833=>'L', 38404834=>'L', 38414835=>'L', 38424836=>'L', 38434837=>'L', 38444838=>'L', 38454839=>'L', 38464840=>'L', 38474841=>'L', 38484842=>'L', 38494843=>'L', 38504844=>'L', 38514845=>'L', 38524846=>'L', 38534847=>'L', 38544848=>'L', 38554849=>'L', 38564850=>'L', 38574851=>'L', 38584852=>'L', 38594853=>'L', 38604854=>'L', 38614855=>'L', 38624856=>'L', 38634857=>'L', 38644858=>'L', 38654859=>'L', 38664860=>'L', 38674861=>'L', 38684862=>'L', 38694863=>'L', 38704864=>'L', 38714865=>'L', 38724866=>'L', 38734867=>'L', 38744868=>'L', 38754869=>'L', 38764870=>'L', 38774871=>'L', 38784872=>'L', 38794873=>'L', 38804874=>'L', 38814875=>'L', 38824876=>'L', 38834877=>'L', 38844878=>'L', 38854879=>'L', 38864880=>'L', 38874882=>'L', 38884883=>'L', 38894884=>'L', 38904885=>'L', 38914888=>'L', 38924889=>'L', 38934890=>'L', 38944891=>'L', 38954892=>'L', 38964893=>'L', 38974894=>'L', 38984895=>'L', 38994896=>'L', 39004897=>'L', 39014898=>'L', 39024899=>'L', 39034900=>'L', 39044901=>'L', 39054902=>'L', 39064903=>'L', 39074904=>'L', 39084905=>'L', 39094906=>'L', 39104907=>'L', 39114908=>'L', 39124909=>'L', 39134910=>'L', 39144911=>'L', 39154912=>'L', 39164913=>'L', 39174914=>'L', 39184915=>'L', 39194916=>'L', 39204917=>'L', 39214918=>'L', 39224919=>'L', 39234920=>'L', 39244921=>'L', 39254922=>'L', 39264923=>'L', 39274924=>'L', 39284925=>'L', 39294926=>'L', 39304927=>'L', 39314928=>'L', 39324929=>'L', 39334930=>'L', 39344931=>'L', 39354932=>'L', 39364933=>'L', 39374934=>'L', 39384935=>'L', 39394936=>'L', 39404937=>'L', 39414938=>'L', 39424939=>'L', 39434940=>'L', 39444941=>'L', 39454942=>'L', 39464943=>'L', 39474944=>'L', 39484945=>'L', 39494946=>'L', 39504947=>'L', 39514948=>'L', 39524949=>'L', 39534950=>'L', 39544951=>'L', 39554952=>'L', 39564953=>'L', 39574954=>'L', 39584959=>'NSM', 39594960=>'L', 39604961=>'L', 39614962=>'L', 39624963=>'L', 39634964=>'L', 39644965=>'L', 39654966=>'L', 39664967=>'L', 39674968=>'L', 39684969=>'L', 39694970=>'L', 39704971=>'L', 39714972=>'L', 39724973=>'L', 39734974=>'L', 39744975=>'L', 39754976=>'L', 39764977=>'L', 39774978=>'L', 39784979=>'L', 39794980=>'L', 39804981=>'L', 39814982=>'L', 39824983=>'L', 39834984=>'L', 39844985=>'L', 39854986=>'L', 39864987=>'L', 39874988=>'L', 39884992=>'L', 39894993=>'L', 39904994=>'L', 39914995=>'L', 39924996=>'L', 39934997=>'L', 39944998=>'L', 39954999=>'L', 39965000=>'L', 39975001=>'L', 39985002=>'L', 39995003=>'L', 40005004=>'L', 40015005=>'L', 40025006=>'L', 40035007=>'L', 40045008=>'ON', 40055009=>'ON', 40065010=>'ON', 40075011=>'ON', 40085012=>'ON', 40095013=>'ON', 40105014=>'ON', 40115015=>'ON', 40125016=>'ON', 40135017=>'ON', 40145024=>'L', 40155025=>'L', 40165026=>'L', 40175027=>'L', 40185028=>'L', 40195029=>'L', 40205030=>'L', 40215031=>'L', 40225032=>'L', 40235033=>'L', 40245034=>'L', 40255035=>'L', 40265036=>'L', 40275037=>'L', 40285038=>'L', 40295039=>'L', 40305040=>'L', 40315041=>'L', 40325042=>'L', 40335043=>'L', 40345044=>'L', 40355045=>'L', 40365046=>'L', 40375047=>'L', 40385048=>'L', 40395049=>'L', 40405050=>'L', 40415051=>'L', 40425052=>'L', 40435053=>'L', 40445054=>'L', 40455055=>'L', 40465056=>'L', 40475057=>'L', 40485058=>'L', 40495059=>'L', 40505060=>'L', 40515061=>'L', 40525062=>'L', 40535063=>'L', 40545064=>'L', 40555065=>'L', 40565066=>'L', 40575067=>'L', 40585068=>'L', 40595069=>'L', 40605070=>'L', 40615071=>'L', 40625072=>'L', 40635073=>'L', 40645074=>'L', 40655075=>'L', 40665076=>'L', 40675077=>'L', 40685078=>'L', 40695079=>'L', 40705080=>'L', 40715081=>'L', 40725082=>'L', 40735083=>'L', 40745084=>'L', 40755085=>'L', 40765086=>'L', 40775087=>'L', 40785088=>'L', 40795089=>'L', 40805090=>'L', 40815091=>'L', 40825092=>'L', 40835093=>'L', 40845094=>'L', 40855095=>'L', 40865096=>'L', 40875097=>'L', 40885098=>'L', 40895099=>'L', 40905100=>'L', 40915101=>'L', 40925102=>'L', 40935103=>'L', 40945104=>'L', 40955105=>'L', 40965106=>'L', 40975107=>'L', 40985108=>'L', 40995121=>'L', 41005122=>'L', 41015123=>'L', 41025124=>'L', 41035125=>'L', 41045126=>'L', 41055127=>'L', 41065128=>'L', 41075129=>'L', 41085130=>'L', 41095131=>'L', 41105132=>'L', 41115133=>'L', 41125134=>'L', 41135135=>'L', 41145136=>'L', 41155137=>'L', 41165138=>'L', 41175139=>'L', 41185140=>'L', 41195141=>'L', 41205142=>'L', 41215143=>'L', 41225144=>'L', 41235145=>'L', 41245146=>'L', 41255147=>'L', 41265148=>'L', 41275149=>'L', 41285150=>'L', 41295151=>'L', 41305152=>'L', 41315153=>'L', 41325154=>'L', 41335155=>'L', 41345156=>'L', 41355157=>'L', 41365158=>'L', 41375159=>'L', 41385160=>'L', 41395161=>'L', 41405162=>'L', 41415163=>'L', 41425164=>'L', 41435165=>'L', 41445166=>'L', 41455167=>'L', 41465168=>'L', 41475169=>'L', 41485170=>'L', 41495171=>'L', 41505172=>'L', 41515173=>'L', 41525174=>'L', 41535175=>'L', 41545176=>'L', 41555177=>'L', 41565178=>'L', 41575179=>'L', 41585180=>'L', 41595181=>'L', 41605182=>'L', 41615183=>'L', 41625184=>'L', 41635185=>'L', 41645186=>'L', 41655187=>'L', 41665188=>'L', 41675189=>'L', 41685190=>'L', 41695191=>'L', 41705192=>'L', 41715193=>'L', 41725194=>'L', 41735195=>'L', 41745196=>'L', 41755197=>'L', 41765198=>'L', 41775199=>'L', 41785200=>'L', 41795201=>'L', 41805202=>'L', 41815203=>'L', 41825204=>'L', 41835205=>'L', 41845206=>'L', 41855207=>'L', 41865208=>'L', 41875209=>'L', 41885210=>'L', 41895211=>'L', 41905212=>'L', 41915213=>'L', 41925214=>'L', 41935215=>'L', 41945216=>'L', 41955217=>'L', 41965218=>'L', 41975219=>'L', 41985220=>'L', 41995221=>'L', 42005222=>'L', 42015223=>'L', 42025224=>'L', 42035225=>'L', 42045226=>'L', 42055227=>'L', 42065228=>'L', 42075229=>'L', 42085230=>'L', 42095231=>'L', 42105232=>'L', 42115233=>'L', 42125234=>'L', 42135235=>'L', 42145236=>'L', 42155237=>'L', 42165238=>'L', 42175239=>'L', 42185240=>'L', 42195241=>'L', 42205242=>'L', 42215243=>'L', 42225244=>'L', 42235245=>'L', 42245246=>'L', 42255247=>'L', 42265248=>'L', 42275249=>'L', 42285250=>'L', 42295251=>'L', 42305252=>'L', 42315253=>'L', 42325254=>'L', 42335255=>'L', 42345256=>'L', 42355257=>'L', 42365258=>'L', 42375259=>'L', 42385260=>'L', 42395261=>'L', 42405262=>'L', 42415263=>'L', 42425264=>'L', 42435265=>'L', 42445266=>'L', 42455267=>'L', 42465268=>'L', 42475269=>'L', 42485270=>'L', 42495271=>'L', 42505272=>'L', 42515273=>'L', 42525274=>'L', 42535275=>'L', 42545276=>'L', 42555277=>'L', 42565278=>'L', 42575279=>'L', 42585280=>'L', 42595281=>'L', 42605282=>'L', 42615283=>'L', 42625284=>'L', 42635285=>'L', 42645286=>'L', 42655287=>'L', 42665288=>'L', 42675289=>'L', 42685290=>'L', 42695291=>'L', 42705292=>'L', 42715293=>'L', 42725294=>'L', 42735295=>'L', 42745296=>'L', 42755297=>'L', 42765298=>'L', 42775299=>'L', 42785300=>'L', 42795301=>'L', 42805302=>'L', 42815303=>'L', 42825304=>'L', 42835305=>'L', 42845306=>'L', 42855307=>'L', 42865308=>'L', 42875309=>'L', 42885310=>'L', 42895311=>'L', 42905312=>'L', 42915313=>'L', 42925314=>'L', 42935315=>'L', 42945316=>'L', 42955317=>'L', 42965318=>'L', 42975319=>'L', 42985320=>'L', 42995321=>'L', 43005322=>'L', 43015323=>'L', 43025324=>'L', 43035325=>'L', 43045326=>'L', 43055327=>'L', 43065328=>'L', 43075329=>'L', 43085330=>'L', 43095331=>'L', 43105332=>'L', 43115333=>'L', 43125334=>'L', 43135335=>'L', 43145336=>'L', 43155337=>'L', 43165338=>'L', 43175339=>'L', 43185340=>'L', 43195341=>'L', 43205342=>'L', 43215343=>'L', 43225344=>'L', 43235345=>'L', 43245346=>'L', 43255347=>'L', 43265348=>'L', 43275349=>'L', 43285350=>'L', 43295351=>'L', 43305352=>'L', 43315353=>'L', 43325354=>'L', 43335355=>'L', 43345356=>'L', 43355357=>'L', 43365358=>'L', 43375359=>'L', 43385360=>'L', 43395361=>'L', 43405362=>'L', 43415363=>'L', 43425364=>'L', 43435365=>'L', 43445366=>'L', 43455367=>'L', 43465368=>'L', 43475369=>'L', 43485370=>'L', 43495371=>'L', 43505372=>'L', 43515373=>'L', 43525374=>'L', 43535375=>'L', 43545376=>'L', 43555377=>'L', 43565378=>'L', 43575379=>'L', 43585380=>'L', 43595381=>'L', 43605382=>'L', 43615383=>'L', 43625384=>'L', 43635385=>'L', 43645386=>'L', 43655387=>'L', 43665388=>'L', 43675389=>'L', 43685390=>'L', 43695391=>'L', 43705392=>'L', 43715393=>'L', 43725394=>'L', 43735395=>'L', 43745396=>'L', 43755397=>'L', 43765398=>'L', 43775399=>'L', 43785400=>'L', 43795401=>'L', 43805402=>'L', 43815403=>'L', 43825404=>'L', 43835405=>'L', 43845406=>'L', 43855407=>'L', 43865408=>'L', 43875409=>'L', 43885410=>'L', 43895411=>'L', 43905412=>'L', 43915413=>'L', 43925414=>'L', 43935415=>'L', 43945416=>'L', 43955417=>'L', 43965418=>'L', 43975419=>'L', 43985420=>'L', 43995421=>'L', 44005422=>'L', 44015423=>'L', 44025424=>'L', 44035425=>'L', 44045426=>'L', 44055427=>'L', 44065428=>'L', 44075429=>'L', 44085430=>'L', 44095431=>'L', 44105432=>'L', 44115433=>'L', 44125434=>'L', 44135435=>'L', 44145436=>'L', 44155437=>'L', 44165438=>'L', 44175439=>'L', 44185440=>'L', 44195441=>'L', 44205442=>'L', 44215443=>'L', 44225444=>'L', 44235445=>'L', 44245446=>'L', 44255447=>'L', 44265448=>'L', 44275449=>'L', 44285450=>'L', 44295451=>'L', 44305452=>'L', 44315453=>'L', 44325454=>'L', 44335455=>'L', 44345456=>'L', 44355457=>'L', 44365458=>'L', 44375459=>'L', 44385460=>'L', 44395461=>'L', 44405462=>'L', 44415463=>'L', 44425464=>'L', 44435465=>'L', 44445466=>'L', 44455467=>'L', 44465468=>'L', 44475469=>'L', 44485470=>'L', 44495471=>'L', 44505472=>'L', 44515473=>'L', 44525474=>'L', 44535475=>'L', 44545476=>'L', 44555477=>'L', 44565478=>'L', 44575479=>'L', 44585480=>'L', 44595481=>'L', 44605482=>'L', 44615483=>'L', 44625484=>'L', 44635485=>'L', 44645486=>'L', 44655487=>'L', 44665488=>'L', 44675489=>'L', 44685490=>'L', 44695491=>'L', 44705492=>'L', 44715493=>'L', 44725494=>'L', 44735495=>'L', 44745496=>'L', 44755497=>'L', 44765498=>'L', 44775499=>'L', 44785500=>'L', 44795501=>'L', 44805502=>'L', 44815503=>'L', 44825504=>'L', 44835505=>'L', 44845506=>'L', 44855507=>'L', 44865508=>'L', 44875509=>'L', 44885510=>'L', 44895511=>'L', 44905512=>'L', 44915513=>'L', 44925514=>'L', 44935515=>'L', 44945516=>'L', 44955517=>'L', 44965518=>'L', 44975519=>'L', 44985520=>'L', 44995521=>'L', 45005522=>'L', 45015523=>'L', 45025524=>'L', 45035525=>'L', 45045526=>'L', 45055527=>'L', 45065528=>'L', 45075529=>'L', 45085530=>'L', 45095531=>'L', 45105532=>'L', 45115533=>'L', 45125534=>'L', 45135535=>'L', 45145536=>'L', 45155537=>'L', 45165538=>'L', 45175539=>'L', 45185540=>'L', 45195541=>'L', 45205542=>'L', 45215543=>'L', 45225544=>'L', 45235545=>'L', 45245546=>'L', 45255547=>'L', 45265548=>'L', 45275549=>'L', 45285550=>'L', 45295551=>'L', 45305552=>'L', 45315553=>'L', 45325554=>'L', 45335555=>'L', 45345556=>'L', 45355557=>'L', 45365558=>'L', 45375559=>'L', 45385560=>'L', 45395561=>'L', 45405562=>'L', 45415563=>'L', 45425564=>'L', 45435565=>'L', 45445566=>'L', 45455567=>'L', 45465568=>'L', 45475569=>'L', 45485570=>'L', 45495571=>'L', 45505572=>'L', 45515573=>'L', 45525574=>'L', 45535575=>'L', 45545576=>'L', 45555577=>'L', 45565578=>'L', 45575579=>'L', 45585580=>'L', 45595581=>'L', 45605582=>'L', 45615583=>'L', 45625584=>'L', 45635585=>'L', 45645586=>'L', 45655587=>'L', 45665588=>'L', 45675589=>'L', 45685590=>'L', 45695591=>'L', 45705592=>'L', 45715593=>'L', 45725594=>'L', 45735595=>'L', 45745596=>'L', 45755597=>'L', 45765598=>'L', 45775599=>'L', 45785600=>'L', 45795601=>'L', 45805602=>'L', 45815603=>'L', 45825604=>'L', 45835605=>'L', 45845606=>'L', 45855607=>'L', 45865608=>'L', 45875609=>'L', 45885610=>'L', 45895611=>'L', 45905612=>'L', 45915613=>'L', 45925614=>'L', 45935615=>'L', 45945616=>'L', 45955617=>'L', 45965618=>'L', 45975619=>'L', 45985620=>'L', 45995621=>'L', 46005622=>'L', 46015623=>'L', 46025624=>'L', 46035625=>'L', 46045626=>'L', 46055627=>'L', 46065628=>'L', 46075629=>'L', 46085630=>'L', 46095631=>'L', 46105632=>'L', 46115633=>'L', 46125634=>'L', 46135635=>'L', 46145636=>'L', 46155637=>'L', 46165638=>'L', 46175639=>'L', 46185640=>'L', 46195641=>'L', 46205642=>'L', 46215643=>'L', 46225644=>'L', 46235645=>'L', 46245646=>'L', 46255647=>'L', 46265648=>'L', 46275649=>'L', 46285650=>'L', 46295651=>'L', 46305652=>'L', 46315653=>'L', 46325654=>'L', 46335655=>'L', 46345656=>'L', 46355657=>'L', 46365658=>'L', 46375659=>'L', 46385660=>'L', 46395661=>'L', 46405662=>'L', 46415663=>'L', 46425664=>'L', 46435665=>'L', 46445666=>'L', 46455667=>'L', 46465668=>'L', 46475669=>'L', 46485670=>'L', 46495671=>'L', 46505672=>'L', 46515673=>'L', 46525674=>'L', 46535675=>'L', 46545676=>'L', 46555677=>'L', 46565678=>'L', 46575679=>'L', 46585680=>'L', 46595681=>'L', 46605682=>'L', 46615683=>'L', 46625684=>'L', 46635685=>'L', 46645686=>'L', 46655687=>'L', 46665688=>'L', 46675689=>'L', 46685690=>'L', 46695691=>'L', 46705692=>'L', 46715693=>'L', 46725694=>'L', 46735695=>'L', 46745696=>'L', 46755697=>'L', 46765698=>'L', 46775699=>'L', 46785700=>'L', 46795701=>'L', 46805702=>'L', 46815703=>'L', 46825704=>'L', 46835705=>'L', 46845706=>'L', 46855707=>'L', 46865708=>'L', 46875709=>'L', 46885710=>'L', 46895711=>'L', 46905712=>'L', 46915713=>'L', 46925714=>'L', 46935715=>'L', 46945716=>'L', 46955717=>'L', 46965718=>'L', 46975719=>'L', 46985720=>'L', 46995721=>'L', 47005722=>'L', 47015723=>'L', 47025724=>'L', 47035725=>'L', 47045726=>'L', 47055727=>'L', 47065728=>'L', 47075729=>'L', 47085730=>'L', 47095731=>'L', 47105732=>'L', 47115733=>'L', 47125734=>'L', 47135735=>'L', 47145736=>'L', 47155737=>'L', 47165738=>'L', 47175739=>'L', 47185740=>'L', 47195741=>'L', 47205742=>'L', 47215743=>'L', 47225744=>'L', 47235745=>'L', 47245746=>'L', 47255747=>'L', 47265748=>'L', 47275749=>'L', 47285750=>'L', 47295760=>'WS', 47305761=>'L', 47315762=>'L', 47325763=>'L', 47335764=>'L', 47345765=>'L', 47355766=>'L', 47365767=>'L', 47375768=>'L', 47385769=>'L', 47395770=>'L', 47405771=>'L', 47415772=>'L', 47425773=>'L', 47435774=>'L', 47445775=>'L', 47455776=>'L', 47465777=>'L', 47475778=>'L', 47485779=>'L', 47495780=>'L', 47505781=>'L', 47515782=>'L', 47525783=>'L', 47535784=>'L', 47545785=>'L', 47555786=>'L', 47565787=>'ON', 47575788=>'ON', 47585792=>'L', 47595793=>'L', 47605794=>'L', 47615795=>'L', 47625796=>'L', 47635797=>'L', 47645798=>'L', 47655799=>'L', 47665800=>'L', 47675801=>'L', 47685802=>'L', 47695803=>'L', 47705804=>'L', 47715805=>'L', 47725806=>'L', 47735807=>'L', 47745808=>'L', 47755809=>'L', 47765810=>'L', 47775811=>'L', 47785812=>'L', 47795813=>'L', 47805814=>'L', 47815815=>'L', 47825816=>'L', 47835817=>'L', 47845818=>'L', 47855819=>'L', 47865820=>'L', 47875821=>'L', 47885822=>'L', 47895823=>'L', 47905824=>'L', 47915825=>'L', 47925826=>'L', 47935827=>'L', 47945828=>'L', 47955829=>'L', 47965830=>'L', 47975831=>'L', 47985832=>'L', 47995833=>'L', 48005834=>'L', 48015835=>'L', 48025836=>'L', 48035837=>'L', 48045838=>'L', 48055839=>'L', 48065840=>'L', 48075841=>'L', 48085842=>'L', 48095843=>'L', 48105844=>'L', 48115845=>'L', 48125846=>'L', 48135847=>'L', 48145848=>'L', 48155849=>'L', 48165850=>'L', 48175851=>'L', 48185852=>'L', 48195853=>'L', 48205854=>'L', 48215855=>'L', 48225856=>'L', 48235857=>'L', 48245858=>'L', 48255859=>'L', 48265860=>'L', 48275861=>'L', 48285862=>'L', 48295863=>'L', 48305864=>'L', 48315865=>'L', 48325866=>'L', 48335867=>'L', 48345868=>'L', 48355869=>'L', 48365870=>'L', 48375871=>'L', 48385872=>'L', 48395888=>'L', 48405889=>'L', 48415890=>'L', 48425891=>'L', 48435892=>'L', 48445893=>'L', 48455894=>'L', 48465895=>'L', 48475896=>'L', 48485897=>'L', 48495898=>'L', 48505899=>'L', 48515900=>'L', 48525902=>'L', 48535903=>'L', 48545904=>'L', 48555905=>'L', 48565906=>'NSM', 48575907=>'NSM', 48585908=>'NSM', 48595920=>'L', 48605921=>'L', 48615922=>'L', 48625923=>'L', 48635924=>'L', 48645925=>'L', 48655926=>'L', 48665927=>'L', 48675928=>'L', 48685929=>'L', 48695930=>'L', 48705931=>'L', 48715932=>'L', 48725933=>'L', 48735934=>'L', 48745935=>'L', 48755936=>'L', 48765937=>'L', 48775938=>'NSM', 48785939=>'NSM', 48795940=>'NSM', 48805941=>'L', 48815942=>'L', 48825952=>'L', 48835953=>'L', 48845954=>'L', 48855955=>'L', 48865956=>'L', 48875957=>'L', 48885958=>'L', 48895959=>'L', 48905960=>'L', 48915961=>'L', 48925962=>'L', 48935963=>'L', 48945964=>'L', 48955965=>'L', 48965966=>'L', 48975967=>'L', 48985968=>'L', 48995969=>'L', 49005970=>'NSM', 49015971=>'NSM', 49025984=>'L', 49035985=>'L', 49045986=>'L', 49055987=>'L', 49065988=>'L', 49075989=>'L', 49085990=>'L', 49095991=>'L', 49105992=>'L', 49115993=>'L', 49125994=>'L', 49135995=>'L', 49145996=>'L', 49155998=>'L', 49165999=>'L', 49176000=>'L', 49186002=>'NSM', 49196003=>'NSM', 49206016=>'L', 49216017=>'L', 49226018=>'L', 49236019=>'L', 49246020=>'L', 49256021=>'L', 49266022=>'L', 49276023=>'L', 49286024=>'L', 49296025=>'L', 49306026=>'L', 49316027=>'L', 49326028=>'L', 49336029=>'L', 49346030=>'L', 49356031=>'L', 49366032=>'L', 49376033=>'L', 49386034=>'L', 49396035=>'L', 49406036=>'L', 49416037=>'L', 49426038=>'L', 49436039=>'L', 49446040=>'L', 49456041=>'L', 49466042=>'L', 49476043=>'L', 49486044=>'L', 49496045=>'L', 49506046=>'L', 49516047=>'L', 49526048=>'L', 49536049=>'L', 49546050=>'L', 49556051=>'L', 49566052=>'L', 49576053=>'L', 49586054=>'L', 49596055=>'L', 49606056=>'L', 49616057=>'L', 49626058=>'L', 49636059=>'L', 49646060=>'L', 49656061=>'L', 49666062=>'L', 49676063=>'L', 49686064=>'L', 49696065=>'L', 49706066=>'L', 49716067=>'L', 49726068=>'L', 49736069=>'L', 49746070=>'L', 49756071=>'NSM', 49766072=>'NSM', 49776073=>'NSM', 49786074=>'NSM', 49796075=>'NSM', 49806076=>'NSM', 49816077=>'NSM', 49826078=>'L', 49836079=>'L', 49846080=>'L', 49856081=>'L', 49866082=>'L', 49876083=>'L', 49886084=>'L', 49896085=>'L', 49906086=>'NSM', 49916087=>'L', 49926088=>'L', 49936089=>'NSM', 49946090=>'NSM', 49956091=>'NSM', 49966092=>'NSM', 49976093=>'NSM', 49986094=>'NSM', 49996095=>'NSM', 50006096=>'NSM', 50016097=>'NSM', 50026098=>'NSM', 50036099=>'NSM', 50046100=>'L', 50056101=>'L', 50066102=>'L', 50076103=>'L', 50086104=>'L', 50096105=>'L', 50106106=>'L', 50116107=>'ET', 50126108=>'L', 50136109=>'NSM', 50146112=>'L', 50156113=>'L', 50166114=>'L', 50176115=>'L', 50186116=>'L', 50196117=>'L', 50206118=>'L', 50216119=>'L', 50226120=>'L', 50236121=>'L', 50246128=>'ON', 50256129=>'ON', 50266130=>'ON', 50276131=>'ON', 50286132=>'ON', 50296133=>'ON', 50306134=>'ON', 50316135=>'ON', 50326136=>'ON', 50336137=>'ON', 50346144=>'ON', 50356145=>'ON', 50366146=>'ON', 50376147=>'ON', 50386148=>'ON', 50396149=>'ON', 50406150=>'ON', 50416151=>'ON', 50426152=>'ON', 50436153=>'ON', 50446154=>'ON', 50456155=>'NSM', 50466156=>'NSM', 50476157=>'NSM', 50486158=>'WS', 50496160=>'L', 50506161=>'L', 50516162=>'L', 50526163=>'L', 50536164=>'L', 50546165=>'L', 50556166=>'L', 50566167=>'L', 50576168=>'L', 50586169=>'L', 50596176=>'L', 50606177=>'L', 50616178=>'L', 50626179=>'L', 50636180=>'L', 50646181=>'L', 50656182=>'L', 50666183=>'L', 50676184=>'L', 50686185=>'L', 50696186=>'L', 50706187=>'L', 50716188=>'L', 50726189=>'L', 50736190=>'L', 50746191=>'L', 50756192=>'L', 50766193=>'L', 50776194=>'L', 50786195=>'L', 50796196=>'L', 50806197=>'L', 50816198=>'L', 50826199=>'L', 50836200=>'L', 50846201=>'L', 50856202=>'L', 50866203=>'L', 50876204=>'L', 50886205=>'L', 50896206=>'L', 50906207=>'L', 50916208=>'L', 50926209=>'L', 50936210=>'L', 50946211=>'L', 50956212=>'L', 50966213=>'L', 50976214=>'L', 50986215=>'L', 50996216=>'L', 51006217=>'L', 51016218=>'L', 51026219=>'L', 51036220=>'L', 51046221=>'L', 51056222=>'L', 51066223=>'L', 51076224=>'L', 51086225=>'L', 51096226=>'L', 51106227=>'L', 51116228=>'L', 51126229=>'L', 51136230=>'L', 51146231=>'L', 51156232=>'L', 51166233=>'L', 51176234=>'L', 51186235=>'L', 51196236=>'L', 51206237=>'L', 51216238=>'L', 51226239=>'L', 51236240=>'L', 51246241=>'L', 51256242=>'L', 51266243=>'L', 51276244=>'L', 51286245=>'L', 51296246=>'L', 51306247=>'L', 51316248=>'L', 51326249=>'L', 51336250=>'L', 51346251=>'L', 51356252=>'L', 51366253=>'L', 51376254=>'L', 51386255=>'L', 51396256=>'L', 51406257=>'L', 51416258=>'L', 51426259=>'L', 51436260=>'L', 51446261=>'L', 51456262=>'L', 51466263=>'L', 51476272=>'L', 51486273=>'L', 51496274=>'L', 51506275=>'L', 51516276=>'L', 51526277=>'L', 51536278=>'L', 51546279=>'L', 51556280=>'L', 51566281=>'L', 51576282=>'L', 51586283=>'L', 51596284=>'L', 51606285=>'L', 51616286=>'L', 51626287=>'L', 51636288=>'L', 51646289=>'L', 51656290=>'L', 51666291=>'L', 51676292=>'L', 51686293=>'L', 51696294=>'L', 51706295=>'L', 51716296=>'L', 51726297=>'L', 51736298=>'L', 51746299=>'L', 51756300=>'L', 51766301=>'L', 51776302=>'L', 51786303=>'L', 51796304=>'L', 51806305=>'L', 51816306=>'L', 51826307=>'L', 51836308=>'L', 51846309=>'L', 51856310=>'L', 51866311=>'L', 51876312=>'L', 51886313=>'NSM', 51896400=>'L', 51906401=>'L', 51916402=>'L', 51926403=>'L', 51936404=>'L', 51946405=>'L', 51956406=>'L', 51966407=>'L', 51976408=>'L', 51986409=>'L', 51996410=>'L', 52006411=>'L', 52016412=>'L', 52026413=>'L', 52036414=>'L', 52046415=>'L', 52056416=>'L', 52066417=>'L', 52076418=>'L', 52086419=>'L', 52096420=>'L', 52106421=>'L', 52116422=>'L', 52126423=>'L', 52136424=>'L', 52146425=>'L', 52156426=>'L', 52166427=>'L', 52176428=>'L', 52186432=>'NSM', 52196433=>'NSM', 52206434=>'NSM', 52216435=>'L', 52226436=>'L', 52236437=>'L', 52246438=>'L', 52256439=>'NSM', 52266440=>'NSM', 52276441=>'NSM', 52286442=>'NSM', 52296443=>'NSM', 52306448=>'L', 52316449=>'L', 52326450=>'NSM', 52336451=>'L', 52346452=>'L', 52356453=>'L', 52366454=>'L', 52376455=>'L', 52386456=>'L', 52396457=>'NSM', 52406458=>'NSM', 52416459=>'NSM', 52426464=>'ON', 52436468=>'ON', 52446469=>'ON', 52456470=>'L', 52466471=>'L', 52476472=>'L', 52486473=>'L', 52496474=>'L', 52506475=>'L', 52516476=>'L', 52526477=>'L', 52536478=>'L', 52546479=>'L', 52556480=>'L', 52566481=>'L', 52576482=>'L', 52586483=>'L', 52596484=>'L', 52606485=>'L', 52616486=>'L', 52626487=>'L', 52636488=>'L', 52646489=>'L', 52656490=>'L', 52666491=>'L', 52676492=>'L', 52686493=>'L', 52696494=>'L', 52706495=>'L', 52716496=>'L', 52726497=>'L', 52736498=>'L', 52746499=>'L', 52756500=>'L', 52766501=>'L', 52776502=>'L', 52786503=>'L', 52796504=>'L', 52806505=>'L', 52816506=>'L', 52826507=>'L', 52836508=>'L', 52846509=>'L', 52856512=>'L', 52866513=>'L', 52876514=>'L', 52886515=>'L', 52896516=>'L', 52906528=>'L', 52916529=>'L', 52926530=>'L', 52936531=>'L', 52946532=>'L', 52956533=>'L', 52966534=>'L', 52976535=>'L', 52986536=>'L', 52996537=>'L', 53006538=>'L', 53016539=>'L', 53026540=>'L', 53036541=>'L', 53046542=>'L', 53056543=>'L', 53066544=>'L', 53076545=>'L', 53086546=>'L', 53096547=>'L', 53106548=>'L', 53116549=>'L', 53126550=>'L', 53136551=>'L', 53146552=>'L', 53156553=>'L', 53166554=>'L', 53176555=>'L', 53186556=>'L', 53196557=>'L', 53206558=>'L', 53216559=>'L', 53226560=>'L', 53236561=>'L', 53246562=>'L', 53256563=>'L', 53266564=>'L', 53276565=>'L', 53286566=>'L', 53296567=>'L', 53306568=>'L', 53316569=>'L', 53326576=>'L', 53336577=>'L', 53346578=>'L', 53356579=>'L', 53366580=>'L', 53376581=>'L', 53386582=>'L', 53396583=>'L', 53406584=>'L', 53416585=>'L', 53426586=>'L', 53436587=>'L', 53446588=>'L', 53456589=>'L', 53466590=>'L', 53476591=>'L', 53486592=>'L', 53496593=>'L', 53506594=>'L', 53516595=>'L', 53526596=>'L', 53536597=>'L', 53546598=>'L', 53556599=>'L', 53566600=>'L', 53576601=>'L', 53586608=>'L', 53596609=>'L', 53606610=>'L', 53616611=>'L', 53626612=>'L', 53636613=>'L', 53646614=>'L', 53656615=>'L', 53666616=>'L', 53676617=>'L', 53686622=>'ON', 53696623=>'ON', 53706624=>'ON', 53716625=>'ON', 53726626=>'ON', 53736627=>'ON', 53746628=>'ON', 53756629=>'ON', 53766630=>'ON', 53776631=>'ON', 53786632=>'ON', 53796633=>'ON', 53806634=>'ON', 53816635=>'ON', 53826636=>'ON', 53836637=>'ON', 53846638=>'ON', 53856639=>'ON', 53866640=>'ON', 53876641=>'ON', 53886642=>'ON', 53896643=>'ON', 53906644=>'ON', 53916645=>'ON', 53926646=>'ON', 53936647=>'ON', 53946648=>'ON', 53956649=>'ON', 53966650=>'ON', 53976651=>'ON', 53986652=>'ON', 53996653=>'ON', 54006654=>'ON', 54016655=>'ON', 54026656=>'L', 54036657=>'L', 54046658=>'L', 54056659=>'L', 54066660=>'L', 54076661=>'L', 54086662=>'L', 54096663=>'L', 54106664=>'L', 54116665=>'L', 54126666=>'L', 54136667=>'L', 54146668=>'L', 54156669=>'L', 54166670=>'L', 54176671=>'L', 54186672=>'L', 54196673=>'L', 54206674=>'L', 54216675=>'L', 54226676=>'L', 54236677=>'L', 54246678=>'L', 54256679=>'NSM', 54266680=>'NSM', 54276681=>'L', 54286682=>'L', 54296683=>'L', 54306686=>'L', 54316687=>'L', 54326912=>'NSM', 54336913=>'NSM', 54346914=>'NSM', 54356915=>'NSM', 54366916=>'L', 54376917=>'L', 54386918=>'L', 54396919=>'L', 54406920=>'L', 54416921=>'L', 54426922=>'L', 54436923=>'L', 54446924=>'L', 54456925=>'L', 54466926=>'L', 54476927=>'L', 54486928=>'L', 54496929=>'L', 54506930=>'L', 54516931=>'L', 54526932=>'L', 54536933=>'L', 54546934=>'L', 54556935=>'L', 54566936=>'L', 54576937=>'L', 54586938=>'L', 54596939=>'L', 54606940=>'L', 54616941=>'L', 54626942=>'L', 54636943=>'L', 54646944=>'L', 54656945=>'L', 54666946=>'L', 54676947=>'L', 54686948=>'L', 54696949=>'L', 54706950=>'L', 54716951=>'L', 54726952=>'L', 54736953=>'L', 54746954=>'L', 54756955=>'L', 54766956=>'L', 54776957=>'L', 54786958=>'L', 54796959=>'L', 54806960=>'L', 54816961=>'L', 54826962=>'L', 54836963=>'L', 54846964=>'NSM', 54856965=>'L', 54866966=>'NSM', 54876967=>'NSM', 54886968=>'NSM', 54896969=>'NSM', 54906970=>'NSM', 54916971=>'L', 54926972=>'NSM', 54936973=>'L', 54946974=>'L', 54956975=>'L', 54966976=>'L', 54976977=>'L', 54986978=>'NSM', 54996979=>'L', 55006980=>'L', 55016981=>'L', 55026982=>'L', 55036983=>'L', 55046984=>'L', 55056985=>'L', 55066986=>'L', 55076987=>'L', 55086992=>'L', 55096993=>'L', 55106994=>'L', 55116995=>'L', 55126996=>'L', 55136997=>'L', 55146998=>'L', 55156999=>'L', 55167000=>'L', 55177001=>'L', 55187002=>'L', 55197003=>'L', 55207004=>'L', 55217005=>'L', 55227006=>'L', 55237007=>'L', 55247008=>'L', 55257009=>'L', 55267010=>'L', 55277011=>'L', 55287012=>'L', 55297013=>'L', 55307014=>'L', 55317015=>'L', 55327016=>'L', 55337017=>'L', 55347018=>'L', 55357019=>'NSM', 55367020=>'NSM', 55377021=>'NSM', 55387022=>'NSM', 55397023=>'NSM', 55407024=>'NSM', 55417025=>'NSM', 55427026=>'NSM', 55437027=>'NSM', 55447028=>'L', 55457029=>'L', 55467030=>'L', 55477031=>'L', 55487032=>'L', 55497033=>'L', 55507034=>'L', 55517035=>'L', 55527036=>'L', 55537424=>'L', 55547425=>'L', 55557426=>'L', 55567427=>'L', 55577428=>'L', 55587429=>'L', 55597430=>'L', 55607431=>'L', 55617432=>'L', 55627433=>'L', 55637434=>'L', 55647435=>'L', 55657436=>'L', 55667437=>'L', 55677438=>'L', 55687439=>'L', 55697440=>'L', 55707441=>'L', 55717442=>'L', 55727443=>'L', 55737444=>'L', 55747445=>'L', 55757446=>'L', 55767447=>'L', 55777448=>'L', 55787449=>'L', 55797450=>'L', 55807451=>'L', 55817452=>'L', 55827453=>'L', 55837454=>'L', 55847455=>'L', 55857456=>'L', 55867457=>'L', 55877458=>'L', 55887459=>'L', 55897460=>'L', 55907461=>'L', 55917462=>'L', 55927463=>'L', 55937464=>'L', 55947465=>'L', 55957466=>'L', 55967467=>'L', 55977468=>'L', 55987469=>'L', 55997470=>'L', 56007471=>'L', 56017472=>'L', 56027473=>'L', 56037474=>'L', 56047475=>'L', 56057476=>'L', 56067477=>'L', 56077478=>'L', 56087479=>'L', 56097480=>'L', 56107481=>'L', 56117482=>'L', 56127483=>'L', 56137484=>'L', 56147485=>'L', 56157486=>'L', 56167487=>'L', 56177488=>'L', 56187489=>'L', 56197490=>'L', 56207491=>'L', 56217492=>'L', 56227493=>'L', 56237494=>'L', 56247495=>'L', 56257496=>'L', 56267497=>'L', 56277498=>'L', 56287499=>'L', 56297500=>'L', 56307501=>'L', 56317502=>'L', 56327503=>'L', 56337504=>'L', 56347505=>'L', 56357506=>'L', 56367507=>'L', 56377508=>'L', 56387509=>'L', 56397510=>'L', 56407511=>'L', 56417512=>'L', 56427513=>'L', 56437514=>'L', 56447515=>'L', 56457516=>'L', 56467517=>'L', 56477518=>'L', 56487519=>'L', 56497520=>'L', 56507521=>'L', 56517522=>'L', 56527523=>'L', 56537524=>'L', 56547525=>'L', 56557526=>'L', 56567527=>'L', 56577528=>'L', 56587529=>'L', 56597530=>'L', 56607531=>'L', 56617532=>'L', 56627533=>'L', 56637534=>'L', 56647535=>'L', 56657536=>'L', 56667537=>'L', 56677538=>'L', 56687539=>'L', 56697540=>'L', 56707541=>'L', 56717542=>'L', 56727543=>'L', 56737544=>'L', 56747545=>'L', 56757546=>'L', 56767547=>'L', 56777548=>'L', 56787549=>'L', 56797550=>'L', 56807551=>'L', 56817552=>'L', 56827553=>'L', 56837554=>'L', 56847555=>'L', 56857556=>'L', 56867557=>'L', 56877558=>'L', 56887559=>'L', 56897560=>'L', 56907561=>'L', 56917562=>'L', 56927563=>'L', 56937564=>'L', 56947565=>'L', 56957566=>'L', 56967567=>'L', 56977568=>'L', 56987569=>'L', 56997570=>'L', 57007571=>'L', 57017572=>'L', 57027573=>'L', 57037574=>'L', 57047575=>'L', 57057576=>'L', 57067577=>'L', 57077578=>'L', 57087579=>'L', 57097580=>'L', 57107581=>'L', 57117582=>'L', 57127583=>'L', 57137584=>'L', 57147585=>'L', 57157586=>'L', 57167587=>'L', 57177588=>'L', 57187589=>'L', 57197590=>'L', 57207591=>'L', 57217592=>'L', 57227593=>'L', 57237594=>'L', 57247595=>'L', 57257596=>'L', 57267597=>'L', 57277598=>'L', 57287599=>'L', 57297600=>'L', 57307601=>'L', 57317602=>'L', 57327603=>'L', 57337604=>'L', 57347605=>'L', 57357606=>'L', 57367607=>'L', 57377608=>'L', 57387609=>'L', 57397610=>'L', 57407611=>'L', 57417612=>'L', 57427613=>'L', 57437614=>'L', 57447615=>'L', 57457616=>'NSM', 57467617=>'NSM', 57477618=>'NSM', 57487619=>'NSM', 57497620=>'NSM', 57507621=>'NSM', 57517622=>'NSM', 57527623=>'NSM', 57537624=>'NSM', 57547625=>'NSM', 57557626=>'NSM', 57567678=>'NSM', 57577679=>'NSM', 57587680=>'L', 57597681=>'L', 57607682=>'L', 57617683=>'L', 57627684=>'L', 57637685=>'L', 57647686=>'L', 57657687=>'L', 57667688=>'L', 57677689=>'L', 57687690=>'L', 57697691=>'L', 57707692=>'L', 57717693=>'L', 57727694=>'L', 57737695=>'L', 57747696=>'L', 57757697=>'L', 57767698=>'L', 57777699=>'L', 57787700=>'L', 57797701=>'L', 57807702=>'L', 57817703=>'L', 57827704=>'L', 57837705=>'L', 57847706=>'L', 57857707=>'L', 57867708=>'L', 57877709=>'L', 57887710=>'L', 57897711=>'L', 57907712=>'L', 57917713=>'L', 57927714=>'L', 57937715=>'L', 57947716=>'L', 57957717=>'L', 57967718=>'L', 57977719=>'L', 57987720=>'L', 57997721=>'L', 58007722=>'L', 58017723=>'L', 58027724=>'L', 58037725=>'L', 58047726=>'L', 58057727=>'L', 58067728=>'L', 58077729=>'L', 58087730=>'L', 58097731=>'L', 58107732=>'L', 58117733=>'L', 58127734=>'L', 58137735=>'L', 58147736=>'L', 58157737=>'L', 58167738=>'L', 58177739=>'L', 58187740=>'L', 58197741=>'L', 58207742=>'L', 58217743=>'L', 58227744=>'L', 58237745=>'L', 58247746=>'L', 58257747=>'L', 58267748=>'L', 58277749=>'L', 58287750=>'L', 58297751=>'L', 58307752=>'L', 58317753=>'L', 58327754=>'L', 58337755=>'L', 58347756=>'L', 58357757=>'L', 58367758=>'L', 58377759=>'L', 58387760=>'L', 58397761=>'L', 58407762=>'L', 58417763=>'L', 58427764=>'L', 58437765=>'L', 58447766=>'L', 58457767=>'L', 58467768=>'L', 58477769=>'L', 58487770=>'L', 58497771=>'L', 58507772=>'L', 58517773=>'L', 58527774=>'L', 58537775=>'L', 58547776=>'L', 58557777=>'L', 58567778=>'L', 58577779=>'L', 58587780=>'L', 58597781=>'L', 58607782=>'L', 58617783=>'L', 58627784=>'L', 58637785=>'L', 58647786=>'L', 58657787=>'L', 58667788=>'L', 58677789=>'L', 58687790=>'L', 58697791=>'L', 58707792=>'L', 58717793=>'L', 58727794=>'L', 58737795=>'L', 58747796=>'L', 58757797=>'L', 58767798=>'L', 58777799=>'L', 58787800=>'L', 58797801=>'L', 58807802=>'L', 58817803=>'L', 58827804=>'L', 58837805=>'L', 58847806=>'L', 58857807=>'L', 58867808=>'L', 58877809=>'L', 58887810=>'L', 58897811=>'L', 58907812=>'L', 58917813=>'L', 58927814=>'L', 58937815=>'L', 58947816=>'L', 58957817=>'L', 58967818=>'L', 58977819=>'L', 58987820=>'L', 58997821=>'L', 59007822=>'L', 59017823=>'L', 59027824=>'L', 59037825=>'L', 59047826=>'L', 59057827=>'L', 59067828=>'L', 59077829=>'L', 59087830=>'L', 59097831=>'L', 59107832=>'L', 59117833=>'L', 59127834=>'L', 59137835=>'L', 59147840=>'L', 59157841=>'L', 59167842=>'L', 59177843=>'L', 59187844=>'L', 59197845=>'L', 59207846=>'L', 59217847=>'L', 59227848=>'L', 59237849=>'L', 59247850=>'L', 59257851=>'L', 59267852=>'L', 59277853=>'L', 59287854=>'L', 59297855=>'L', 59307856=>'L', 59317857=>'L', 59327858=>'L', 59337859=>'L', 59347860=>'L', 59357861=>'L', 59367862=>'L', 59377863=>'L', 59387864=>'L', 59397865=>'L', 59407866=>'L', 59417867=>'L', 59427868=>'L', 59437869=>'L', 59447870=>'L', 59457871=>'L', 59467872=>'L', 59477873=>'L', 59487874=>'L', 59497875=>'L', 59507876=>'L', 59517877=>'L', 59527878=>'L', 59537879=>'L', 59547880=>'L', 59557881=>'L', 59567882=>'L', 59577883=>'L', 59587884=>'L', 59597885=>'L', 59607886=>'L', 59617887=>'L', 59627888=>'L', 59637889=>'L', 59647890=>'L', 59657891=>'L', 59667892=>'L', 59677893=>'L', 59687894=>'L', 59697895=>'L', 59707896=>'L', 59717897=>'L', 59727898=>'L', 59737899=>'L', 59747900=>'L', 59757901=>'L', 59767902=>'L', 59777903=>'L', 59787904=>'L', 59797905=>'L', 59807906=>'L', 59817907=>'L', 59827908=>'L', 59837909=>'L', 59847910=>'L', 59857911=>'L', 59867912=>'L', 59877913=>'L', 59887914=>'L', 59897915=>'L', 59907916=>'L', 59917917=>'L', 59927918=>'L', 59937919=>'L', 59947920=>'L', 59957921=>'L', 59967922=>'L', 59977923=>'L', 59987924=>'L', 59997925=>'L', 60007926=>'L', 60017927=>'L', 60027928=>'L', 60037929=>'L', 60047936=>'L', 60057937=>'L', 60067938=>'L', 60077939=>'L', 60087940=>'L', 60097941=>'L', 60107942=>'L', 60117943=>'L', 60127944=>'L', 60137945=>'L', 60147946=>'L', 60157947=>'L', 60167948=>'L', 60177949=>'L', 60187950=>'L', 60197951=>'L', 60207952=>'L', 60217953=>'L', 60227954=>'L', 60237955=>'L', 60247956=>'L', 60257957=>'L', 60267960=>'L', 60277961=>'L', 60287962=>'L', 60297963=>'L', 60307964=>'L', 60317965=>'L', 60327968=>'L', 60337969=>'L', 60347970=>'L', 60357971=>'L', 60367972=>'L', 60377973=>'L', 60387974=>'L', 60397975=>'L', 60407976=>'L', 60417977=>'L', 60427978=>'L', 60437979=>'L', 60447980=>'L', 60457981=>'L', 60467982=>'L', 60477983=>'L', 60487984=>'L', 60497985=>'L', 60507986=>'L', 60517987=>'L', 60527988=>'L', 60537989=>'L', 60547990=>'L', 60557991=>'L', 60567992=>'L', 60577993=>'L', 60587994=>'L', 60597995=>'L', 60607996=>'L', 60617997=>'L', 60627998=>'L', 60637999=>'L', 60648000=>'L', 60658001=>'L', 60668002=>'L', 60678003=>'L', 60688004=>'L', 60698005=>'L', 60708008=>'L', 60718009=>'L', 60728010=>'L', 60738011=>'L', 60748012=>'L', 60758013=>'L', 60768016=>'L', 60778017=>'L', 60788018=>'L', 60798019=>'L', 60808020=>'L', 60818021=>'L', 60828022=>'L', 60838023=>'L', 60848025=>'L', 60858027=>'L', 60868029=>'L', 60878031=>'L', 60888032=>'L', 60898033=>'L', 60908034=>'L', 60918035=>'L', 60928036=>'L', 60938037=>'L', 60948038=>'L', 60958039=>'L', 60968040=>'L', 60978041=>'L', 60988042=>'L', 60998043=>'L', 61008044=>'L', 61018045=>'L', 61028046=>'L', 61038047=>'L', 61048048=>'L', 61058049=>'L', 61068050=>'L', 61078051=>'L', 61088052=>'L', 61098053=>'L', 61108054=>'L', 61118055=>'L', 61128056=>'L', 61138057=>'L', 61148058=>'L', 61158059=>'L', 61168060=>'L', 61178061=>'L', 61188064=>'L', 61198065=>'L', 61208066=>'L', 61218067=>'L', 61228068=>'L', 61238069=>'L', 61248070=>'L', 61258071=>'L', 61268072=>'L', 61278073=>'L', 61288074=>'L', 61298075=>'L', 61308076=>'L', 61318077=>'L', 61328078=>'L', 61338079=>'L', 61348080=>'L', 61358081=>'L', 61368082=>'L', 61378083=>'L', 61388084=>'L', 61398085=>'L', 61408086=>'L', 61418087=>'L', 61428088=>'L', 61438089=>'L', 61448090=>'L', 61458091=>'L', 61468092=>'L', 61478093=>'L', 61488094=>'L', 61498095=>'L', 61508096=>'L', 61518097=>'L', 61528098=>'L', 61538099=>'L', 61548100=>'L', 61558101=>'L', 61568102=>'L', 61578103=>'L', 61588104=>'L', 61598105=>'L', 61608106=>'L', 61618107=>'L', 61628108=>'L', 61638109=>'L', 61648110=>'L', 61658111=>'L', 61668112=>'L', 61678113=>'L', 61688114=>'L', 61698115=>'L', 61708116=>'L', 61718118=>'L', 61728119=>'L', 61738120=>'L', 61748121=>'L', 61758122=>'L', 61768123=>'L', 61778124=>'L', 61788125=>'ON', 61798126=>'L', 61808127=>'ON', 61818128=>'ON', 61828129=>'ON', 61838130=>'L', 61848131=>'L', 61858132=>'L', 61868134=>'L', 61878135=>'L', 61888136=>'L', 61898137=>'L', 61908138=>'L', 61918139=>'L', 61928140=>'L', 61938141=>'ON', 61948142=>'ON', 61958143=>'ON', 61968144=>'L', 61978145=>'L', 61988146=>'L', 61998147=>'L', 62008150=>'L', 62018151=>'L', 62028152=>'L', 62038153=>'L', 62048154=>'L', 62058155=>'L', 62068157=>'ON', 62078158=>'ON', 62088159=>'ON', 62098160=>'L', 62108161=>'L', 62118162=>'L', 62128163=>'L', 62138164=>'L', 62148165=>'L', 62158166=>'L', 62168167=>'L', 62178168=>'L', 62188169=>'L', 62198170=>'L', 62208171=>'L', 62218172=>'L', 62228173=>'ON', 62238174=>'ON', 62248175=>'ON', 62258178=>'L', 62268179=>'L', 62278180=>'L', 62288182=>'L', 62298183=>'L', 62308184=>'L', 62318185=>'L', 62328186=>'L', 62338187=>'L', 62348188=>'L', 62358189=>'ON', 62368190=>'ON', 62378192=>'WS', 62388193=>'WS', 62398194=>'WS', 62408195=>'WS', 62418196=>'WS', 62428197=>'WS', 62438198=>'WS', 62448199=>'WS', 62458200=>'WS', 62468201=>'WS', 62478202=>'WS', 62488203=>'BN', 62498204=>'BN', 62508205=>'BN', 62518206=>'L', 62528207=>'R', 62538208=>'ON', 62548209=>'ON', 62558210=>'ON', 62568211=>'ON', 62578212=>'ON', 62588213=>'ON', 62598214=>'ON', 62608215=>'ON', 62618216=>'ON', 62628217=>'ON', 62638218=>'ON', 62648219=>'ON', 62658220=>'ON', 62668221=>'ON', 62678222=>'ON', 62688223=>'ON', 62698224=>'ON', 62708225=>'ON', 62718226=>'ON', 62728227=>'ON', 62738228=>'ON', 62748229=>'ON', 62758230=>'ON', 62768231=>'ON', 62778232=>'WS', 62788233=>'B', 62798234=>'LRE', 62808235=>'RLE', 62818236=>'PDF', 62828237=>'LRO', 62838238=>'RLO', 62848239=>'CS', 62858240=>'ET', 62868241=>'ET', 62878242=>'ET', 62888243=>'ET', 62898244=>'ET', 62908245=>'ON', 62918246=>'ON', 62928247=>'ON', 62938248=>'ON', 62948249=>'ON', 62958250=>'ON', 62968251=>'ON', 62978252=>'ON', 62988253=>'ON', 62998254=>'ON', 63008255=>'ON', 63018256=>'ON', 63028257=>'ON', 63038258=>'ON', 63048259=>'ON', 63058260=>'CS', 63068261=>'ON', 63078262=>'ON', 63088263=>'ON', 63098264=>'ON', 63108265=>'ON', 63118266=>'ON', 63128267=>'ON', 63138268=>'ON', 63148269=>'ON', 63158270=>'ON', 63168271=>'ON', 63178272=>'ON', 63188273=>'ON', 63198274=>'ON', 63208275=>'ON', 63218276=>'ON', 63228277=>'ON', 63238278=>'ON', 63248279=>'ON', 63258280=>'ON', 63268281=>'ON', 63278282=>'ON', 63288283=>'ON', 63298284=>'ON', 63308285=>'ON', 63318286=>'ON', 63328287=>'WS', 63338288=>'BN', 63348289=>'BN', 63358290=>'BN', 63368291=>'BN', 63378298=>'BN', 63388299=>'BN', 63398300=>'BN', 63408301=>'BN', 63418302=>'BN', 63428303=>'BN', 63438304=>'EN', 63448305=>'L', 63458308=>'EN', 63468309=>'EN', 63478310=>'EN', 63488311=>'EN', 63498312=>'EN', 63508313=>'EN', 63518314=>'ES', 63528315=>'ES', 63538316=>'ON', 63548317=>'ON', 63558318=>'ON', 63568319=>'L', 63578320=>'EN', 63588321=>'EN', 63598322=>'EN', 63608323=>'EN', 63618324=>'EN', 63628325=>'EN', 63638326=>'EN', 63648327=>'EN', 63658328=>'EN', 63668329=>'EN', 63678330=>'ES', 63688331=>'ES', 63698332=>'ON', 63708333=>'ON', 63718334=>'ON', 63728336=>'L', 63738337=>'L', 63748338=>'L', 63758339=>'L', 63768340=>'L', 63778352=>'ET', 63788353=>'ET', 63798354=>'ET', 63808355=>'ET', 63818356=>'ET', 63828357=>'ET', 63838358=>'ET', 63848359=>'ET', 63858360=>'ET', 63868361=>'ET', 63878362=>'ET', 63888363=>'ET', 63898364=>'ET', 63908365=>'ET', 63918366=>'ET', 63928367=>'ET', 63938368=>'ET', 63948369=>'ET', 63958370=>'ET', 63968371=>'ET', 63978372=>'ET', 63988373=>'ET', 63998400=>'NSM', 64008401=>'NSM', 64018402=>'NSM', 64028403=>'NSM', 64038404=>'NSM', 64048405=>'NSM', 64058406=>'NSM', 64068407=>'NSM', 64078408=>'NSM', 64088409=>'NSM', 64098410=>'NSM', 64108411=>'NSM', 64118412=>'NSM', 64128413=>'NSM', 64138414=>'NSM', 64148415=>'NSM', 64158416=>'NSM', 64168417=>'NSM', 64178418=>'NSM', 64188419=>'NSM', 64198420=>'NSM', 64208421=>'NSM', 64218422=>'NSM', 64228423=>'NSM', 64238424=>'NSM', 64248425=>'NSM', 64258426=>'NSM', 64268427=>'NSM', 64278428=>'NSM', 64288429=>'NSM', 64298430=>'NSM', 64308431=>'NSM', 64318448=>'ON', 64328449=>'ON', 64338450=>'L', 64348451=>'ON', 64358452=>'ON', 64368453=>'ON', 64378454=>'ON', 64388455=>'L', 64398456=>'ON', 64408457=>'ON', 64418458=>'L', 64428459=>'L', 64438460=>'L', 64448461=>'L', 64458462=>'L', 64468463=>'L', 64478464=>'L', 64488465=>'L', 64498466=>'L', 64508467=>'L', 64518468=>'ON', 64528469=>'L', 64538470=>'ON', 64548471=>'ON', 64558472=>'ON', 64568473=>'L', 64578474=>'L', 64588475=>'L', 64598476=>'L', 64608477=>'L', 64618478=>'ON', 64628479=>'ON', 64638480=>'ON', 64648481=>'ON', 64658482=>'ON', 64668483=>'ON', 64678484=>'L', 64688485=>'ON', 64698486=>'L', 64708487=>'ON', 64718488=>'L', 64728489=>'ON', 64738490=>'L', 64748491=>'L', 64758492=>'L', 64768493=>'L', 64778494=>'ET', 64788495=>'L', 64798496=>'L', 64808497=>'L', 64818498=>'L', 64828499=>'L', 64838500=>'L', 64848501=>'L', 64858502=>'L', 64868503=>'L', 64878504=>'L', 64888505=>'L', 64898506=>'ON', 64908507=>'ON', 64918508=>'L', 64928509=>'L', 64938510=>'L', 64948511=>'L', 64958512=>'ON', 64968513=>'ON', 64978514=>'ON', 64988515=>'ON', 64998516=>'ON', 65008517=>'L', 65018518=>'L', 65028519=>'L', 65038520=>'L', 65048521=>'L', 65058522=>'ON', 65068523=>'ON', 65078524=>'ON', 65088525=>'ON', 65098526=>'L', 65108531=>'ON', 65118532=>'ON', 65128533=>'ON', 65138534=>'ON', 65148535=>'ON', 65158536=>'ON', 65168537=>'ON', 65178538=>'ON', 65188539=>'ON', 65198540=>'ON', 65208541=>'ON', 65218542=>'ON', 65228543=>'ON', 65238544=>'L', 65248545=>'L', 65258546=>'L', 65268547=>'L', 65278548=>'L', 65288549=>'L', 65298550=>'L', 65308551=>'L', 65318552=>'L', 65328553=>'L', 65338554=>'L', 65348555=>'L', 65358556=>'L', 65368557=>'L', 65378558=>'L', 65388559=>'L', 65398560=>'L', 65408561=>'L', 65418562=>'L', 65428563=>'L', 65438564=>'L', 65448565=>'L', 65458566=>'L', 65468567=>'L', 65478568=>'L', 65488569=>'L', 65498570=>'L', 65508571=>'L', 65518572=>'L', 65528573=>'L', 65538574=>'L', 65548575=>'L', 65558576=>'L', 65568577=>'L', 65578578=>'L', 65588579=>'L', 65598580=>'L', 65608592=>'ON', 65618593=>'ON', 65628594=>'ON', 65638595=>'ON', 65648596=>'ON', 65658597=>'ON', 65668598=>'ON', 65678599=>'ON', 65688600=>'ON', 65698601=>'ON', 65708602=>'ON', 65718603=>'ON', 65728604=>'ON', 65738605=>'ON', 65748606=>'ON', 65758607=>'ON', 65768608=>'ON', 65778609=>'ON', 65788610=>'ON', 65798611=>'ON', 65808612=>'ON', 65818613=>'ON', 65828614=>'ON', 65838615=>'ON', 65848616=>'ON', 65858617=>'ON', 65868618=>'ON', 65878619=>'ON', 65888620=>'ON', 65898621=>'ON', 65908622=>'ON', 65918623=>'ON', 65928624=>'ON', 65938625=>'ON', 65948626=>'ON', 65958627=>'ON', 65968628=>'ON', 65978629=>'ON', 65988630=>'ON', 65998631=>'ON', 66008632=>'ON', 66018633=>'ON', 66028634=>'ON', 66038635=>'ON', 66048636=>'ON', 66058637=>'ON', 66068638=>'ON', 66078639=>'ON', 66088640=>'ON', 66098641=>'ON', 66108642=>'ON', 66118643=>'ON', 66128644=>'ON', 66138645=>'ON', 66148646=>'ON', 66158647=>'ON', 66168648=>'ON', 66178649=>'ON', 66188650=>'ON', 66198651=>'ON', 66208652=>'ON', 66218653=>'ON', 66228654=>'ON', 66238655=>'ON', 66248656=>'ON', 66258657=>'ON', 66268658=>'ON', 66278659=>'ON', 66288660=>'ON', 66298661=>'ON', 66308662=>'ON', 66318663=>'ON', 66328664=>'ON', 66338665=>'ON', 66348666=>'ON', 66358667=>'ON', 66368668=>'ON', 66378669=>'ON', 66388670=>'ON', 66398671=>'ON', 66408672=>'ON', 66418673=>'ON', 66428674=>'ON', 66438675=>'ON', 66448676=>'ON', 66458677=>'ON', 66468678=>'ON', 66478679=>'ON', 66488680=>'ON', 66498681=>'ON', 66508682=>'ON', 66518683=>'ON', 66528684=>'ON', 66538685=>'ON', 66548686=>'ON', 66558687=>'ON', 66568688=>'ON', 66578689=>'ON', 66588690=>'ON', 66598691=>'ON', 66608692=>'ON', 66618693=>'ON', 66628694=>'ON', 66638695=>'ON', 66648696=>'ON', 66658697=>'ON', 66668698=>'ON', 66678699=>'ON', 66688700=>'ON', 66698701=>'ON', 66708702=>'ON', 66718703=>'ON', 66728704=>'ON', 66738705=>'ON', 66748706=>'ON', 66758707=>'ON', 66768708=>'ON', 66778709=>'ON', 66788710=>'ON', 66798711=>'ON', 66808712=>'ON', 66818713=>'ON', 66828714=>'ON', 66838715=>'ON', 66848716=>'ON', 66858717=>'ON', 66868718=>'ON', 66878719=>'ON', 66888720=>'ON', 66898721=>'ON', 66908722=>'ES', 66918723=>'ET', 66928724=>'ON', 66938725=>'ON', 66948726=>'ON', 66958727=>'ON', 66968728=>'ON', 66978729=>'ON', 66988730=>'ON', 66998731=>'ON', 67008732=>'ON', 67018733=>'ON', 67028734=>'ON', 67038735=>'ON', 67048736=>'ON', 67058737=>'ON', 67068738=>'ON', 67078739=>'ON', 67088740=>'ON', 67098741=>'ON', 67108742=>'ON', 67118743=>'ON', 67128744=>'ON', 67138745=>'ON', 67148746=>'ON', 67158747=>'ON', 67168748=>'ON', 67178749=>'ON', 67188750=>'ON', 67198751=>'ON', 67208752=>'ON', 67218753=>'ON', 67228754=>'ON', 67238755=>'ON', 67248756=>'ON', 67258757=>'ON', 67268758=>'ON', 67278759=>'ON', 67288760=>'ON', 67298761=>'ON', 67308762=>'ON', 67318763=>'ON', 67328764=>'ON', 67338765=>'ON', 67348766=>'ON', 67358767=>'ON', 67368768=>'ON', 67378769=>'ON', 67388770=>'ON', 67398771=>'ON', 67408772=>'ON', 67418773=>'ON', 67428774=>'ON', 67438775=>'ON', 67448776=>'ON', 67458777=>'ON', 67468778=>'ON', 67478779=>'ON', 67488780=>'ON', 67498781=>'ON', 67508782=>'ON', 67518783=>'ON', 67528784=>'ON', 67538785=>'ON', 67548786=>'ON', 67558787=>'ON', 67568788=>'ON', 67578789=>'ON', 67588790=>'ON', 67598791=>'ON', 67608792=>'ON', 67618793=>'ON', 67628794=>'ON', 67638795=>'ON', 67648796=>'ON', 67658797=>'ON', 67668798=>'ON', 67678799=>'ON', 67688800=>'ON', 67698801=>'ON', 67708802=>'ON', 67718803=>'ON', 67728804=>'ON', 67738805=>'ON', 67748806=>'ON', 67758807=>'ON', 67768808=>'ON', 67778809=>'ON', 67788810=>'ON', 67798811=>'ON', 67808812=>'ON', 67818813=>'ON', 67828814=>'ON', 67838815=>'ON', 67848816=>'ON', 67858817=>'ON', 67868818=>'ON', 67878819=>'ON', 67888820=>'ON', 67898821=>'ON', 67908822=>'ON', 67918823=>'ON', 67928824=>'ON', 67938825=>'ON', 67948826=>'ON', 67958827=>'ON', 67968828=>'ON', 67978829=>'ON', 67988830=>'ON', 67998831=>'ON', 68008832=>'ON', 68018833=>'ON', 68028834=>'ON', 68038835=>'ON', 68048836=>'ON', 68058837=>'ON', 68068838=>'ON', 68078839=>'ON', 68088840=>'ON', 68098841=>'ON', 68108842=>'ON', 68118843=>'ON', 68128844=>'ON', 68138845=>'ON', 68148846=>'ON', 68158847=>'ON', 68168848=>'ON', 68178849=>'ON', 68188850=>'ON', 68198851=>'ON', 68208852=>'ON', 68218853=>'ON', 68228854=>'ON', 68238855=>'ON', 68248856=>'ON', 68258857=>'ON', 68268858=>'ON', 68278859=>'ON', 68288860=>'ON', 68298861=>'ON', 68308862=>'ON', 68318863=>'ON', 68328864=>'ON', 68338865=>'ON', 68348866=>'ON', 68358867=>'ON', 68368868=>'ON', 68378869=>'ON', 68388870=>'ON', 68398871=>'ON', 68408872=>'ON', 68418873=>'ON', 68428874=>'ON', 68438875=>'ON', 68448876=>'ON', 68458877=>'ON', 68468878=>'ON', 68478879=>'ON', 68488880=>'ON', 68498881=>'ON', 68508882=>'ON', 68518883=>'ON', 68528884=>'ON', 68538885=>'ON', 68548886=>'ON', 68558887=>'ON', 68568888=>'ON', 68578889=>'ON', 68588890=>'ON', 68598891=>'ON', 68608892=>'ON', 68618893=>'ON', 68628894=>'ON', 68638895=>'ON', 68648896=>'ON', 68658897=>'ON', 68668898=>'ON', 68678899=>'ON', 68688900=>'ON', 68698901=>'ON', 68708902=>'ON', 68718903=>'ON', 68728904=>'ON', 68738905=>'ON', 68748906=>'ON', 68758907=>'ON', 68768908=>'ON', 68778909=>'ON', 68788910=>'ON', 68798911=>'ON', 68808912=>'ON', 68818913=>'ON', 68828914=>'ON', 68838915=>'ON', 68848916=>'ON', 68858917=>'ON', 68868918=>'ON', 68878919=>'ON', 68888920=>'ON', 68898921=>'ON', 68908922=>'ON', 68918923=>'ON', 68928924=>'ON', 68938925=>'ON', 68948926=>'ON', 68958927=>'ON', 68968928=>'ON', 68978929=>'ON', 68988930=>'ON', 68998931=>'ON', 69008932=>'ON', 69018933=>'ON', 69028934=>'ON', 69038935=>'ON', 69048936=>'ON', 69058937=>'ON', 69068938=>'ON', 69078939=>'ON', 69088940=>'ON', 69098941=>'ON', 69108942=>'ON', 69118943=>'ON', 69128944=>'ON', 69138945=>'ON', 69148946=>'ON', 69158947=>'ON', 69168948=>'ON', 69178949=>'ON', 69188950=>'ON', 69198951=>'ON', 69208952=>'ON', 69218953=>'ON', 69228954=>'ON', 69238955=>'ON', 69248956=>'ON', 69258957=>'ON', 69268958=>'ON', 69278959=>'ON', 69288960=>'ON', 69298961=>'ON', 69308962=>'ON', 69318963=>'ON', 69328964=>'ON', 69338965=>'ON', 69348966=>'ON', 69358967=>'ON', 69368968=>'ON', 69378969=>'ON', 69388970=>'ON', 69398971=>'ON', 69408972=>'ON', 69418973=>'ON', 69428974=>'ON', 69438975=>'ON', 69448976=>'ON', 69458977=>'ON', 69468978=>'ON', 69478979=>'ON', 69488980=>'ON', 69498981=>'ON', 69508982=>'ON', 69518983=>'ON', 69528984=>'ON', 69538985=>'ON', 69548986=>'ON', 69558987=>'ON', 69568988=>'ON', 69578989=>'ON', 69588990=>'ON', 69598991=>'ON', 69608992=>'ON', 69618993=>'ON', 69628994=>'ON', 69638995=>'ON', 69648996=>'ON', 69658997=>'ON', 69668998=>'ON', 69678999=>'ON', 69689000=>'ON', 69699001=>'ON', 69709002=>'ON', 69719003=>'ON', 69729004=>'ON', 69739005=>'ON', 69749006=>'ON', 69759007=>'ON', 69769008=>'ON', 69779009=>'ON', 69789010=>'ON', 69799011=>'ON', 69809012=>'ON', 69819013=>'ON', 69829014=>'L', 69839015=>'L', 69849016=>'L', 69859017=>'L', 69869018=>'L', 69879019=>'L', 69889020=>'L', 69899021=>'L', 69909022=>'L', 69919023=>'L', 69929024=>'L', 69939025=>'L', 69949026=>'L', 69959027=>'L', 69969028=>'L', 69979029=>'L', 69989030=>'L', 69999031=>'L', 70009032=>'L', 70019033=>'L', 70029034=>'L', 70039035=>'L', 70049036=>'L', 70059037=>'L', 70069038=>'L', 70079039=>'L', 70089040=>'L', 70099041=>'L', 70109042=>'L', 70119043=>'L', 70129044=>'L', 70139045=>'L', 70149046=>'L', 70159047=>'L', 70169048=>'L', 70179049=>'L', 70189050=>'L', 70199051=>'L', 70209052=>'L', 70219053=>'L', 70229054=>'L', 70239055=>'L', 70249056=>'L', 70259057=>'L', 70269058=>'L', 70279059=>'L', 70289060=>'L', 70299061=>'L', 70309062=>'L', 70319063=>'L', 70329064=>'L', 70339065=>'L', 70349066=>'L', 70359067=>'L', 70369068=>'L', 70379069=>'L', 70389070=>'L', 70399071=>'L', 70409072=>'L', 70419073=>'L', 70429074=>'L', 70439075=>'L', 70449076=>'L', 70459077=>'L', 70469078=>'L', 70479079=>'L', 70489080=>'L', 70499081=>'L', 70509082=>'L', 70519083=>'ON', 70529084=>'ON', 70539085=>'ON', 70549086=>'ON', 70559087=>'ON', 70569088=>'ON', 70579089=>'ON', 70589090=>'ON', 70599091=>'ON', 70609092=>'ON', 70619093=>'ON', 70629094=>'ON', 70639095=>'ON', 70649096=>'ON', 70659097=>'ON', 70669098=>'ON', 70679099=>'ON', 70689100=>'ON', 70699101=>'ON', 70709102=>'ON', 70719103=>'ON', 70729104=>'ON', 70739105=>'ON', 70749106=>'ON', 70759107=>'ON', 70769108=>'ON', 70779109=>'L', 70789110=>'ON', 70799111=>'ON', 70809112=>'ON', 70819113=>'ON', 70829114=>'ON', 70839115=>'ON', 70849116=>'ON', 70859117=>'ON', 70869118=>'ON', 70879119=>'ON', 70889120=>'ON', 70899121=>'ON', 70909122=>'ON', 70919123=>'ON', 70929124=>'ON', 70939125=>'ON', 70949126=>'ON', 70959127=>'ON', 70969128=>'ON', 70979129=>'ON', 70989130=>'ON', 70999131=>'ON', 71009132=>'ON', 71019133=>'ON', 71029134=>'ON', 71039135=>'ON', 71049136=>'ON', 71059137=>'ON', 71069138=>'ON', 71079139=>'ON', 71089140=>'ON', 71099141=>'ON', 71109142=>'ON', 71119143=>'ON', 71129144=>'ON', 71139145=>'ON', 71149146=>'ON', 71159147=>'ON', 71169148=>'ON', 71179149=>'ON', 71189150=>'ON', 71199151=>'ON', 71209152=>'ON', 71219153=>'ON', 71229154=>'ON', 71239155=>'ON', 71249156=>'ON', 71259157=>'ON', 71269158=>'ON', 71279159=>'ON', 71289160=>'ON', 71299161=>'ON', 71309162=>'ON', 71319163=>'ON', 71329164=>'ON', 71339165=>'ON', 71349166=>'ON', 71359167=>'ON', 71369168=>'ON', 71379169=>'ON', 71389170=>'ON', 71399171=>'ON', 71409172=>'ON', 71419173=>'ON', 71429174=>'ON', 71439175=>'ON', 71449176=>'ON', 71459177=>'ON', 71469178=>'ON', 71479179=>'ON', 71489180=>'ON', 71499181=>'ON', 71509182=>'ON', 71519183=>'ON', 71529184=>'ON', 71539185=>'ON', 71549186=>'ON', 71559187=>'ON', 71569188=>'ON', 71579189=>'ON', 71589190=>'ON', 71599191=>'ON', 71609216=>'ON', 71619217=>'ON', 71629218=>'ON', 71639219=>'ON', 71649220=>'ON', 71659221=>'ON', 71669222=>'ON', 71679223=>'ON', 71689224=>'ON', 71699225=>'ON', 71709226=>'ON', 71719227=>'ON', 71729228=>'ON', 71739229=>'ON', 71749230=>'ON', 71759231=>'ON', 71769232=>'ON', 71779233=>'ON', 71789234=>'ON', 71799235=>'ON', 71809236=>'ON', 71819237=>'ON', 71829238=>'ON', 71839239=>'ON', 71849240=>'ON', 71859241=>'ON', 71869242=>'ON', 71879243=>'ON', 71889244=>'ON', 71899245=>'ON', 71909246=>'ON', 71919247=>'ON', 71929248=>'ON', 71939249=>'ON', 71949250=>'ON', 71959251=>'ON', 71969252=>'ON', 71979253=>'ON', 71989254=>'ON', 71999280=>'ON', 72009281=>'ON', 72019282=>'ON', 72029283=>'ON', 72039284=>'ON', 72049285=>'ON', 72059286=>'ON', 72069287=>'ON', 72079288=>'ON', 72089289=>'ON', 72099290=>'ON', 72109312=>'ON', 72119313=>'ON', 72129314=>'ON', 72139315=>'ON', 72149316=>'ON', 72159317=>'ON', 72169318=>'ON', 72179319=>'ON', 72189320=>'ON', 72199321=>'ON', 72209322=>'ON', 72219323=>'ON', 72229324=>'ON', 72239325=>'ON', 72249326=>'ON', 72259327=>'ON', 72269328=>'ON', 72279329=>'ON', 72289330=>'ON', 72299331=>'ON', 72309332=>'ON', 72319333=>'ON', 72329334=>'ON', 72339335=>'ON', 72349336=>'ON', 72359337=>'ON', 72369338=>'ON', 72379339=>'ON', 72389340=>'ON', 72399341=>'ON', 72409342=>'ON', 72419343=>'ON', 72429344=>'ON', 72439345=>'ON', 72449346=>'ON', 72459347=>'ON', 72469348=>'ON', 72479349=>'ON', 72489350=>'ON', 72499351=>'ON', 72509352=>'EN', 72519353=>'EN', 72529354=>'EN', 72539355=>'EN', 72549356=>'EN', 72559357=>'EN', 72569358=>'EN', 72579359=>'EN', 72589360=>'EN', 72599361=>'EN', 72609362=>'EN', 72619363=>'EN', 72629364=>'EN', 72639365=>'EN', 72649366=>'EN', 72659367=>'EN', 72669368=>'EN', 72679369=>'EN', 72689370=>'EN', 72699371=>'EN', 72709372=>'L', 72719373=>'L', 72729374=>'L', 72739375=>'L', 72749376=>'L', 72759377=>'L', 72769378=>'L', 72779379=>'L', 72789380=>'L', 72799381=>'L', 72809382=>'L', 72819383=>'L', 72829384=>'L', 72839385=>'L', 72849386=>'L', 72859387=>'L', 72869388=>'L', 72879389=>'L', 72889390=>'L', 72899391=>'L', 72909392=>'L', 72919393=>'L', 72929394=>'L', 72939395=>'L', 72949396=>'L', 72959397=>'L', 72969398=>'L', 72979399=>'L', 72989400=>'L', 72999401=>'L', 73009402=>'L', 73019403=>'L', 73029404=>'L', 73039405=>'L', 73049406=>'L', 73059407=>'L', 73069408=>'L', 73079409=>'L', 73089410=>'L', 73099411=>'L', 73109412=>'L', 73119413=>'L', 73129414=>'L', 73139415=>'L', 73149416=>'L', 73159417=>'L', 73169418=>'L', 73179419=>'L', 73189420=>'L', 73199421=>'L', 73209422=>'L', 73219423=>'L', 73229424=>'L', 73239425=>'L', 73249426=>'L', 73259427=>'L', 73269428=>'L', 73279429=>'L', 73289430=>'L', 73299431=>'L', 73309432=>'L', 73319433=>'L', 73329434=>'L', 73339435=>'L', 73349436=>'L', 73359437=>'L', 73369438=>'L', 73379439=>'L', 73389440=>'L', 73399441=>'L', 73409442=>'L', 73419443=>'L', 73429444=>'L', 73439445=>'L', 73449446=>'L', 73459447=>'L', 73469448=>'L', 73479449=>'L', 73489450=>'ON', 73499451=>'ON', 73509452=>'ON', 73519453=>'ON', 73529454=>'ON', 73539455=>'ON', 73549456=>'ON', 73559457=>'ON', 73569458=>'ON', 73579459=>'ON', 73589460=>'ON', 73599461=>'ON', 73609462=>'ON', 73619463=>'ON', 73629464=>'ON', 73639465=>'ON', 73649466=>'ON', 73659467=>'ON', 73669468=>'ON', 73679469=>'ON', 73689470=>'ON', 73699471=>'ON', 73709472=>'ON', 73719473=>'ON', 73729474=>'ON', 73739475=>'ON', 73749476=>'ON', 73759477=>'ON', 73769478=>'ON', 73779479=>'ON', 73789480=>'ON', 73799481=>'ON', 73809482=>'ON', 73819483=>'ON', 73829484=>'ON', 73839485=>'ON', 73849486=>'ON', 73859487=>'ON', 73869488=>'ON', 73879489=>'ON', 73889490=>'ON', 73899491=>'ON', 73909492=>'ON', 73919493=>'ON', 73929494=>'ON', 73939495=>'ON', 73949496=>'ON', 73959497=>'ON', 73969498=>'ON', 73979499=>'ON', 73989500=>'ON', 73999501=>'ON', 74009502=>'ON', 74019503=>'ON', 74029504=>'ON', 74039505=>'ON', 74049506=>'ON', 74059507=>'ON', 74069508=>'ON', 74079509=>'ON', 74089510=>'ON', 74099511=>'ON', 74109512=>'ON', 74119513=>'ON', 74129514=>'ON', 74139515=>'ON', 74149516=>'ON', 74159517=>'ON', 74169518=>'ON', 74179519=>'ON', 74189520=>'ON', 74199521=>'ON', 74209522=>'ON', 74219523=>'ON', 74229524=>'ON', 74239525=>'ON', 74249526=>'ON', 74259527=>'ON', 74269528=>'ON', 74279529=>'ON', 74289530=>'ON', 74299531=>'ON', 74309532=>'ON', 74319533=>'ON', 74329534=>'ON', 74339535=>'ON', 74349536=>'ON', 74359537=>'ON', 74369538=>'ON', 74379539=>'ON', 74389540=>'ON', 74399541=>'ON', 74409542=>'ON', 74419543=>'ON', 74429544=>'ON', 74439545=>'ON', 74449546=>'ON', 74459547=>'ON', 74469548=>'ON', 74479549=>'ON', 74489550=>'ON', 74499551=>'ON', 74509552=>'ON', 74519553=>'ON', 74529554=>'ON', 74539555=>'ON', 74549556=>'ON', 74559557=>'ON', 74569558=>'ON', 74579559=>'ON', 74589560=>'ON', 74599561=>'ON', 74609562=>'ON', 74619563=>'ON', 74629564=>'ON', 74639565=>'ON', 74649566=>'ON', 74659567=>'ON', 74669568=>'ON', 74679569=>'ON', 74689570=>'ON', 74699571=>'ON', 74709572=>'ON', 74719573=>'ON', 74729574=>'ON', 74739575=>'ON', 74749576=>'ON', 74759577=>'ON', 74769578=>'ON', 74779579=>'ON', 74789580=>'ON', 74799581=>'ON', 74809582=>'ON', 74819583=>'ON', 74829584=>'ON', 74839585=>'ON', 74849586=>'ON', 74859587=>'ON', 74869588=>'ON', 74879589=>'ON', 74889590=>'ON', 74899591=>'ON', 74909592=>'ON', 74919593=>'ON', 74929594=>'ON', 74939595=>'ON', 74949596=>'ON', 74959597=>'ON', 74969598=>'ON', 74979599=>'ON', 74989600=>'ON', 74999601=>'ON', 75009602=>'ON', 75019603=>'ON', 75029604=>'ON', 75039605=>'ON', 75049606=>'ON', 75059607=>'ON', 75069608=>'ON', 75079609=>'ON', 75089610=>'ON', 75099611=>'ON', 75109612=>'ON', 75119613=>'ON', 75129614=>'ON', 75139615=>'ON', 75149616=>'ON', 75159617=>'ON', 75169618=>'ON', 75179619=>'ON', 75189620=>'ON', 75199621=>'ON', 75209622=>'ON', 75219623=>'ON', 75229624=>'ON', 75239625=>'ON', 75249626=>'ON', 75259627=>'ON', 75269628=>'ON', 75279629=>'ON', 75289630=>'ON', 75299631=>'ON', 75309632=>'ON', 75319633=>'ON', 75329634=>'ON', 75339635=>'ON', 75349636=>'ON', 75359637=>'ON', 75369638=>'ON', 75379639=>'ON', 75389640=>'ON', 75399641=>'ON', 75409642=>'ON', 75419643=>'ON', 75429644=>'ON', 75439645=>'ON', 75449646=>'ON', 75459647=>'ON', 75469648=>'ON', 75479649=>'ON', 75489650=>'ON', 75499651=>'ON', 75509652=>'ON', 75519653=>'ON', 75529654=>'ON', 75539655=>'ON', 75549656=>'ON', 75559657=>'ON', 75569658=>'ON', 75579659=>'ON', 75589660=>'ON', 75599661=>'ON', 75609662=>'ON', 75619663=>'ON', 75629664=>'ON', 75639665=>'ON', 75649666=>'ON', 75659667=>'ON', 75669668=>'ON', 75679669=>'ON', 75689670=>'ON', 75699671=>'ON', 75709672=>'ON', 75719673=>'ON', 75729674=>'ON', 75739675=>'ON', 75749676=>'ON', 75759677=>'ON', 75769678=>'ON', 75779679=>'ON', 75789680=>'ON', 75799681=>'ON', 75809682=>'ON', 75819683=>'ON', 75829684=>'ON', 75839685=>'ON', 75849686=>'ON', 75859687=>'ON', 75869688=>'ON', 75879689=>'ON', 75889690=>'ON', 75899691=>'ON', 75909692=>'ON', 75919693=>'ON', 75929694=>'ON', 75939695=>'ON', 75949696=>'ON', 75959697=>'ON', 75969698=>'ON', 75979699=>'ON', 75989700=>'ON', 75999701=>'ON', 76009702=>'ON', 76019703=>'ON', 76029704=>'ON', 76039705=>'ON', 76049706=>'ON', 76059707=>'ON', 76069708=>'ON', 76079709=>'ON', 76089710=>'ON', 76099711=>'ON', 76109712=>'ON', 76119713=>'ON', 76129714=>'ON', 76139715=>'ON', 76149716=>'ON', 76159717=>'ON', 76169718=>'ON', 76179719=>'ON', 76189720=>'ON', 76199721=>'ON', 76209722=>'ON', 76219723=>'ON', 76229724=>'ON', 76239725=>'ON', 76249726=>'ON', 76259727=>'ON', 76269728=>'ON', 76279729=>'ON', 76289730=>'ON', 76299731=>'ON', 76309732=>'ON', 76319733=>'ON', 76329734=>'ON', 76339735=>'ON', 76349736=>'ON', 76359737=>'ON', 76369738=>'ON', 76379739=>'ON', 76389740=>'ON', 76399741=>'ON', 76409742=>'ON', 76419743=>'ON', 76429744=>'ON', 76439745=>'ON', 76449746=>'ON', 76459747=>'ON', 76469748=>'ON', 76479749=>'ON', 76489750=>'ON', 76499751=>'ON', 76509752=>'ON', 76519753=>'ON', 76529754=>'ON', 76539755=>'ON', 76549756=>'ON', 76559757=>'ON', 76569758=>'ON', 76579759=>'ON', 76589760=>'ON', 76599761=>'ON', 76609762=>'ON', 76619763=>'ON', 76629764=>'ON', 76639765=>'ON', 76649766=>'ON', 76659767=>'ON', 76669768=>'ON', 76679769=>'ON', 76689770=>'ON', 76699771=>'ON', 76709772=>'ON', 76719773=>'ON', 76729774=>'ON', 76739775=>'ON', 76749776=>'ON', 76759777=>'ON', 76769778=>'ON', 76779779=>'ON', 76789780=>'ON', 76799781=>'ON', 76809782=>'ON', 76819783=>'ON', 76829784=>'ON', 76839785=>'ON', 76849786=>'ON', 76859787=>'ON', 76869788=>'ON', 76879789=>'ON', 76889790=>'ON', 76899791=>'ON', 76909792=>'ON', 76919793=>'ON', 76929794=>'ON', 76939795=>'ON', 76949796=>'ON', 76959797=>'ON', 76969798=>'ON', 76979799=>'ON', 76989800=>'ON', 76999801=>'ON', 77009802=>'ON', 77019803=>'ON', 77029804=>'ON', 77039805=>'ON', 77049806=>'ON', 77059807=>'ON', 77069808=>'ON', 77079809=>'ON', 77089810=>'ON', 77099811=>'ON', 77109812=>'ON', 77119813=>'ON', 77129814=>'ON', 77139815=>'ON', 77149816=>'ON', 77159817=>'ON', 77169818=>'ON', 77179819=>'ON', 77189820=>'ON', 77199821=>'ON', 77209822=>'ON', 77219823=>'ON', 77229824=>'ON', 77239825=>'ON', 77249826=>'ON', 77259827=>'ON', 77269828=>'ON', 77279829=>'ON', 77289830=>'ON', 77299831=>'ON', 77309832=>'ON', 77319833=>'ON', 77329834=>'ON', 77339835=>'ON', 77349836=>'ON', 77359837=>'ON', 77369838=>'ON', 77379839=>'ON', 77389840=>'ON', 77399841=>'ON', 77409842=>'ON', 77419843=>'ON', 77429844=>'ON', 77439845=>'ON', 77449846=>'ON', 77459847=>'ON', 77469848=>'ON', 77479849=>'ON', 77489850=>'ON', 77499851=>'ON', 77509852=>'ON', 77519853=>'ON', 77529854=>'ON', 77539855=>'ON', 77549856=>'ON', 77559857=>'ON', 77569858=>'ON', 77579859=>'ON', 77589860=>'ON', 77599861=>'ON', 77609862=>'ON', 77619863=>'ON', 77629864=>'ON', 77639865=>'ON', 77649866=>'ON', 77659867=>'ON', 77669868=>'ON', 77679869=>'ON', 77689870=>'ON', 77699871=>'ON', 77709872=>'ON', 77719873=>'ON', 77729874=>'ON', 77739875=>'ON', 77749876=>'ON', 77759877=>'ON', 77769878=>'ON', 77779879=>'ON', 77789880=>'ON', 77799881=>'ON', 77809882=>'ON', 77819883=>'ON', 77829884=>'ON', 77839888=>'ON', 77849889=>'ON', 77859890=>'ON', 77869891=>'ON', 77879892=>'ON', 77889893=>'ON', 77899894=>'ON', 77909895=>'ON', 77919896=>'ON', 77929897=>'ON', 77939898=>'ON', 77949899=>'ON', 77959900=>'L', 77969901=>'ON', 77979902=>'ON', 77989903=>'ON', 77999904=>'ON', 78009905=>'ON', 78019906=>'ON', 78029985=>'ON', 78039986=>'ON', 78049987=>'ON', 78059988=>'ON', 78069990=>'ON', 78079991=>'ON', 78089992=>'ON', 78099993=>'ON', 78109996=>'ON', 78119997=>'ON', 78129998=>'ON', 78139999=>'ON', 781410000=>'ON', 781510001=>'ON', 781610002=>'ON', 781710003=>'ON', 781810004=>'ON', 781910005=>'ON', 782010006=>'ON', 782110007=>'ON', 782210008=>'ON', 782310009=>'ON', 782410010=>'ON', 782510011=>'ON', 782610012=>'ON', 782710013=>'ON', 782810014=>'ON', 782910015=>'ON', 783010016=>'ON', 783110017=>'ON', 783210018=>'ON', 783310019=>'ON', 783410020=>'ON', 783510021=>'ON', 783610022=>'ON', 783710023=>'ON', 783810025=>'ON', 783910026=>'ON', 784010027=>'ON', 784110028=>'ON', 784210029=>'ON', 784310030=>'ON', 784410031=>'ON', 784510032=>'ON', 784610033=>'ON', 784710034=>'ON', 784810035=>'ON', 784910036=>'ON', 785010037=>'ON', 785110038=>'ON', 785210039=>'ON', 785310040=>'ON', 785410041=>'ON', 785510042=>'ON', 785610043=>'ON', 785710044=>'ON', 785810045=>'ON', 785910046=>'ON', 786010047=>'ON', 786110048=>'ON', 786210049=>'ON', 786310050=>'ON', 786410051=>'ON', 786510052=>'ON', 786610053=>'ON', 786710054=>'ON', 786810055=>'ON', 786910056=>'ON', 787010057=>'ON', 787110058=>'ON', 787210059=>'ON', 787310061=>'ON', 787410063=>'ON', 787510064=>'ON', 787610065=>'ON', 787710066=>'ON', 787810070=>'ON', 787910072=>'ON', 788010073=>'ON', 788110074=>'ON', 788210075=>'ON', 788310076=>'ON', 788410077=>'ON', 788510078=>'ON', 788610081=>'ON', 788710082=>'ON', 788810083=>'ON', 788910084=>'ON', 789010085=>'ON', 789110086=>'ON', 789210087=>'ON', 789310088=>'ON', 789410089=>'ON', 789510090=>'ON', 789610091=>'ON', 789710092=>'ON', 789810093=>'ON', 789910094=>'ON', 790010095=>'ON', 790110096=>'ON', 790210097=>'ON', 790310098=>'ON', 790410099=>'ON', 790510100=>'ON', 790610101=>'ON', 790710102=>'ON', 790810103=>'ON', 790910104=>'ON', 791010105=>'ON', 791110106=>'ON', 791210107=>'ON', 791310108=>'ON', 791410109=>'ON', 791510110=>'ON', 791610111=>'ON', 791710112=>'ON', 791810113=>'ON', 791910114=>'ON', 792010115=>'ON', 792110116=>'ON', 792210117=>'ON', 792310118=>'ON', 792410119=>'ON', 792510120=>'ON', 792610121=>'ON', 792710122=>'ON', 792810123=>'ON', 792910124=>'ON', 793010125=>'ON', 793110126=>'ON', 793210127=>'ON', 793310128=>'ON', 793410129=>'ON', 793510130=>'ON', 793610131=>'ON', 793710132=>'ON', 793810136=>'ON', 793910137=>'ON', 794010138=>'ON', 794110139=>'ON', 794210140=>'ON', 794310141=>'ON', 794410142=>'ON', 794510143=>'ON', 794610144=>'ON', 794710145=>'ON', 794810146=>'ON', 794910147=>'ON', 795010148=>'ON', 795110149=>'ON', 795210150=>'ON', 795310151=>'ON', 795410152=>'ON', 795510153=>'ON', 795610154=>'ON', 795710155=>'ON', 795810156=>'ON', 795910157=>'ON', 796010158=>'ON', 796110159=>'ON', 796210161=>'ON', 796310162=>'ON', 796410163=>'ON', 796510164=>'ON', 796610165=>'ON', 796710166=>'ON', 796810167=>'ON', 796910168=>'ON', 797010169=>'ON', 797110170=>'ON', 797210171=>'ON', 797310172=>'ON', 797410173=>'ON', 797510174=>'ON', 797610176=>'ON', 797710177=>'ON', 797810178=>'ON', 797910179=>'ON', 798010180=>'ON', 798110181=>'ON', 798210182=>'ON', 798310183=>'ON', 798410184=>'ON', 798510185=>'ON', 798610186=>'ON', 798710192=>'ON', 798810193=>'ON', 798910194=>'ON', 799010195=>'ON', 799110196=>'ON', 799210197=>'ON', 799310198=>'ON', 799410199=>'ON', 799510200=>'ON', 799610201=>'ON', 799710202=>'ON', 799810203=>'ON', 799910204=>'ON', 800010205=>'ON', 800110206=>'ON', 800210207=>'ON', 800310208=>'ON', 800410209=>'ON', 800510210=>'ON', 800610211=>'ON', 800710212=>'ON', 800810213=>'ON', 800910214=>'ON', 801010215=>'ON', 801110216=>'ON', 801210217=>'ON', 801310218=>'ON', 801410219=>'ON', 801510224=>'ON', 801610225=>'ON', 801710226=>'ON', 801810227=>'ON', 801910228=>'ON', 802010229=>'ON', 802110230=>'ON', 802210231=>'ON', 802310232=>'ON', 802410233=>'ON', 802510234=>'ON', 802610235=>'ON', 802710236=>'ON', 802810237=>'ON', 802910238=>'ON', 803010239=>'ON', 803110240=>'L', 803210241=>'L', 803310242=>'L', 803410243=>'L', 803510244=>'L', 803610245=>'L', 803710246=>'L', 803810247=>'L', 803910248=>'L', 804010249=>'L', 804110250=>'L', 804210251=>'L', 804310252=>'L', 804410253=>'L', 804510254=>'L', 804610255=>'L', 804710256=>'L', 804810257=>'L', 804910258=>'L', 805010259=>'L', 805110260=>'L', 805210261=>'L', 805310262=>'L', 805410263=>'L', 805510264=>'L', 805610265=>'L', 805710266=>'L', 805810267=>'L', 805910268=>'L', 806010269=>'L', 806110270=>'L', 806210271=>'L', 806310272=>'L', 806410273=>'L', 806510274=>'L', 806610275=>'L', 806710276=>'L', 806810277=>'L', 806910278=>'L', 807010279=>'L', 807110280=>'L', 807210281=>'L', 807310282=>'L', 807410283=>'L', 807510284=>'L', 807610285=>'L', 807710286=>'L', 807810287=>'L', 807910288=>'L', 808010289=>'L', 808110290=>'L', 808210291=>'L', 808310292=>'L', 808410293=>'L', 808510294=>'L', 808610295=>'L', 808710296=>'L', 808810297=>'L', 808910298=>'L', 809010299=>'L', 809110300=>'L', 809210301=>'L', 809310302=>'L', 809410303=>'L', 809510304=>'L', 809610305=>'L', 809710306=>'L', 809810307=>'L', 809910308=>'L', 810010309=>'L', 810110310=>'L', 810210311=>'L', 810310312=>'L', 810410313=>'L', 810510314=>'L', 810610315=>'L', 810710316=>'L', 810810317=>'L', 810910318=>'L', 811010319=>'L', 811110320=>'L', 811210321=>'L', 811310322=>'L', 811410323=>'L', 811510324=>'L', 811610325=>'L', 811710326=>'L', 811810327=>'L', 811910328=>'L', 812010329=>'L', 812110330=>'L', 812210331=>'L', 812310332=>'L', 812410333=>'L', 812510334=>'L', 812610335=>'L', 812710336=>'L', 812810337=>'L', 812910338=>'L', 813010339=>'L', 813110340=>'L', 813210341=>'L', 813310342=>'L', 813410343=>'L', 813510344=>'L', 813610345=>'L', 813710346=>'L', 813810347=>'L', 813910348=>'L', 814010349=>'L', 814110350=>'L', 814210351=>'L', 814310352=>'L', 814410353=>'L', 814510354=>'L', 814610355=>'L', 814710356=>'L', 814810357=>'L', 814910358=>'L', 815010359=>'L', 815110360=>'L', 815210361=>'L', 815310362=>'L', 815410363=>'L', 815510364=>'L', 815610365=>'L', 815710366=>'L', 815810367=>'L', 815910368=>'L', 816010369=>'L', 816110370=>'L', 816210371=>'L', 816310372=>'L', 816410373=>'L', 816510374=>'L', 816610375=>'L', 816710376=>'L', 816810377=>'L', 816910378=>'L', 817010379=>'L', 817110380=>'L', 817210381=>'L', 817310382=>'L', 817410383=>'L', 817510384=>'L', 817610385=>'L', 817710386=>'L', 817810387=>'L', 817910388=>'L', 818010389=>'L', 818110390=>'L', 818210391=>'L', 818310392=>'L', 818410393=>'L', 818510394=>'L', 818610395=>'L', 818710396=>'L', 818810397=>'L', 818910398=>'L', 819010399=>'L', 819110400=>'L', 819210401=>'L', 819310402=>'L', 819410403=>'L', 819510404=>'L', 819610405=>'L', 819710406=>'L', 819810407=>'L', 819910408=>'L', 820010409=>'L', 820110410=>'L', 820210411=>'L', 820310412=>'L', 820410413=>'L', 820510414=>'L', 820610415=>'L', 820710416=>'L', 820810417=>'L', 820910418=>'L', 821010419=>'L', 821110420=>'L', 821210421=>'L', 821310422=>'L', 821410423=>'L', 821510424=>'L', 821610425=>'L', 821710426=>'L', 821810427=>'L', 821910428=>'L', 822010429=>'L', 822110430=>'L', 822210431=>'L', 822310432=>'L', 822410433=>'L', 822510434=>'L', 822610435=>'L', 822710436=>'L', 822810437=>'L', 822910438=>'L', 823010439=>'L', 823110440=>'L', 823210441=>'L', 823310442=>'L', 823410443=>'L', 823510444=>'L', 823610445=>'L', 823710446=>'L', 823810447=>'L', 823910448=>'L', 824010449=>'L', 824110450=>'L', 824210451=>'L', 824310452=>'L', 824410453=>'L', 824510454=>'L', 824610455=>'L', 824710456=>'L', 824810457=>'L', 824910458=>'L', 825010459=>'L', 825110460=>'L', 825210461=>'L', 825310462=>'L', 825410463=>'L', 825510464=>'L', 825610465=>'L', 825710466=>'L', 825810467=>'L', 825910468=>'L', 826010469=>'L', 826110470=>'L', 826210471=>'L', 826310472=>'L', 826410473=>'L', 826510474=>'L', 826610475=>'L', 826710476=>'L', 826810477=>'L', 826910478=>'L', 827010479=>'L', 827110480=>'L', 827210481=>'L', 827310482=>'L', 827410483=>'L', 827510484=>'L', 827610485=>'L', 827710486=>'L', 827810487=>'L', 827910488=>'L', 828010489=>'L', 828110490=>'L', 828210491=>'L', 828310492=>'L', 828410493=>'L', 828510494=>'L', 828610495=>'L', 828710496=>'ON', 828810497=>'ON', 828910498=>'ON', 829010499=>'ON', 829110500=>'ON', 829210501=>'ON', 829310502=>'ON', 829410503=>'ON', 829510504=>'ON', 829610505=>'ON', 829710506=>'ON', 829810507=>'ON', 829910508=>'ON', 830010509=>'ON', 830110510=>'ON', 830210511=>'ON', 830310512=>'ON', 830410513=>'ON', 830510514=>'ON', 830610515=>'ON', 830710516=>'ON', 830810517=>'ON', 830910518=>'ON', 831010519=>'ON', 831110520=>'ON', 831210521=>'ON', 831310522=>'ON', 831410523=>'ON', 831510524=>'ON', 831610525=>'ON', 831710526=>'ON', 831810527=>'ON', 831910528=>'ON', 832010529=>'ON', 832110530=>'ON', 832210531=>'ON', 832310532=>'ON', 832410533=>'ON', 832510534=>'ON', 832610535=>'ON', 832710536=>'ON', 832810537=>'ON', 832910538=>'ON', 833010539=>'ON', 833110540=>'ON', 833210541=>'ON', 833310542=>'ON', 833410543=>'ON', 833510544=>'ON', 833610545=>'ON', 833710546=>'ON', 833810547=>'ON', 833910548=>'ON', 834010549=>'ON', 834110550=>'ON', 834210551=>'ON', 834310552=>'ON', 834410553=>'ON', 834510554=>'ON', 834610555=>'ON', 834710556=>'ON', 834810557=>'ON', 834910558=>'ON', 835010559=>'ON', 835110560=>'ON', 835210561=>'ON', 835310562=>'ON', 835410563=>'ON', 835510564=>'ON', 835610565=>'ON', 835710566=>'ON', 835810567=>'ON', 835910568=>'ON', 836010569=>'ON', 836110570=>'ON', 836210571=>'ON', 836310572=>'ON', 836410573=>'ON', 836510574=>'ON', 836610575=>'ON', 836710576=>'ON', 836810577=>'ON', 836910578=>'ON', 837010579=>'ON', 837110580=>'ON', 837210581=>'ON', 837310582=>'ON', 837410583=>'ON', 837510584=>'ON', 837610585=>'ON', 837710586=>'ON', 837810587=>'ON', 837910588=>'ON', 838010589=>'ON', 838110590=>'ON', 838210591=>'ON', 838310592=>'ON', 838410593=>'ON', 838510594=>'ON', 838610595=>'ON', 838710596=>'ON', 838810597=>'ON', 838910598=>'ON', 839010599=>'ON', 839110600=>'ON', 839210601=>'ON', 839310602=>'ON', 839410603=>'ON', 839510604=>'ON', 839610605=>'ON', 839710606=>'ON', 839810607=>'ON', 839910608=>'ON', 840010609=>'ON', 840110610=>'ON', 840210611=>'ON', 840310612=>'ON', 840410613=>'ON', 840510614=>'ON', 840610615=>'ON', 840710616=>'ON', 840810617=>'ON', 840910618=>'ON', 841010619=>'ON', 841110620=>'ON', 841210621=>'ON', 841310622=>'ON', 841410623=>'ON', 841510624=>'ON', 841610625=>'ON', 841710626=>'ON', 841810627=>'ON', 841910628=>'ON', 842010629=>'ON', 842110630=>'ON', 842210631=>'ON', 842310632=>'ON', 842410633=>'ON', 842510634=>'ON', 842610635=>'ON', 842710636=>'ON', 842810637=>'ON', 842910638=>'ON', 843010639=>'ON', 843110640=>'ON', 843210641=>'ON', 843310642=>'ON', 843410643=>'ON', 843510644=>'ON', 843610645=>'ON', 843710646=>'ON', 843810647=>'ON', 843910648=>'ON', 844010649=>'ON', 844110650=>'ON', 844210651=>'ON', 844310652=>'ON', 844410653=>'ON', 844510654=>'ON', 844610655=>'ON', 844710656=>'ON', 844810657=>'ON', 844910658=>'ON', 845010659=>'ON', 845110660=>'ON', 845210661=>'ON', 845310662=>'ON', 845410663=>'ON', 845510664=>'ON', 845610665=>'ON', 845710666=>'ON', 845810667=>'ON', 845910668=>'ON', 846010669=>'ON', 846110670=>'ON', 846210671=>'ON', 846310672=>'ON', 846410673=>'ON', 846510674=>'ON', 846610675=>'ON', 846710676=>'ON', 846810677=>'ON', 846910678=>'ON', 847010679=>'ON', 847110680=>'ON', 847210681=>'ON', 847310682=>'ON', 847410683=>'ON', 847510684=>'ON', 847610685=>'ON', 847710686=>'ON', 847810687=>'ON', 847910688=>'ON', 848010689=>'ON', 848110690=>'ON', 848210691=>'ON', 848310692=>'ON', 848410693=>'ON', 848510694=>'ON', 848610695=>'ON', 848710696=>'ON', 848810697=>'ON', 848910698=>'ON', 849010699=>'ON', 849110700=>'ON', 849210701=>'ON', 849310702=>'ON', 849410703=>'ON', 849510704=>'ON', 849610705=>'ON', 849710706=>'ON', 849810707=>'ON', 849910708=>'ON', 850010709=>'ON', 850110710=>'ON', 850210711=>'ON', 850310712=>'ON', 850410713=>'ON', 850510714=>'ON', 850610715=>'ON', 850710716=>'ON', 850810717=>'ON', 850910718=>'ON', 851010719=>'ON', 851110720=>'ON', 851210721=>'ON', 851310722=>'ON', 851410723=>'ON', 851510724=>'ON', 851610725=>'ON', 851710726=>'ON', 851810727=>'ON', 851910728=>'ON', 852010729=>'ON', 852110730=>'ON', 852210731=>'ON', 852310732=>'ON', 852410733=>'ON', 852510734=>'ON', 852610735=>'ON', 852710736=>'ON', 852810737=>'ON', 852910738=>'ON', 853010739=>'ON', 853110740=>'ON', 853210741=>'ON', 853310742=>'ON', 853410743=>'ON', 853510744=>'ON', 853610745=>'ON', 853710746=>'ON', 853810747=>'ON', 853910748=>'ON', 854010749=>'ON', 854110750=>'ON', 854210751=>'ON', 854310752=>'ON', 854410753=>'ON', 854510754=>'ON', 854610755=>'ON', 854710756=>'ON', 854810757=>'ON', 854910758=>'ON', 855010759=>'ON', 855110760=>'ON', 855210761=>'ON', 855310762=>'ON', 855410763=>'ON', 855510764=>'ON', 855610765=>'ON', 855710766=>'ON', 855810767=>'ON', 855910768=>'ON', 856010769=>'ON', 856110770=>'ON', 856210771=>'ON', 856310772=>'ON', 856410773=>'ON', 856510774=>'ON', 856610775=>'ON', 856710776=>'ON', 856810777=>'ON', 856910778=>'ON', 857010779=>'ON', 857110780=>'ON', 857210781=>'ON', 857310782=>'ON', 857410783=>'ON', 857510784=>'ON', 857610785=>'ON', 857710786=>'ON', 857810787=>'ON', 857910788=>'ON', 858010789=>'ON', 858110790=>'ON', 858210791=>'ON', 858310792=>'ON', 858410793=>'ON', 858510794=>'ON', 858610795=>'ON', 858710796=>'ON', 858810797=>'ON', 858910798=>'ON', 859010799=>'ON', 859110800=>'ON', 859210801=>'ON', 859310802=>'ON', 859410803=>'ON', 859510804=>'ON', 859610805=>'ON', 859710806=>'ON', 859810807=>'ON', 859910808=>'ON', 860010809=>'ON', 860110810=>'ON', 860210811=>'ON', 860310812=>'ON', 860410813=>'ON', 860510814=>'ON', 860610815=>'ON', 860710816=>'ON', 860810817=>'ON', 860910818=>'ON', 861010819=>'ON', 861110820=>'ON', 861210821=>'ON', 861310822=>'ON', 861410823=>'ON', 861510824=>'ON', 861610825=>'ON', 861710826=>'ON', 861810827=>'ON', 861910828=>'ON', 862010829=>'ON', 862110830=>'ON', 862210831=>'ON', 862310832=>'ON', 862410833=>'ON', 862510834=>'ON', 862610835=>'ON', 862710836=>'ON', 862810837=>'ON', 862910838=>'ON', 863010839=>'ON', 863110840=>'ON', 863210841=>'ON', 863310842=>'ON', 863410843=>'ON', 863510844=>'ON', 863610845=>'ON', 863710846=>'ON', 863810847=>'ON', 863910848=>'ON', 864010849=>'ON', 864110850=>'ON', 864210851=>'ON', 864310852=>'ON', 864410853=>'ON', 864510854=>'ON', 864610855=>'ON', 864710856=>'ON', 864810857=>'ON', 864910858=>'ON', 865010859=>'ON', 865110860=>'ON', 865210861=>'ON', 865310862=>'ON', 865410863=>'ON', 865510864=>'ON', 865610865=>'ON', 865710866=>'ON', 865810867=>'ON', 865910868=>'ON', 866010869=>'ON', 866110870=>'ON', 866210871=>'ON', 866310872=>'ON', 866410873=>'ON', 866510874=>'ON', 866610875=>'ON', 866710876=>'ON', 866810877=>'ON', 866910878=>'ON', 867010879=>'ON', 867110880=>'ON', 867210881=>'ON', 867310882=>'ON', 867410883=>'ON', 867510884=>'ON', 867610885=>'ON', 867710886=>'ON', 867810887=>'ON', 867910888=>'ON', 868010889=>'ON', 868110890=>'ON', 868210891=>'ON', 868310892=>'ON', 868410893=>'ON', 868510894=>'ON', 868610895=>'ON', 868710896=>'ON', 868810897=>'ON', 868910898=>'ON', 869010899=>'ON', 869110900=>'ON', 869210901=>'ON', 869310902=>'ON', 869410903=>'ON', 869510904=>'ON', 869610905=>'ON', 869710906=>'ON', 869810907=>'ON', 869910908=>'ON', 870010909=>'ON', 870110910=>'ON', 870210911=>'ON', 870310912=>'ON', 870410913=>'ON', 870510914=>'ON', 870610915=>'ON', 870710916=>'ON', 870810917=>'ON', 870910918=>'ON', 871010919=>'ON', 871110920=>'ON', 871210921=>'ON', 871310922=>'ON', 871410923=>'ON', 871510924=>'ON', 871610925=>'ON', 871710926=>'ON', 871810927=>'ON', 871910928=>'ON', 872010929=>'ON', 872110930=>'ON', 872210931=>'ON', 872310932=>'ON', 872410933=>'ON', 872510934=>'ON', 872610935=>'ON', 872710936=>'ON', 872810937=>'ON', 872910938=>'ON', 873010939=>'ON', 873110940=>'ON', 873210941=>'ON', 873310942=>'ON', 873410943=>'ON', 873510944=>'ON', 873610945=>'ON', 873710946=>'ON', 873810947=>'ON', 873910948=>'ON', 874010949=>'ON', 874110950=>'ON', 874210951=>'ON', 874310952=>'ON', 874410953=>'ON', 874510954=>'ON', 874610955=>'ON', 874710956=>'ON', 874810957=>'ON', 874910958=>'ON', 875010959=>'ON', 875110960=>'ON', 875210961=>'ON', 875310962=>'ON', 875410963=>'ON', 875510964=>'ON', 875610965=>'ON', 875710966=>'ON', 875810967=>'ON', 875910968=>'ON', 876010969=>'ON', 876110970=>'ON', 876210971=>'ON', 876310972=>'ON', 876410973=>'ON', 876510974=>'ON', 876610975=>'ON', 876710976=>'ON', 876810977=>'ON', 876910978=>'ON', 877010979=>'ON', 877110980=>'ON', 877210981=>'ON', 877310982=>'ON', 877410983=>'ON', 877510984=>'ON', 877610985=>'ON', 877710986=>'ON', 877810987=>'ON', 877910988=>'ON', 878010989=>'ON', 878110990=>'ON', 878210991=>'ON', 878310992=>'ON', 878410993=>'ON', 878510994=>'ON', 878610995=>'ON', 878710996=>'ON', 878810997=>'ON', 878910998=>'ON', 879010999=>'ON', 879111000=>'ON', 879211001=>'ON', 879311002=>'ON', 879411003=>'ON', 879511004=>'ON', 879611005=>'ON', 879711006=>'ON', 879811007=>'ON', 879911008=>'ON', 880011009=>'ON', 880111010=>'ON', 880211011=>'ON', 880311012=>'ON', 880411013=>'ON', 880511014=>'ON', 880611015=>'ON', 880711016=>'ON', 880811017=>'ON', 880911018=>'ON', 881011019=>'ON', 881111020=>'ON', 881211021=>'ON', 881311022=>'ON', 881411023=>'ON', 881511024=>'ON', 881611025=>'ON', 881711026=>'ON', 881811027=>'ON', 881911028=>'ON', 882011029=>'ON', 882111030=>'ON', 882211031=>'ON', 882311032=>'ON', 882411033=>'ON', 882511034=>'ON', 882611040=>'ON', 882711041=>'ON', 882811042=>'ON', 882911043=>'ON', 883011264=>'L', 883111265=>'L', 883211266=>'L', 883311267=>'L', 883411268=>'L', 883511269=>'L', 883611270=>'L', 883711271=>'L', 883811272=>'L', 883911273=>'L', 884011274=>'L', 884111275=>'L', 884211276=>'L', 884311277=>'L', 884411278=>'L', 884511279=>'L', 884611280=>'L', 884711281=>'L', 884811282=>'L', 884911283=>'L', 885011284=>'L', 885111285=>'L', 885211286=>'L', 885311287=>'L', 885411288=>'L', 885511289=>'L', 885611290=>'L', 885711291=>'L', 885811292=>'L', 885911293=>'L', 886011294=>'L', 886111295=>'L', 886211296=>'L', 886311297=>'L', 886411298=>'L', 886511299=>'L', 886611300=>'L', 886711301=>'L', 886811302=>'L', 886911303=>'L', 887011304=>'L', 887111305=>'L', 887211306=>'L', 887311307=>'L', 887411308=>'L', 887511309=>'L', 887611310=>'L', 887711312=>'L', 887811313=>'L', 887911314=>'L', 888011315=>'L', 888111316=>'L', 888211317=>'L', 888311318=>'L', 888411319=>'L', 888511320=>'L', 888611321=>'L', 888711322=>'L', 888811323=>'L', 888911324=>'L', 889011325=>'L', 889111326=>'L', 889211327=>'L', 889311328=>'L', 889411329=>'L', 889511330=>'L', 889611331=>'L', 889711332=>'L', 889811333=>'L', 889911334=>'L', 890011335=>'L', 890111336=>'L', 890211337=>'L', 890311338=>'L', 890411339=>'L', 890511340=>'L', 890611341=>'L', 890711342=>'L', 890811343=>'L', 890911344=>'L', 891011345=>'L', 891111346=>'L', 891211347=>'L', 891311348=>'L', 891411349=>'L', 891511350=>'L', 891611351=>'L', 891711352=>'L', 891811353=>'L', 891911354=>'L', 892011355=>'L', 892111356=>'L', 892211357=>'L', 892311358=>'L', 892411360=>'L', 892511361=>'L', 892611362=>'L', 892711363=>'L', 892811364=>'L', 892911365=>'L', 893011366=>'L', 893111367=>'L', 893211368=>'L', 893311369=>'L', 893411370=>'L', 893511371=>'L', 893611372=>'L', 893711380=>'L', 893811381=>'L', 893911382=>'L', 894011383=>'L', 894111392=>'L', 894211393=>'L', 894311394=>'L', 894411395=>'L', 894511396=>'L', 894611397=>'L', 894711398=>'L', 894811399=>'L', 894911400=>'L', 895011401=>'L', 895111402=>'L', 895211403=>'L', 895311404=>'L', 895411405=>'L', 895511406=>'L', 895611407=>'L', 895711408=>'L', 895811409=>'L', 895911410=>'L', 896011411=>'L', 896111412=>'L', 896211413=>'L', 896311414=>'L', 896411415=>'L', 896511416=>'L', 896611417=>'L', 896711418=>'L', 896811419=>'L', 896911420=>'L', 897011421=>'L', 897111422=>'L', 897211423=>'L', 897311424=>'L', 897411425=>'L', 897511426=>'L', 897611427=>'L', 897711428=>'L', 897811429=>'L', 897911430=>'L', 898011431=>'L', 898111432=>'L', 898211433=>'L', 898311434=>'L', 898411435=>'L', 898511436=>'L', 898611437=>'L', 898711438=>'L', 898811439=>'L', 898911440=>'L', 899011441=>'L', 899111442=>'L', 899211443=>'L', 899311444=>'L', 899411445=>'L', 899511446=>'L', 899611447=>'L', 899711448=>'L', 899811449=>'L', 899911450=>'L', 900011451=>'L', 900111452=>'L', 900211453=>'L', 900311454=>'L', 900411455=>'L', 900511456=>'L', 900611457=>'L', 900711458=>'L', 900811459=>'L', 900911460=>'L', 901011461=>'L', 901111462=>'L', 901211463=>'L', 901311464=>'L', 901411465=>'L', 901511466=>'L', 901611467=>'L', 901711468=>'L', 901811469=>'L', 901911470=>'L', 902011471=>'L', 902111472=>'L', 902211473=>'L', 902311474=>'L', 902411475=>'L', 902511476=>'L', 902611477=>'L', 902711478=>'L', 902811479=>'L', 902911480=>'L', 903011481=>'L', 903111482=>'L', 903211483=>'L', 903311484=>'L', 903411485=>'L', 903511486=>'L', 903611487=>'L', 903711488=>'L', 903811489=>'L', 903911490=>'L', 904011491=>'L', 904111492=>'L', 904211493=>'ON', 904311494=>'ON', 904411495=>'ON', 904511496=>'ON', 904611497=>'ON', 904711498=>'ON', 904811513=>'ON', 904911514=>'ON', 905011515=>'ON', 905111516=>'ON', 905211517=>'ON', 905311518=>'ON', 905411519=>'ON', 905511520=>'L', 905611521=>'L', 905711522=>'L', 905811523=>'L', 905911524=>'L', 906011525=>'L', 906111526=>'L', 906211527=>'L', 906311528=>'L', 906411529=>'L', 906511530=>'L', 906611531=>'L', 906711532=>'L', 906811533=>'L', 906911534=>'L', 907011535=>'L', 907111536=>'L', 907211537=>'L', 907311538=>'L', 907411539=>'L', 907511540=>'L', 907611541=>'L', 907711542=>'L', 907811543=>'L', 907911544=>'L', 908011545=>'L', 908111546=>'L', 908211547=>'L', 908311548=>'L', 908411549=>'L', 908511550=>'L', 908611551=>'L', 908711552=>'L', 908811553=>'L', 908911554=>'L', 909011555=>'L', 909111556=>'L', 909211557=>'L', 909311568=>'L', 909411569=>'L', 909511570=>'L', 909611571=>'L', 909711572=>'L', 909811573=>'L', 909911574=>'L', 910011575=>'L', 910111576=>'L', 910211577=>'L', 910311578=>'L', 910411579=>'L', 910511580=>'L', 910611581=>'L', 910711582=>'L', 910811583=>'L', 910911584=>'L', 911011585=>'L', 911111586=>'L', 911211587=>'L', 911311588=>'L', 911411589=>'L', 911511590=>'L', 911611591=>'L', 911711592=>'L', 911811593=>'L', 911911594=>'L', 912011595=>'L', 912111596=>'L', 912211597=>'L', 912311598=>'L', 912411599=>'L', 912511600=>'L', 912611601=>'L', 912711602=>'L', 912811603=>'L', 912911604=>'L', 913011605=>'L', 913111606=>'L', 913211607=>'L', 913311608=>'L', 913411609=>'L', 913511610=>'L', 913611611=>'L', 913711612=>'L', 913811613=>'L', 913911614=>'L', 914011615=>'L', 914111616=>'L', 914211617=>'L', 914311618=>'L', 914411619=>'L', 914511620=>'L', 914611621=>'L', 914711631=>'L', 914811648=>'L', 914911649=>'L', 915011650=>'L', 915111651=>'L', 915211652=>'L', 915311653=>'L', 915411654=>'L', 915511655=>'L', 915611656=>'L', 915711657=>'L', 915811658=>'L', 915911659=>'L', 916011660=>'L', 916111661=>'L', 916211662=>'L', 916311663=>'L', 916411664=>'L', 916511665=>'L', 916611666=>'L', 916711667=>'L', 916811668=>'L', 916911669=>'L', 917011670=>'L', 917111680=>'L', 917211681=>'L', 917311682=>'L', 917411683=>'L', 917511684=>'L', 917611685=>'L', 917711686=>'L', 917811688=>'L', 917911689=>'L', 918011690=>'L', 918111691=>'L', 918211692=>'L', 918311693=>'L', 918411694=>'L', 918511696=>'L', 918611697=>'L', 918711698=>'L', 918811699=>'L', 918911700=>'L', 919011701=>'L', 919111702=>'L', 919211704=>'L', 919311705=>'L', 919411706=>'L', 919511707=>'L', 919611708=>'L', 919711709=>'L', 919811710=>'L', 919911712=>'L', 920011713=>'L', 920111714=>'L', 920211715=>'L', 920311716=>'L', 920411717=>'L', 920511718=>'L', 920611720=>'L', 920711721=>'L', 920811722=>'L', 920911723=>'L', 921011724=>'L', 921111725=>'L', 921211726=>'L', 921311728=>'L', 921411729=>'L', 921511730=>'L', 921611731=>'L', 921711732=>'L', 921811733=>'L', 921911734=>'L', 922011736=>'L', 922111737=>'L', 922211738=>'L', 922311739=>'L', 922411740=>'L', 922511741=>'L', 922611742=>'L', 922711776=>'ON', 922811777=>'ON', 922911778=>'ON', 923011779=>'ON', 923111780=>'ON', 923211781=>'ON', 923311782=>'ON', 923411783=>'ON', 923511784=>'ON', 923611785=>'ON', 923711786=>'ON', 923811787=>'ON', 923911788=>'ON', 924011789=>'ON', 924111790=>'ON', 924211791=>'ON', 924311792=>'ON', 924411793=>'ON', 924511794=>'ON', 924611795=>'ON', 924711796=>'ON', 924811797=>'ON', 924911798=>'ON', 925011799=>'ON', 925111804=>'ON', 925211805=>'ON', 925311904=>'ON', 925411905=>'ON', 925511906=>'ON', 925611907=>'ON', 925711908=>'ON', 925811909=>'ON', 925911910=>'ON', 926011911=>'ON', 926111912=>'ON', 926211913=>'ON', 926311914=>'ON', 926411915=>'ON', 926511916=>'ON', 926611917=>'ON', 926711918=>'ON', 926811919=>'ON', 926911920=>'ON', 927011921=>'ON', 927111922=>'ON', 927211923=>'ON', 927311924=>'ON', 927411925=>'ON', 927511926=>'ON', 927611927=>'ON', 927711928=>'ON', 927811929=>'ON', 927911931=>'ON', 928011932=>'ON', 928111933=>'ON', 928211934=>'ON', 928311935=>'ON', 928411936=>'ON', 928511937=>'ON', 928611938=>'ON', 928711939=>'ON', 928811940=>'ON', 928911941=>'ON', 929011942=>'ON', 929111943=>'ON', 929211944=>'ON', 929311945=>'ON', 929411946=>'ON', 929511947=>'ON', 929611948=>'ON', 929711949=>'ON', 929811950=>'ON', 929911951=>'ON', 930011952=>'ON', 930111953=>'ON', 930211954=>'ON', 930311955=>'ON', 930411956=>'ON', 930511957=>'ON', 930611958=>'ON', 930711959=>'ON', 930811960=>'ON', 930911961=>'ON', 931011962=>'ON', 931111963=>'ON', 931211964=>'ON', 931311965=>'ON', 931411966=>'ON', 931511967=>'ON', 931611968=>'ON', 931711969=>'ON', 931811970=>'ON', 931911971=>'ON', 932011972=>'ON', 932111973=>'ON', 932211974=>'ON', 932311975=>'ON', 932411976=>'ON', 932511977=>'ON', 932611978=>'ON', 932711979=>'ON', 932811980=>'ON', 932911981=>'ON', 933011982=>'ON', 933111983=>'ON', 933211984=>'ON', 933311985=>'ON', 933411986=>'ON', 933511987=>'ON', 933611988=>'ON', 933711989=>'ON', 933811990=>'ON', 933911991=>'ON', 934011992=>'ON', 934111993=>'ON', 934211994=>'ON', 934311995=>'ON', 934411996=>'ON', 934511997=>'ON', 934611998=>'ON', 934711999=>'ON', 934812000=>'ON', 934912001=>'ON', 935012002=>'ON', 935112003=>'ON', 935212004=>'ON', 935312005=>'ON', 935412006=>'ON', 935512007=>'ON', 935612008=>'ON', 935712009=>'ON', 935812010=>'ON', 935912011=>'ON', 936012012=>'ON', 936112013=>'ON', 936212014=>'ON', 936312015=>'ON', 936412016=>'ON', 936512017=>'ON', 936612018=>'ON', 936712019=>'ON', 936812032=>'ON', 936912033=>'ON', 937012034=>'ON', 937112035=>'ON', 937212036=>'ON', 937312037=>'ON', 937412038=>'ON', 937512039=>'ON', 937612040=>'ON', 937712041=>'ON', 937812042=>'ON', 937912043=>'ON', 938012044=>'ON', 938112045=>'ON', 938212046=>'ON', 938312047=>'ON', 938412048=>'ON', 938512049=>'ON', 938612050=>'ON', 938712051=>'ON', 938812052=>'ON', 938912053=>'ON', 939012054=>'ON', 939112055=>'ON', 939212056=>'ON', 939312057=>'ON', 939412058=>'ON', 939512059=>'ON', 939612060=>'ON', 939712061=>'ON', 939812062=>'ON', 939912063=>'ON', 940012064=>'ON', 940112065=>'ON', 940212066=>'ON', 940312067=>'ON', 940412068=>'ON', 940512069=>'ON', 940612070=>'ON', 940712071=>'ON', 940812072=>'ON', 940912073=>'ON', 941012074=>'ON', 941112075=>'ON', 941212076=>'ON', 941312077=>'ON', 941412078=>'ON', 941512079=>'ON', 941612080=>'ON', 941712081=>'ON', 941812082=>'ON', 941912083=>'ON', 942012084=>'ON', 942112085=>'ON', 942212086=>'ON', 942312087=>'ON', 942412088=>'ON', 942512089=>'ON', 942612090=>'ON', 942712091=>'ON', 942812092=>'ON', 942912093=>'ON', 943012094=>'ON', 943112095=>'ON', 943212096=>'ON', 943312097=>'ON', 943412098=>'ON', 943512099=>'ON', 943612100=>'ON', 943712101=>'ON', 943812102=>'ON', 943912103=>'ON', 944012104=>'ON', 944112105=>'ON', 944212106=>'ON', 944312107=>'ON', 944412108=>'ON', 944512109=>'ON', 944612110=>'ON', 944712111=>'ON', 944812112=>'ON', 944912113=>'ON', 945012114=>'ON', 945112115=>'ON', 945212116=>'ON', 945312117=>'ON', 945412118=>'ON', 945512119=>'ON', 945612120=>'ON', 945712121=>'ON', 945812122=>'ON', 945912123=>'ON', 946012124=>'ON', 946112125=>'ON', 946212126=>'ON', 946312127=>'ON', 946412128=>'ON', 946512129=>'ON', 946612130=>'ON', 946712131=>'ON', 946812132=>'ON', 946912133=>'ON', 947012134=>'ON', 947112135=>'ON', 947212136=>'ON', 947312137=>'ON', 947412138=>'ON', 947512139=>'ON', 947612140=>'ON', 947712141=>'ON', 947812142=>'ON', 947912143=>'ON', 948012144=>'ON', 948112145=>'ON', 948212146=>'ON', 948312147=>'ON', 948412148=>'ON', 948512149=>'ON', 948612150=>'ON', 948712151=>'ON', 948812152=>'ON', 948912153=>'ON', 949012154=>'ON', 949112155=>'ON', 949212156=>'ON', 949312157=>'ON', 949412158=>'ON', 949512159=>'ON', 949612160=>'ON', 949712161=>'ON', 949812162=>'ON', 949912163=>'ON', 950012164=>'ON', 950112165=>'ON', 950212166=>'ON', 950312167=>'ON', 950412168=>'ON', 950512169=>'ON', 950612170=>'ON', 950712171=>'ON', 950812172=>'ON', 950912173=>'ON', 951012174=>'ON', 951112175=>'ON', 951212176=>'ON', 951312177=>'ON', 951412178=>'ON', 951512179=>'ON', 951612180=>'ON', 951712181=>'ON', 951812182=>'ON', 951912183=>'ON', 952012184=>'ON', 952112185=>'ON', 952212186=>'ON', 952312187=>'ON', 952412188=>'ON', 952512189=>'ON', 952612190=>'ON', 952712191=>'ON', 952812192=>'ON', 952912193=>'ON', 953012194=>'ON', 953112195=>'ON', 953212196=>'ON', 953312197=>'ON', 953412198=>'ON', 953512199=>'ON', 953612200=>'ON', 953712201=>'ON', 953812202=>'ON', 953912203=>'ON', 954012204=>'ON', 954112205=>'ON', 954212206=>'ON', 954312207=>'ON', 954412208=>'ON', 954512209=>'ON', 954612210=>'ON', 954712211=>'ON', 954812212=>'ON', 954912213=>'ON', 955012214=>'ON', 955112215=>'ON', 955212216=>'ON', 955312217=>'ON', 955412218=>'ON', 955512219=>'ON', 955612220=>'ON', 955712221=>'ON', 955812222=>'ON', 955912223=>'ON', 956012224=>'ON', 956112225=>'ON', 956212226=>'ON', 956312227=>'ON', 956412228=>'ON', 956512229=>'ON', 956612230=>'ON', 956712231=>'ON', 956812232=>'ON', 956912233=>'ON', 957012234=>'ON', 957112235=>'ON', 957212236=>'ON', 957312237=>'ON', 957412238=>'ON', 957512239=>'ON', 957612240=>'ON', 957712241=>'ON', 957812242=>'ON', 957912243=>'ON', 958012244=>'ON', 958112245=>'ON', 958212272=>'ON', 958312273=>'ON', 958412274=>'ON', 958512275=>'ON', 958612276=>'ON', 958712277=>'ON', 958812278=>'ON', 958912279=>'ON', 959012280=>'ON', 959112281=>'ON', 959212282=>'ON', 959312283=>'ON', 959412288=>'WS', 959512289=>'ON', 959612290=>'ON', 959712291=>'ON', 959812292=>'ON', 959912293=>'L', 960012294=>'L', 960112295=>'L', 960212296=>'ON', 960312297=>'ON', 960412298=>'ON', 960512299=>'ON', 960612300=>'ON', 960712301=>'ON', 960812302=>'ON', 960912303=>'ON', 961012304=>'ON', 961112305=>'ON', 961212306=>'ON', 961312307=>'ON', 961412308=>'ON', 961512309=>'ON', 961612310=>'ON', 961712311=>'ON', 961812312=>'ON', 961912313=>'ON', 962012314=>'ON', 962112315=>'ON', 962212316=>'ON', 962312317=>'ON', 962412318=>'ON', 962512319=>'ON', 962612320=>'ON', 962712321=>'L', 962812322=>'L', 962912323=>'L', 963012324=>'L', 963112325=>'L', 963212326=>'L', 963312327=>'L', 963412328=>'L', 963512329=>'L', 963612330=>'NSM', 963712331=>'NSM', 963812332=>'NSM', 963912333=>'NSM', 964012334=>'NSM', 964112335=>'NSM', 964212336=>'ON', 964312337=>'L', 964412338=>'L', 964512339=>'L', 964612340=>'L', 964712341=>'L', 964812342=>'ON', 964912343=>'ON', 965012344=>'L', 965112345=>'L', 965212346=>'L', 965312347=>'L', 965412348=>'L', 965512349=>'ON', 965612350=>'ON', 965712351=>'ON', 965812353=>'L', 965912354=>'L', 966012355=>'L', 966112356=>'L', 966212357=>'L', 966312358=>'L', 966412359=>'L', 966512360=>'L', 966612361=>'L', 966712362=>'L', 966812363=>'L', 966912364=>'L', 967012365=>'L', 967112366=>'L', 967212367=>'L', 967312368=>'L', 967412369=>'L', 967512370=>'L', 967612371=>'L', 967712372=>'L', 967812373=>'L', 967912374=>'L', 968012375=>'L', 968112376=>'L', 968212377=>'L', 968312378=>'L', 968412379=>'L', 968512380=>'L', 968612381=>'L', 968712382=>'L', 968812383=>'L', 968912384=>'L', 969012385=>'L', 969112386=>'L', 969212387=>'L', 969312388=>'L', 969412389=>'L', 969512390=>'L', 969612391=>'L', 969712392=>'L', 969812393=>'L', 969912394=>'L', 970012395=>'L', 970112396=>'L', 970212397=>'L', 970312398=>'L', 970412399=>'L', 970512400=>'L', 970612401=>'L', 970712402=>'L', 970812403=>'L', 970912404=>'L', 971012405=>'L', 971112406=>'L', 971212407=>'L', 971312408=>'L', 971412409=>'L', 971512410=>'L', 971612411=>'L', 971712412=>'L', 971812413=>'L', 971912414=>'L', 972012415=>'L', 972112416=>'L', 972212417=>'L', 972312418=>'L', 972412419=>'L', 972512420=>'L', 972612421=>'L', 972712422=>'L', 972812423=>'L', 972912424=>'L', 973012425=>'L', 973112426=>'L', 973212427=>'L', 973312428=>'L', 973412429=>'L', 973512430=>'L', 973612431=>'L', 973712432=>'L', 973812433=>'L', 973912434=>'L', 974012435=>'L', 974112436=>'L', 974212437=>'L', 974312438=>'L', 974412441=>'NSM', 974512442=>'NSM', 974612443=>'ON', 974712444=>'ON', 974812445=>'L', 974912446=>'L', 975012447=>'L', 975112448=>'ON', 975212449=>'L', 975312450=>'L', 975412451=>'L', 975512452=>'L', 975612453=>'L', 975712454=>'L', 975812455=>'L', 975912456=>'L', 976012457=>'L', 976112458=>'L', 976212459=>'L', 976312460=>'L', 976412461=>'L', 976512462=>'L', 976612463=>'L', 976712464=>'L', 976812465=>'L', 976912466=>'L', 977012467=>'L', 977112468=>'L', 977212469=>'L', 977312470=>'L', 977412471=>'L', 977512472=>'L', 977612473=>'L', 977712474=>'L', 977812475=>'L', 977912476=>'L', 978012477=>'L', 978112478=>'L', 978212479=>'L', 978312480=>'L', 978412481=>'L', 978512482=>'L', 978612483=>'L', 978712484=>'L', 978812485=>'L', 978912486=>'L', 979012487=>'L', 979112488=>'L', 979212489=>'L', 979312490=>'L', 979412491=>'L', 979512492=>'L', 979612493=>'L', 979712494=>'L', 979812495=>'L', 979912496=>'L', 980012497=>'L', 980112498=>'L', 980212499=>'L', 980312500=>'L', 980412501=>'L', 980512502=>'L', 980612503=>'L', 980712504=>'L', 980812505=>'L', 980912506=>'L', 981012507=>'L', 981112508=>'L', 981212509=>'L', 981312510=>'L', 981412511=>'L', 981512512=>'L', 981612513=>'L', 981712514=>'L', 981812515=>'L', 981912516=>'L', 982012517=>'L', 982112518=>'L', 982212519=>'L', 982312520=>'L', 982412521=>'L', 982512522=>'L', 982612523=>'L', 982712524=>'L', 982812525=>'L', 982912526=>'L', 983012527=>'L', 983112528=>'L', 983212529=>'L', 983312530=>'L', 983412531=>'L', 983512532=>'L', 983612533=>'L', 983712534=>'L', 983812535=>'L', 983912536=>'L', 984012537=>'L', 984112538=>'L', 984212539=>'ON', 984312540=>'L', 984412541=>'L', 984512542=>'L', 984612543=>'L', 984712549=>'L', 984812550=>'L', 984912551=>'L', 985012552=>'L', 985112553=>'L', 985212554=>'L', 985312555=>'L', 985412556=>'L', 985512557=>'L', 985612558=>'L', 985712559=>'L', 985812560=>'L', 985912561=>'L', 986012562=>'L', 986112563=>'L', 986212564=>'L', 986312565=>'L', 986412566=>'L', 986512567=>'L', 986612568=>'L', 986712569=>'L', 986812570=>'L', 986912571=>'L', 987012572=>'L', 987112573=>'L', 987212574=>'L', 987312575=>'L', 987412576=>'L', 987512577=>'L', 987612578=>'L', 987712579=>'L', 987812580=>'L', 987912581=>'L', 988012582=>'L', 988112583=>'L', 988212584=>'L', 988312585=>'L', 988412586=>'L', 988512587=>'L', 988612588=>'L', 988712593=>'L', 988812594=>'L', 988912595=>'L', 989012596=>'L', 989112597=>'L', 989212598=>'L', 989312599=>'L', 989412600=>'L', 989512601=>'L', 989612602=>'L', 989712603=>'L', 989812604=>'L', 989912605=>'L', 990012606=>'L', 990112607=>'L', 990212608=>'L', 990312609=>'L', 990412610=>'L', 990512611=>'L', 990612612=>'L', 990712613=>'L', 990812614=>'L', 990912615=>'L', 991012616=>'L', 991112617=>'L', 991212618=>'L', 991312619=>'L', 991412620=>'L', 991512621=>'L', 991612622=>'L', 991712623=>'L', 991812624=>'L', 991912625=>'L', 992012626=>'L', 992112627=>'L', 992212628=>'L', 992312629=>'L', 992412630=>'L', 992512631=>'L', 992612632=>'L', 992712633=>'L', 992812634=>'L', 992912635=>'L', 993012636=>'L', 993112637=>'L', 993212638=>'L', 993312639=>'L', 993412640=>'L', 993512641=>'L', 993612642=>'L', 993712643=>'L', 993812644=>'L', 993912645=>'L', 994012646=>'L', 994112647=>'L', 994212648=>'L', 994312649=>'L', 994412650=>'L', 994512651=>'L', 994612652=>'L', 994712653=>'L', 994812654=>'L', 994912655=>'L', 995012656=>'L', 995112657=>'L', 995212658=>'L', 995312659=>'L', 995412660=>'L', 995512661=>'L', 995612662=>'L', 995712663=>'L', 995812664=>'L', 995912665=>'L', 996012666=>'L', 996112667=>'L', 996212668=>'L', 996312669=>'L', 996412670=>'L', 996512671=>'L', 996612672=>'L', 996712673=>'L', 996812674=>'L', 996912675=>'L', 997012676=>'L', 997112677=>'L', 997212678=>'L', 997312679=>'L', 997412680=>'L', 997512681=>'L', 997612682=>'L', 997712683=>'L', 997812684=>'L', 997912685=>'L', 998012686=>'L', 998112688=>'L', 998212689=>'L', 998312690=>'L', 998412691=>'L', 998512692=>'L', 998612693=>'L', 998712694=>'L', 998812695=>'L', 998912696=>'L', 999012697=>'L', 999112698=>'L', 999212699=>'L', 999312700=>'L', 999412701=>'L', 999512702=>'L', 999612703=>'L', 999712704=>'L', 999812705=>'L', 999912706=>'L', 1000012707=>'L', 1000112708=>'L', 1000212709=>'L', 1000312710=>'L', 1000412711=>'L', 1000512712=>'L', 1000612713=>'L', 1000712714=>'L', 1000812715=>'L', 1000912716=>'L', 1001012717=>'L', 1001112718=>'L', 1001212719=>'L', 1001312720=>'L', 1001412721=>'L', 1001512722=>'L', 1001612723=>'L', 1001712724=>'L', 1001812725=>'L', 1001912726=>'L', 1002012727=>'L', 1002112736=>'ON', 1002212737=>'ON', 1002312738=>'ON', 1002412739=>'ON', 1002512740=>'ON', 1002612741=>'ON', 1002712742=>'ON', 1002812743=>'ON', 1002912744=>'ON', 1003012745=>'ON', 1003112746=>'ON', 1003212747=>'ON', 1003312748=>'ON', 1003412749=>'ON', 1003512750=>'ON', 1003612751=>'ON', 1003712784=>'L', 1003812785=>'L', 1003912786=>'L', 1004012787=>'L', 1004112788=>'L', 1004212789=>'L', 1004312790=>'L', 1004412791=>'L', 1004512792=>'L', 1004612793=>'L', 1004712794=>'L', 1004812795=>'L', 1004912796=>'L', 1005012797=>'L', 1005112798=>'L', 1005212799=>'L', 1005312800=>'L', 1005412801=>'L', 1005512802=>'L', 1005612803=>'L', 1005712804=>'L', 1005812805=>'L', 1005912806=>'L', 1006012807=>'L', 1006112808=>'L', 1006212809=>'L', 1006312810=>'L', 1006412811=>'L', 1006512812=>'L', 1006612813=>'L', 1006712814=>'L', 1006812815=>'L', 1006912816=>'L', 1007012817=>'L', 1007112818=>'L', 1007212819=>'L', 1007312820=>'L', 1007412821=>'L', 1007512822=>'L', 1007612823=>'L', 1007712824=>'L', 1007812825=>'L', 1007912826=>'L', 1008012827=>'L', 1008112828=>'L', 1008212829=>'ON', 1008312830=>'ON', 1008412832=>'L', 1008512833=>'L', 1008612834=>'L', 1008712835=>'L', 1008812836=>'L', 1008912837=>'L', 1009012838=>'L', 1009112839=>'L', 1009212840=>'L', 1009312841=>'L', 1009412842=>'L', 1009512843=>'L', 1009612844=>'L', 1009712845=>'L', 1009812846=>'L', 1009912847=>'L', 1010012848=>'L', 1010112849=>'L', 1010212850=>'L', 1010312851=>'L', 1010412852=>'L', 1010512853=>'L', 1010612854=>'L', 1010712855=>'L', 1010812856=>'L', 1010912857=>'L', 1011012858=>'L', 1011112859=>'L', 1011212860=>'L', 1011312861=>'L', 1011412862=>'L', 1011512863=>'L', 1011612864=>'L', 1011712865=>'L', 1011812866=>'L', 1011912867=>'L', 1012012880=>'ON', 1012112881=>'ON', 1012212882=>'ON', 1012312883=>'ON', 1012412884=>'ON', 1012512885=>'ON', 1012612886=>'ON', 1012712887=>'ON', 1012812888=>'ON', 1012912889=>'ON', 1013012890=>'ON', 1013112891=>'ON', 1013212892=>'ON', 1013312893=>'ON', 1013412894=>'ON', 1013512895=>'ON', 1013612896=>'L', 1013712897=>'L', 1013812898=>'L', 1013912899=>'L', 1014012900=>'L', 1014112901=>'L', 1014212902=>'L', 1014312903=>'L', 1014412904=>'L', 1014512905=>'L', 1014612906=>'L', 1014712907=>'L', 1014812908=>'L', 1014912909=>'L', 1015012910=>'L', 1015112911=>'L', 1015212912=>'L', 1015312913=>'L', 1015412914=>'L', 1015512915=>'L', 1015612916=>'L', 1015712917=>'L', 1015812918=>'L', 1015912919=>'L', 1016012920=>'L', 1016112921=>'L', 1016212922=>'L', 1016312923=>'L', 1016412924=>'ON', 1016512925=>'ON', 1016612926=>'ON', 1016712927=>'L', 1016812928=>'L', 1016912929=>'L', 1017012930=>'L', 1017112931=>'L', 1017212932=>'L', 1017312933=>'L', 1017412934=>'L', 1017512935=>'L', 1017612936=>'L', 1017712937=>'L', 1017812938=>'L', 1017912939=>'L', 1018012940=>'L', 1018112941=>'L', 1018212942=>'L', 1018312943=>'L', 1018412944=>'L', 1018512945=>'L', 1018612946=>'L', 1018712947=>'L', 1018812948=>'L', 1018912949=>'L', 1019012950=>'L', 1019112951=>'L', 1019212952=>'L', 1019312953=>'L', 1019412954=>'L', 1019512955=>'L', 1019612956=>'L', 1019712957=>'L', 1019812958=>'L', 1019912959=>'L', 1020012960=>'L', 1020112961=>'L', 1020212962=>'L', 1020312963=>'L', 1020412964=>'L', 1020512965=>'L', 1020612966=>'L', 1020712967=>'L', 1020812968=>'L', 1020912969=>'L', 1021012970=>'L', 1021112971=>'L', 1021212972=>'L', 1021312973=>'L', 1021412974=>'L', 1021512975=>'L', 1021612976=>'L', 1021712977=>'ON', 1021812978=>'ON', 1021912979=>'ON', 1022012980=>'ON', 1022112981=>'ON', 1022212982=>'ON', 1022312983=>'ON', 1022412984=>'ON', 1022512985=>'ON', 1022612986=>'ON', 1022712987=>'ON', 1022812988=>'ON', 1022912989=>'ON', 1023012990=>'ON', 1023112991=>'ON', 1023212992=>'L', 1023312993=>'L', 1023412994=>'L', 1023512995=>'L', 1023612996=>'L', 1023712997=>'L', 1023812998=>'L', 1023912999=>'L', 1024013000=>'L', 1024113001=>'L', 1024213002=>'L', 1024313003=>'L', 1024413004=>'ON', 1024513005=>'ON', 1024613006=>'ON', 1024713007=>'ON', 1024813008=>'L', 1024913009=>'L', 1025013010=>'L', 1025113011=>'L', 1025213012=>'L', 1025313013=>'L', 1025413014=>'L', 1025513015=>'L', 1025613016=>'L', 1025713017=>'L', 1025813018=>'L', 1025913019=>'L', 1026013020=>'L', 1026113021=>'L', 1026213022=>'L', 1026313023=>'L', 1026413024=>'L', 1026513025=>'L', 1026613026=>'L', 1026713027=>'L', 1026813028=>'L', 1026913029=>'L', 1027013030=>'L', 1027113031=>'L', 1027213032=>'L', 1027313033=>'L', 1027413034=>'L', 1027513035=>'L', 1027613036=>'L', 1027713037=>'L', 1027813038=>'L', 1027913039=>'L', 1028013040=>'L', 1028113041=>'L', 1028213042=>'L', 1028313043=>'L', 1028413044=>'L', 1028513045=>'L', 1028613046=>'L', 1028713047=>'L', 1028813048=>'L', 1028913049=>'L', 1029013050=>'L', 1029113051=>'L', 1029213052=>'L', 1029313053=>'L', 1029413054=>'L', 1029513056=>'L', 1029613057=>'L', 1029713058=>'L', 1029813059=>'L', 1029913060=>'L', 1030013061=>'L', 1030113062=>'L', 1030213063=>'L', 1030313064=>'L', 1030413065=>'L', 1030513066=>'L', 1030613067=>'L', 1030713068=>'L', 1030813069=>'L', 1030913070=>'L', 1031013071=>'L', 1031113072=>'L', 1031213073=>'L', 1031313074=>'L', 1031413075=>'L', 1031513076=>'L', 1031613077=>'L', 1031713078=>'L', 1031813079=>'L', 1031913080=>'L', 1032013081=>'L', 1032113082=>'L', 1032213083=>'L', 1032313084=>'L', 1032413085=>'L', 1032513086=>'L', 1032613087=>'L', 1032713088=>'L', 1032813089=>'L', 1032913090=>'L', 1033013091=>'L', 1033113092=>'L', 1033213093=>'L', 1033313094=>'L', 1033413095=>'L', 1033513096=>'L', 1033613097=>'L', 1033713098=>'L', 1033813099=>'L', 1033913100=>'L', 1034013101=>'L', 1034113102=>'L', 1034213103=>'L', 1034313104=>'L', 1034413105=>'L', 1034513106=>'L', 1034613107=>'L', 1034713108=>'L', 1034813109=>'L', 1034913110=>'L', 1035013111=>'L', 1035113112=>'L', 1035213113=>'L', 1035313114=>'L', 1035413115=>'L', 1035513116=>'L', 1035613117=>'L', 1035713118=>'L', 1035813119=>'L', 1035913120=>'L', 1036013121=>'L', 1036113122=>'L', 1036213123=>'L', 1036313124=>'L', 1036413125=>'L', 1036513126=>'L', 1036613127=>'L', 1036713128=>'L', 1036813129=>'L', 1036913130=>'L', 1037013131=>'L', 1037113132=>'L', 1037213133=>'L', 1037313134=>'L', 1037413135=>'L', 1037513136=>'L', 1037613137=>'L', 1037713138=>'L', 1037813139=>'L', 1037913140=>'L', 1038013141=>'L', 1038113142=>'L', 1038213143=>'L', 1038313144=>'L', 1038413145=>'L', 1038513146=>'L', 1038613147=>'L', 1038713148=>'L', 1038813149=>'L', 1038913150=>'L', 1039013151=>'L', 1039113152=>'L', 1039213153=>'L', 1039313154=>'L', 1039413155=>'L', 1039513156=>'L', 1039613157=>'L', 1039713158=>'L', 1039813159=>'L', 1039913160=>'L', 1040013161=>'L', 1040113162=>'L', 1040213163=>'L', 1040313164=>'L', 1040413165=>'L', 1040513166=>'L', 1040613167=>'L', 1040713168=>'L', 1040813169=>'L', 1040913170=>'L', 1041013171=>'L', 1041113172=>'L', 1041213173=>'L', 1041313174=>'L', 1041413175=>'ON', 1041513176=>'ON', 1041613177=>'ON', 1041713178=>'ON', 1041813179=>'L', 1041913180=>'L', 1042013181=>'L', 1042113182=>'L', 1042213183=>'L', 1042313184=>'L', 1042413185=>'L', 1042513186=>'L', 1042613187=>'L', 1042713188=>'L', 1042813189=>'L', 1042913190=>'L', 1043013191=>'L', 1043113192=>'L', 1043213193=>'L', 1043313194=>'L', 1043413195=>'L', 1043513196=>'L', 1043613197=>'L', 1043713198=>'L', 1043813199=>'L', 1043913200=>'L', 1044013201=>'L', 1044113202=>'L', 1044213203=>'L', 1044313204=>'L', 1044413205=>'L', 1044513206=>'L', 1044613207=>'L', 1044713208=>'L', 1044813209=>'L', 1044913210=>'L', 1045013211=>'L', 1045113212=>'L', 1045213213=>'L', 1045313214=>'L', 1045413215=>'L', 1045513216=>'L', 1045613217=>'L', 1045713218=>'L', 1045813219=>'L', 1045913220=>'L', 1046013221=>'L', 1046113222=>'L', 1046213223=>'L', 1046313224=>'L', 1046413225=>'L', 1046513226=>'L', 1046613227=>'L', 1046713228=>'L', 1046813229=>'L', 1046913230=>'L', 1047013231=>'L', 1047113232=>'L', 1047213233=>'L', 1047313234=>'L', 1047413235=>'L', 1047513236=>'L', 1047613237=>'L', 1047713238=>'L', 1047813239=>'L', 1047913240=>'L', 1048013241=>'L', 1048113242=>'L', 1048213243=>'L', 1048313244=>'L', 1048413245=>'L', 1048513246=>'L', 1048613247=>'L', 1048713248=>'L', 1048813249=>'L', 1048913250=>'L', 1049013251=>'L', 1049113252=>'L', 1049213253=>'L', 1049313254=>'L', 1049413255=>'L', 1049513256=>'L', 1049613257=>'L', 1049713258=>'L', 1049813259=>'L', 1049913260=>'L', 1050013261=>'L', 1050113262=>'L', 1050213263=>'L', 1050313264=>'L', 1050413265=>'L', 1050513266=>'L', 1050613267=>'L', 1050713268=>'L', 1050813269=>'L', 1050913270=>'L', 1051013271=>'L', 1051113272=>'L', 1051213273=>'L', 1051313274=>'L', 1051413275=>'L', 1051513276=>'L', 1051613277=>'L', 1051713278=>'ON', 1051813279=>'ON', 1051913280=>'L', 1052013281=>'L', 1052113282=>'L', 1052213283=>'L', 1052313284=>'L', 1052413285=>'L', 1052513286=>'L', 1052613287=>'L', 1052713288=>'L', 1052813289=>'L', 1052913290=>'L', 1053013291=>'L', 1053113292=>'L', 1053213293=>'L', 1053313294=>'L', 1053413295=>'L', 1053513296=>'L', 1053613297=>'L', 1053713298=>'L', 1053813299=>'L', 1053913300=>'L', 1054013301=>'L', 1054113302=>'L', 1054213303=>'L', 1054313304=>'L', 1054413305=>'L', 1054513306=>'L', 1054613307=>'L', 1054713308=>'L', 1054813309=>'L', 1054913310=>'L', 1055013311=>'ON', 1055113312=>'L', 1055219893=>'L', 1055319904=>'ON', 1055419905=>'ON', 1055519906=>'ON', 1055619907=>'ON', 1055719908=>'ON', 1055819909=>'ON', 1055919910=>'ON', 1056019911=>'ON', 1056119912=>'ON', 1056219913=>'ON', 1056319914=>'ON', 1056419915=>'ON', 1056519916=>'ON', 1056619917=>'ON', 1056719918=>'ON', 1056819919=>'ON', 1056919920=>'ON', 1057019921=>'ON', 1057119922=>'ON', 1057219923=>'ON', 1057319924=>'ON', 1057419925=>'ON', 1057519926=>'ON', 1057619927=>'ON', 1057719928=>'ON', 1057819929=>'ON', 1057919930=>'ON', 1058019931=>'ON', 1058119932=>'ON', 1058219933=>'ON', 1058319934=>'ON', 1058419935=>'ON', 1058519936=>'ON', 1058619937=>'ON', 1058719938=>'ON', 1058819939=>'ON', 1058919940=>'ON', 1059019941=>'ON', 1059119942=>'ON', 1059219943=>'ON', 1059319944=>'ON', 1059419945=>'ON', 1059519946=>'ON', 1059619947=>'ON', 1059719948=>'ON', 1059819949=>'ON', 1059919950=>'ON', 1060019951=>'ON', 1060119952=>'ON', 1060219953=>'ON', 1060319954=>'ON', 1060419955=>'ON', 1060519956=>'ON', 1060619957=>'ON', 1060719958=>'ON', 1060819959=>'ON', 1060919960=>'ON', 1061019961=>'ON', 1061119962=>'ON', 1061219963=>'ON', 1061319964=>'ON', 1061419965=>'ON', 1061519966=>'ON', 1061619967=>'ON', 1061719968=>'L', 1061840891=>'L', 1061940960=>'L', 1062040961=>'L', 1062140962=>'L', 1062240963=>'L', 1062340964=>'L', 1062440965=>'L', 1062540966=>'L', 1062640967=>'L', 1062740968=>'L', 1062840969=>'L', 1062940970=>'L', 1063040971=>'L', 1063140972=>'L', 1063240973=>'L', 1063340974=>'L', 1063440975=>'L', 1063540976=>'L', 1063640977=>'L', 1063740978=>'L', 1063840979=>'L', 1063940980=>'L', 1064040981=>'L', 1064140982=>'L', 1064240983=>'L', 1064340984=>'L', 1064440985=>'L', 1064540986=>'L', 1064640987=>'L', 1064740988=>'L', 1064840989=>'L', 1064940990=>'L', 1065040991=>'L', 1065140992=>'L', 1065240993=>'L', 1065340994=>'L', 1065440995=>'L', 1065540996=>'L', 1065640997=>'L', 1065740998=>'L', 1065840999=>'L', 1065941000=>'L', 1066041001=>'L', 1066141002=>'L', 1066241003=>'L', 1066341004=>'L', 1066441005=>'L', 1066541006=>'L', 1066641007=>'L', 1066741008=>'L', 1066841009=>'L', 1066941010=>'L', 1067041011=>'L', 1067141012=>'L', 1067241013=>'L', 1067341014=>'L', 1067441015=>'L', 1067541016=>'L', 1067641017=>'L', 1067741018=>'L', 1067841019=>'L', 1067941020=>'L', 1068041021=>'L', 1068141022=>'L', 1068241023=>'L', 1068341024=>'L', 1068441025=>'L', 1068541026=>'L', 1068641027=>'L', 1068741028=>'L', 1068841029=>'L', 1068941030=>'L', 1069041031=>'L', 1069141032=>'L', 1069241033=>'L', 1069341034=>'L', 1069441035=>'L', 1069541036=>'L', 1069641037=>'L', 1069741038=>'L', 1069841039=>'L', 1069941040=>'L', 1070041041=>'L', 1070141042=>'L', 1070241043=>'L', 1070341044=>'L', 1070441045=>'L', 1070541046=>'L', 1070641047=>'L', 1070741048=>'L', 1070841049=>'L', 1070941050=>'L', 1071041051=>'L', 1071141052=>'L', 1071241053=>'L', 1071341054=>'L', 1071441055=>'L', 1071541056=>'L', 1071641057=>'L', 1071741058=>'L', 1071841059=>'L', 1071941060=>'L', 1072041061=>'L', 1072141062=>'L', 1072241063=>'L', 1072341064=>'L', 1072441065=>'L', 1072541066=>'L', 1072641067=>'L', 1072741068=>'L', 1072841069=>'L', 1072941070=>'L', 1073041071=>'L', 1073141072=>'L', 1073241073=>'L', 1073341074=>'L', 1073441075=>'L', 1073541076=>'L', 1073641077=>'L', 1073741078=>'L', 1073841079=>'L', 1073941080=>'L', 1074041081=>'L', 1074141082=>'L', 1074241083=>'L', 1074341084=>'L', 1074441085=>'L', 1074541086=>'L', 1074641087=>'L', 1074741088=>'L', 1074841089=>'L', 1074941090=>'L', 1075041091=>'L', 1075141092=>'L', 1075241093=>'L', 1075341094=>'L', 1075441095=>'L', 1075541096=>'L', 1075641097=>'L', 1075741098=>'L', 1075841099=>'L', 1075941100=>'L', 1076041101=>'L', 1076141102=>'L', 1076241103=>'L', 1076341104=>'L', 1076441105=>'L', 1076541106=>'L', 1076641107=>'L', 1076741108=>'L', 1076841109=>'L', 1076941110=>'L', 1077041111=>'L', 1077141112=>'L', 1077241113=>'L', 1077341114=>'L', 1077441115=>'L', 1077541116=>'L', 1077641117=>'L', 1077741118=>'L', 1077841119=>'L', 1077941120=>'L', 1078041121=>'L', 1078141122=>'L', 1078241123=>'L', 1078341124=>'L', 1078441125=>'L', 1078541126=>'L', 1078641127=>'L', 1078741128=>'L', 1078841129=>'L', 1078941130=>'L', 1079041131=>'L', 1079141132=>'L', 1079241133=>'L', 1079341134=>'L', 1079441135=>'L', 1079541136=>'L', 1079641137=>'L', 1079741138=>'L', 1079841139=>'L', 1079941140=>'L', 1080041141=>'L', 1080141142=>'L', 1080241143=>'L', 1080341144=>'L', 1080441145=>'L', 1080541146=>'L', 1080641147=>'L', 1080741148=>'L', 1080841149=>'L', 1080941150=>'L', 1081041151=>'L', 1081141152=>'L', 1081241153=>'L', 1081341154=>'L', 1081441155=>'L', 1081541156=>'L', 1081641157=>'L', 1081741158=>'L', 1081841159=>'L', 1081941160=>'L', 1082041161=>'L', 1082141162=>'L', 1082241163=>'L', 1082341164=>'L', 1082441165=>'L', 1082541166=>'L', 1082641167=>'L', 1082741168=>'L', 1082841169=>'L', 1082941170=>'L', 1083041171=>'L', 1083141172=>'L', 1083241173=>'L', 1083341174=>'L', 1083441175=>'L', 1083541176=>'L', 1083641177=>'L', 1083741178=>'L', 1083841179=>'L', 1083941180=>'L', 1084041181=>'L', 1084141182=>'L', 1084241183=>'L', 1084341184=>'L', 1084441185=>'L', 1084541186=>'L', 1084641187=>'L', 1084741188=>'L', 1084841189=>'L', 1084941190=>'L', 1085041191=>'L', 1085141192=>'L', 1085241193=>'L', 1085341194=>'L', 1085441195=>'L', 1085541196=>'L', 1085641197=>'L', 1085741198=>'L', 1085841199=>'L', 1085941200=>'L', 1086041201=>'L', 1086141202=>'L', 1086241203=>'L', 1086341204=>'L', 1086441205=>'L', 1086541206=>'L', 1086641207=>'L', 1086741208=>'L', 1086841209=>'L', 1086941210=>'L', 1087041211=>'L', 1087141212=>'L', 1087241213=>'L', 1087341214=>'L', 1087441215=>'L', 1087541216=>'L', 1087641217=>'L', 1087741218=>'L', 1087841219=>'L', 1087941220=>'L', 1088041221=>'L', 1088141222=>'L', 1088241223=>'L', 1088341224=>'L', 1088441225=>'L', 1088541226=>'L', 1088641227=>'L', 1088741228=>'L', 1088841229=>'L', 1088941230=>'L', 1089041231=>'L', 1089141232=>'L', 1089241233=>'L', 1089341234=>'L', 1089441235=>'L', 1089541236=>'L', 1089641237=>'L', 1089741238=>'L', 1089841239=>'L', 1089941240=>'L', 1090041241=>'L', 1090141242=>'L', 1090241243=>'L', 1090341244=>'L', 1090441245=>'L', 1090541246=>'L', 1090641247=>'L', 1090741248=>'L', 1090841249=>'L', 1090941250=>'L', 1091041251=>'L', 1091141252=>'L', 1091241253=>'L', 1091341254=>'L', 1091441255=>'L', 1091541256=>'L', 1091641257=>'L', 1091741258=>'L', 1091841259=>'L', 1091941260=>'L', 1092041261=>'L', 1092141262=>'L', 1092241263=>'L', 1092341264=>'L', 1092441265=>'L', 1092541266=>'L', 1092641267=>'L', 1092741268=>'L', 1092841269=>'L', 1092941270=>'L', 1093041271=>'L', 1093141272=>'L', 1093241273=>'L', 1093341274=>'L', 1093441275=>'L', 1093541276=>'L', 1093641277=>'L', 1093741278=>'L', 1093841279=>'L', 1093941280=>'L', 1094041281=>'L', 1094141282=>'L', 1094241283=>'L', 1094341284=>'L', 1094441285=>'L', 1094541286=>'L', 1094641287=>'L', 1094741288=>'L', 1094841289=>'L', 1094941290=>'L', 1095041291=>'L', 1095141292=>'L', 1095241293=>'L', 1095341294=>'L', 1095441295=>'L', 1095541296=>'L', 1095641297=>'L', 1095741298=>'L', 1095841299=>'L', 1095941300=>'L', 1096041301=>'L', 1096141302=>'L', 1096241303=>'L', 1096341304=>'L', 1096441305=>'L', 1096541306=>'L', 1096641307=>'L', 1096741308=>'L', 1096841309=>'L', 1096941310=>'L', 1097041311=>'L', 1097141312=>'L', 1097241313=>'L', 1097341314=>'L', 1097441315=>'L', 1097541316=>'L', 1097641317=>'L', 1097741318=>'L', 1097841319=>'L', 1097941320=>'L', 1098041321=>'L', 1098141322=>'L', 1098241323=>'L', 1098341324=>'L', 1098441325=>'L', 1098541326=>'L', 1098641327=>'L', 1098741328=>'L', 1098841329=>'L', 1098941330=>'L', 1099041331=>'L', 1099141332=>'L', 1099241333=>'L', 1099341334=>'L', 1099441335=>'L', 1099541336=>'L', 1099641337=>'L', 1099741338=>'L', 1099841339=>'L', 1099941340=>'L', 1100041341=>'L', 1100141342=>'L', 1100241343=>'L', 1100341344=>'L', 1100441345=>'L', 1100541346=>'L', 1100641347=>'L', 1100741348=>'L', 1100841349=>'L', 1100941350=>'L', 1101041351=>'L', 1101141352=>'L', 1101241353=>'L', 1101341354=>'L', 1101441355=>'L', 1101541356=>'L', 1101641357=>'L', 1101741358=>'L', 1101841359=>'L', 1101941360=>'L', 1102041361=>'L', 1102141362=>'L', 1102241363=>'L', 1102341364=>'L', 1102441365=>'L', 1102541366=>'L', 1102641367=>'L', 1102741368=>'L', 1102841369=>'L', 1102941370=>'L', 1103041371=>'L', 1103141372=>'L', 1103241373=>'L', 1103341374=>'L', 1103441375=>'L', 1103541376=>'L', 1103641377=>'L', 1103741378=>'L', 1103841379=>'L', 1103941380=>'L', 1104041381=>'L', 1104141382=>'L', 1104241383=>'L', 1104341384=>'L', 1104441385=>'L', 1104541386=>'L', 1104641387=>'L', 1104741388=>'L', 1104841389=>'L', 1104941390=>'L', 1105041391=>'L', 1105141392=>'L', 1105241393=>'L', 1105341394=>'L', 1105441395=>'L', 1105541396=>'L', 1105641397=>'L', 1105741398=>'L', 1105841399=>'L', 1105941400=>'L', 1106041401=>'L', 1106141402=>'L', 1106241403=>'L', 1106341404=>'L', 1106441405=>'L', 1106541406=>'L', 1106641407=>'L', 1106741408=>'L', 1106841409=>'L', 1106941410=>'L', 1107041411=>'L', 1107141412=>'L', 1107241413=>'L', 1107341414=>'L', 1107441415=>'L', 1107541416=>'L', 1107641417=>'L', 1107741418=>'L', 1107841419=>'L', 1107941420=>'L', 1108041421=>'L', 1108141422=>'L', 1108241423=>'L', 1108341424=>'L', 1108441425=>'L', 1108541426=>'L', 1108641427=>'L', 1108741428=>'L', 1108841429=>'L', 1108941430=>'L', 1109041431=>'L', 1109141432=>'L', 1109241433=>'L', 1109341434=>'L', 1109441435=>'L', 1109541436=>'L', 1109641437=>'L', 1109741438=>'L', 1109841439=>'L', 1109941440=>'L', 1110041441=>'L', 1110141442=>'L', 1110241443=>'L', 1110341444=>'L', 1110441445=>'L', 1110541446=>'L', 1110641447=>'L', 1110741448=>'L', 1110841449=>'L', 1110941450=>'L', 1111041451=>'L', 1111141452=>'L', 1111241453=>'L', 1111341454=>'L', 1111441455=>'L', 1111541456=>'L', 1111641457=>'L', 1111741458=>'L', 1111841459=>'L', 1111941460=>'L', 1112041461=>'L', 1112141462=>'L', 1112241463=>'L', 1112341464=>'L', 1112441465=>'L', 1112541466=>'L', 1112641467=>'L', 1112741468=>'L', 1112841469=>'L', 1112941470=>'L', 1113041471=>'L', 1113141472=>'L', 1113241473=>'L', 1113341474=>'L', 1113441475=>'L', 1113541476=>'L', 1113641477=>'L', 1113741478=>'L', 1113841479=>'L', 1113941480=>'L', 1114041481=>'L', 1114141482=>'L', 1114241483=>'L', 1114341484=>'L', 1114441485=>'L', 1114541486=>'L', 1114641487=>'L', 1114741488=>'L', 1114841489=>'L', 1114941490=>'L', 1115041491=>'L', 1115141492=>'L', 1115241493=>'L', 1115341494=>'L', 1115441495=>'L', 1115541496=>'L', 1115641497=>'L', 1115741498=>'L', 1115841499=>'L', 1115941500=>'L', 1116041501=>'L', 1116141502=>'L', 1116241503=>'L', 1116341504=>'L', 1116441505=>'L', 1116541506=>'L', 1116641507=>'L', 1116741508=>'L', 1116841509=>'L', 1116941510=>'L', 1117041511=>'L', 1117141512=>'L', 1117241513=>'L', 1117341514=>'L', 1117441515=>'L', 1117541516=>'L', 1117641517=>'L', 1117741518=>'L', 1117841519=>'L', 1117941520=>'L', 1118041521=>'L', 1118141522=>'L', 1118241523=>'L', 1118341524=>'L', 1118441525=>'L', 1118541526=>'L', 1118641527=>'L', 1118741528=>'L', 1118841529=>'L', 1118941530=>'L', 1119041531=>'L', 1119141532=>'L', 1119241533=>'L', 1119341534=>'L', 1119441535=>'L', 1119541536=>'L', 1119641537=>'L', 1119741538=>'L', 1119841539=>'L', 1119941540=>'L', 1120041541=>'L', 1120141542=>'L', 1120241543=>'L', 1120341544=>'L', 1120441545=>'L', 1120541546=>'L', 1120641547=>'L', 1120741548=>'L', 1120841549=>'L', 1120941550=>'L', 1121041551=>'L', 1121141552=>'L', 1121241553=>'L', 1121341554=>'L', 1121441555=>'L', 1121541556=>'L', 1121641557=>'L', 1121741558=>'L', 1121841559=>'L', 1121941560=>'L', 1122041561=>'L', 1122141562=>'L', 1122241563=>'L', 1122341564=>'L', 1122441565=>'L', 1122541566=>'L', 1122641567=>'L', 1122741568=>'L', 1122841569=>'L', 1122941570=>'L', 1123041571=>'L', 1123141572=>'L', 1123241573=>'L', 1123341574=>'L', 1123441575=>'L', 1123541576=>'L', 1123641577=>'L', 1123741578=>'L', 1123841579=>'L', 1123941580=>'L', 1124041581=>'L', 1124141582=>'L', 1124241583=>'L', 1124341584=>'L', 1124441585=>'L', 1124541586=>'L', 1124641587=>'L', 1124741588=>'L', 1124841589=>'L', 1124941590=>'L', 1125041591=>'L', 1125141592=>'L', 1125241593=>'L', 1125341594=>'L', 1125441595=>'L', 1125541596=>'L', 1125641597=>'L', 1125741598=>'L', 1125841599=>'L', 1125941600=>'L', 1126041601=>'L', 1126141602=>'L', 1126241603=>'L', 1126341604=>'L', 1126441605=>'L', 1126541606=>'L', 1126641607=>'L', 1126741608=>'L', 1126841609=>'L', 1126941610=>'L', 1127041611=>'L', 1127141612=>'L', 1127241613=>'L', 1127341614=>'L', 1127441615=>'L', 1127541616=>'L', 1127641617=>'L', 1127741618=>'L', 1127841619=>'L', 1127941620=>'L', 1128041621=>'L', 1128141622=>'L', 1128241623=>'L', 1128341624=>'L', 1128441625=>'L', 1128541626=>'L', 1128641627=>'L', 1128741628=>'L', 1128841629=>'L', 1128941630=>'L', 1129041631=>'L', 1129141632=>'L', 1129241633=>'L', 1129341634=>'L', 1129441635=>'L', 1129541636=>'L', 1129641637=>'L', 1129741638=>'L', 1129841639=>'L', 1129941640=>'L', 1130041641=>'L', 1130141642=>'L', 1130241643=>'L', 1130341644=>'L', 1130441645=>'L', 1130541646=>'L', 1130641647=>'L', 1130741648=>'L', 1130841649=>'L', 1130941650=>'L', 1131041651=>'L', 1131141652=>'L', 1131241653=>'L', 1131341654=>'L', 1131441655=>'L', 1131541656=>'L', 1131641657=>'L', 1131741658=>'L', 1131841659=>'L', 1131941660=>'L', 1132041661=>'L', 1132141662=>'L', 1132241663=>'L', 1132341664=>'L', 1132441665=>'L', 1132541666=>'L', 1132641667=>'L', 1132741668=>'L', 1132841669=>'L', 1132941670=>'L', 1133041671=>'L', 1133141672=>'L', 1133241673=>'L', 1133341674=>'L', 1133441675=>'L', 1133541676=>'L', 1133641677=>'L', 1133741678=>'L', 1133841679=>'L', 1133941680=>'L', 1134041681=>'L', 1134141682=>'L', 1134241683=>'L', 1134341684=>'L', 1134441685=>'L', 1134541686=>'L', 1134641687=>'L', 1134741688=>'L', 1134841689=>'L', 1134941690=>'L', 1135041691=>'L', 1135141692=>'L', 1135241693=>'L', 1135341694=>'L', 1135441695=>'L', 1135541696=>'L', 1135641697=>'L', 1135741698=>'L', 1135841699=>'L', 1135941700=>'L', 1136041701=>'L', 1136141702=>'L', 1136241703=>'L', 1136341704=>'L', 1136441705=>'L', 1136541706=>'L', 1136641707=>'L', 1136741708=>'L', 1136841709=>'L', 1136941710=>'L', 1137041711=>'L', 1137141712=>'L', 1137241713=>'L', 1137341714=>'L', 1137441715=>'L', 1137541716=>'L', 1137641717=>'L', 1137741718=>'L', 1137841719=>'L', 1137941720=>'L', 1138041721=>'L', 1138141722=>'L', 1138241723=>'L', 1138341724=>'L', 1138441725=>'L', 1138541726=>'L', 1138641727=>'L', 1138741728=>'L', 1138841729=>'L', 1138941730=>'L', 1139041731=>'L', 1139141732=>'L', 1139241733=>'L', 1139341734=>'L', 1139441735=>'L', 1139541736=>'L', 1139641737=>'L', 1139741738=>'L', 1139841739=>'L', 1139941740=>'L', 1140041741=>'L', 1140141742=>'L', 1140241743=>'L', 1140341744=>'L', 1140441745=>'L', 1140541746=>'L', 1140641747=>'L', 1140741748=>'L', 1140841749=>'L', 1140941750=>'L', 1141041751=>'L', 1141141752=>'L', 1141241753=>'L', 1141341754=>'L', 1141441755=>'L', 1141541756=>'L', 1141641757=>'L', 1141741758=>'L', 1141841759=>'L', 1141941760=>'L', 1142041761=>'L', 1142141762=>'L', 1142241763=>'L', 1142341764=>'L', 1142441765=>'L', 1142541766=>'L', 1142641767=>'L', 1142741768=>'L', 1142841769=>'L', 1142941770=>'L', 1143041771=>'L', 1143141772=>'L', 1143241773=>'L', 1143341774=>'L', 1143441775=>'L', 1143541776=>'L', 1143641777=>'L', 1143741778=>'L', 1143841779=>'L', 1143941780=>'L', 1144041781=>'L', 1144141782=>'L', 1144241783=>'L', 1144341784=>'L', 1144441785=>'L', 1144541786=>'L', 1144641787=>'L', 1144741788=>'L', 1144841789=>'L', 1144941790=>'L', 1145041791=>'L', 1145141792=>'L', 1145241793=>'L', 1145341794=>'L', 1145441795=>'L', 1145541796=>'L', 1145641797=>'L', 1145741798=>'L', 1145841799=>'L', 1145941800=>'L', 1146041801=>'L', 1146141802=>'L', 1146241803=>'L', 1146341804=>'L', 1146441805=>'L', 1146541806=>'L', 1146641807=>'L', 1146741808=>'L', 1146841809=>'L', 1146941810=>'L', 1147041811=>'L', 1147141812=>'L', 1147241813=>'L', 1147341814=>'L', 1147441815=>'L', 1147541816=>'L', 1147641817=>'L', 1147741818=>'L', 1147841819=>'L', 1147941820=>'L', 1148041821=>'L', 1148141822=>'L', 1148241823=>'L', 1148341824=>'L', 1148441825=>'L', 1148541826=>'L', 1148641827=>'L', 1148741828=>'L', 1148841829=>'L', 1148941830=>'L', 1149041831=>'L', 1149141832=>'L', 1149241833=>'L', 1149341834=>'L', 1149441835=>'L', 1149541836=>'L', 1149641837=>'L', 1149741838=>'L', 1149841839=>'L', 1149941840=>'L', 1150041841=>'L', 1150141842=>'L', 1150241843=>'L', 1150341844=>'L', 1150441845=>'L', 1150541846=>'L', 1150641847=>'L', 1150741848=>'L', 1150841849=>'L', 1150941850=>'L', 1151041851=>'L', 1151141852=>'L', 1151241853=>'L', 1151341854=>'L', 1151441855=>'L', 1151541856=>'L', 1151641857=>'L', 1151741858=>'L', 1151841859=>'L', 1151941860=>'L', 1152041861=>'L', 1152141862=>'L', 1152241863=>'L', 1152341864=>'L', 1152441865=>'L', 1152541866=>'L', 1152641867=>'L', 1152741868=>'L', 1152841869=>'L', 1152941870=>'L', 1153041871=>'L', 1153141872=>'L', 1153241873=>'L', 1153341874=>'L', 1153441875=>'L', 1153541876=>'L', 1153641877=>'L', 1153741878=>'L', 1153841879=>'L', 1153941880=>'L', 1154041881=>'L', 1154141882=>'L', 1154241883=>'L', 1154341884=>'L', 1154441885=>'L', 1154541886=>'L', 1154641887=>'L', 1154741888=>'L', 1154841889=>'L', 1154941890=>'L', 1155041891=>'L', 1155141892=>'L', 1155241893=>'L', 1155341894=>'L', 1155441895=>'L', 1155541896=>'L', 1155641897=>'L', 1155741898=>'L', 1155841899=>'L', 1155941900=>'L', 1156041901=>'L', 1156141902=>'L', 1156241903=>'L', 1156341904=>'L', 1156441905=>'L', 1156541906=>'L', 1156641907=>'L', 1156741908=>'L', 1156841909=>'L', 1156941910=>'L', 1157041911=>'L', 1157141912=>'L', 1157241913=>'L', 1157341914=>'L', 1157441915=>'L', 1157541916=>'L', 1157641917=>'L', 1157741918=>'L', 1157841919=>'L', 1157941920=>'L', 1158041921=>'L', 1158141922=>'L', 1158241923=>'L', 1158341924=>'L', 1158441925=>'L', 1158541926=>'L', 1158641927=>'L', 1158741928=>'L', 1158841929=>'L', 1158941930=>'L', 1159041931=>'L', 1159141932=>'L', 1159241933=>'L', 1159341934=>'L', 1159441935=>'L', 1159541936=>'L', 1159641937=>'L', 1159741938=>'L', 1159841939=>'L', 1159941940=>'L', 1160041941=>'L', 1160141942=>'L', 1160241943=>'L', 1160341944=>'L', 1160441945=>'L', 1160541946=>'L', 1160641947=>'L', 1160741948=>'L', 1160841949=>'L', 1160941950=>'L', 1161041951=>'L', 1161141952=>'L', 1161241953=>'L', 1161341954=>'L', 1161441955=>'L', 1161541956=>'L', 1161641957=>'L', 1161741958=>'L', 1161841959=>'L', 1161941960=>'L', 1162041961=>'L', 1162141962=>'L', 1162241963=>'L', 1162341964=>'L', 1162441965=>'L', 1162541966=>'L', 1162641967=>'L', 1162741968=>'L', 1162841969=>'L', 1162941970=>'L', 1163041971=>'L', 1163141972=>'L', 1163241973=>'L', 1163341974=>'L', 1163441975=>'L', 1163541976=>'L', 1163641977=>'L', 1163741978=>'L', 1163841979=>'L', 1163941980=>'L', 1164041981=>'L', 1164141982=>'L', 1164241983=>'L', 1164341984=>'L', 1164441985=>'L', 1164541986=>'L', 1164641987=>'L', 1164741988=>'L', 1164841989=>'L', 1164941990=>'L', 1165041991=>'L', 1165141992=>'L', 1165241993=>'L', 1165341994=>'L', 1165441995=>'L', 1165541996=>'L', 1165641997=>'L', 1165741998=>'L', 1165841999=>'L', 1165942000=>'L', 1166042001=>'L', 1166142002=>'L', 1166242003=>'L', 1166342004=>'L', 1166442005=>'L', 1166542006=>'L', 1166642007=>'L', 1166742008=>'L', 1166842009=>'L', 1166942010=>'L', 1167042011=>'L', 1167142012=>'L', 1167242013=>'L', 1167342014=>'L', 1167442015=>'L', 1167542016=>'L', 1167642017=>'L', 1167742018=>'L', 1167842019=>'L', 1167942020=>'L', 1168042021=>'L', 1168142022=>'L', 1168242023=>'L', 1168342024=>'L', 1168442025=>'L', 1168542026=>'L', 1168642027=>'L', 1168742028=>'L', 1168842029=>'L', 1168942030=>'L', 1169042031=>'L', 1169142032=>'L', 1169242033=>'L', 1169342034=>'L', 1169442035=>'L', 1169542036=>'L', 1169642037=>'L', 1169742038=>'L', 1169842039=>'L', 1169942040=>'L', 1170042041=>'L', 1170142042=>'L', 1170242043=>'L', 1170342044=>'L', 1170442045=>'L', 1170542046=>'L', 1170642047=>'L', 1170742048=>'L', 1170842049=>'L', 1170942050=>'L', 1171042051=>'L', 1171142052=>'L', 1171242053=>'L', 1171342054=>'L', 1171442055=>'L', 1171542056=>'L', 1171642057=>'L', 1171742058=>'L', 1171842059=>'L', 1171942060=>'L', 1172042061=>'L', 1172142062=>'L', 1172242063=>'L', 1172342064=>'L', 1172442065=>'L', 1172542066=>'L', 1172642067=>'L', 1172742068=>'L', 1172842069=>'L', 1172942070=>'L', 1173042071=>'L', 1173142072=>'L', 1173242073=>'L', 1173342074=>'L', 1173442075=>'L', 1173542076=>'L', 1173642077=>'L', 1173742078=>'L', 1173842079=>'L', 1173942080=>'L', 1174042081=>'L', 1174142082=>'L', 1174242083=>'L', 1174342084=>'L', 1174442085=>'L', 1174542086=>'L', 1174642087=>'L', 1174742088=>'L', 1174842089=>'L', 1174942090=>'L', 1175042091=>'L', 1175142092=>'L', 1175242093=>'L', 1175342094=>'L', 1175442095=>'L', 1175542096=>'L', 1175642097=>'L', 1175742098=>'L', 1175842099=>'L', 1175942100=>'L', 1176042101=>'L', 1176142102=>'L', 1176242103=>'L', 1176342104=>'L', 1176442105=>'L', 1176542106=>'L', 1176642107=>'L', 1176742108=>'L', 1176842109=>'L', 1176942110=>'L', 1177042111=>'L', 1177142112=>'L', 1177242113=>'L', 1177342114=>'L', 1177442115=>'L', 1177542116=>'L', 1177642117=>'L', 1177742118=>'L', 1177842119=>'L', 1177942120=>'L', 1178042121=>'L', 1178142122=>'L', 1178242123=>'L', 1178342124=>'L', 1178442128=>'ON', 1178542129=>'ON', 1178642130=>'ON', 1178742131=>'ON', 1178842132=>'ON', 1178942133=>'ON', 1179042134=>'ON', 1179142135=>'ON', 1179242136=>'ON', 1179342137=>'ON', 1179442138=>'ON', 1179542139=>'ON', 1179642140=>'ON', 1179742141=>'ON', 1179842142=>'ON', 1179942143=>'ON', 1180042144=>'ON', 1180142145=>'ON', 1180242146=>'ON', 1180342147=>'ON', 1180442148=>'ON', 1180542149=>'ON', 1180642150=>'ON', 1180742151=>'ON', 1180842152=>'ON', 1180942153=>'ON', 1181042154=>'ON', 1181142155=>'ON', 1181242156=>'ON', 1181342157=>'ON', 1181442158=>'ON', 1181542159=>'ON', 1181642160=>'ON', 1181742161=>'ON', 1181842162=>'ON', 1181942163=>'ON', 1182042164=>'ON', 1182142165=>'ON', 1182242166=>'ON', 1182342167=>'ON', 1182442168=>'ON', 1182542169=>'ON', 1182642170=>'ON', 1182742171=>'ON', 1182842172=>'ON', 1182942173=>'ON', 1183042174=>'ON', 1183142175=>'ON', 1183242176=>'ON', 1183342177=>'ON', 1183442178=>'ON', 1183542179=>'ON', 1183642180=>'ON', 1183742181=>'ON', 1183842182=>'ON', 1183942752=>'ON', 1184042753=>'ON', 1184142754=>'ON', 1184242755=>'ON', 1184342756=>'ON', 1184442757=>'ON', 1184542758=>'ON', 1184642759=>'ON', 1184742760=>'ON', 1184842761=>'ON', 1184942762=>'ON', 1185042763=>'ON', 1185142764=>'ON', 1185242765=>'ON', 1185342766=>'ON', 1185442767=>'ON', 1185542768=>'ON', 1185642769=>'ON', 1185742770=>'ON', 1185842771=>'ON', 1185942772=>'ON', 1186042773=>'ON', 1186142774=>'ON', 1186242775=>'ON', 1186342776=>'ON', 1186442777=>'ON', 1186542778=>'ON', 1186642784=>'ON', 1186742785=>'ON', 1186843008=>'L', 1186943009=>'L', 1187043010=>'NSM', 1187143011=>'L', 1187243012=>'L', 1187343013=>'L', 1187443014=>'NSM', 1187543015=>'L', 1187643016=>'L', 1187743017=>'L', 1187843018=>'L', 1187943019=>'NSM', 1188043020=>'L', 1188143021=>'L', 1188243022=>'L', 1188343023=>'L', 1188443024=>'L', 1188543025=>'L', 1188643026=>'L', 1188743027=>'L', 1188843028=>'L', 1188943029=>'L', 1189043030=>'L', 1189143031=>'L', 1189243032=>'L', 1189343033=>'L', 1189443034=>'L', 1189543035=>'L', 1189643036=>'L', 1189743037=>'L', 1189843038=>'L', 1189943039=>'L', 1190043040=>'L', 1190143041=>'L', 1190243042=>'L', 1190343043=>'L', 1190443044=>'L', 1190543045=>'NSM', 1190643046=>'NSM', 1190743047=>'L', 1190843048=>'ON', 1190943049=>'ON', 1191043050=>'ON', 1191143051=>'ON', 1191243072=>'L', 1191343073=>'L', 1191443074=>'L', 1191543075=>'L', 1191643076=>'L', 1191743077=>'L', 1191843078=>'L', 1191943079=>'L', 1192043080=>'L', 1192143081=>'L', 1192243082=>'L', 1192343083=>'L', 1192443084=>'L', 1192543085=>'L', 1192643086=>'L', 1192743087=>'L', 1192843088=>'L', 1192943089=>'L', 1193043090=>'L', 1193143091=>'L', 1193243092=>'L', 1193343093=>'L', 1193443094=>'L', 1193543095=>'L', 1193643096=>'L', 1193743097=>'L', 1193843098=>'L', 1193943099=>'L', 1194043100=>'L', 1194143101=>'L', 1194243102=>'L', 1194343103=>'L', 1194443104=>'L', 1194543105=>'L', 1194643106=>'L', 1194743107=>'L', 1194843108=>'L', 1194943109=>'L', 1195043110=>'L', 1195143111=>'L', 1195243112=>'L', 1195343113=>'L', 1195443114=>'L', 1195543115=>'L', 1195643116=>'L', 1195743117=>'L', 1195843118=>'L', 1195943119=>'L', 1196043120=>'L', 1196143121=>'L', 1196243122=>'L', 1196343123=>'L', 1196443124=>'ON', 1196543125=>'ON', 1196643126=>'ON', 1196743127=>'ON', 1196844032=>'L', 1196955203=>'L', 1197055296=>'L', 1197156191=>'L', 1197256192=>'L', 1197356319=>'L', 1197456320=>'L', 1197557343=>'L', 1197657344=>'L', 1197763743=>'L', 1197863744=>'L', 1197963745=>'L', 1198063746=>'L', 1198163747=>'L', 1198263748=>'L', 1198363749=>'L', 1198463750=>'L', 1198563751=>'L', 1198663752=>'L', 1198763753=>'L', 1198863754=>'L', 1198963755=>'L', 1199063756=>'L', 1199163757=>'L', 1199263758=>'L', 1199363759=>'L', 1199463760=>'L', 1199563761=>'L', 1199663762=>'L', 1199763763=>'L', 1199863764=>'L', 1199963765=>'L', 1200063766=>'L', 1200163767=>'L', 1200263768=>'L', 1200363769=>'L', 1200463770=>'L', 1200563771=>'L', 1200663772=>'L', 1200763773=>'L', 1200863774=>'L', 1200963775=>'L', 1201063776=>'L', 1201163777=>'L', 1201263778=>'L', 1201363779=>'L', 1201463780=>'L', 1201563781=>'L', 1201663782=>'L', 1201763783=>'L', 1201863784=>'L', 1201963785=>'L', 1202063786=>'L', 1202163787=>'L', 1202263788=>'L', 1202363789=>'L', 1202463790=>'L', 1202563791=>'L', 1202663792=>'L', 1202763793=>'L', 1202863794=>'L', 1202963795=>'L', 1203063796=>'L', 1203163797=>'L', 1203263798=>'L', 1203363799=>'L', 1203463800=>'L', 1203563801=>'L', 1203663802=>'L', 1203763803=>'L', 1203863804=>'L', 1203963805=>'L', 1204063806=>'L', 1204163807=>'L', 1204263808=>'L', 1204363809=>'L', 1204463810=>'L', 1204563811=>'L', 1204663812=>'L', 1204763813=>'L', 1204863814=>'L', 1204963815=>'L', 1205063816=>'L', 1205163817=>'L', 1205263818=>'L', 1205363819=>'L', 1205463820=>'L', 1205563821=>'L', 1205663822=>'L', 1205763823=>'L', 1205863824=>'L', 1205963825=>'L', 1206063826=>'L', 1206163827=>'L', 1206263828=>'L', 1206363829=>'L', 1206463830=>'L', 1206563831=>'L', 1206663832=>'L', 1206763833=>'L', 1206863834=>'L', 1206963835=>'L', 1207063836=>'L', 1207163837=>'L', 1207263838=>'L', 1207363839=>'L', 1207463840=>'L', 1207563841=>'L', 1207663842=>'L', 1207763843=>'L', 1207863844=>'L', 1207963845=>'L', 1208063846=>'L', 1208163847=>'L', 1208263848=>'L', 1208363849=>'L', 1208463850=>'L', 1208563851=>'L', 1208663852=>'L', 1208763853=>'L', 1208863854=>'L', 1208963855=>'L', 1209063856=>'L', 1209163857=>'L', 1209263858=>'L', 1209363859=>'L', 1209463860=>'L', 1209563861=>'L', 1209663862=>'L', 1209763863=>'L', 1209863864=>'L', 1209963865=>'L', 1210063866=>'L', 1210163867=>'L', 1210263868=>'L', 1210363869=>'L', 1210463870=>'L', 1210563871=>'L', 1210663872=>'L', 1210763873=>'L', 1210863874=>'L', 1210963875=>'L', 1211063876=>'L', 1211163877=>'L', 1211263878=>'L', 1211363879=>'L', 1211463880=>'L', 1211563881=>'L', 1211663882=>'L', 1211763883=>'L', 1211863884=>'L', 1211963885=>'L', 1212063886=>'L', 1212163887=>'L', 1212263888=>'L', 1212363889=>'L', 1212463890=>'L', 1212563891=>'L', 1212663892=>'L', 1212763893=>'L', 1212863894=>'L', 1212963895=>'L', 1213063896=>'L', 1213163897=>'L', 1213263898=>'L', 1213363899=>'L', 1213463900=>'L', 1213563901=>'L', 1213663902=>'L', 1213763903=>'L', 1213863904=>'L', 1213963905=>'L', 1214063906=>'L', 1214163907=>'L', 1214263908=>'L', 1214363909=>'L', 1214463910=>'L', 1214563911=>'L', 1214663912=>'L', 1214763913=>'L', 1214863914=>'L', 1214963915=>'L', 1215063916=>'L', 1215163917=>'L', 1215263918=>'L', 1215363919=>'L', 1215463920=>'L', 1215563921=>'L', 1215663922=>'L', 1215763923=>'L', 1215863924=>'L', 1215963925=>'L', 1216063926=>'L', 1216163927=>'L', 1216263928=>'L', 1216363929=>'L', 1216463930=>'L', 1216563931=>'L', 1216663932=>'L', 1216763933=>'L', 1216863934=>'L', 1216963935=>'L', 1217063936=>'L', 1217163937=>'L', 1217263938=>'L', 1217363939=>'L', 1217463940=>'L', 1217563941=>'L', 1217663942=>'L', 1217763943=>'L', 1217863944=>'L', 1217963945=>'L', 1218063946=>'L', 1218163947=>'L', 1218263948=>'L', 1218363949=>'L', 1218463950=>'L', 1218563951=>'L', 1218663952=>'L', 1218763953=>'L', 1218863954=>'L', 1218963955=>'L', 1219063956=>'L', 1219163957=>'L', 1219263958=>'L', 1219363959=>'L', 1219463960=>'L', 1219563961=>'L', 1219663962=>'L', 1219763963=>'L', 1219863964=>'L', 1219963965=>'L', 1220063966=>'L', 1220163967=>'L', 1220263968=>'L', 1220363969=>'L', 1220463970=>'L', 1220563971=>'L', 1220663972=>'L', 1220763973=>'L', 1220863974=>'L', 1220963975=>'L', 1221063976=>'L', 1221163977=>'L', 1221263978=>'L', 1221363979=>'L', 1221463980=>'L', 1221563981=>'L', 1221663982=>'L', 1221763983=>'L', 1221863984=>'L', 1221963985=>'L', 1222063986=>'L', 1222163987=>'L', 1222263988=>'L', 1222363989=>'L', 1222463990=>'L', 1222563991=>'L', 1222663992=>'L', 1222763993=>'L', 1222863994=>'L', 1222963995=>'L', 1223063996=>'L', 1223163997=>'L', 1223263998=>'L', 1223363999=>'L', 1223464000=>'L', 1223564001=>'L', 1223664002=>'L', 1223764003=>'L', 1223864004=>'L', 1223964005=>'L', 1224064006=>'L', 1224164007=>'L', 1224264008=>'L', 1224364009=>'L', 1224464010=>'L', 1224564011=>'L', 1224664012=>'L', 1224764013=>'L', 1224864014=>'L', 1224964015=>'L', 1225064016=>'L', 1225164017=>'L', 1225264018=>'L', 1225364019=>'L', 1225464020=>'L', 1225564021=>'L', 1225664022=>'L', 1225764023=>'L', 1225864024=>'L', 1225964025=>'L', 1226064026=>'L', 1226164027=>'L', 1226264028=>'L', 1226364029=>'L', 1226464030=>'L', 1226564031=>'L', 1226664032=>'L', 1226764033=>'L', 1226864034=>'L', 1226964035=>'L', 1227064036=>'L', 1227164037=>'L', 1227264038=>'L', 1227364039=>'L', 1227464040=>'L', 1227564041=>'L', 1227664042=>'L', 1227764043=>'L', 1227864044=>'L', 1227964045=>'L', 1228064048=>'L', 1228164049=>'L', 1228264050=>'L', 1228364051=>'L', 1228464052=>'L', 1228564053=>'L', 1228664054=>'L', 1228764055=>'L', 1228864056=>'L', 1228964057=>'L', 1229064058=>'L', 1229164059=>'L', 1229264060=>'L', 1229364061=>'L', 1229464062=>'L', 1229564063=>'L', 1229664064=>'L', 1229764065=>'L', 1229864066=>'L', 1229964067=>'L', 1230064068=>'L', 1230164069=>'L', 1230264070=>'L', 1230364071=>'L', 1230464072=>'L', 1230564073=>'L', 1230664074=>'L', 1230764075=>'L', 1230864076=>'L', 1230964077=>'L', 1231064078=>'L', 1231164079=>'L', 1231264080=>'L', 1231364081=>'L', 1231464082=>'L', 1231564083=>'L', 1231664084=>'L', 1231764085=>'L', 1231864086=>'L', 1231964087=>'L', 1232064088=>'L', 1232164089=>'L', 1232264090=>'L', 1232364091=>'L', 1232464092=>'L', 1232564093=>'L', 1232664094=>'L', 1232764095=>'L', 1232864096=>'L', 1232964097=>'L', 1233064098=>'L', 1233164099=>'L', 1233264100=>'L', 1233364101=>'L', 1233464102=>'L', 1233564103=>'L', 1233664104=>'L', 1233764105=>'L', 1233864106=>'L', 1233964112=>'L', 1234064113=>'L', 1234164114=>'L', 1234264115=>'L', 1234364116=>'L', 1234464117=>'L', 1234564118=>'L', 1234664119=>'L', 1234764120=>'L', 1234864121=>'L', 1234964122=>'L', 1235064123=>'L', 1235164124=>'L', 1235264125=>'L', 1235364126=>'L', 1235464127=>'L', 1235564128=>'L', 1235664129=>'L', 1235764130=>'L', 1235864131=>'L', 1235964132=>'L', 1236064133=>'L', 1236164134=>'L', 1236264135=>'L', 1236364136=>'L', 1236464137=>'L', 1236564138=>'L', 1236664139=>'L', 1236764140=>'L', 1236864141=>'L', 1236964142=>'L', 1237064143=>'L', 1237164144=>'L', 1237264145=>'L', 1237364146=>'L', 1237464147=>'L', 1237564148=>'L', 1237664149=>'L', 1237764150=>'L', 1237864151=>'L', 1237964152=>'L', 1238064153=>'L', 1238164154=>'L', 1238264155=>'L', 1238364156=>'L', 1238464157=>'L', 1238564158=>'L', 1238664159=>'L', 1238764160=>'L', 1238864161=>'L', 1238964162=>'L', 1239064163=>'L', 1239164164=>'L', 1239264165=>'L', 1239364166=>'L', 1239464167=>'L', 1239564168=>'L', 1239664169=>'L', 1239764170=>'L', 1239864171=>'L', 1239964172=>'L', 1240064173=>'L', 1240164174=>'L', 1240264175=>'L', 1240364176=>'L', 1240464177=>'L', 1240564178=>'L', 1240664179=>'L', 1240764180=>'L', 1240864181=>'L', 1240964182=>'L', 1241064183=>'L', 1241164184=>'L', 1241264185=>'L', 1241364186=>'L', 1241464187=>'L', 1241564188=>'L', 1241664189=>'L', 1241764190=>'L', 1241864191=>'L', 1241964192=>'L', 1242064193=>'L', 1242164194=>'L', 1242264195=>'L', 1242364196=>'L', 1242464197=>'L', 1242564198=>'L', 1242664199=>'L', 1242764200=>'L', 1242864201=>'L', 1242964202=>'L', 1243064203=>'L', 1243164204=>'L', 1243264205=>'L', 1243364206=>'L', 1243464207=>'L', 1243564208=>'L', 1243664209=>'L', 1243764210=>'L', 1243864211=>'L', 1243964212=>'L', 1244064213=>'L', 1244164214=>'L', 1244264215=>'L', 1244364216=>'L', 1244464217=>'L', 1244564256=>'L', 1244664257=>'L', 1244764258=>'L', 1244864259=>'L', 1244964260=>'L', 1245064261=>'L', 1245164262=>'L', 1245264275=>'L', 1245364276=>'L', 1245464277=>'L', 1245564278=>'L', 1245664279=>'L', 1245764285=>'R', 1245864286=>'NSM', 1245964287=>'R', 1246064288=>'R', 1246164289=>'R', 1246264290=>'R', 1246364291=>'R', 1246464292=>'R', 1246564293=>'R', 1246664294=>'R', 1246764295=>'R', 1246864296=>'R', 1246964297=>'ES', 1247064298=>'R', 1247164299=>'R', 1247264300=>'R', 1247364301=>'R', 1247464302=>'R', 1247564303=>'R', 1247664304=>'R', 1247764305=>'R', 1247864306=>'R', 1247964307=>'R', 1248064308=>'R', 1248164309=>'R', 1248264310=>'R', 1248364312=>'R', 1248464313=>'R', 1248564314=>'R', 1248664315=>'R', 1248764316=>'R', 1248864318=>'R', 1248964320=>'R', 1249064321=>'R', 1249164323=>'R', 1249264324=>'R', 1249364326=>'R', 1249464327=>'R', 1249564328=>'R', 1249664329=>'R', 1249764330=>'R', 1249864331=>'R', 1249964332=>'R', 1250064333=>'R', 1250164334=>'R', 1250264335=>'R', 1250364336=>'AL', 1250464337=>'AL', 1250564338=>'AL', 1250664339=>'AL', 1250764340=>'AL', 1250864341=>'AL', 1250964342=>'AL', 1251064343=>'AL', 1251164344=>'AL', 1251264345=>'AL', 1251364346=>'AL', 1251464347=>'AL', 1251564348=>'AL', 1251664349=>'AL', 1251764350=>'AL', 1251864351=>'AL', 1251964352=>'AL', 1252064353=>'AL', 1252164354=>'AL', 1252264355=>'AL', 1252364356=>'AL', 1252464357=>'AL', 1252564358=>'AL', 1252664359=>'AL', 1252764360=>'AL', 1252864361=>'AL', 1252964362=>'AL', 1253064363=>'AL', 1253164364=>'AL', 1253264365=>'AL', 1253364366=>'AL', 1253464367=>'AL', 1253564368=>'AL', 1253664369=>'AL', 1253764370=>'AL', 1253864371=>'AL', 1253964372=>'AL', 1254064373=>'AL', 1254164374=>'AL', 1254264375=>'AL', 1254364376=>'AL', 1254464377=>'AL', 1254564378=>'AL', 1254664379=>'AL', 1254764380=>'AL', 1254864381=>'AL', 1254964382=>'AL', 1255064383=>'AL', 1255164384=>'AL', 1255264385=>'AL', 1255364386=>'AL', 1255464387=>'AL', 1255564388=>'AL', 1255664389=>'AL', 1255764390=>'AL', 1255864391=>'AL', 1255964392=>'AL', 1256064393=>'AL', 1256164394=>'AL', 1256264395=>'AL', 1256364396=>'AL', 1256464397=>'AL', 1256564398=>'AL', 1256664399=>'AL', 1256764400=>'AL', 1256864401=>'AL', 1256964402=>'AL', 1257064403=>'AL', 1257164404=>'AL', 1257264405=>'AL', 1257364406=>'AL', 1257464407=>'AL', 1257564408=>'AL', 1257664409=>'AL', 1257764410=>'AL', 1257864411=>'AL', 1257964412=>'AL', 1258064413=>'AL', 1258164414=>'AL', 1258264415=>'AL', 1258364416=>'AL', 1258464417=>'AL', 1258564418=>'AL', 1258664419=>'AL', 1258764420=>'AL', 1258864421=>'AL', 1258964422=>'AL', 1259064423=>'AL', 1259164424=>'AL', 1259264425=>'AL', 1259364426=>'AL', 1259464427=>'AL', 1259564428=>'AL', 1259664429=>'AL', 1259764430=>'AL', 1259864431=>'AL', 1259964432=>'AL', 1260064433=>'AL', 1260164467=>'AL', 1260264468=>'AL', 1260364469=>'AL', 1260464470=>'AL', 1260564471=>'AL', 1260664472=>'AL', 1260764473=>'AL', 1260864474=>'AL', 1260964475=>'AL', 1261064476=>'AL', 1261164477=>'AL', 1261264478=>'AL', 1261364479=>'AL', 1261464480=>'AL', 1261564481=>'AL', 1261664482=>'AL', 1261764483=>'AL', 1261864484=>'AL', 1261964485=>'AL', 1262064486=>'AL', 1262164487=>'AL', 1262264488=>'AL', 1262364489=>'AL', 1262464490=>'AL', 1262564491=>'AL', 1262664492=>'AL', 1262764493=>'AL', 1262864494=>'AL', 1262964495=>'AL', 1263064496=>'AL', 1263164497=>'AL', 1263264498=>'AL', 1263364499=>'AL', 1263464500=>'AL', 1263564501=>'AL', 1263664502=>'AL', 1263764503=>'AL', 1263864504=>'AL', 1263964505=>'AL', 1264064506=>'AL', 1264164507=>'AL', 1264264508=>'AL', 1264364509=>'AL', 1264464510=>'AL', 1264564511=>'AL', 1264664512=>'AL', 1264764513=>'AL', 1264864514=>'AL', 1264964515=>'AL', 1265064516=>'AL', 1265164517=>'AL', 1265264518=>'AL', 1265364519=>'AL', 1265464520=>'AL', 1265564521=>'AL', 1265664522=>'AL', 1265764523=>'AL', 1265864524=>'AL', 1265964525=>'AL', 1266064526=>'AL', 1266164527=>'AL', 1266264528=>'AL', 1266364529=>'AL', 1266464530=>'AL', 1266564531=>'AL', 1266664532=>'AL', 1266764533=>'AL', 1266864534=>'AL', 1266964535=>'AL', 1267064536=>'AL', 1267164537=>'AL', 1267264538=>'AL', 1267364539=>'AL', 1267464540=>'AL', 1267564541=>'AL', 1267664542=>'AL', 1267764543=>'AL', 1267864544=>'AL', 1267964545=>'AL', 1268064546=>'AL', 1268164547=>'AL', 1268264548=>'AL', 1268364549=>'AL', 1268464550=>'AL', 1268564551=>'AL', 1268664552=>'AL', 1268764553=>'AL', 1268864554=>'AL', 1268964555=>'AL', 1269064556=>'AL', 1269164557=>'AL', 1269264558=>'AL', 1269364559=>'AL', 1269464560=>'AL', 1269564561=>'AL', 1269664562=>'AL', 1269764563=>'AL', 1269864564=>'AL', 1269964565=>'AL', 1270064566=>'AL', 1270164567=>'AL', 1270264568=>'AL', 1270364569=>'AL', 1270464570=>'AL', 1270564571=>'AL', 1270664572=>'AL', 1270764573=>'AL', 1270864574=>'AL', 1270964575=>'AL', 1271064576=>'AL', 1271164577=>'AL', 1271264578=>'AL', 1271364579=>'AL', 1271464580=>'AL', 1271564581=>'AL', 1271664582=>'AL', 1271764583=>'AL', 1271864584=>'AL', 1271964585=>'AL', 1272064586=>'AL', 1272164587=>'AL', 1272264588=>'AL', 1272364589=>'AL', 1272464590=>'AL', 1272564591=>'AL', 1272664592=>'AL', 1272764593=>'AL', 1272864594=>'AL', 1272964595=>'AL', 1273064596=>'AL', 1273164597=>'AL', 1273264598=>'AL', 1273364599=>'AL', 1273464600=>'AL', 1273564601=>'AL', 1273664602=>'AL', 1273764603=>'AL', 1273864604=>'AL', 1273964605=>'AL', 1274064606=>'AL', 1274164607=>'AL', 1274264608=>'AL', 1274364609=>'AL', 1274464610=>'AL', 1274564611=>'AL', 1274664612=>'AL', 1274764613=>'AL', 1274864614=>'AL', 1274964615=>'AL', 1275064616=>'AL', 1275164617=>'AL', 1275264618=>'AL', 1275364619=>'AL', 1275464620=>'AL', 1275564621=>'AL', 1275664622=>'AL', 1275764623=>'AL', 1275864624=>'AL', 1275964625=>'AL', 1276064626=>'AL', 1276164627=>'AL', 1276264628=>'AL', 1276364629=>'AL', 1276464630=>'AL', 1276564631=>'AL', 1276664632=>'AL', 1276764633=>'AL', 1276864634=>'AL', 1276964635=>'AL', 1277064636=>'AL', 1277164637=>'AL', 1277264638=>'AL', 1277364639=>'AL', 1277464640=>'AL', 1277564641=>'AL', 1277664642=>'AL', 1277764643=>'AL', 1277864644=>'AL', 1277964645=>'AL', 1278064646=>'AL', 1278164647=>'AL', 1278264648=>'AL', 1278364649=>'AL', 1278464650=>'AL', 1278564651=>'AL', 1278664652=>'AL', 1278764653=>'AL', 1278864654=>'AL', 1278964655=>'AL', 1279064656=>'AL', 1279164657=>'AL', 1279264658=>'AL', 1279364659=>'AL', 1279464660=>'AL', 1279564661=>'AL', 1279664662=>'AL', 1279764663=>'AL', 1279864664=>'AL', 1279964665=>'AL', 1280064666=>'AL', 1280164667=>'AL', 1280264668=>'AL', 1280364669=>'AL', 1280464670=>'AL', 1280564671=>'AL', 1280664672=>'AL', 1280764673=>'AL', 1280864674=>'AL', 1280964675=>'AL', 1281064676=>'AL', 1281164677=>'AL', 1281264678=>'AL', 1281364679=>'AL', 1281464680=>'AL', 1281564681=>'AL', 1281664682=>'AL', 1281764683=>'AL', 1281864684=>'AL', 1281964685=>'AL', 1282064686=>'AL', 1282164687=>'AL', 1282264688=>'AL', 1282364689=>'AL', 1282464690=>'AL', 1282564691=>'AL', 1282664692=>'AL', 1282764693=>'AL', 1282864694=>'AL', 1282964695=>'AL', 1283064696=>'AL', 1283164697=>'AL', 1283264698=>'AL', 1283364699=>'AL', 1283464700=>'AL', 1283564701=>'AL', 1283664702=>'AL', 1283764703=>'AL', 1283864704=>'AL', 1283964705=>'AL', 1284064706=>'AL', 1284164707=>'AL', 1284264708=>'AL', 1284364709=>'AL', 1284464710=>'AL', 1284564711=>'AL', 1284664712=>'AL', 1284764713=>'AL', 1284864714=>'AL', 1284964715=>'AL', 1285064716=>'AL', 1285164717=>'AL', 1285264718=>'AL', 1285364719=>'AL', 1285464720=>'AL', 1285564721=>'AL', 1285664722=>'AL', 1285764723=>'AL', 1285864724=>'AL', 1285964725=>'AL', 1286064726=>'AL', 1286164727=>'AL', 1286264728=>'AL', 1286364729=>'AL', 1286464730=>'AL', 1286564731=>'AL', 1286664732=>'AL', 1286764733=>'AL', 1286864734=>'AL', 1286964735=>'AL', 1287064736=>'AL', 1287164737=>'AL', 1287264738=>'AL', 1287364739=>'AL', 1287464740=>'AL', 1287564741=>'AL', 1287664742=>'AL', 1287764743=>'AL', 1287864744=>'AL', 1287964745=>'AL', 1288064746=>'AL', 1288164747=>'AL', 1288264748=>'AL', 1288364749=>'AL', 1288464750=>'AL', 1288564751=>'AL', 1288664752=>'AL', 1288764753=>'AL', 1288864754=>'AL', 1288964755=>'AL', 1289064756=>'AL', 1289164757=>'AL', 1289264758=>'AL', 1289364759=>'AL', 1289464760=>'AL', 1289564761=>'AL', 1289664762=>'AL', 1289764763=>'AL', 1289864764=>'AL', 1289964765=>'AL', 1290064766=>'AL', 1290164767=>'AL', 1290264768=>'AL', 1290364769=>'AL', 1290464770=>'AL', 1290564771=>'AL', 1290664772=>'AL', 1290764773=>'AL', 1290864774=>'AL', 1290964775=>'AL', 1291064776=>'AL', 1291164777=>'AL', 1291264778=>'AL', 1291364779=>'AL', 1291464780=>'AL', 1291564781=>'AL', 1291664782=>'AL', 1291764783=>'AL', 1291864784=>'AL', 1291964785=>'AL', 1292064786=>'AL', 1292164787=>'AL', 1292264788=>'AL', 1292364789=>'AL', 1292464790=>'AL', 1292564791=>'AL', 1292664792=>'AL', 1292764793=>'AL', 1292864794=>'AL', 1292964795=>'AL', 1293064796=>'AL', 1293164797=>'AL', 1293264798=>'AL', 1293364799=>'AL', 1293464800=>'AL', 1293564801=>'AL', 1293664802=>'AL', 1293764803=>'AL', 1293864804=>'AL', 1293964805=>'AL', 1294064806=>'AL', 1294164807=>'AL', 1294264808=>'AL', 1294364809=>'AL', 1294464810=>'AL', 1294564811=>'AL', 1294664812=>'AL', 1294764813=>'AL', 1294864814=>'AL', 1294964815=>'AL', 1295064816=>'AL', 1295164817=>'AL', 1295264818=>'AL', 1295364819=>'AL', 1295464820=>'AL', 1295564821=>'AL', 1295664822=>'AL', 1295764823=>'AL', 1295864824=>'AL', 1295964825=>'AL', 1296064826=>'AL', 1296164827=>'AL', 1296264828=>'AL', 1296364829=>'AL', 1296464830=>'ON', 1296564831=>'ON', 1296664848=>'AL', 1296764849=>'AL', 1296864850=>'AL', 1296964851=>'AL', 1297064852=>'AL', 1297164853=>'AL', 1297264854=>'AL', 1297364855=>'AL', 1297464856=>'AL', 1297564857=>'AL', 1297664858=>'AL', 1297764859=>'AL', 1297864860=>'AL', 1297964861=>'AL', 1298064862=>'AL', 1298164863=>'AL', 1298264864=>'AL', 1298364865=>'AL', 1298464866=>'AL', 1298564867=>'AL', 1298664868=>'AL', 1298764869=>'AL', 1298864870=>'AL', 1298964871=>'AL', 1299064872=>'AL', 1299164873=>'AL', 1299264874=>'AL', 1299364875=>'AL', 1299464876=>'AL', 1299564877=>'AL', 1299664878=>'AL', 1299764879=>'AL', 1299864880=>'AL', 1299964881=>'AL', 1300064882=>'AL', 1300164883=>'AL', 1300264884=>'AL', 1300364885=>'AL', 1300464886=>'AL', 1300564887=>'AL', 1300664888=>'AL', 1300764889=>'AL', 1300864890=>'AL', 1300964891=>'AL', 1301064892=>'AL', 1301164893=>'AL', 1301264894=>'AL', 1301364895=>'AL', 1301464896=>'AL', 1301564897=>'AL', 1301664898=>'AL', 1301764899=>'AL', 1301864900=>'AL', 1301964901=>'AL', 1302064902=>'AL', 1302164903=>'AL', 1302264904=>'AL', 1302364905=>'AL', 1302464906=>'AL', 1302564907=>'AL', 1302664908=>'AL', 1302764909=>'AL', 1302864910=>'AL', 1302964911=>'AL', 1303064914=>'AL', 1303164915=>'AL', 1303264916=>'AL', 1303364917=>'AL', 1303464918=>'AL', 1303564919=>'AL', 1303664920=>'AL', 1303764921=>'AL', 1303864922=>'AL', 1303964923=>'AL', 1304064924=>'AL', 1304164925=>'AL', 1304264926=>'AL', 1304364927=>'AL', 1304464928=>'AL', 1304564929=>'AL', 1304664930=>'AL', 1304764931=>'AL', 1304864932=>'AL', 1304964933=>'AL', 1305064934=>'AL', 1305164935=>'AL', 1305264936=>'AL', 1305364937=>'AL', 1305464938=>'AL', 1305564939=>'AL', 1305664940=>'AL', 1305764941=>'AL', 1305864942=>'AL', 1305964943=>'AL', 1306064944=>'AL', 1306164945=>'AL', 1306264946=>'AL', 1306364947=>'AL', 1306464948=>'AL', 1306564949=>'AL', 1306664950=>'AL', 1306764951=>'AL', 1306864952=>'AL', 1306964953=>'AL', 1307064954=>'AL', 1307164955=>'AL', 1307264956=>'AL', 1307364957=>'AL', 1307464958=>'AL', 1307564959=>'AL', 1307664960=>'AL', 1307764961=>'AL', 1307864962=>'AL', 1307964963=>'AL', 1308064964=>'AL', 1308164965=>'AL', 1308264966=>'AL', 1308364967=>'AL', 1308465008=>'AL', 1308565009=>'AL', 1308665010=>'AL', 1308765011=>'AL', 1308865012=>'AL', 1308965013=>'AL', 1309065014=>'AL', 1309165015=>'AL', 1309265016=>'AL', 1309365017=>'AL', 1309465018=>'AL', 1309565019=>'AL', 1309665020=>'AL', 1309765021=>'ON', 1309865024=>'NSM', 1309965025=>'NSM', 1310065026=>'NSM', 1310165027=>'NSM', 1310265028=>'NSM', 1310365029=>'NSM', 1310465030=>'NSM', 1310565031=>'NSM', 1310665032=>'NSM', 1310765033=>'NSM', 1310865034=>'NSM', 1310965035=>'NSM', 1311065036=>'NSM', 1311165037=>'NSM', 1311265038=>'NSM', 1311365039=>'NSM', 1311465040=>'ON', 1311565041=>'ON', 1311665042=>'ON', 1311765043=>'ON', 1311865044=>'ON', 1311965045=>'ON', 1312065046=>'ON', 1312165047=>'ON', 1312265048=>'ON', 1312365049=>'ON', 1312465056=>'NSM', 1312565057=>'NSM', 1312665058=>'NSM', 1312765059=>'NSM', 1312865072=>'ON', 1312965073=>'ON', 1313065074=>'ON', 1313165075=>'ON', 1313265076=>'ON', 1313365077=>'ON', 1313465078=>'ON', 1313565079=>'ON', 1313665080=>'ON', 1313765081=>'ON', 1313865082=>'ON', 1313965083=>'ON', 1314065084=>'ON', 1314165085=>'ON', 1314265086=>'ON', 1314365087=>'ON', 1314465088=>'ON', 1314565089=>'ON', 1314665090=>'ON', 1314765091=>'ON', 1314865092=>'ON', 1314965093=>'ON', 1315065094=>'ON', 1315165095=>'ON', 1315265096=>'ON', 1315365097=>'ON', 1315465098=>'ON', 1315565099=>'ON', 1315665100=>'ON', 1315765101=>'ON', 1315865102=>'ON', 1315965103=>'ON', 1316065104=>'CS', 1316165105=>'ON', 1316265106=>'CS', 1316365108=>'ON', 1316465109=>'CS', 1316565110=>'ON', 1316665111=>'ON', 1316765112=>'ON', 1316865113=>'ON', 1316965114=>'ON', 1317065115=>'ON', 1317165116=>'ON', 1317265117=>'ON', 1317365118=>'ON', 1317465119=>'ET', 1317565120=>'ON', 1317665121=>'ON', 1317765122=>'ES', 1317865123=>'ES', 1317965124=>'ON', 1318065125=>'ON', 1318165126=>'ON', 1318265128=>'ON', 1318365129=>'ET', 1318465130=>'ET', 1318565131=>'ON', 1318665136=>'AL', 1318765137=>'AL', 1318865138=>'AL', 1318965139=>'AL', 1319065140=>'AL', 1319165142=>'AL', 1319265143=>'AL', 1319365144=>'AL', 1319465145=>'AL', 1319565146=>'AL', 1319665147=>'AL', 1319765148=>'AL', 1319865149=>'AL', 1319965150=>'AL', 1320065151=>'AL', 1320165152=>'AL', 1320265153=>'AL', 1320365154=>'AL', 1320465155=>'AL', 1320565156=>'AL', 1320665157=>'AL', 1320765158=>'AL', 1320865159=>'AL', 1320965160=>'AL', 1321065161=>'AL', 1321165162=>'AL', 1321265163=>'AL', 1321365164=>'AL', 1321465165=>'AL', 1321565166=>'AL', 1321665167=>'AL', 1321765168=>'AL', 1321865169=>'AL', 1321965170=>'AL', 1322065171=>'AL', 1322165172=>'AL', 1322265173=>'AL', 1322365174=>'AL', 1322465175=>'AL', 1322565176=>'AL', 1322665177=>'AL', 1322765178=>'AL', 1322865179=>'AL', 1322965180=>'AL', 1323065181=>'AL', 1323165182=>'AL', 1323265183=>'AL', 1323365184=>'AL', 1323465185=>'AL', 1323565186=>'AL', 1323665187=>'AL', 1323765188=>'AL', 1323865189=>'AL', 1323965190=>'AL', 1324065191=>'AL', 1324165192=>'AL', 1324265193=>'AL', 1324365194=>'AL', 1324465195=>'AL', 1324565196=>'AL', 1324665197=>'AL', 1324765198=>'AL', 1324865199=>'AL', 1324965200=>'AL', 1325065201=>'AL', 1325165202=>'AL', 1325265203=>'AL', 1325365204=>'AL', 1325465205=>'AL', 1325565206=>'AL', 1325665207=>'AL', 1325765208=>'AL', 1325865209=>'AL', 1325965210=>'AL', 1326065211=>'AL', 1326165212=>'AL', 1326265213=>'AL', 1326365214=>'AL', 1326465215=>'AL', 1326565216=>'AL', 1326665217=>'AL', 1326765218=>'AL', 1326865219=>'AL', 1326965220=>'AL', 1327065221=>'AL', 1327165222=>'AL', 1327265223=>'AL', 1327365224=>'AL', 1327465225=>'AL', 1327565226=>'AL', 1327665227=>'AL', 1327765228=>'AL', 1327865229=>'AL', 1327965230=>'AL', 1328065231=>'AL', 1328165232=>'AL', 1328265233=>'AL', 1328365234=>'AL', 1328465235=>'AL', 1328565236=>'AL', 1328665237=>'AL', 1328765238=>'AL', 1328865239=>'AL', 1328965240=>'AL', 1329065241=>'AL', 1329165242=>'AL', 1329265243=>'AL', 1329365244=>'AL', 1329465245=>'AL', 1329565246=>'AL', 1329665247=>'AL', 1329765248=>'AL', 1329865249=>'AL', 1329965250=>'AL', 1330065251=>'AL', 1330165252=>'AL', 1330265253=>'AL', 1330365254=>'AL', 1330465255=>'AL', 1330565256=>'AL', 1330665257=>'AL', 1330765258=>'AL', 1330865259=>'AL', 1330965260=>'AL', 1331065261=>'AL', 1331165262=>'AL', 1331265263=>'AL', 1331365264=>'AL', 1331465265=>'AL', 1331565266=>'AL', 1331665267=>'AL', 1331765268=>'AL', 1331865269=>'AL', 1331965270=>'AL', 1332065271=>'AL', 1332165272=>'AL', 1332265273=>'AL', 1332365274=>'AL', 1332465275=>'AL', 1332565276=>'AL', 1332665279=>'BN', 1332765281=>'ON', 1332865282=>'ON', 1332965283=>'ET', 1333065284=>'ET', 1333165285=>'ET', 1333265286=>'ON', 1333365287=>'ON', 1333465288=>'ON', 1333565289=>'ON', 1333665290=>'ON', 1333765291=>'ES', 1333865292=>'CS', 1333965293=>'ES', 1334065294=>'CS', 1334165295=>'CS', 1334265296=>'EN', 1334365297=>'EN', 1334465298=>'EN', 1334565299=>'EN', 1334665300=>'EN', 1334765301=>'EN', 1334865302=>'EN', 1334965303=>'EN', 1335065304=>'EN', 1335165305=>'EN', 1335265306=>'CS', 1335365307=>'ON', 1335465308=>'ON', 1335565309=>'ON', 1335665310=>'ON', 1335765311=>'ON', 1335865312=>'ON', 1335965313=>'L', 1336065314=>'L', 1336165315=>'L', 1336265316=>'L', 1336365317=>'L', 1336465318=>'L', 1336565319=>'L', 1336665320=>'L', 1336765321=>'L', 1336865322=>'L', 1336965323=>'L', 1337065324=>'L', 1337165325=>'L', 1337265326=>'L', 1337365327=>'L', 1337465328=>'L', 1337565329=>'L', 1337665330=>'L', 1337765331=>'L', 1337865332=>'L', 1337965333=>'L', 1338065334=>'L', 1338165335=>'L', 1338265336=>'L', 1338365337=>'L', 1338465338=>'L', 1338565339=>'ON', 1338665340=>'ON', 1338765341=>'ON', 1338865342=>'ON', 1338965343=>'ON', 1339065344=>'ON', 1339165345=>'L', 1339265346=>'L', 1339365347=>'L', 1339465348=>'L', 1339565349=>'L', 1339665350=>'L', 1339765351=>'L', 1339865352=>'L', 1339965353=>'L', 1340065354=>'L', 1340165355=>'L', 1340265356=>'L', 1340365357=>'L', 1340465358=>'L', 1340565359=>'L', 1340665360=>'L', 1340765361=>'L', 1340865362=>'L', 1340965363=>'L', 1341065364=>'L', 1341165365=>'L', 1341265366=>'L', 1341365367=>'L', 1341465368=>'L', 1341565369=>'L', 1341665370=>'L', 1341765371=>'ON', 1341865372=>'ON', 1341965373=>'ON', 1342065374=>'ON', 1342165375=>'ON', 1342265376=>'ON', 1342365377=>'ON', 1342465378=>'ON', 1342565379=>'ON', 1342665380=>'ON', 1342765381=>'ON', 1342865382=>'L', 1342965383=>'L', 1343065384=>'L', 1343165385=>'L', 1343265386=>'L', 1343365387=>'L', 1343465388=>'L', 1343565389=>'L', 1343665390=>'L', 1343765391=>'L', 1343865392=>'L', 1343965393=>'L', 1344065394=>'L', 1344165395=>'L', 1344265396=>'L', 1344365397=>'L', 1344465398=>'L', 1344565399=>'L', 1344665400=>'L', 1344765401=>'L', 1344865402=>'L', 1344965403=>'L', 1345065404=>'L', 1345165405=>'L', 1345265406=>'L', 1345365407=>'L', 1345465408=>'L', 1345565409=>'L', 1345665410=>'L', 1345765411=>'L', 1345865412=>'L', 1345965413=>'L', 1346065414=>'L', 1346165415=>'L', 1346265416=>'L', 1346365417=>'L', 1346465418=>'L', 1346565419=>'L', 1346665420=>'L', 1346765421=>'L', 1346865422=>'L', 1346965423=>'L', 1347065424=>'L', 1347165425=>'L', 1347265426=>'L', 1347365427=>'L', 1347465428=>'L', 1347565429=>'L', 1347665430=>'L', 1347765431=>'L', 1347865432=>'L', 1347965433=>'L', 1348065434=>'L', 1348165435=>'L', 1348265436=>'L', 1348365437=>'L', 1348465438=>'L', 1348565439=>'L', 1348665440=>'L', 1348765441=>'L', 1348865442=>'L', 1348965443=>'L', 1349065444=>'L', 1349165445=>'L', 1349265446=>'L', 1349365447=>'L', 1349465448=>'L', 1349565449=>'L', 1349665450=>'L', 1349765451=>'L', 1349865452=>'L', 1349965453=>'L', 1350065454=>'L', 1350165455=>'L', 1350265456=>'L', 1350365457=>'L', 1350465458=>'L', 1350565459=>'L', 1350665460=>'L', 1350765461=>'L', 1350865462=>'L', 1350965463=>'L', 1351065464=>'L', 1351165465=>'L', 1351265466=>'L', 1351365467=>'L', 1351465468=>'L', 1351565469=>'L', 1351665470=>'L', 1351765474=>'L', 1351865475=>'L', 1351965476=>'L', 1352065477=>'L', 1352165478=>'L', 1352265479=>'L', 1352365482=>'L', 1352465483=>'L', 1352565484=>'L', 1352665485=>'L', 1352765486=>'L', 1352865487=>'L', 1352965490=>'L', 1353065491=>'L', 1353165492=>'L', 1353265493=>'L', 1353365494=>'L', 1353465495=>'L', 1353565498=>'L', 1353665499=>'L', 1353765500=>'L', 1353865504=>'ET', 1353965505=>'ET', 1354065506=>'ON', 1354165507=>'ON', 1354265508=>'ON', 1354365509=>'ET', 1354465510=>'ET', 1354565512=>'ON', 1354665513=>'ON', 1354765514=>'ON', 1354865515=>'ON', 1354965516=>'ON', 1355065517=>'ON', 1355165518=>'ON', 1355265529=>'ON', 1355365530=>'ON', 1355465531=>'ON', 1355565532=>'ON', 1355665533=>'ON', 1355765536=>'L', 1355865537=>'L', 1355965538=>'L', 1356065539=>'L', 1356165540=>'L', 1356265541=>'L', 1356365542=>'L', 1356465543=>'L', 1356565544=>'L', 1356665545=>'L', 1356765546=>'L', 1356865547=>'L', 1356965549=>'L', 1357065550=>'L', 1357165551=>'L', 1357265552=>'L', 1357365553=>'L', 1357465554=>'L', 1357565555=>'L', 1357665556=>'L', 1357765557=>'L', 1357865558=>'L', 1357965559=>'L', 1358065560=>'L', 1358165561=>'L', 1358265562=>'L', 1358365563=>'L', 1358465564=>'L', 1358565565=>'L', 1358665566=>'L', 1358765567=>'L', 1358865568=>'L', 1358965569=>'L', 1359065570=>'L', 1359165571=>'L', 1359265572=>'L', 1359365573=>'L', 1359465574=>'L', 1359565576=>'L', 1359665577=>'L', 1359765578=>'L', 1359865579=>'L', 1359965580=>'L', 1360065581=>'L', 1360165582=>'L', 1360265583=>'L', 1360365584=>'L', 1360465585=>'L', 1360565586=>'L', 1360665587=>'L', 1360765588=>'L', 1360865589=>'L', 1360965590=>'L', 1361065591=>'L', 1361165592=>'L', 1361265593=>'L', 1361365594=>'L', 1361465596=>'L', 1361565597=>'L', 1361665599=>'L', 1361765600=>'L', 1361865601=>'L', 1361965602=>'L', 1362065603=>'L', 1362165604=>'L', 1362265605=>'L', 1362365606=>'L', 1362465607=>'L', 1362565608=>'L', 1362665609=>'L', 1362765610=>'L', 1362865611=>'L', 1362965612=>'L', 1363065613=>'L', 1363165616=>'L', 1363265617=>'L', 1363365618=>'L', 1363465619=>'L', 1363565620=>'L', 1363665621=>'L', 1363765622=>'L', 1363865623=>'L', 1363965624=>'L', 1364065625=>'L', 1364165626=>'L', 1364265627=>'L', 1364365628=>'L', 1364465629=>'L', 1364565664=>'L', 1364665665=>'L', 1364765666=>'L', 1364865667=>'L', 1364965668=>'L', 1365065669=>'L', 1365165670=>'L', 1365265671=>'L', 1365365672=>'L', 1365465673=>'L', 1365565674=>'L', 1365665675=>'L', 1365765676=>'L', 1365865677=>'L', 1365965678=>'L', 1366065679=>'L', 1366165680=>'L', 1366265681=>'L', 1366365682=>'L', 1366465683=>'L', 1366565684=>'L', 1366665685=>'L', 1366765686=>'L', 1366865687=>'L', 1366965688=>'L', 1367065689=>'L', 1367165690=>'L', 1367265691=>'L', 1367365692=>'L', 1367465693=>'L', 1367565694=>'L', 1367665695=>'L', 1367765696=>'L', 1367865697=>'L', 1367965698=>'L', 1368065699=>'L', 1368165700=>'L', 1368265701=>'L', 1368365702=>'L', 1368465703=>'L', 1368565704=>'L', 1368665705=>'L', 1368765706=>'L', 1368865707=>'L', 1368965708=>'L', 1369065709=>'L', 1369165710=>'L', 1369265711=>'L', 1369365712=>'L', 1369465713=>'L', 1369565714=>'L', 1369665715=>'L', 1369765716=>'L', 1369865717=>'L', 1369965718=>'L', 1370065719=>'L', 1370165720=>'L', 1370265721=>'L', 1370365722=>'L', 1370465723=>'L', 1370565724=>'L', 1370665725=>'L', 1370765726=>'L', 1370865727=>'L', 1370965728=>'L', 1371065729=>'L', 1371165730=>'L', 1371265731=>'L', 1371365732=>'L', 1371465733=>'L', 1371565734=>'L', 1371665735=>'L', 1371765736=>'L', 1371865737=>'L', 1371965738=>'L', 1372065739=>'L', 1372165740=>'L', 1372265741=>'L', 1372365742=>'L', 1372465743=>'L', 1372565744=>'L', 1372665745=>'L', 1372765746=>'L', 1372865747=>'L', 1372965748=>'L', 1373065749=>'L', 1373165750=>'L', 1373265751=>'L', 1373365752=>'L', 1373465753=>'L', 1373565754=>'L', 1373665755=>'L', 1373765756=>'L', 1373865757=>'L', 1373965758=>'L', 1374065759=>'L', 1374165760=>'L', 1374265761=>'L', 1374365762=>'L', 1374465763=>'L', 1374565764=>'L', 1374665765=>'L', 1374765766=>'L', 1374865767=>'L', 1374965768=>'L', 1375065769=>'L', 1375165770=>'L', 1375265771=>'L', 1375365772=>'L', 1375465773=>'L', 1375565774=>'L', 1375665775=>'L', 1375765776=>'L', 1375865777=>'L', 1375965778=>'L', 1376065779=>'L', 1376165780=>'L', 1376265781=>'L', 1376365782=>'L', 1376465783=>'L', 1376565784=>'L', 1376665785=>'L', 1376765786=>'L', 1376865792=>'L', 1376965793=>'ON', 1377065794=>'L', 1377165799=>'L', 1377265800=>'L', 1377365801=>'L', 1377465802=>'L', 1377565803=>'L', 1377665804=>'L', 1377765805=>'L', 1377865806=>'L', 1377965807=>'L', 1378065808=>'L', 1378165809=>'L', 1378265810=>'L', 1378365811=>'L', 1378465812=>'L', 1378565813=>'L', 1378665814=>'L', 1378765815=>'L', 1378865816=>'L', 1378965817=>'L', 1379065818=>'L', 1379165819=>'L', 1379265820=>'L', 1379365821=>'L', 1379465822=>'L', 1379565823=>'L', 1379665824=>'L', 1379765825=>'L', 1379865826=>'L', 1379965827=>'L', 1380065828=>'L', 1380165829=>'L', 1380265830=>'L', 1380365831=>'L', 1380465832=>'L', 1380565833=>'L', 1380665834=>'L', 1380765835=>'L', 1380865836=>'L', 1380965837=>'L', 1381065838=>'L', 1381165839=>'L', 1381265840=>'L', 1381365841=>'L', 1381465842=>'L', 1381565843=>'L', 1381665847=>'L', 1381765848=>'L', 1381865849=>'L', 1381965850=>'L', 1382065851=>'L', 1382165852=>'L', 1382265853=>'L', 1382365854=>'L', 1382465855=>'L', 1382565856=>'ON', 1382665857=>'ON', 1382765858=>'ON', 1382865859=>'ON', 1382965860=>'ON', 1383065861=>'ON', 1383165862=>'ON', 1383265863=>'ON', 1383365864=>'ON', 1383465865=>'ON', 1383565866=>'ON', 1383665867=>'ON', 1383765868=>'ON', 1383865869=>'ON', 1383965870=>'ON', 1384065871=>'ON', 1384165872=>'ON', 1384265873=>'ON', 1384365874=>'ON', 1384465875=>'ON', 1384565876=>'ON', 1384665877=>'ON', 1384765878=>'ON', 1384865879=>'ON', 1384965880=>'ON', 1385065881=>'ON', 1385165882=>'ON', 1385265883=>'ON', 1385365884=>'ON', 1385465885=>'ON', 1385565886=>'ON', 1385665887=>'ON', 1385765888=>'ON', 1385865889=>'ON', 1385965890=>'ON', 1386065891=>'ON', 1386165892=>'ON', 1386265893=>'ON', 1386365894=>'ON', 1386465895=>'ON', 1386565896=>'ON', 1386665897=>'ON', 1386765898=>'ON', 1386865899=>'ON', 1386965900=>'ON', 1387065901=>'ON', 1387165902=>'ON', 1387265903=>'ON', 1387365904=>'ON', 1387465905=>'ON', 1387565906=>'ON', 1387665907=>'ON', 1387765908=>'ON', 1387865909=>'ON', 1387965910=>'ON', 1388065911=>'ON', 1388165912=>'ON', 1388265913=>'ON', 1388365914=>'ON', 1388465915=>'ON', 1388565916=>'ON', 1388665917=>'ON', 1388765918=>'ON', 1388865919=>'ON', 1388965920=>'ON', 1389065921=>'ON', 1389165922=>'ON', 1389265923=>'ON', 1389365924=>'ON', 1389465925=>'ON', 1389565926=>'ON', 1389665927=>'ON', 1389765928=>'ON', 1389865929=>'ON', 1389965930=>'ON', 1390066304=>'L', 1390166305=>'L', 1390266306=>'L', 1390366307=>'L', 1390466308=>'L', 1390566309=>'L', 1390666310=>'L', 1390766311=>'L', 1390866312=>'L', 1390966313=>'L', 1391066314=>'L', 1391166315=>'L', 1391266316=>'L', 1391366317=>'L', 1391466318=>'L', 1391566319=>'L', 1391666320=>'L', 1391766321=>'L', 1391866322=>'L', 1391966323=>'L', 1392066324=>'L', 1392166325=>'L', 1392266326=>'L', 1392366327=>'L', 1392466328=>'L', 1392566329=>'L', 1392666330=>'L', 1392766331=>'L', 1392866332=>'L', 1392966333=>'L', 1393066334=>'L', 1393166336=>'L', 1393266337=>'L', 1393366338=>'L', 1393466339=>'L', 1393566352=>'L', 1393666353=>'L', 1393766354=>'L', 1393866355=>'L', 1393966356=>'L', 1394066357=>'L', 1394166358=>'L', 1394266359=>'L', 1394366360=>'L', 1394466361=>'L', 1394566362=>'L', 1394666363=>'L', 1394766364=>'L', 1394866365=>'L', 1394966366=>'L', 1395066367=>'L', 1395166368=>'L', 1395266369=>'L', 1395366370=>'L', 1395466371=>'L', 1395566372=>'L', 1395666373=>'L', 1395766374=>'L', 1395866375=>'L', 1395966376=>'L', 1396066377=>'L', 1396166378=>'L', 1396266432=>'L', 1396366433=>'L', 1396466434=>'L', 1396566435=>'L', 1396666436=>'L', 1396766437=>'L', 1396866438=>'L', 1396966439=>'L', 1397066440=>'L', 1397166441=>'L', 1397266442=>'L', 1397366443=>'L', 1397466444=>'L', 1397566445=>'L', 1397666446=>'L', 1397766447=>'L', 1397866448=>'L', 1397966449=>'L', 1398066450=>'L', 1398166451=>'L', 1398266452=>'L', 1398366453=>'L', 1398466454=>'L', 1398566455=>'L', 1398666456=>'L', 1398766457=>'L', 1398866458=>'L', 1398966459=>'L', 1399066460=>'L', 1399166461=>'L', 1399266463=>'L', 1399366464=>'L', 1399466465=>'L', 1399566466=>'L', 1399666467=>'L', 1399766468=>'L', 1399866469=>'L', 1399966470=>'L', 1400066471=>'L', 1400166472=>'L', 1400266473=>'L', 1400366474=>'L', 1400466475=>'L', 1400566476=>'L', 1400666477=>'L', 1400766478=>'L', 1400866479=>'L', 1400966480=>'L', 1401066481=>'L', 1401166482=>'L', 1401266483=>'L', 1401366484=>'L', 1401466485=>'L', 1401566486=>'L', 1401666487=>'L', 1401766488=>'L', 1401866489=>'L', 1401966490=>'L', 1402066491=>'L', 1402166492=>'L', 1402266493=>'L', 1402366494=>'L', 1402466495=>'L', 1402566496=>'L', 1402666497=>'L', 1402766498=>'L', 1402866499=>'L', 1402966504=>'L', 1403066505=>'L', 1403166506=>'L', 1403266507=>'L', 1403366508=>'L', 1403466509=>'L', 1403566510=>'L', 1403666511=>'L', 1403766512=>'L', 1403866513=>'L', 1403966514=>'L', 1404066515=>'L', 1404166516=>'L', 1404266517=>'L', 1404366560=>'L', 1404466561=>'L', 1404566562=>'L', 1404666563=>'L', 1404766564=>'L', 1404866565=>'L', 1404966566=>'L', 1405066567=>'L', 1405166568=>'L', 1405266569=>'L', 1405366570=>'L', 1405466571=>'L', 1405566572=>'L', 1405666573=>'L', 1405766574=>'L', 1405866575=>'L', 1405966576=>'L', 1406066577=>'L', 1406166578=>'L', 1406266579=>'L', 1406366580=>'L', 1406466581=>'L', 1406566582=>'L', 1406666583=>'L', 1406766584=>'L', 1406866585=>'L', 1406966586=>'L', 1407066587=>'L', 1407166588=>'L', 1407266589=>'L', 1407366590=>'L', 1407466591=>'L', 1407566592=>'L', 1407666593=>'L', 1407766594=>'L', 1407866595=>'L', 1407966596=>'L', 1408066597=>'L', 1408166598=>'L', 1408266599=>'L', 1408366600=>'L', 1408466601=>'L', 1408566602=>'L', 1408666603=>'L', 1408766604=>'L', 1408866605=>'L', 1408966606=>'L', 1409066607=>'L', 1409166608=>'L', 1409266609=>'L', 1409366610=>'L', 1409466611=>'L', 1409566612=>'L', 1409666613=>'L', 1409766614=>'L', 1409866615=>'L', 1409966616=>'L', 1410066617=>'L', 1410166618=>'L', 1410266619=>'L', 1410366620=>'L', 1410466621=>'L', 1410566622=>'L', 1410666623=>'L', 1410766624=>'L', 1410866625=>'L', 1410966626=>'L', 1411066627=>'L', 1411166628=>'L', 1411266629=>'L', 1411366630=>'L', 1411466631=>'L', 1411566632=>'L', 1411666633=>'L', 1411766634=>'L', 1411866635=>'L', 1411966636=>'L', 1412066637=>'L', 1412166638=>'L', 1412266639=>'L', 1412366640=>'L', 1412466641=>'L', 1412566642=>'L', 1412666643=>'L', 1412766644=>'L', 1412866645=>'L', 1412966646=>'L', 1413066647=>'L', 1413166648=>'L', 1413266649=>'L', 1413366650=>'L', 1413466651=>'L', 1413566652=>'L', 1413666653=>'L', 1413766654=>'L', 1413866655=>'L', 1413966656=>'L', 1414066657=>'L', 1414166658=>'L', 1414266659=>'L', 1414366660=>'L', 1414466661=>'L', 1414566662=>'L', 1414666663=>'L', 1414766664=>'L', 1414866665=>'L', 1414966666=>'L', 1415066667=>'L', 1415166668=>'L', 1415266669=>'L', 1415366670=>'L', 1415466671=>'L', 1415566672=>'L', 1415666673=>'L', 1415766674=>'L', 1415866675=>'L', 1415966676=>'L', 1416066677=>'L', 1416166678=>'L', 1416266679=>'L', 1416366680=>'L', 1416466681=>'L', 1416566682=>'L', 1416666683=>'L', 1416766684=>'L', 1416866685=>'L', 1416966686=>'L', 1417066687=>'L', 1417166688=>'L', 1417266689=>'L', 1417366690=>'L', 1417466691=>'L', 1417566692=>'L', 1417666693=>'L', 1417766694=>'L', 1417866695=>'L', 1417966696=>'L', 1418066697=>'L', 1418166698=>'L', 1418266699=>'L', 1418366700=>'L', 1418466701=>'L', 1418566702=>'L', 1418666703=>'L', 1418766704=>'L', 1418866705=>'L', 1418966706=>'L', 1419066707=>'L', 1419166708=>'L', 1419266709=>'L', 1419366710=>'L', 1419466711=>'L', 1419566712=>'L', 1419666713=>'L', 1419766714=>'L', 1419866715=>'L', 1419966716=>'L', 1420066717=>'L', 1420166720=>'L', 1420266721=>'L', 1420366722=>'L', 1420466723=>'L', 1420566724=>'L', 1420666725=>'L', 1420766726=>'L', 1420866727=>'L', 1420966728=>'L', 1421066729=>'L', 1421167584=>'R', 1421267585=>'R', 1421367586=>'R', 1421467587=>'R', 1421567588=>'R', 1421667589=>'R', 1421767592=>'R', 1421867594=>'R', 1421967595=>'R', 1422067596=>'R', 1422167597=>'R', 1422267598=>'R', 1422367599=>'R', 1422467600=>'R', 1422567601=>'R', 1422667602=>'R', 1422767603=>'R', 1422867604=>'R', 1422967605=>'R', 1423067606=>'R', 1423167607=>'R', 1423267608=>'R', 1423367609=>'R', 1423467610=>'R', 1423567611=>'R', 1423667612=>'R', 1423767613=>'R', 1423867614=>'R', 1423967615=>'R', 1424067616=>'R', 1424167617=>'R', 1424267618=>'R', 1424367619=>'R', 1424467620=>'R', 1424567621=>'R', 1424667622=>'R', 1424767623=>'R', 1424867624=>'R', 1424967625=>'R', 1425067626=>'R', 1425167627=>'R', 1425267628=>'R', 1425367629=>'R', 1425467630=>'R', 1425567631=>'R', 1425667632=>'R', 1425767633=>'R', 1425867634=>'R', 1425967635=>'R', 1426067636=>'R', 1426167637=>'R', 1426267639=>'R', 1426367640=>'R', 1426467644=>'R', 1426567647=>'R', 1426667840=>'R', 1426767841=>'R', 1426867842=>'R', 1426967843=>'R', 1427067844=>'R', 1427167845=>'R', 1427267846=>'R', 1427367847=>'R', 1427467848=>'R', 1427567849=>'R', 1427667850=>'R', 1427767851=>'R', 1427867852=>'R', 1427967853=>'R', 1428067854=>'R', 1428167855=>'R', 1428267856=>'R', 1428367857=>'R', 1428467858=>'R', 1428567859=>'R', 1428667860=>'R', 1428767861=>'R', 1428867862=>'R', 1428967863=>'R', 1429067864=>'R', 1429167865=>'R', 1429267871=>'ON', 1429368096=>'R', 1429468097=>'NSM', 1429568098=>'NSM', 1429668099=>'NSM', 1429768101=>'NSM', 1429868102=>'NSM', 1429968108=>'NSM', 1430068109=>'NSM', 1430168110=>'NSM', 1430268111=>'NSM', 1430368112=>'R', 1430468113=>'R', 1430568114=>'R', 1430668115=>'R', 1430768117=>'R', 1430868118=>'R', 1430968119=>'R', 1431068121=>'R', 1431168122=>'R', 1431268123=>'R', 1431368124=>'R', 1431468125=>'R', 1431568126=>'R', 1431668127=>'R', 1431768128=>'R', 1431868129=>'R', 1431968130=>'R', 1432068131=>'R', 1432168132=>'R', 1432268133=>'R', 1432368134=>'R', 1432468135=>'R', 1432568136=>'R', 1432668137=>'R', 1432768138=>'R', 1432868139=>'R', 1432968140=>'R', 1433068141=>'R', 1433168142=>'R', 1433268143=>'R', 1433368144=>'R', 1433468145=>'R', 1433568146=>'R', 1433668147=>'R', 1433768152=>'NSM', 1433868153=>'NSM', 1433968154=>'NSM', 1434068159=>'NSM', 1434168160=>'R', 1434268161=>'R', 1434368162=>'R', 1434468163=>'R', 1434568164=>'R', 1434668165=>'R', 1434768166=>'R', 1434868167=>'R', 1434968176=>'R', 1435068177=>'R', 1435168178=>'R', 1435268179=>'R', 1435368180=>'R', 1435468181=>'R', 1435568182=>'R', 1435668183=>'R', 1435768184=>'R', 1435873728=>'L', 1435973729=>'L', 1436073730=>'L', 1436173731=>'L', 1436273732=>'L', 1436373733=>'L', 1436473734=>'L', 1436573735=>'L', 1436673736=>'L', 1436773737=>'L', 1436873738=>'L', 1436973739=>'L', 1437073740=>'L', 1437173741=>'L', 1437273742=>'L', 1437373743=>'L', 1437473744=>'L', 1437573745=>'L', 1437673746=>'L', 1437773747=>'L', 1437873748=>'L', 1437973749=>'L', 1438073750=>'L', 1438173751=>'L', 1438273752=>'L', 1438373753=>'L', 1438473754=>'L', 1438573755=>'L', 1438673756=>'L', 1438773757=>'L', 1438873758=>'L', 1438973759=>'L', 1439073760=>'L', 1439173761=>'L', 1439273762=>'L', 1439373763=>'L', 1439473764=>'L', 1439573765=>'L', 1439673766=>'L', 1439773767=>'L', 1439873768=>'L', 1439973769=>'L', 1440073770=>'L', 1440173771=>'L', 1440273772=>'L', 1440373773=>'L', 1440473774=>'L', 1440573775=>'L', 1440673776=>'L', 1440773777=>'L', 1440873778=>'L', 1440973779=>'L', 1441073780=>'L', 1441173781=>'L', 1441273782=>'L', 1441373783=>'L', 1441473784=>'L', 1441573785=>'L', 1441673786=>'L', 1441773787=>'L', 1441873788=>'L', 1441973789=>'L', 1442073790=>'L', 1442173791=>'L', 1442273792=>'L', 1442373793=>'L', 1442473794=>'L', 1442573795=>'L', 1442673796=>'L', 1442773797=>'L', 1442873798=>'L', 1442973799=>'L', 1443073800=>'L', 1443173801=>'L', 1443273802=>'L', 1443373803=>'L', 1443473804=>'L', 1443573805=>'L', 1443673806=>'L', 1443773807=>'L', 1443873808=>'L', 1443973809=>'L', 1444073810=>'L', 1444173811=>'L', 1444273812=>'L', 1444373813=>'L', 1444473814=>'L', 1444573815=>'L', 1444673816=>'L', 1444773817=>'L', 1444873818=>'L', 1444973819=>'L', 1445073820=>'L', 1445173821=>'L', 1445273822=>'L', 1445373823=>'L', 1445473824=>'L', 1445573825=>'L', 1445673826=>'L', 1445773827=>'L', 1445873828=>'L', 1445973829=>'L', 1446073830=>'L', 1446173831=>'L', 1446273832=>'L', 1446373833=>'L', 1446473834=>'L', 1446573835=>'L', 1446673836=>'L', 1446773837=>'L', 1446873838=>'L', 1446973839=>'L', 1447073840=>'L', 1447173841=>'L', 1447273842=>'L', 1447373843=>'L', 1447473844=>'L', 1447573845=>'L', 1447673846=>'L', 1447773847=>'L', 1447873848=>'L', 1447973849=>'L', 1448073850=>'L', 1448173851=>'L', 1448273852=>'L', 1448373853=>'L', 1448473854=>'L', 1448573855=>'L', 1448673856=>'L', 1448773857=>'L', 1448873858=>'L', 1448973859=>'L', 1449073860=>'L', 1449173861=>'L', 1449273862=>'L', 1449373863=>'L', 1449473864=>'L', 1449573865=>'L', 1449673866=>'L', 1449773867=>'L', 1449873868=>'L', 1449973869=>'L', 1450073870=>'L', 1450173871=>'L', 1450273872=>'L', 1450373873=>'L', 1450473874=>'L', 1450573875=>'L', 1450673876=>'L', 1450773877=>'L', 1450873878=>'L', 1450973879=>'L', 1451073880=>'L', 1451173881=>'L', 1451273882=>'L', 1451373883=>'L', 1451473884=>'L', 1451573885=>'L', 1451673886=>'L', 1451773887=>'L', 1451873888=>'L', 1451973889=>'L', 1452073890=>'L', 1452173891=>'L', 1452273892=>'L', 1452373893=>'L', 1452473894=>'L', 1452573895=>'L', 1452673896=>'L', 1452773897=>'L', 1452873898=>'L', 1452973899=>'L', 1453073900=>'L', 1453173901=>'L', 1453273902=>'L', 1453373903=>'L', 1453473904=>'L', 1453573905=>'L', 1453673906=>'L', 1453773907=>'L', 1453873908=>'L', 1453973909=>'L', 1454073910=>'L', 1454173911=>'L', 1454273912=>'L', 1454373913=>'L', 1454473914=>'L', 1454573915=>'L', 1454673916=>'L', 1454773917=>'L', 1454873918=>'L', 1454973919=>'L', 1455073920=>'L', 1455173921=>'L', 1455273922=>'L', 1455373923=>'L', 1455473924=>'L', 1455573925=>'L', 1455673926=>'L', 1455773927=>'L', 1455873928=>'L', 1455973929=>'L', 1456073930=>'L', 1456173931=>'L', 1456273932=>'L', 1456373933=>'L', 1456473934=>'L', 1456573935=>'L', 1456673936=>'L', 1456773937=>'L', 1456873938=>'L', 1456973939=>'L', 1457073940=>'L', 1457173941=>'L', 1457273942=>'L', 1457373943=>'L', 1457473944=>'L', 1457573945=>'L', 1457673946=>'L', 1457773947=>'L', 1457873948=>'L', 1457973949=>'L', 1458073950=>'L', 1458173951=>'L', 1458273952=>'L', 1458373953=>'L', 1458473954=>'L', 1458573955=>'L', 1458673956=>'L', 1458773957=>'L', 1458873958=>'L', 1458973959=>'L', 1459073960=>'L', 1459173961=>'L', 1459273962=>'L', 1459373963=>'L', 1459473964=>'L', 1459573965=>'L', 1459673966=>'L', 1459773967=>'L', 1459873968=>'L', 1459973969=>'L', 1460073970=>'L', 1460173971=>'L', 1460273972=>'L', 1460373973=>'L', 1460473974=>'L', 1460573975=>'L', 1460673976=>'L', 1460773977=>'L', 1460873978=>'L', 1460973979=>'L', 1461073980=>'L', 1461173981=>'L', 1461273982=>'L', 1461373983=>'L', 1461473984=>'L', 1461573985=>'L', 1461673986=>'L', 1461773987=>'L', 1461873988=>'L', 1461973989=>'L', 1462073990=>'L', 1462173991=>'L', 1462273992=>'L', 1462373993=>'L', 1462473994=>'L', 1462573995=>'L', 1462673996=>'L', 1462773997=>'L', 1462873998=>'L', 1462973999=>'L', 1463074000=>'L', 1463174001=>'L', 1463274002=>'L', 1463374003=>'L', 1463474004=>'L', 1463574005=>'L', 1463674006=>'L', 1463774007=>'L', 1463874008=>'L', 1463974009=>'L', 1464074010=>'L', 1464174011=>'L', 1464274012=>'L', 1464374013=>'L', 1464474014=>'L', 1464574015=>'L', 1464674016=>'L', 1464774017=>'L', 1464874018=>'L', 1464974019=>'L', 1465074020=>'L', 1465174021=>'L', 1465274022=>'L', 1465374023=>'L', 1465474024=>'L', 1465574025=>'L', 1465674026=>'L', 1465774027=>'L', 1465874028=>'L', 1465974029=>'L', 1466074030=>'L', 1466174031=>'L', 1466274032=>'L', 1466374033=>'L', 1466474034=>'L', 1466574035=>'L', 1466674036=>'L', 1466774037=>'L', 1466874038=>'L', 1466974039=>'L', 1467074040=>'L', 1467174041=>'L', 1467274042=>'L', 1467374043=>'L', 1467474044=>'L', 1467574045=>'L', 1467674046=>'L', 1467774047=>'L', 1467874048=>'L', 1467974049=>'L', 1468074050=>'L', 1468174051=>'L', 1468274052=>'L', 1468374053=>'L', 1468474054=>'L', 1468574055=>'L', 1468674056=>'L', 1468774057=>'L', 1468874058=>'L', 1468974059=>'L', 1469074060=>'L', 1469174061=>'L', 1469274062=>'L', 1469374063=>'L', 1469474064=>'L', 1469574065=>'L', 1469674066=>'L', 1469774067=>'L', 1469874068=>'L', 1469974069=>'L', 1470074070=>'L', 1470174071=>'L', 1470274072=>'L', 1470374073=>'L', 1470474074=>'L', 1470574075=>'L', 1470674076=>'L', 1470774077=>'L', 1470874078=>'L', 1470974079=>'L', 1471074080=>'L', 1471174081=>'L', 1471274082=>'L', 1471374083=>'L', 1471474084=>'L', 1471574085=>'L', 1471674086=>'L', 1471774087=>'L', 1471874088=>'L', 1471974089=>'L', 1472074090=>'L', 1472174091=>'L', 1472274092=>'L', 1472374093=>'L', 1472474094=>'L', 1472574095=>'L', 1472674096=>'L', 1472774097=>'L', 1472874098=>'L', 1472974099=>'L', 1473074100=>'L', 1473174101=>'L', 1473274102=>'L', 1473374103=>'L', 1473474104=>'L', 1473574105=>'L', 1473674106=>'L', 1473774107=>'L', 1473874108=>'L', 1473974109=>'L', 1474074110=>'L', 1474174111=>'L', 1474274112=>'L', 1474374113=>'L', 1474474114=>'L', 1474574115=>'L', 1474674116=>'L', 1474774117=>'L', 1474874118=>'L', 1474974119=>'L', 1475074120=>'L', 1475174121=>'L', 1475274122=>'L', 1475374123=>'L', 1475474124=>'L', 1475574125=>'L', 1475674126=>'L', 1475774127=>'L', 1475874128=>'L', 1475974129=>'L', 1476074130=>'L', 1476174131=>'L', 1476274132=>'L', 1476374133=>'L', 1476474134=>'L', 1476574135=>'L', 1476674136=>'L', 1476774137=>'L', 1476874138=>'L', 1476974139=>'L', 1477074140=>'L', 1477174141=>'L', 1477274142=>'L', 1477374143=>'L', 1477474144=>'L', 1477574145=>'L', 1477674146=>'L', 1477774147=>'L', 1477874148=>'L', 1477974149=>'L', 1478074150=>'L', 1478174151=>'L', 1478274152=>'L', 1478374153=>'L', 1478474154=>'L', 1478574155=>'L', 1478674156=>'L', 1478774157=>'L', 1478874158=>'L', 1478974159=>'L', 1479074160=>'L', 1479174161=>'L', 1479274162=>'L', 1479374163=>'L', 1479474164=>'L', 1479574165=>'L', 1479674166=>'L', 1479774167=>'L', 1479874168=>'L', 1479974169=>'L', 1480074170=>'L', 1480174171=>'L', 1480274172=>'L', 1480374173=>'L', 1480474174=>'L', 1480574175=>'L', 1480674176=>'L', 1480774177=>'L', 1480874178=>'L', 1480974179=>'L', 1481074180=>'L', 1481174181=>'L', 1481274182=>'L', 1481374183=>'L', 1481474184=>'L', 1481574185=>'L', 1481674186=>'L', 1481774187=>'L', 1481874188=>'L', 1481974189=>'L', 1482074190=>'L', 1482174191=>'L', 1482274192=>'L', 1482374193=>'L', 1482474194=>'L', 1482574195=>'L', 1482674196=>'L', 1482774197=>'L', 1482874198=>'L', 1482974199=>'L', 1483074200=>'L', 1483174201=>'L', 1483274202=>'L', 1483374203=>'L', 1483474204=>'L', 1483574205=>'L', 1483674206=>'L', 1483774207=>'L', 1483874208=>'L', 1483974209=>'L', 1484074210=>'L', 1484174211=>'L', 1484274212=>'L', 1484374213=>'L', 1484474214=>'L', 1484574215=>'L', 1484674216=>'L', 1484774217=>'L', 1484874218=>'L', 1484974219=>'L', 1485074220=>'L', 1485174221=>'L', 1485274222=>'L', 1485374223=>'L', 1485474224=>'L', 1485574225=>'L', 1485674226=>'L', 1485774227=>'L', 1485874228=>'L', 1485974229=>'L', 1486074230=>'L', 1486174231=>'L', 1486274232=>'L', 1486374233=>'L', 1486474234=>'L', 1486574235=>'L', 1486674236=>'L', 1486774237=>'L', 1486874238=>'L', 1486974239=>'L', 1487074240=>'L', 1487174241=>'L', 1487274242=>'L', 1487374243=>'L', 1487474244=>'L', 1487574245=>'L', 1487674246=>'L', 1487774247=>'L', 1487874248=>'L', 1487974249=>'L', 1488074250=>'L', 1488174251=>'L', 1488274252=>'L', 1488374253=>'L', 1488474254=>'L', 1488574255=>'L', 1488674256=>'L', 1488774257=>'L', 1488874258=>'L', 1488974259=>'L', 1489074260=>'L', 1489174261=>'L', 1489274262=>'L', 1489374263=>'L', 1489474264=>'L', 1489574265=>'L', 1489674266=>'L', 1489774267=>'L', 1489874268=>'L', 1489974269=>'L', 1490074270=>'L', 1490174271=>'L', 1490274272=>'L', 1490374273=>'L', 1490474274=>'L', 1490574275=>'L', 1490674276=>'L', 1490774277=>'L', 1490874278=>'L', 1490974279=>'L', 1491074280=>'L', 1491174281=>'L', 1491274282=>'L', 1491374283=>'L', 1491474284=>'L', 1491574285=>'L', 1491674286=>'L', 1491774287=>'L', 1491874288=>'L', 1491974289=>'L', 1492074290=>'L', 1492174291=>'L', 1492274292=>'L', 1492374293=>'L', 1492474294=>'L', 1492574295=>'L', 1492674296=>'L', 1492774297=>'L', 1492874298=>'L', 1492974299=>'L', 1493074300=>'L', 1493174301=>'L', 1493274302=>'L', 1493374303=>'L', 1493474304=>'L', 1493574305=>'L', 1493674306=>'L', 1493774307=>'L', 1493874308=>'L', 1493974309=>'L', 1494074310=>'L', 1494174311=>'L', 1494274312=>'L', 1494374313=>'L', 1494474314=>'L', 1494574315=>'L', 1494674316=>'L', 1494774317=>'L', 1494874318=>'L', 1494974319=>'L', 1495074320=>'L', 1495174321=>'L', 1495274322=>'L', 1495374323=>'L', 1495474324=>'L', 1495574325=>'L', 1495674326=>'L', 1495774327=>'L', 1495874328=>'L', 1495974329=>'L', 1496074330=>'L', 1496174331=>'L', 1496274332=>'L', 1496374333=>'L', 1496474334=>'L', 1496574335=>'L', 1496674336=>'L', 1496774337=>'L', 1496874338=>'L', 1496974339=>'L', 1497074340=>'L', 1497174341=>'L', 1497274342=>'L', 1497374343=>'L', 1497474344=>'L', 1497574345=>'L', 1497674346=>'L', 1497774347=>'L', 1497874348=>'L', 1497974349=>'L', 1498074350=>'L', 1498174351=>'L', 1498274352=>'L', 1498374353=>'L', 1498474354=>'L', 1498574355=>'L', 1498674356=>'L', 1498774357=>'L', 1498874358=>'L', 1498974359=>'L', 1499074360=>'L', 1499174361=>'L', 1499274362=>'L', 1499374363=>'L', 1499474364=>'L', 1499574365=>'L', 1499674366=>'L', 1499774367=>'L', 1499874368=>'L', 1499974369=>'L', 1500074370=>'L', 1500174371=>'L', 1500274372=>'L', 1500374373=>'L', 1500474374=>'L', 1500574375=>'L', 1500674376=>'L', 1500774377=>'L', 1500874378=>'L', 1500974379=>'L', 1501074380=>'L', 1501174381=>'L', 1501274382=>'L', 1501374383=>'L', 1501474384=>'L', 1501574385=>'L', 1501674386=>'L', 1501774387=>'L', 1501874388=>'L', 1501974389=>'L', 1502074390=>'L', 1502174391=>'L', 1502274392=>'L', 1502374393=>'L', 1502474394=>'L', 1502574395=>'L', 1502674396=>'L', 1502774397=>'L', 1502874398=>'L', 1502974399=>'L', 1503074400=>'L', 1503174401=>'L', 1503274402=>'L', 1503374403=>'L', 1503474404=>'L', 1503574405=>'L', 1503674406=>'L', 1503774407=>'L', 1503874408=>'L', 1503974409=>'L', 1504074410=>'L', 1504174411=>'L', 1504274412=>'L', 1504374413=>'L', 1504474414=>'L', 1504574415=>'L', 1504674416=>'L', 1504774417=>'L', 1504874418=>'L', 1504974419=>'L', 1505074420=>'L', 1505174421=>'L', 1505274422=>'L', 1505374423=>'L', 1505474424=>'L', 1505574425=>'L', 1505674426=>'L', 1505774427=>'L', 1505874428=>'L', 1505974429=>'L', 1506074430=>'L', 1506174431=>'L', 1506274432=>'L', 1506374433=>'L', 1506474434=>'L', 1506574435=>'L', 1506674436=>'L', 1506774437=>'L', 1506874438=>'L', 1506974439=>'L', 1507074440=>'L', 1507174441=>'L', 1507274442=>'L', 1507374443=>'L', 1507474444=>'L', 1507574445=>'L', 1507674446=>'L', 1507774447=>'L', 1507874448=>'L', 1507974449=>'L', 1508074450=>'L', 1508174451=>'L', 1508274452=>'L', 1508374453=>'L', 1508474454=>'L', 1508574455=>'L', 1508674456=>'L', 1508774457=>'L', 1508874458=>'L', 1508974459=>'L', 1509074460=>'L', 1509174461=>'L', 1509274462=>'L', 1509374463=>'L', 1509474464=>'L', 1509574465=>'L', 1509674466=>'L', 1509774467=>'L', 1509874468=>'L', 1509974469=>'L', 1510074470=>'L', 1510174471=>'L', 1510274472=>'L', 1510374473=>'L', 1510474474=>'L', 1510574475=>'L', 1510674476=>'L', 1510774477=>'L', 1510874478=>'L', 1510974479=>'L', 1511074480=>'L', 1511174481=>'L', 1511274482=>'L', 1511374483=>'L', 1511474484=>'L', 1511574485=>'L', 1511674486=>'L', 1511774487=>'L', 1511874488=>'L', 1511974489=>'L', 1512074490=>'L', 1512174491=>'L', 1512274492=>'L', 1512374493=>'L', 1512474494=>'L', 1512574495=>'L', 1512674496=>'L', 1512774497=>'L', 1512874498=>'L', 1512974499=>'L', 1513074500=>'L', 1513174501=>'L', 1513274502=>'L', 1513374503=>'L', 1513474504=>'L', 1513574505=>'L', 1513674506=>'L', 1513774507=>'L', 1513874508=>'L', 1513974509=>'L', 1514074510=>'L', 1514174511=>'L', 1514274512=>'L', 1514374513=>'L', 1514474514=>'L', 1514574515=>'L', 1514674516=>'L', 1514774517=>'L', 1514874518=>'L', 1514974519=>'L', 1515074520=>'L', 1515174521=>'L', 1515274522=>'L', 1515374523=>'L', 1515474524=>'L', 1515574525=>'L', 1515674526=>'L', 1515774527=>'L', 1515874528=>'L', 1515974529=>'L', 1516074530=>'L', 1516174531=>'L', 1516274532=>'L', 1516374533=>'L', 1516474534=>'L', 1516574535=>'L', 1516674536=>'L', 1516774537=>'L', 1516874538=>'L', 1516974539=>'L', 1517074540=>'L', 1517174541=>'L', 1517274542=>'L', 1517374543=>'L', 1517474544=>'L', 1517574545=>'L', 1517674546=>'L', 1517774547=>'L', 1517874548=>'L', 1517974549=>'L', 1518074550=>'L', 1518174551=>'L', 1518274552=>'L', 1518374553=>'L', 1518474554=>'L', 1518574555=>'L', 1518674556=>'L', 1518774557=>'L', 1518874558=>'L', 1518974559=>'L', 1519074560=>'L', 1519174561=>'L', 1519274562=>'L', 1519374563=>'L', 1519474564=>'L', 1519574565=>'L', 1519674566=>'L', 1519774567=>'L', 1519874568=>'L', 1519974569=>'L', 1520074570=>'L', 1520174571=>'L', 1520274572=>'L', 1520374573=>'L', 1520474574=>'L', 1520574575=>'L', 1520674576=>'L', 1520774577=>'L', 1520874578=>'L', 1520974579=>'L', 1521074580=>'L', 1521174581=>'L', 1521274582=>'L', 1521374583=>'L', 1521474584=>'L', 1521574585=>'L', 1521674586=>'L', 1521774587=>'L', 1521874588=>'L', 1521974589=>'L', 1522074590=>'L', 1522174591=>'L', 1522274592=>'L', 1522374593=>'L', 1522474594=>'L', 1522574595=>'L', 1522674596=>'L', 1522774597=>'L', 1522874598=>'L', 1522974599=>'L', 1523074600=>'L', 1523174601=>'L', 1523274602=>'L', 1523374603=>'L', 1523474604=>'L', 1523574605=>'L', 1523674606=>'L', 1523774752=>'L', 1523874753=>'L', 1523974754=>'L', 1524074755=>'L', 1524174756=>'L', 1524274757=>'L', 1524374758=>'L', 1524474759=>'L', 1524574760=>'L', 1524674761=>'L', 1524774762=>'L', 1524874763=>'L', 1524974764=>'L', 1525074765=>'L', 1525174766=>'L', 1525274767=>'L', 1525374768=>'L', 1525474769=>'L', 1525574770=>'L', 1525674771=>'L', 1525774772=>'L', 1525874773=>'L', 1525974774=>'L', 1526074775=>'L', 1526174776=>'L', 1526274777=>'L', 1526374778=>'L', 1526474779=>'L', 1526574780=>'L', 1526674781=>'L', 1526774782=>'L', 1526874783=>'L', 1526974784=>'L', 1527074785=>'L', 1527174786=>'L', 1527274787=>'L', 1527374788=>'L', 1527474789=>'L', 1527574790=>'L', 1527674791=>'L', 1527774792=>'L', 1527874793=>'L', 1527974794=>'L', 1528074795=>'L', 1528174796=>'L', 1528274797=>'L', 1528374798=>'L', 1528474799=>'L', 1528574800=>'L', 1528674801=>'L', 1528774802=>'L', 1528874803=>'L', 1528974804=>'L', 1529074805=>'L', 1529174806=>'L', 1529274807=>'L', 1529374808=>'L', 1529474809=>'L', 1529574810=>'L', 1529674811=>'L', 1529774812=>'L', 1529874813=>'L', 1529974814=>'L', 1530074815=>'L', 1530174816=>'L', 1530274817=>'L', 1530374818=>'L', 1530474819=>'L', 1530574820=>'L', 1530674821=>'L', 1530774822=>'L', 1530874823=>'L', 1530974824=>'L', 1531074825=>'L', 1531174826=>'L', 1531274827=>'L', 1531374828=>'L', 1531474829=>'L', 1531574830=>'L', 1531674831=>'L', 1531774832=>'L', 1531874833=>'L', 1531974834=>'L', 1532074835=>'L', 1532174836=>'L', 1532274837=>'L', 1532374838=>'L', 1532474839=>'L', 1532574840=>'L', 1532674841=>'L', 1532774842=>'L', 1532874843=>'L', 1532974844=>'L', 1533074845=>'L', 1533174846=>'L', 1533274847=>'L', 1533374848=>'L', 1533474849=>'L', 1533574850=>'L', 1533674864=>'L', 1533774865=>'L', 1533874866=>'L', 1533974867=>'L', 15340118784=>'L', 15341118785=>'L', 15342118786=>'L', 15343118787=>'L', 15344118788=>'L', 15345118789=>'L', 15346118790=>'L', 15347118791=>'L', 15348118792=>'L', 15349118793=>'L', 15350118794=>'L', 15351118795=>'L', 15352118796=>'L', 15353118797=>'L', 15354118798=>'L', 15355118799=>'L', 15356118800=>'L', 15357118801=>'L', 15358118802=>'L', 15359118803=>'L', 15360118804=>'L', 15361118805=>'L', 15362118806=>'L', 15363118807=>'L', 15364118808=>'L', 15365118809=>'L', 15366118810=>'L', 15367118811=>'L', 15368118812=>'L', 15369118813=>'L', 15370118814=>'L', 15371118815=>'L', 15372118816=>'L', 15373118817=>'L', 15374118818=>'L', 15375118819=>'L', 15376118820=>'L', 15377118821=>'L', 15378118822=>'L', 15379118823=>'L', 15380118824=>'L', 15381118825=>'L', 15382118826=>'L', 15383118827=>'L', 15384118828=>'L', 15385118829=>'L', 15386118830=>'L', 15387118831=>'L', 15388118832=>'L', 15389118833=>'L', 15390118834=>'L', 15391118835=>'L', 15392118836=>'L', 15393118837=>'L', 15394118838=>'L', 15395118839=>'L', 15396118840=>'L', 15397118841=>'L', 15398118842=>'L', 15399118843=>'L', 15400118844=>'L', 15401118845=>'L', 15402118846=>'L', 15403118847=>'L', 15404118848=>'L', 15405118849=>'L', 15406118850=>'L', 15407118851=>'L', 15408118852=>'L', 15409118853=>'L', 15410118854=>'L', 15411118855=>'L', 15412118856=>'L', 15413118857=>'L', 15414118858=>'L', 15415118859=>'L', 15416118860=>'L', 15417118861=>'L', 15418118862=>'L', 15419118863=>'L', 15420118864=>'L', 15421118865=>'L', 15422118866=>'L', 15423118867=>'L', 15424118868=>'L', 15425118869=>'L', 15426118870=>'L', 15427118871=>'L', 15428118872=>'L', 15429118873=>'L', 15430118874=>'L', 15431118875=>'L', 15432118876=>'L', 15433118877=>'L', 15434118878=>'L', 15435118879=>'L', 15436118880=>'L', 15437118881=>'L', 15438118882=>'L', 15439118883=>'L', 15440118884=>'L', 15441118885=>'L', 15442118886=>'L', 15443118887=>'L', 15444118888=>'L', 15445118889=>'L', 15446118890=>'L', 15447118891=>'L', 15448118892=>'L', 15449118893=>'L', 15450118894=>'L', 15451118895=>'L', 15452118896=>'L', 15453118897=>'L', 15454118898=>'L', 15455118899=>'L', 15456118900=>'L', 15457118901=>'L', 15458118902=>'L', 15459118903=>'L', 15460118904=>'L', 15461118905=>'L', 15462118906=>'L', 15463118907=>'L', 15464118908=>'L', 15465118909=>'L', 15466118910=>'L', 15467118911=>'L', 15468118912=>'L', 15469118913=>'L', 15470118914=>'L', 15471118915=>'L', 15472118916=>'L', 15473118917=>'L', 15474118918=>'L', 15475118919=>'L', 15476118920=>'L', 15477118921=>'L', 15478118922=>'L', 15479118923=>'L', 15480118924=>'L', 15481118925=>'L', 15482118926=>'L', 15483118927=>'L', 15484118928=>'L', 15485118929=>'L', 15486118930=>'L', 15487118931=>'L', 15488118932=>'L', 15489118933=>'L', 15490118934=>'L', 15491118935=>'L', 15492118936=>'L', 15493118937=>'L', 15494118938=>'L', 15495118939=>'L', 15496118940=>'L', 15497118941=>'L', 15498118942=>'L', 15499118943=>'L', 15500118944=>'L', 15501118945=>'L', 15502118946=>'L', 15503118947=>'L', 15504118948=>'L', 15505118949=>'L', 15506118950=>'L', 15507118951=>'L', 15508118952=>'L', 15509118953=>'L', 15510118954=>'L', 15511118955=>'L', 15512118956=>'L', 15513118957=>'L', 15514118958=>'L', 15515118959=>'L', 15516118960=>'L', 15517118961=>'L', 15518118962=>'L', 15519118963=>'L', 15520118964=>'L', 15521118965=>'L', 15522118966=>'L', 15523118967=>'L', 15524118968=>'L', 15525118969=>'L', 15526118970=>'L', 15527118971=>'L', 15528118972=>'L', 15529118973=>'L', 15530118974=>'L', 15531118975=>'L', 15532118976=>'L', 15533118977=>'L', 15534118978=>'L', 15535118979=>'L', 15536118980=>'L', 15537118981=>'L', 15538118982=>'L', 15539118983=>'L', 15540118984=>'L', 15541118985=>'L', 15542118986=>'L', 15543118987=>'L', 15544118988=>'L', 15545118989=>'L', 15546118990=>'L', 15547118991=>'L', 15548118992=>'L', 15549118993=>'L', 15550118994=>'L', 15551118995=>'L', 15552118996=>'L', 15553118997=>'L', 15554118998=>'L', 15555118999=>'L', 15556119000=>'L', 15557119001=>'L', 15558119002=>'L', 15559119003=>'L', 15560119004=>'L', 15561119005=>'L', 15562119006=>'L', 15563119007=>'L', 15564119008=>'L', 15565119009=>'L', 15566119010=>'L', 15567119011=>'L', 15568119012=>'L', 15569119013=>'L', 15570119014=>'L', 15571119015=>'L', 15572119016=>'L', 15573119017=>'L', 15574119018=>'L', 15575119019=>'L', 15576119020=>'L', 15577119021=>'L', 15578119022=>'L', 15579119023=>'L', 15580119024=>'L', 15581119025=>'L', 15582119026=>'L', 15583119027=>'L', 15584119028=>'L', 15585119029=>'L', 15586119040=>'L', 15587119041=>'L', 15588119042=>'L', 15589119043=>'L', 15590119044=>'L', 15591119045=>'L', 15592119046=>'L', 15593119047=>'L', 15594119048=>'L', 15595119049=>'L', 15596119050=>'L', 15597119051=>'L', 15598119052=>'L', 15599119053=>'L', 15600119054=>'L', 15601119055=>'L', 15602119056=>'L', 15603119057=>'L', 15604119058=>'L', 15605119059=>'L', 15606119060=>'L', 15607119061=>'L', 15608119062=>'L', 15609119063=>'L', 15610119064=>'L', 15611119065=>'L', 15612119066=>'L', 15613119067=>'L', 15614119068=>'L', 15615119069=>'L', 15616119070=>'L', 15617119071=>'L', 15618119072=>'L', 15619119073=>'L', 15620119074=>'L', 15621119075=>'L', 15622119076=>'L', 15623119077=>'L', 15624119078=>'L', 15625119082=>'L', 15626119083=>'L', 15627119084=>'L', 15628119085=>'L', 15629119086=>'L', 15630119087=>'L', 15631119088=>'L', 15632119089=>'L', 15633119090=>'L', 15634119091=>'L', 15635119092=>'L', 15636119093=>'L', 15637119094=>'L', 15638119095=>'L', 15639119096=>'L', 15640119097=>'L', 15641119098=>'L', 15642119099=>'L', 15643119100=>'L', 15644119101=>'L', 15645119102=>'L', 15646119103=>'L', 15647119104=>'L', 15648119105=>'L', 15649119106=>'L', 15650119107=>'L', 15651119108=>'L', 15652119109=>'L', 15653119110=>'L', 15654119111=>'L', 15655119112=>'L', 15656119113=>'L', 15657119114=>'L', 15658119115=>'L', 15659119116=>'L', 15660119117=>'L', 15661119118=>'L', 15662119119=>'L', 15663119120=>'L', 15664119121=>'L', 15665119122=>'L', 15666119123=>'L', 15667119124=>'L', 15668119125=>'L', 15669119126=>'L', 15670119127=>'L', 15671119128=>'L', 15672119129=>'L', 15673119130=>'L', 15674119131=>'L', 15675119132=>'L', 15676119133=>'L', 15677119134=>'L', 15678119135=>'L', 15679119136=>'L', 15680119137=>'L', 15681119138=>'L', 15682119139=>'L', 15683119140=>'L', 15684119141=>'L', 15685119142=>'L', 15686119143=>'NSM', 15687119144=>'NSM', 15688119145=>'NSM', 15689119146=>'L', 15690119147=>'L', 15691119148=>'L', 15692119149=>'L', 15693119150=>'L', 15694119151=>'L', 15695119152=>'L', 15696119153=>'L', 15697119154=>'L', 15698119155=>'BN', 15699119156=>'BN', 15700119157=>'BN', 15701119158=>'BN', 15702119159=>'BN', 15703119160=>'BN', 15704119161=>'BN', 15705119162=>'BN', 15706119163=>'NSM', 15707119164=>'NSM', 15708119165=>'NSM', 15709119166=>'NSM', 15710119167=>'NSM', 15711119168=>'NSM', 15712119169=>'NSM', 15713119170=>'NSM', 15714119171=>'L', 15715119172=>'L', 15716119173=>'NSM', 15717119174=>'NSM', 15718119175=>'NSM', 15719119176=>'NSM', 15720119177=>'NSM', 15721119178=>'NSM', 15722119179=>'NSM', 15723119180=>'L', 15724119181=>'L', 15725119182=>'L', 15726119183=>'L', 15727119184=>'L', 15728119185=>'L', 15729119186=>'L', 15730119187=>'L', 15731119188=>'L', 15732119189=>'L', 15733119190=>'L', 15734119191=>'L', 15735119192=>'L', 15736119193=>'L', 15737119194=>'L', 15738119195=>'L', 15739119196=>'L', 15740119197=>'L', 15741119198=>'L', 15742119199=>'L', 15743119200=>'L', 15744119201=>'L', 15745119202=>'L', 15746119203=>'L', 15747119204=>'L', 15748119205=>'L', 15749119206=>'L', 15750119207=>'L', 15751119208=>'L', 15752119209=>'L', 15753119210=>'NSM', 15754119211=>'NSM', 15755119212=>'NSM', 15756119213=>'NSM', 15757119214=>'L', 15758119215=>'L', 15759119216=>'L', 15760119217=>'L', 15761119218=>'L', 15762119219=>'L', 15763119220=>'L', 15764119221=>'L', 15765119222=>'L', 15766119223=>'L', 15767119224=>'L', 15768119225=>'L', 15769119226=>'L', 15770119227=>'L', 15771119228=>'L', 15772119229=>'L', 15773119230=>'L', 15774119231=>'L', 15775119232=>'L', 15776119233=>'L', 15777119234=>'L', 15778119235=>'L', 15779119236=>'L', 15780119237=>'L', 15781119238=>'L', 15782119239=>'L', 15783119240=>'L', 15784119241=>'L', 15785119242=>'L', 15786119243=>'L', 15787119244=>'L', 15788119245=>'L', 15789119246=>'L', 15790119247=>'L', 15791119248=>'L', 15792119249=>'L', 15793119250=>'L', 15794119251=>'L', 15795119252=>'L', 15796119253=>'L', 15797119254=>'L', 15798119255=>'L', 15799119256=>'L', 15800119257=>'L', 15801119258=>'L', 15802119259=>'L', 15803119260=>'L', 15804119261=>'L', 15805119296=>'ON', 15806119297=>'ON', 15807119298=>'ON', 15808119299=>'ON', 15809119300=>'ON', 15810119301=>'ON', 15811119302=>'ON', 15812119303=>'ON', 15813119304=>'ON', 15814119305=>'ON', 15815119306=>'ON', 15816119307=>'ON', 15817119308=>'ON', 15818119309=>'ON', 15819119310=>'ON', 15820119311=>'ON', 15821119312=>'ON', 15822119313=>'ON', 15823119314=>'ON', 15824119315=>'ON', 15825119316=>'ON', 15826119317=>'ON', 15827119318=>'ON', 15828119319=>'ON', 15829119320=>'ON', 15830119321=>'ON', 15831119322=>'ON', 15832119323=>'ON', 15833119324=>'ON', 15834119325=>'ON', 15835119326=>'ON', 15836119327=>'ON', 15837119328=>'ON', 15838119329=>'ON', 15839119330=>'ON', 15840119331=>'ON', 15841119332=>'ON', 15842119333=>'ON', 15843119334=>'ON', 15844119335=>'ON', 15845119336=>'ON', 15846119337=>'ON', 15847119338=>'ON', 15848119339=>'ON', 15849119340=>'ON', 15850119341=>'ON', 15851119342=>'ON', 15852119343=>'ON', 15853119344=>'ON', 15854119345=>'ON', 15855119346=>'ON', 15856119347=>'ON', 15857119348=>'ON', 15858119349=>'ON', 15859119350=>'ON', 15860119351=>'ON', 15861119352=>'ON', 15862119353=>'ON', 15863119354=>'ON', 15864119355=>'ON', 15865119356=>'ON', 15866119357=>'ON', 15867119358=>'ON', 15868119359=>'ON', 15869119360=>'ON', 15870119361=>'ON', 15871119362=>'NSM', 15872119363=>'NSM', 15873119364=>'NSM', 15874119365=>'ON', 15875119552=>'ON', 15876119553=>'ON', 15877119554=>'ON', 15878119555=>'ON', 15879119556=>'ON', 15880119557=>'ON', 15881119558=>'ON', 15882119559=>'ON', 15883119560=>'ON', 15884119561=>'ON', 15885119562=>'ON', 15886119563=>'ON', 15887119564=>'ON', 15888119565=>'ON', 15889119566=>'ON', 15890119567=>'ON', 15891119568=>'ON', 15892119569=>'ON', 15893119570=>'ON', 15894119571=>'ON', 15895119572=>'ON', 15896119573=>'ON', 15897119574=>'ON', 15898119575=>'ON', 15899119576=>'ON', 15900119577=>'ON', 15901119578=>'ON', 15902119579=>'ON', 15903119580=>'ON', 15904119581=>'ON', 15905119582=>'ON', 15906119583=>'ON', 15907119584=>'ON', 15908119585=>'ON', 15909119586=>'ON', 15910119587=>'ON', 15911119588=>'ON', 15912119589=>'ON', 15913119590=>'ON', 15914119591=>'ON', 15915119592=>'ON', 15916119593=>'ON', 15917119594=>'ON', 15918119595=>'ON', 15919119596=>'ON', 15920119597=>'ON', 15921119598=>'ON', 15922119599=>'ON', 15923119600=>'ON', 15924119601=>'ON', 15925119602=>'ON', 15926119603=>'ON', 15927119604=>'ON', 15928119605=>'ON', 15929119606=>'ON', 15930119607=>'ON', 15931119608=>'ON', 15932119609=>'ON', 15933119610=>'ON', 15934119611=>'ON', 15935119612=>'ON', 15936119613=>'ON', 15937119614=>'ON', 15938119615=>'ON', 15939119616=>'ON', 15940119617=>'ON', 15941119618=>'ON', 15942119619=>'ON', 15943119620=>'ON', 15944119621=>'ON', 15945119622=>'ON', 15946119623=>'ON', 15947119624=>'ON', 15948119625=>'ON', 15949119626=>'ON', 15950119627=>'ON', 15951119628=>'ON', 15952119629=>'ON', 15953119630=>'ON', 15954119631=>'ON', 15955119632=>'ON', 15956119633=>'ON', 15957119634=>'ON', 15958119635=>'ON', 15959119636=>'ON', 15960119637=>'ON', 15961119638=>'ON', 15962119648=>'L', 15963119649=>'L', 15964119650=>'L', 15965119651=>'L', 15966119652=>'L', 15967119653=>'L', 15968119654=>'L', 15969119655=>'L', 15970119656=>'L', 15971119657=>'L', 15972119658=>'L', 15973119659=>'L', 15974119660=>'L', 15975119661=>'L', 15976119662=>'L', 15977119663=>'L', 15978119664=>'L', 15979119665=>'L', 15980119808=>'L', 15981119809=>'L', 15982119810=>'L', 15983119811=>'L', 15984119812=>'L', 15985119813=>'L', 15986119814=>'L', 15987119815=>'L', 15988119816=>'L', 15989119817=>'L', 15990119818=>'L', 15991119819=>'L', 15992119820=>'L', 15993119821=>'L', 15994119822=>'L', 15995119823=>'L', 15996119824=>'L', 15997119825=>'L', 15998119826=>'L', 15999119827=>'L', 16000119828=>'L', 16001119829=>'L', 16002119830=>'L', 16003119831=>'L', 16004119832=>'L', 16005119833=>'L', 16006119834=>'L', 16007119835=>'L', 16008119836=>'L', 16009119837=>'L', 16010119838=>'L', 16011119839=>'L', 16012119840=>'L', 16013119841=>'L', 16014119842=>'L', 16015119843=>'L', 16016119844=>'L', 16017119845=>'L', 16018119846=>'L', 16019119847=>'L', 16020119848=>'L', 16021119849=>'L', 16022119850=>'L', 16023119851=>'L', 16024119852=>'L', 16025119853=>'L', 16026119854=>'L', 16027119855=>'L', 16028119856=>'L', 16029119857=>'L', 16030119858=>'L', 16031119859=>'L', 16032119860=>'L', 16033119861=>'L', 16034119862=>'L', 16035119863=>'L', 16036119864=>'L', 16037119865=>'L', 16038119866=>'L', 16039119867=>'L', 16040119868=>'L', 16041119869=>'L', 16042119870=>'L', 16043119871=>'L', 16044119872=>'L', 16045119873=>'L', 16046119874=>'L', 16047119875=>'L', 16048119876=>'L', 16049119877=>'L', 16050119878=>'L', 16051119879=>'L', 16052119880=>'L', 16053119881=>'L', 16054119882=>'L', 16055119883=>'L', 16056119884=>'L', 16057119885=>'L', 16058119886=>'L', 16059119887=>'L', 16060119888=>'L', 16061119889=>'L', 16062119890=>'L', 16063119891=>'L', 16064119892=>'L', 16065119894=>'L', 16066119895=>'L', 16067119896=>'L', 16068119897=>'L', 16069119898=>'L', 16070119899=>'L', 16071119900=>'L', 16072119901=>'L', 16073119902=>'L', 16074119903=>'L', 16075119904=>'L', 16076119905=>'L', 16077119906=>'L', 16078119907=>'L', 16079119908=>'L', 16080119909=>'L', 16081119910=>'L', 16082119911=>'L', 16083119912=>'L', 16084119913=>'L', 16085119914=>'L', 16086119915=>'L', 16087119916=>'L', 16088119917=>'L', 16089119918=>'L', 16090119919=>'L', 16091119920=>'L', 16092119921=>'L', 16093119922=>'L', 16094119923=>'L', 16095119924=>'L', 16096119925=>'L', 16097119926=>'L', 16098119927=>'L', 16099119928=>'L', 16100119929=>'L', 16101119930=>'L', 16102119931=>'L', 16103119932=>'L', 16104119933=>'L', 16105119934=>'L', 16106119935=>'L', 16107119936=>'L', 16108119937=>'L', 16109119938=>'L', 16110119939=>'L', 16111119940=>'L', 16112119941=>'L', 16113119942=>'L', 16114119943=>'L', 16115119944=>'L', 16116119945=>'L', 16117119946=>'L', 16118119947=>'L', 16119119948=>'L', 16120119949=>'L', 16121119950=>'L', 16122119951=>'L', 16123119952=>'L', 16124119953=>'L', 16125119954=>'L', 16126119955=>'L', 16127119956=>'L', 16128119957=>'L', 16129119958=>'L', 16130119959=>'L', 16131119960=>'L', 16132119961=>'L', 16133119962=>'L', 16134119963=>'L', 16135119964=>'L', 16136119966=>'L', 16137119967=>'L', 16138119970=>'L', 16139119973=>'L', 16140119974=>'L', 16141119977=>'L', 16142119978=>'L', 16143119979=>'L', 16144119980=>'L', 16145119982=>'L', 16146119983=>'L', 16147119984=>'L', 16148119985=>'L', 16149119986=>'L', 16150119987=>'L', 16151119988=>'L', 16152119989=>'L', 16153119990=>'L', 16154119991=>'L', 16155119992=>'L', 16156119993=>'L', 16157119995=>'L', 16158119997=>'L', 16159119998=>'L', 16160119999=>'L', 16161120000=>'L', 16162120001=>'L', 16163120002=>'L', 16164120003=>'L', 16165120005=>'L', 16166120006=>'L', 16167120007=>'L', 16168120008=>'L', 16169120009=>'L', 16170120010=>'L', 16171120011=>'L', 16172120012=>'L', 16173120013=>'L', 16174120014=>'L', 16175120015=>'L', 16176120016=>'L', 16177120017=>'L', 16178120018=>'L', 16179120019=>'L', 16180120020=>'L', 16181120021=>'L', 16182120022=>'L', 16183120023=>'L', 16184120024=>'L', 16185120025=>'L', 16186120026=>'L', 16187120027=>'L', 16188120028=>'L', 16189120029=>'L', 16190120030=>'L', 16191120031=>'L', 16192120032=>'L', 16193120033=>'L', 16194120034=>'L', 16195120035=>'L', 16196120036=>'L', 16197120037=>'L', 16198120038=>'L', 16199120039=>'L', 16200120040=>'L', 16201120041=>'L', 16202120042=>'L', 16203120043=>'L', 16204120044=>'L', 16205120045=>'L', 16206120046=>'L', 16207120047=>'L', 16208120048=>'L', 16209120049=>'L', 16210120050=>'L', 16211120051=>'L', 16212120052=>'L', 16213120053=>'L', 16214120054=>'L', 16215120055=>'L', 16216120056=>'L', 16217120057=>'L', 16218120058=>'L', 16219120059=>'L', 16220120060=>'L', 16221120061=>'L', 16222120062=>'L', 16223120063=>'L', 16224120064=>'L', 16225120065=>'L', 16226120066=>'L', 16227120067=>'L', 16228120068=>'L', 16229120069=>'L', 16230120071=>'L', 16231120072=>'L', 16232120073=>'L', 16233120074=>'L', 16234120077=>'L', 16235120078=>'L', 16236120079=>'L', 16237120080=>'L', 16238120081=>'L', 16239120082=>'L', 16240120083=>'L', 16241120084=>'L', 16242120086=>'L', 16243120087=>'L', 16244120088=>'L', 16245120089=>'L', 16246120090=>'L', 16247120091=>'L', 16248120092=>'L', 16249120094=>'L', 16250120095=>'L', 16251120096=>'L', 16252120097=>'L', 16253120098=>'L', 16254120099=>'L', 16255120100=>'L', 16256120101=>'L', 16257120102=>'L', 16258120103=>'L', 16259120104=>'L', 16260120105=>'L', 16261120106=>'L', 16262120107=>'L', 16263120108=>'L', 16264120109=>'L', 16265120110=>'L', 16266120111=>'L', 16267120112=>'L', 16268120113=>'L', 16269120114=>'L', 16270120115=>'L', 16271120116=>'L', 16272120117=>'L', 16273120118=>'L', 16274120119=>'L', 16275120120=>'L', 16276120121=>'L', 16277120123=>'L', 16278120124=>'L', 16279120125=>'L', 16280120126=>'L', 16281120128=>'L', 16282120129=>'L', 16283120130=>'L', 16284120131=>'L', 16285120132=>'L', 16286120134=>'L', 16287120138=>'L', 16288120139=>'L', 16289120140=>'L', 16290120141=>'L', 16291120142=>'L', 16292120143=>'L', 16293120144=>'L', 16294120146=>'L', 16295120147=>'L', 16296120148=>'L', 16297120149=>'L', 16298120150=>'L', 16299120151=>'L', 16300120152=>'L', 16301120153=>'L', 16302120154=>'L', 16303120155=>'L', 16304120156=>'L', 16305120157=>'L', 16306120158=>'L', 16307120159=>'L', 16308120160=>'L', 16309120161=>'L', 16310120162=>'L', 16311120163=>'L', 16312120164=>'L', 16313120165=>'L', 16314120166=>'L', 16315120167=>'L', 16316120168=>'L', 16317120169=>'L', 16318120170=>'L', 16319120171=>'L', 16320120172=>'L', 16321120173=>'L', 16322120174=>'L', 16323120175=>'L', 16324120176=>'L', 16325120177=>'L', 16326120178=>'L', 16327120179=>'L', 16328120180=>'L', 16329120181=>'L', 16330120182=>'L', 16331120183=>'L', 16332120184=>'L', 16333120185=>'L', 16334120186=>'L', 16335120187=>'L', 16336120188=>'L', 16337120189=>'L', 16338120190=>'L', 16339120191=>'L', 16340120192=>'L', 16341120193=>'L', 16342120194=>'L', 16343120195=>'L', 16344120196=>'L', 16345120197=>'L', 16346120198=>'L', 16347120199=>'L', 16348120200=>'L', 16349120201=>'L', 16350120202=>'L', 16351120203=>'L', 16352120204=>'L', 16353120205=>'L', 16354120206=>'L', 16355120207=>'L', 16356120208=>'L', 16357120209=>'L', 16358120210=>'L', 16359120211=>'L', 16360120212=>'L', 16361120213=>'L', 16362120214=>'L', 16363120215=>'L', 16364120216=>'L', 16365120217=>'L', 16366120218=>'L', 16367120219=>'L', 16368120220=>'L', 16369120221=>'L', 16370120222=>'L', 16371120223=>'L', 16372120224=>'L', 16373120225=>'L', 16374120226=>'L', 16375120227=>'L', 16376120228=>'L', 16377120229=>'L', 16378120230=>'L', 16379120231=>'L', 16380120232=>'L', 16381120233=>'L', 16382120234=>'L', 16383120235=>'L', 16384120236=>'L', 16385120237=>'L', 16386120238=>'L', 16387120239=>'L', 16388120240=>'L', 16389120241=>'L', 16390120242=>'L', 16391120243=>'L', 16392120244=>'L', 16393120245=>'L', 16394120246=>'L', 16395120247=>'L', 16396120248=>'L', 16397120249=>'L', 16398120250=>'L', 16399120251=>'L', 16400120252=>'L', 16401120253=>'L', 16402120254=>'L', 16403120255=>'L', 16404120256=>'L', 16405120257=>'L', 16406120258=>'L', 16407120259=>'L', 16408120260=>'L', 16409120261=>'L', 16410120262=>'L', 16411120263=>'L', 16412120264=>'L', 16413120265=>'L', 16414120266=>'L', 16415120267=>'L', 16416120268=>'L', 16417120269=>'L', 16418120270=>'L', 16419120271=>'L', 16420120272=>'L', 16421120273=>'L', 16422120274=>'L', 16423120275=>'L', 16424120276=>'L', 16425120277=>'L', 16426120278=>'L', 16427120279=>'L', 16428120280=>'L', 16429120281=>'L', 16430120282=>'L', 16431120283=>'L', 16432120284=>'L', 16433120285=>'L', 16434120286=>'L', 16435120287=>'L', 16436120288=>'L', 16437120289=>'L', 16438120290=>'L', 16439120291=>'L', 16440120292=>'L', 16441120293=>'L', 16442120294=>'L', 16443120295=>'L', 16444120296=>'L', 16445120297=>'L', 16446120298=>'L', 16447120299=>'L', 16448120300=>'L', 16449120301=>'L', 16450120302=>'L', 16451120303=>'L', 16452120304=>'L', 16453120305=>'L', 16454120306=>'L', 16455120307=>'L', 16456120308=>'L', 16457120309=>'L', 16458120310=>'L', 16459120311=>'L', 16460120312=>'L', 16461120313=>'L', 16462120314=>'L', 16463120315=>'L', 16464120316=>'L', 16465120317=>'L', 16466120318=>'L', 16467120319=>'L', 16468120320=>'L', 16469120321=>'L', 16470120322=>'L', 16471120323=>'L', 16472120324=>'L', 16473120325=>'L', 16474120326=>'L', 16475120327=>'L', 16476120328=>'L', 16477120329=>'L', 16478120330=>'L', 16479120331=>'L', 16480120332=>'L', 16481120333=>'L', 16482120334=>'L', 16483120335=>'L', 16484120336=>'L', 16485120337=>'L', 16486120338=>'L', 16487120339=>'L', 16488120340=>'L', 16489120341=>'L', 16490120342=>'L', 16491120343=>'L', 16492120344=>'L', 16493120345=>'L', 16494120346=>'L', 16495120347=>'L', 16496120348=>'L', 16497120349=>'L', 16498120350=>'L', 16499120351=>'L', 16500120352=>'L', 16501120353=>'L', 16502120354=>'L', 16503120355=>'L', 16504120356=>'L', 16505120357=>'L', 16506120358=>'L', 16507120359=>'L', 16508120360=>'L', 16509120361=>'L', 16510120362=>'L', 16511120363=>'L', 16512120364=>'L', 16513120365=>'L', 16514120366=>'L', 16515120367=>'L', 16516120368=>'L', 16517120369=>'L', 16518120370=>'L', 16519120371=>'L', 16520120372=>'L', 16521120373=>'L', 16522120374=>'L', 16523120375=>'L', 16524120376=>'L', 16525120377=>'L', 16526120378=>'L', 16527120379=>'L', 16528120380=>'L', 16529120381=>'L', 16530120382=>'L', 16531120383=>'L', 16532120384=>'L', 16533120385=>'L', 16534120386=>'L', 16535120387=>'L', 16536120388=>'L', 16537120389=>'L', 16538120390=>'L', 16539120391=>'L', 16540120392=>'L', 16541120393=>'L', 16542120394=>'L', 16543120395=>'L', 16544120396=>'L', 16545120397=>'L', 16546120398=>'L', 16547120399=>'L', 16548120400=>'L', 16549120401=>'L', 16550120402=>'L', 16551120403=>'L', 16552120404=>'L', 16553120405=>'L', 16554120406=>'L', 16555120407=>'L', 16556120408=>'L', 16557120409=>'L', 16558120410=>'L', 16559120411=>'L', 16560120412=>'L', 16561120413=>'L', 16562120414=>'L', 16563120415=>'L', 16564120416=>'L', 16565120417=>'L', 16566120418=>'L', 16567120419=>'L', 16568120420=>'L', 16569120421=>'L', 16570120422=>'L', 16571120423=>'L', 16572120424=>'L', 16573120425=>'L', 16574120426=>'L', 16575120427=>'L', 16576120428=>'L', 16577120429=>'L', 16578120430=>'L', 16579120431=>'L', 16580120432=>'L', 16581120433=>'L', 16582120434=>'L', 16583120435=>'L', 16584120436=>'L', 16585120437=>'L', 16586120438=>'L', 16587120439=>'L', 16588120440=>'L', 16589120441=>'L', 16590120442=>'L', 16591120443=>'L', 16592120444=>'L', 16593120445=>'L', 16594120446=>'L', 16595120447=>'L', 16596120448=>'L', 16597120449=>'L', 16598120450=>'L', 16599120451=>'L', 16600120452=>'L', 16601120453=>'L', 16602120454=>'L', 16603120455=>'L', 16604120456=>'L', 16605120457=>'L', 16606120458=>'L', 16607120459=>'L', 16608120460=>'L', 16609120461=>'L', 16610120462=>'L', 16611120463=>'L', 16612120464=>'L', 16613120465=>'L', 16614120466=>'L', 16615120467=>'L', 16616120468=>'L', 16617120469=>'L', 16618120470=>'L', 16619120471=>'L', 16620120472=>'L', 16621120473=>'L', 16622120474=>'L', 16623120475=>'L', 16624120476=>'L', 16625120477=>'L', 16626120478=>'L', 16627120479=>'L', 16628120480=>'L', 16629120481=>'L', 16630120482=>'L', 16631120483=>'L', 16632120484=>'L', 16633120485=>'L', 16634120488=>'L', 16635120489=>'L', 16636120490=>'L', 16637120491=>'L', 16638120492=>'L', 16639120493=>'L', 16640120494=>'L', 16641120495=>'L', 16642120496=>'L', 16643120497=>'L', 16644120498=>'L', 16645120499=>'L', 16646120500=>'L', 16647120501=>'L', 16648120502=>'L', 16649120503=>'L', 16650120504=>'L', 16651120505=>'L', 16652120506=>'L', 16653120507=>'L', 16654120508=>'L', 16655120509=>'L', 16656120510=>'L', 16657120511=>'L', 16658120512=>'L', 16659120513=>'L', 16660120514=>'L', 16661120515=>'L', 16662120516=>'L', 16663120517=>'L', 16664120518=>'L', 16665120519=>'L', 16666120520=>'L', 16667120521=>'L', 16668120522=>'L', 16669120523=>'L', 16670120524=>'L', 16671120525=>'L', 16672120526=>'L', 16673120527=>'L', 16674120528=>'L', 16675120529=>'L', 16676120530=>'L', 16677120531=>'L', 16678120532=>'L', 16679120533=>'L', 16680120534=>'L', 16681120535=>'L', 16682120536=>'L', 16683120537=>'L', 16684120538=>'L', 16685120539=>'L', 16686120540=>'L', 16687120541=>'L', 16688120542=>'L', 16689120543=>'L', 16690120544=>'L', 16691120545=>'L', 16692120546=>'L', 16693120547=>'L', 16694120548=>'L', 16695120549=>'L', 16696120550=>'L', 16697120551=>'L', 16698120552=>'L', 16699120553=>'L', 16700120554=>'L', 16701120555=>'L', 16702120556=>'L', 16703120557=>'L', 16704120558=>'L', 16705120559=>'L', 16706120560=>'L', 16707120561=>'L', 16708120562=>'L', 16709120563=>'L', 16710120564=>'L', 16711120565=>'L', 16712120566=>'L', 16713120567=>'L', 16714120568=>'L', 16715120569=>'L', 16716120570=>'L', 16717120571=>'L', 16718120572=>'L', 16719120573=>'L', 16720120574=>'L', 16721120575=>'L', 16722120576=>'L', 16723120577=>'L', 16724120578=>'L', 16725120579=>'L', 16726120580=>'L', 16727120581=>'L', 16728120582=>'L', 16729120583=>'L', 16730120584=>'L', 16731120585=>'L', 16732120586=>'L', 16733120587=>'L', 16734120588=>'L', 16735120589=>'L', 16736120590=>'L', 16737120591=>'L', 16738120592=>'L', 16739120593=>'L', 16740120594=>'L', 16741120595=>'L', 16742120596=>'L', 16743120597=>'L', 16744120598=>'L', 16745120599=>'L', 16746120600=>'L', 16747120601=>'L', 16748120602=>'L', 16749120603=>'L', 16750120604=>'L', 16751120605=>'L', 16752120606=>'L', 16753120607=>'L', 16754120608=>'L', 16755120609=>'L', 16756120610=>'L', 16757120611=>'L', 16758120612=>'L', 16759120613=>'L', 16760120614=>'L', 16761120615=>'L', 16762120616=>'L', 16763120617=>'L', 16764120618=>'L', 16765120619=>'L', 16766120620=>'L', 16767120621=>'L', 16768120622=>'L', 16769120623=>'L', 16770120624=>'L', 16771120625=>'L', 16772120626=>'L', 16773120627=>'L', 16774120628=>'L', 16775120629=>'L', 16776120630=>'L', 16777120631=>'L', 16778120632=>'L', 16779120633=>'L', 16780120634=>'L', 16781120635=>'L', 16782120636=>'L', 16783120637=>'L', 16784120638=>'L', 16785120639=>'L', 16786120640=>'L', 16787120641=>'L', 16788120642=>'L', 16789120643=>'L', 16790120644=>'L', 16791120645=>'L', 16792120646=>'L', 16793120647=>'L', 16794120648=>'L', 16795120649=>'L', 16796120650=>'L', 16797120651=>'L', 16798120652=>'L', 16799120653=>'L', 16800120654=>'L', 16801120655=>'L', 16802120656=>'L', 16803120657=>'L', 16804120658=>'L', 16805120659=>'L', 16806120660=>'L', 16807120661=>'L', 16808120662=>'L', 16809120663=>'L', 16810120664=>'L', 16811120665=>'L', 16812120666=>'L', 16813120667=>'L', 16814120668=>'L', 16815120669=>'L', 16816120670=>'L', 16817120671=>'L', 16818120672=>'L', 16819120673=>'L', 16820120674=>'L', 16821120675=>'L', 16822120676=>'L', 16823120677=>'L', 16824120678=>'L', 16825120679=>'L', 16826120680=>'L', 16827120681=>'L', 16828120682=>'L', 16829120683=>'L', 16830120684=>'L', 16831120685=>'L', 16832120686=>'L', 16833120687=>'L', 16834120688=>'L', 16835120689=>'L', 16836120690=>'L', 16837120691=>'L', 16838120692=>'L', 16839120693=>'L', 16840120694=>'L', 16841120695=>'L', 16842120696=>'L', 16843120697=>'L', 16844120698=>'L', 16845120699=>'L', 16846120700=>'L', 16847120701=>'L', 16848120702=>'L', 16849120703=>'L', 16850120704=>'L', 16851120705=>'L', 16852120706=>'L', 16853120707=>'L', 16854120708=>'L', 16855120709=>'L', 16856120710=>'L', 16857120711=>'L', 16858120712=>'L', 16859120713=>'L', 16860120714=>'L', 16861120715=>'L', 16862120716=>'L', 16863120717=>'L', 16864120718=>'L', 16865120719=>'L', 16866120720=>'L', 16867120721=>'L', 16868120722=>'L', 16869120723=>'L', 16870120724=>'L', 16871120725=>'L', 16872120726=>'L', 16873120727=>'L', 16874120728=>'L', 16875120729=>'L', 16876120730=>'L', 16877120731=>'L', 16878120732=>'L', 16879120733=>'L', 16880120734=>'L', 16881120735=>'L', 16882120736=>'L', 16883120737=>'L', 16884120738=>'L', 16885120739=>'L', 16886120740=>'L', 16887120741=>'L', 16888120742=>'L', 16889120743=>'L', 16890120744=>'L', 16891120745=>'L', 16892120746=>'L', 16893120747=>'L', 16894120748=>'L', 16895120749=>'L', 16896120750=>'L', 16897120751=>'L', 16898120752=>'L', 16899120753=>'L', 16900120754=>'L', 16901120755=>'L', 16902120756=>'L', 16903120757=>'L', 16904120758=>'L', 16905120759=>'L', 16906120760=>'L', 16907120761=>'L', 16908120762=>'L', 16909120763=>'L', 16910120764=>'L', 16911120765=>'L', 16912120766=>'L', 16913120767=>'L', 16914120768=>'L', 16915120769=>'L', 16916120770=>'L', 16917120771=>'L', 16918120772=>'L', 16919120773=>'L', 16920120774=>'L', 16921120775=>'L', 16922120776=>'L', 16923120777=>'L', 16924120778=>'L', 16925120779=>'L', 16926120782=>'EN', 16927120783=>'EN', 16928120784=>'EN', 16929120785=>'EN', 16930120786=>'EN', 16931120787=>'EN', 16932120788=>'EN', 16933120789=>'EN', 16934120790=>'EN', 16935120791=>'EN', 16936120792=>'EN', 16937120793=>'EN', 16938120794=>'EN', 16939120795=>'EN', 16940120796=>'EN', 16941120797=>'EN', 16942120798=>'EN', 16943120799=>'EN', 16944120800=>'EN', 16945120801=>'EN', 16946120802=>'EN', 16947120803=>'EN', 16948120804=>'EN', 16949120805=>'EN', 16950120806=>'EN', 16951120807=>'EN', 16952120808=>'EN', 16953120809=>'EN', 16954120810=>'EN', 16955120811=>'EN', 16956120812=>'EN', 16957120813=>'EN', 16958120814=>'EN', 16959120815=>'EN', 16960120816=>'EN', 16961120817=>'EN', 16962120818=>'EN', 16963120819=>'EN', 16964120820=>'EN', 16965120821=>'EN', 16966120822=>'EN', 16967120823=>'EN', 16968120824=>'EN', 16969120825=>'EN', 16970120826=>'EN', 16971120827=>'EN', 16972120828=>'EN', 16973120829=>'EN', 16974120830=>'EN', 16975120831=>'EN', 16976131072=>'L', 16977173782=>'L', 16978194560=>'L', 16979194561=>'L', 16980194562=>'L', 16981194563=>'L', 16982194564=>'L', 16983194565=>'L', 16984194566=>'L', 16985194567=>'L', 16986194568=>'L', 16987194569=>'L', 16988194570=>'L', 16989194571=>'L', 16990194572=>'L', 16991194573=>'L', 16992194574=>'L', 16993194575=>'L', 16994194576=>'L', 16995194577=>'L', 16996194578=>'L', 16997194579=>'L', 16998194580=>'L', 16999194581=>'L', 17000194582=>'L', 17001194583=>'L', 17002194584=>'L', 17003194585=>'L', 17004194586=>'L', 17005194587=>'L', 17006194588=>'L', 17007194589=>'L', 17008194590=>'L', 17009194591=>'L', 17010194592=>'L', 17011194593=>'L', 17012194594=>'L', 17013194595=>'L', 17014194596=>'L', 17015194597=>'L', 17016194598=>'L', 17017194599=>'L', 17018194600=>'L', 17019194601=>'L', 17020194602=>'L', 17021194603=>'L', 17022194604=>'L', 17023194605=>'L', 17024194606=>'L', 17025194607=>'L', 17026194608=>'L', 17027194609=>'L', 17028194610=>'L', 17029194611=>'L', 17030194612=>'L', 17031194613=>'L', 17032194614=>'L', 17033194615=>'L', 17034194616=>'L', 17035194617=>'L', 17036194618=>'L', 17037194619=>'L', 17038194620=>'L', 17039194621=>'L', 17040194622=>'L', 17041194623=>'L', 17042194624=>'L', 17043194625=>'L', 17044194626=>'L', 17045194627=>'L', 17046194628=>'L', 17047194629=>'L', 17048194630=>'L', 17049194631=>'L', 17050194632=>'L', 17051194633=>'L', 17052194634=>'L', 17053194635=>'L', 17054194636=>'L', 17055194637=>'L', 17056194638=>'L', 17057194639=>'L', 17058194640=>'L', 17059194641=>'L', 17060194642=>'L', 17061194643=>'L', 17062194644=>'L', 17063194645=>'L', 17064194646=>'L', 17065194647=>'L', 17066194648=>'L', 17067194649=>'L', 17068194650=>'L', 17069194651=>'L', 17070194652=>'L', 17071194653=>'L', 17072194654=>'L', 17073194655=>'L', 17074194656=>'L', 17075194657=>'L', 17076194658=>'L', 17077194659=>'L', 17078194660=>'L', 17079194661=>'L', 17080194662=>'L', 17081194663=>'L', 17082194664=>'L', 17083194665=>'L', 17084194666=>'L', 17085194667=>'L', 17086194668=>'L', 17087194669=>'L', 17088194670=>'L', 17089194671=>'L', 17090194672=>'L', 17091194673=>'L', 17092194674=>'L', 17093194675=>'L', 17094194676=>'L', 17095194677=>'L', 17096194678=>'L', 17097194679=>'L', 17098194680=>'L', 17099194681=>'L', 17100194682=>'L', 17101194683=>'L', 17102194684=>'L', 17103194685=>'L', 17104194686=>'L', 17105194687=>'L', 17106194688=>'L', 17107194689=>'L', 17108194690=>'L', 17109194691=>'L', 17110194692=>'L', 17111194693=>'L', 17112194694=>'L', 17113194695=>'L', 17114194696=>'L', 17115194697=>'L', 17116194698=>'L', 17117194699=>'L', 17118194700=>'L', 17119194701=>'L', 17120194702=>'L', 17121194703=>'L', 17122194704=>'L', 17123194705=>'L', 17124194706=>'L', 17125194707=>'L', 17126194708=>'L', 17127194709=>'L', 17128194710=>'L', 17129194711=>'L', 17130194712=>'L', 17131194713=>'L', 17132194714=>'L', 17133194715=>'L', 17134194716=>'L', 17135194717=>'L', 17136194718=>'L', 17137194719=>'L', 17138194720=>'L', 17139194721=>'L', 17140194722=>'L', 17141194723=>'L', 17142194724=>'L', 17143194725=>'L', 17144194726=>'L', 17145194727=>'L', 17146194728=>'L', 17147194729=>'L', 17148194730=>'L', 17149194731=>'L', 17150194732=>'L', 17151194733=>'L', 17152194734=>'L', 17153194735=>'L', 17154194736=>'L', 17155194737=>'L', 17156194738=>'L', 17157194739=>'L', 17158194740=>'L', 17159194741=>'L', 17160194742=>'L', 17161194743=>'L', 17162194744=>'L', 17163194745=>'L', 17164194746=>'L', 17165194747=>'L', 17166194748=>'L', 17167194749=>'L', 17168194750=>'L', 17169194751=>'L', 17170194752=>'L', 17171194753=>'L', 17172194754=>'L', 17173194755=>'L', 17174194756=>'L', 17175194757=>'L', 17176194758=>'L', 17177194759=>'L', 17178194760=>'L', 17179194761=>'L', 17180194762=>'L', 17181194763=>'L', 17182194764=>'L', 17183194765=>'L', 17184194766=>'L', 17185194767=>'L', 17186194768=>'L', 17187194769=>'L', 17188194770=>'L', 17189194771=>'L', 17190194772=>'L', 17191194773=>'L', 17192194774=>'L', 17193194775=>'L', 17194194776=>'L', 17195194777=>'L', 17196194778=>'L', 17197194779=>'L', 17198194780=>'L', 17199194781=>'L', 17200194782=>'L', 17201194783=>'L', 17202194784=>'L', 17203194785=>'L', 17204194786=>'L', 17205194787=>'L', 17206194788=>'L', 17207194789=>'L', 17208194790=>'L', 17209194791=>'L', 17210194792=>'L', 17211194793=>'L', 17212194794=>'L', 17213194795=>'L', 17214194796=>'L', 17215194797=>'L', 17216194798=>'L', 17217194799=>'L', 17218194800=>'L', 17219194801=>'L', 17220194802=>'L', 17221194803=>'L', 17222194804=>'L', 17223194805=>'L', 17224194806=>'L', 17225194807=>'L', 17226194808=>'L', 17227194809=>'L', 17228194810=>'L', 17229194811=>'L', 17230194812=>'L', 17231194813=>'L', 17232194814=>'L', 17233194815=>'L', 17234194816=>'L', 17235194817=>'L', 17236194818=>'L', 17237194819=>'L', 17238194820=>'L', 17239194821=>'L', 17240194822=>'L', 17241194823=>'L', 17242194824=>'L', 17243194825=>'L', 17244194826=>'L', 17245194827=>'L', 17246194828=>'L', 17247194829=>'L', 17248194830=>'L', 17249194831=>'L', 17250194832=>'L', 17251194833=>'L', 17252194834=>'L', 17253194835=>'L', 17254194836=>'L', 17255194837=>'L', 17256194838=>'L', 17257194839=>'L', 17258194840=>'L', 17259194841=>'L', 17260194842=>'L', 17261194843=>'L', 17262194844=>'L', 17263194845=>'L', 17264194846=>'L', 17265194847=>'L', 17266194848=>'L', 17267194849=>'L', 17268194850=>'L', 17269194851=>'L', 17270194852=>'L', 17271194853=>'L', 17272194854=>'L', 17273194855=>'L', 17274194856=>'L', 17275194857=>'L', 17276194858=>'L', 17277194859=>'L', 17278194860=>'L', 17279194861=>'L', 17280194862=>'L', 17281194863=>'L', 17282194864=>'L', 17283194865=>'L', 17284194866=>'L', 17285194867=>'L', 17286194868=>'L', 17287194869=>'L', 17288194870=>'L', 17289194871=>'L', 17290194872=>'L', 17291194873=>'L', 17292194874=>'L', 17293194875=>'L', 17294194876=>'L', 17295194877=>'L', 17296194878=>'L', 17297194879=>'L', 17298194880=>'L', 17299194881=>'L', 17300194882=>'L', 17301194883=>'L', 17302194884=>'L', 17303194885=>'L', 17304194886=>'L', 17305194887=>'L', 17306194888=>'L', 17307194889=>'L', 17308194890=>'L', 17309194891=>'L', 17310194892=>'L', 17311194893=>'L', 17312194894=>'L', 17313194895=>'L', 17314194896=>'L', 17315194897=>'L', 17316194898=>'L', 17317194899=>'L', 17318194900=>'L', 17319194901=>'L', 17320194902=>'L', 17321194903=>'L', 17322194904=>'L', 17323194905=>'L', 17324194906=>'L', 17325194907=>'L', 17326194908=>'L', 17327194909=>'L', 17328194910=>'L', 17329194911=>'L', 17330194912=>'L', 17331194913=>'L', 17332194914=>'L', 17333194915=>'L', 17334194916=>'L', 17335194917=>'L', 17336194918=>'L', 17337194919=>'L', 17338194920=>'L', 17339194921=>'L', 17340194922=>'L', 17341194923=>'L', 17342194924=>'L', 17343194925=>'L', 17344194926=>'L', 17345194927=>'L', 17346194928=>'L', 17347194929=>'L', 17348194930=>'L', 17349194931=>'L', 17350194932=>'L', 17351194933=>'L', 17352194934=>'L', 17353194935=>'L', 17354194936=>'L', 17355194937=>'L', 17356194938=>'L', 17357194939=>'L', 17358194940=>'L', 17359194941=>'L', 17360194942=>'L', 17361194943=>'L', 17362194944=>'L', 17363194945=>'L', 17364194946=>'L', 17365194947=>'L', 17366194948=>'L', 17367194949=>'L', 17368194950=>'L', 17369194951=>'L', 17370194952=>'L', 17371194953=>'L', 17372194954=>'L', 17373194955=>'L', 17374194956=>'L', 17375194957=>'L', 17376194958=>'L', 17377194959=>'L', 17378194960=>'L', 17379194961=>'L', 17380194962=>'L', 17381194963=>'L', 17382194964=>'L', 17383194965=>'L', 17384194966=>'L', 17385194967=>'L', 17386194968=>'L', 17387194969=>'L', 17388194970=>'L', 17389194971=>'L', 17390194972=>'L', 17391194973=>'L', 17392194974=>'L', 17393194975=>'L', 17394194976=>'L', 17395194977=>'L', 17396194978=>'L', 17397194979=>'L', 17398194980=>'L', 17399194981=>'L', 17400194982=>'L', 17401194983=>'L', 17402194984=>'L', 17403194985=>'L', 17404194986=>'L', 17405194987=>'L', 17406194988=>'L', 17407194989=>'L', 17408194990=>'L', 17409194991=>'L', 17410194992=>'L', 17411194993=>'L', 17412194994=>'L', 17413194995=>'L', 17414194996=>'L', 17415194997=>'L', 17416194998=>'L', 17417194999=>'L', 17418195000=>'L', 17419195001=>'L', 17420195002=>'L', 17421195003=>'L', 17422195004=>'L', 17423195005=>'L', 17424195006=>'L', 17425195007=>'L', 17426195008=>'L', 17427195009=>'L', 17428195010=>'L', 17429195011=>'L', 17430195012=>'L', 17431195013=>'L', 17432195014=>'L', 17433195015=>'L', 17434195016=>'L', 17435195017=>'L', 17436195018=>'L', 17437195019=>'L', 17438195020=>'L', 17439195021=>'L', 17440195022=>'L', 17441195023=>'L', 17442195024=>'L', 17443195025=>'L', 17444195026=>'L', 17445195027=>'L', 17446195028=>'L', 17447195029=>'L', 17448195030=>'L', 17449195031=>'L', 17450195032=>'L', 17451195033=>'L', 17452195034=>'L', 17453195035=>'L', 17454195036=>'L', 17455195037=>'L', 17456195038=>'L', 17457195039=>'L', 17458195040=>'L', 17459195041=>'L', 17460195042=>'L', 17461195043=>'L', 17462195044=>'L', 17463195045=>'L', 17464195046=>'L', 17465195047=>'L', 17466195048=>'L', 17467195049=>'L', 17468195050=>'L', 17469195051=>'L', 17470195052=>'L', 17471195053=>'L', 17472195054=>'L', 17473195055=>'L', 17474195056=>'L', 17475195057=>'L', 17476195058=>'L', 17477195059=>'L', 17478195060=>'L', 17479195061=>'L', 17480195062=>'L', 17481195063=>'L', 17482195064=>'L', 17483195065=>'L', 17484195066=>'L', 17485195067=>'L', 17486195068=>'L', 17487195069=>'L', 17488195070=>'L', 17489195071=>'L', 17490195072=>'L', 17491195073=>'L', 17492195074=>'L', 17493195075=>'L', 17494195076=>'L', 17495195077=>'L', 17496195078=>'L', 17497195079=>'L', 17498195080=>'L', 17499195081=>'L', 17500195082=>'L', 17501195083=>'L', 17502195084=>'L', 17503195085=>'L', 17504195086=>'L', 17505195087=>'L', 17506195088=>'L', 17507195089=>'L', 17508195090=>'L', 17509195091=>'L', 17510195092=>'L', 17511195093=>'L', 17512195094=>'L', 17513195095=>'L', 17514195096=>'L', 17515195097=>'L', 17516195098=>'L', 17517195099=>'L', 17518195100=>'L', 17519195101=>'L', 17520917505=>'BN', 17521917536=>'BN', 17522917537=>'BN', 17523917538=>'BN', 17524917539=>'BN', 17525917540=>'BN', 17526917541=>'BN', 17527917542=>'BN', 17528917543=>'BN', 17529917544=>'BN', 17530917545=>'BN', 17531917546=>'BN', 17532917547=>'BN', 17533917548=>'BN', 17534917549=>'BN', 17535917550=>'BN', 17536917551=>'BN', 17537917552=>'BN', 17538917553=>'BN', 17539917554=>'BN', 17540917555=>'BN', 17541917556=>'BN', 17542917557=>'BN', 17543917558=>'BN', 17544917559=>'BN', 17545917560=>'BN', 17546917561=>'BN', 17547917562=>'BN', 17548917563=>'BN', 17549917564=>'BN', 17550917565=>'BN', 17551917566=>'BN', 17552917567=>'BN', 17553917568=>'BN', 17554917569=>'BN', 17555917570=>'BN', 17556917571=>'BN', 17557917572=>'BN', 17558917573=>'BN', 17559917574=>'BN', 17560917575=>'BN', 17561917576=>'BN', 17562917577=>'BN', 17563917578=>'BN', 17564917579=>'BN', 17565917580=>'BN', 17566917581=>'BN', 17567917582=>'BN', 17568917583=>'BN', 17569917584=>'BN', 17570917585=>'BN', 17571917586=>'BN', 17572917587=>'BN', 17573917588=>'BN', 17574917589=>'BN', 17575917590=>'BN', 17576917591=>'BN', 17577917592=>'BN', 17578917593=>'BN', 17579917594=>'BN', 17580917595=>'BN', 17581917596=>'BN', 17582917597=>'BN', 17583917598=>'BN', 17584917599=>'BN', 17585917600=>'BN', 17586917601=>'BN', 17587917602=>'BN', 17588917603=>'BN', 17589917604=>'BN', 17590917605=>'BN', 17591917606=>'BN', 17592917607=>'BN', 17593917608=>'BN', 17594917609=>'BN', 17595917610=>'BN', 17596917611=>'BN', 17597917612=>'BN', 17598917613=>'BN', 17599917614=>'BN', 17600917615=>'BN', 17601917616=>'BN', 17602917617=>'BN', 17603917618=>'BN', 17604917619=>'BN', 17605917620=>'BN', 17606917621=>'BN', 17607917622=>'BN', 17608917623=>'BN', 17609917624=>'BN', 17610917625=>'BN', 17611917626=>'BN', 17612917627=>'BN', 17613917628=>'BN', 17614917629=>'BN', 17615917630=>'BN', 17616917631=>'BN', 17617917760=>'NSM', 17618917761=>'NSM', 17619917762=>'NSM', 17620917763=>'NSM', 17621917764=>'NSM', 17622917765=>'NSM', 17623917766=>'NSM', 17624917767=>'NSM', 17625917768=>'NSM', 17626917769=>'NSM', 17627917770=>'NSM', 17628917771=>'NSM', 17629917772=>'NSM', 17630917773=>'NSM', 17631917774=>'NSM', 17632917775=>'NSM', 17633917776=>'NSM', 17634917777=>'NSM', 17635917778=>'NSM', 17636917779=>'NSM', 17637917780=>'NSM', 17638917781=>'NSM', 17639917782=>'NSM', 17640917783=>'NSM', 17641917784=>'NSM', 17642917785=>'NSM', 17643917786=>'NSM', 17644917787=>'NSM', 17645917788=>'NSM', 17646917789=>'NSM', 17647917790=>'NSM', 17648917791=>'NSM', 17649917792=>'NSM', 17650917793=>'NSM', 17651917794=>'NSM', 17652917795=>'NSM', 17653917796=>'NSM', 17654917797=>'NSM', 17655917798=>'NSM', 17656917799=>'NSM', 17657917800=>'NSM', 17658917801=>'NSM', 17659917802=>'NSM', 17660917803=>'NSM', 17661917804=>'NSM', 17662917805=>'NSM', 17663917806=>'NSM', 17664917807=>'NSM', 17665917808=>'NSM', 17666917809=>'NSM', 17667917810=>'NSM', 17668917811=>'NSM', 17669917812=>'NSM', 17670917813=>'NSM', 17671917814=>'NSM', 17672917815=>'NSM', 17673917816=>'NSM', 17674917817=>'NSM', 17675917818=>'NSM', 17676917819=>'NSM', 17677917820=>'NSM', 17678917821=>'NSM', 17679917822=>'NSM', 17680917823=>'NSM', 17681917824=>'NSM', 17682917825=>'NSM', 17683917826=>'NSM', 17684917827=>'NSM', 17685917828=>'NSM', 17686917829=>'NSM', 17687917830=>'NSM', 17688917831=>'NSM', 17689917832=>'NSM', 17690917833=>'NSM', 17691917834=>'NSM', 17692917835=>'NSM', 17693917836=>'NSM', 17694917837=>'NSM', 17695917838=>'NSM', 17696917839=>'NSM', 17697917840=>'NSM', 17698917841=>'NSM', 17699917842=>'NSM', 17700917843=>'NSM', 17701917844=>'NSM', 17702917845=>'NSM', 17703917846=>'NSM', 17704917847=>'NSM', 17705917848=>'NSM', 17706917849=>'NSM', 17707917850=>'NSM', 17708917851=>'NSM', 17709917852=>'NSM', 17710917853=>'NSM', 17711917854=>'NSM', 17712917855=>'NSM', 17713917856=>'NSM', 17714917857=>'NSM', 17715917858=>'NSM', 17716917859=>'NSM', 17717917860=>'NSM', 17718917861=>'NSM', 17719917862=>'NSM', 17720917863=>'NSM', 17721917864=>'NSM', 17722917865=>'NSM', 17723917866=>'NSM', 17724917867=>'NSM', 17725917868=>'NSM', 17726917869=>'NSM', 17727917870=>'NSM', 17728917871=>'NSM', 17729917872=>'NSM', 17730917873=>'NSM', 17731917874=>'NSM', 17732917875=>'NSM', 17733917876=>'NSM', 17734917877=>'NSM', 17735917878=>'NSM', 17736917879=>'NSM', 17737917880=>'NSM', 17738917881=>'NSM', 17739917882=>'NSM', 17740917883=>'NSM', 17741917884=>'NSM', 17742917885=>'NSM', 17743917886=>'NSM', 17744917887=>'NSM', 17745917888=>'NSM', 17746917889=>'NSM', 17747917890=>'NSM', 17748917891=>'NSM', 17749917892=>'NSM', 17750917893=>'NSM', 17751917894=>'NSM', 17752917895=>'NSM', 17753917896=>'NSM', 17754917897=>'NSM', 17755917898=>'NSM', 17756917899=>'NSM', 17757917900=>'NSM', 17758917901=>'NSM', 17759917902=>'NSM', 17760917903=>'NSM', 17761917904=>'NSM', 17762917905=>'NSM', 17763917906=>'NSM', 17764917907=>'NSM', 17765917908=>'NSM', 17766917909=>'NSM', 17767917910=>'NSM', 17768917911=>'NSM', 17769917912=>'NSM', 17770917913=>'NSM', 17771917914=>'NSM', 17772917915=>'NSM', 17773917916=>'NSM', 17774917917=>'NSM', 17775917918=>'NSM', 17776917919=>'NSM', 17777917920=>'NSM', 17778917921=>'NSM', 17779917922=>'NSM', 17780917923=>'NSM', 17781917924=>'NSM', 17782917925=>'NSM', 17783917926=>'NSM', 17784917927=>'NSM', 17785917928=>'NSM', 17786917929=>'NSM', 17787917930=>'NSM', 17788917931=>'NSM', 17789917932=>'NSM', 17790917933=>'NSM', 17791917934=>'NSM', 17792917935=>'NSM', 17793917936=>'NSM', 17794917937=>'NSM', 17795917938=>'NSM', 17796917939=>'NSM', 17797917940=>'NSM', 17798917941=>'NSM', 17799917942=>'NSM', 17800917943=>'NSM', 17801917944=>'NSM', 17802917945=>'NSM', 17803917946=>'NSM', 17804917947=>'NSM', 17805917948=>'NSM', 17806917949=>'NSM', 17807917950=>'NSM', 17808917951=>'NSM', 17809917952=>'NSM', 17810917953=>'NSM', 17811917954=>'NSM', 17812917955=>'NSM', 17813917956=>'NSM', 17814917957=>'NSM', 17815917958=>'NSM', 17816917959=>'NSM', 17817917960=>'NSM', 17818917961=>'NSM', 17819917962=>'NSM', 17820917963=>'NSM', 17821917964=>'NSM', 17822917965=>'NSM', 17823917966=>'NSM', 17824917967=>'NSM', 17825917968=>'NSM', 17826917969=>'NSM', 17827917970=>'NSM', 17828917971=>'NSM', 17829917972=>'NSM', 17830917973=>'NSM', 17831917974=>'NSM', 17832917975=>'NSM', 17833917976=>'NSM', 17834917977=>'NSM', 17835917978=>'NSM', 17836917979=>'NSM', 17837917980=>'NSM', 17838917981=>'NSM', 17839917982=>'NSM', 17840917983=>'NSM', 17841917984=>'NSM', 17842917985=>'NSM', 17843917986=>'NSM', 17844917987=>'NSM', 17845917988=>'NSM', 17846917989=>'NSM', 17847917990=>'NSM', 17848917991=>'NSM', 17849917992=>'NSM', 17850917993=>'NSM', 17851917994=>'NSM', 17852917995=>'NSM', 17853917996=>'NSM', 17854917997=>'NSM', 17855917998=>'NSM', 17856917999=>'NSM', 17857983040=>'L', 178581048573=>'L', 178591048576=>'L', 178601114109=>'L' 17861); 17862 17863/** 17864 * Mirror unicode characters. For information on bidi mirroring, see UAX #9: Bidirectional Algorithm, at http://www.unicode.org/unicode/reports/tr9/ 17865 * @public 17866 */ 17867public static $uni_mirror = array ( 178680x0028=>0x0029, 178690x0029=>0x0028, 178700x003C=>0x003E, 178710x003E=>0x003C, 178720x005B=>0x005D, 178730x005D=>0x005B, 178740x007B=>0x007D, 178750x007D=>0x007B, 178760x00AB=>0x00BB, 178770x00BB=>0x00AB, 178780x0F3A=>0x0F3B, 178790x0F3B=>0x0F3A, 178800x0F3C=>0x0F3D, 178810x0F3D=>0x0F3C, 178820x169B=>0x169C, 178830x169C=>0x169B, 178840x2018=>0x2019, 178850x2019=>0x2018, 178860x201C=>0x201D, 178870x201D=>0x201C, 178880x2039=>0x203A, 178890x203A=>0x2039, 178900x2045=>0x2046, 178910x2046=>0x2045, 178920x207D=>0x207E, 178930x207E=>0x207D, 178940x208D=>0x208E, 178950x208E=>0x208D, 178960x2208=>0x220B, 178970x2209=>0x220C, 178980x220A=>0x220D, 178990x220B=>0x2208, 179000x220C=>0x2209, 179010x220D=>0x220A, 179020x2215=>0x29F5, 179030x223C=>0x223D, 179040x223D=>0x223C, 179050x2243=>0x22CD, 179060x2252=>0x2253, 179070x2253=>0x2252, 179080x2254=>0x2255, 179090x2255=>0x2254, 179100x2264=>0x2265, 179110x2265=>0x2264, 179120x2266=>0x2267, 179130x2267=>0x2266, 179140x2268=>0x2269, 179150x2269=>0x2268, 179160x226A=>0x226B, 179170x226B=>0x226A, 179180x226E=>0x226F, 179190x226F=>0x226E, 179200x2270=>0x2271, 179210x2271=>0x2270, 179220x2272=>0x2273, 179230x2273=>0x2272, 179240x2274=>0x2275, 179250x2275=>0x2274, 179260x2276=>0x2277, 179270x2277=>0x2276, 179280x2278=>0x2279, 179290x2279=>0x2278, 179300x227A=>0x227B, 179310x227B=>0x227A, 179320x227C=>0x227D, 179330x227D=>0x227C, 179340x227E=>0x227F, 179350x227F=>0x227E, 179360x2280=>0x2281, 179370x2281=>0x2280, 179380x2282=>0x2283, 179390x2283=>0x2282, 179400x2284=>0x2285, 179410x2285=>0x2284, 179420x2286=>0x2287, 179430x2287=>0x2286, 179440x2288=>0x2289, 179450x2289=>0x2288, 179460x228A=>0x228B, 179470x228B=>0x228A, 179480x228F=>0x2290, 179490x2290=>0x228F, 179500x2291=>0x2292, 179510x2292=>0x2291, 179520x2298=>0x29B8, 179530x22A2=>0x22A3, 179540x22A3=>0x22A2, 179550x22A6=>0x2ADE, 179560x22A8=>0x2AE4, 179570x22A9=>0x2AE3, 179580x22AB=>0x2AE5, 179590x22B0=>0x22B1, 179600x22B1=>0x22B0, 179610x22B2=>0x22B3, 179620x22B3=>0x22B2, 179630x22B4=>0x22B5, 179640x22B5=>0x22B4, 179650x22B6=>0x22B7, 179660x22B7=>0x22B6, 179670x22C9=>0x22CA, 179680x22CA=>0x22C9, 179690x22CB=>0x22CC, 179700x22CC=>0x22CB, 179710x22CD=>0x2243, 179720x22D0=>0x22D1, 179730x22D1=>0x22D0, 179740x22D6=>0x22D7, 179750x22D7=>0x22D6, 179760x22D8=>0x22D9, 179770x22D9=>0x22D8, 179780x22DA=>0x22DB, 179790x22DB=>0x22DA, 179800x22DC=>0x22DD, 179810x22DD=>0x22DC, 179820x22DE=>0x22DF, 179830x22DF=>0x22DE, 179840x22E0=>0x22E1, 179850x22E1=>0x22E0, 179860x22E2=>0x22E3, 179870x22E3=>0x22E2, 179880x22E4=>0x22E5, 179890x22E5=>0x22E4, 179900x22E6=>0x22E7, 179910x22E7=>0x22E6, 179920x22E8=>0x22E9, 179930x22E9=>0x22E8, 179940x22EA=>0x22EB, 179950x22EB=>0x22EA, 179960x22EC=>0x22ED, 179970x22ED=>0x22EC, 179980x22F0=>0x22F1, 179990x22F1=>0x22F0, 180000x22F2=>0x22FA, 180010x22F3=>0x22FB, 180020x22F4=>0x22FC, 180030x22F6=>0x22FD, 180040x22F7=>0x22FE, 180050x22FA=>0x22F2, 180060x22FB=>0x22F3, 180070x22FC=>0x22F4, 180080x22FD=>0x22F6, 180090x22FE=>0x22F7, 180100x2308=>0x2309, 180110x2309=>0x2308, 180120x230A=>0x230B, 180130x230B=>0x230A, 180140x2329=>0x232A, 180150x232A=>0x2329, 180160x2768=>0x2769, 180170x2769=>0x2768, 180180x276A=>0x276B, 180190x276B=>0x276A, 180200x276C=>0x276D, 180210x276D=>0x276C, 180220x276E=>0x276F, 180230x276F=>0x276E, 180240x2770=>0x2771, 180250x2771=>0x2770, 180260x2772=>0x2773, 180270x2773=>0x2772, 180280x2774=>0x2775, 180290x2775=>0x2774, 180300x27C3=>0x27C4, 180310x27C4=>0x27C3, 180320x27C5=>0x27C6, 180330x27C6=>0x27C5, 180340x27D5=>0x27D6, 180350x27D6=>0x27D5, 180360x27DD=>0x27DE, 180370x27DE=>0x27DD, 180380x27E2=>0x27E3, 180390x27E3=>0x27E2, 180400x27E4=>0x27E5, 180410x27E5=>0x27E4, 180420x27E6=>0x27E7, 180430x27E7=>0x27E6, 180440x27E8=>0x27E9, 180450x27E9=>0x27E8, 180460x27EA=>0x27EB, 180470x27EB=>0x27EA, 180480x2983=>0x2984, 180490x2984=>0x2983, 180500x2985=>0x2986, 180510x2986=>0x2985, 180520x2987=>0x2988, 180530x2988=>0x2987, 180540x2989=>0x298A, 180550x298A=>0x2989, 180560x298B=>0x298C, 180570x298C=>0x298B, 180580x298D=>0x2990, 180590x298E=>0x298F, 180600x298F=>0x298E, 180610x2990=>0x298D, 180620x2991=>0x2992, 180630x2992=>0x2991, 180640x2993=>0x2994, 180650x2994=>0x2993, 180660x2995=>0x2996, 180670x2996=>0x2995, 180680x2997=>0x2998, 180690x2998=>0x2997, 180700x29B8=>0x2298, 180710x29C0=>0x29C1, 180720x29C1=>0x29C0, 180730x29C4=>0x29C5, 180740x29C5=>0x29C4, 180750x29CF=>0x29D0, 180760x29D0=>0x29CF, 180770x29D1=>0x29D2, 180780x29D2=>0x29D1, 180790x29D4=>0x29D5, 180800x29D5=>0x29D4, 180810x29D8=>0x29D9, 180820x29D9=>0x29D8, 180830x29DA=>0x29DB, 180840x29DB=>0x29DA, 180850x29F5=>0x2215, 180860x29F8=>0x29F9, 180870x29F9=>0x29F8, 180880x29FC=>0x29FD, 180890x29FD=>0x29FC, 180900x2A2B=>0x2A2C, 180910x2A2C=>0x2A2B, 180920x2A2D=>0x2A2E, 180930x2A2E=>0x2A2D, 180940x2A34=>0x2A35, 180950x2A35=>0x2A34, 180960x2A3C=>0x2A3D, 180970x2A3D=>0x2A3C, 180980x2A64=>0x2A65, 180990x2A65=>0x2A64, 181000x2A79=>0x2A7A, 181010x2A7A=>0x2A79, 181020x2A7D=>0x2A7E, 181030x2A7E=>0x2A7D, 181040x2A7F=>0x2A80, 181050x2A80=>0x2A7F, 181060x2A81=>0x2A82, 181070x2A82=>0x2A81, 181080x2A83=>0x2A84, 181090x2A84=>0x2A83, 181100x2A8B=>0x2A8C, 181110x2A8C=>0x2A8B, 181120x2A91=>0x2A92, 181130x2A92=>0x2A91, 181140x2A93=>0x2A94, 181150x2A94=>0x2A93, 181160x2A95=>0x2A96, 181170x2A96=>0x2A95, 181180x2A97=>0x2A98, 181190x2A98=>0x2A97, 181200x2A99=>0x2A9A, 181210x2A9A=>0x2A99, 181220x2A9B=>0x2A9C, 181230x2A9C=>0x2A9B, 181240x2AA1=>0x2AA2, 181250x2AA2=>0x2AA1, 181260x2AA6=>0x2AA7, 181270x2AA7=>0x2AA6, 181280x2AA8=>0x2AA9, 181290x2AA9=>0x2AA8, 181300x2AAA=>0x2AAB, 181310x2AAB=>0x2AAA, 181320x2AAC=>0x2AAD, 181330x2AAD=>0x2AAC, 181340x2AAF=>0x2AB0, 181350x2AB0=>0x2AAF, 181360x2AB3=>0x2AB4, 181370x2AB4=>0x2AB3, 181380x2ABB=>0x2ABC, 181390x2ABC=>0x2ABB, 181400x2ABD=>0x2ABE, 181410x2ABE=>0x2ABD, 181420x2ABF=>0x2AC0, 181430x2AC0=>0x2ABF, 181440x2AC1=>0x2AC2, 181450x2AC2=>0x2AC1, 181460x2AC3=>0x2AC4, 181470x2AC4=>0x2AC3, 181480x2AC5=>0x2AC6, 181490x2AC6=>0x2AC5, 181500x2ACD=>0x2ACE, 181510x2ACE=>0x2ACD, 181520x2ACF=>0x2AD0, 181530x2AD0=>0x2ACF, 181540x2AD1=>0x2AD2, 181550x2AD2=>0x2AD1, 181560x2AD3=>0x2AD4, 181570x2AD4=>0x2AD3, 181580x2AD5=>0x2AD6, 181590x2AD6=>0x2AD5, 181600x2ADE=>0x22A6, 181610x2AE3=>0x22A9, 181620x2AE4=>0x22A8, 181630x2AE5=>0x22AB, 181640x2AEC=>0x2AED, 181650x2AED=>0x2AEC, 181660x2AF7=>0x2AF8, 181670x2AF8=>0x2AF7, 181680x2AF9=>0x2AFA, 181690x2AFA=>0x2AF9, 181700x2E02=>0x2E03, 181710x2E03=>0x2E02, 181720x2E04=>0x2E05, 181730x2E05=>0x2E04, 181740x2E09=>0x2E0A, 181750x2E0A=>0x2E09, 181760x2E0C=>0x2E0D, 181770x2E0D=>0x2E0C, 181780x2E1C=>0x2E1D, 181790x2E1D=>0x2E1C, 181800x3008=>0x3009, 181810x3009=>0x3008, 181820x300A=>0x300B, 181830x300B=>0x300A, 181840x300C=>0x300D, 181850x300D=>0x300C, 181860x300E=>0x300F, 181870x300F=>0x300E, 181880x3010=>0x3011, 181890x3011=>0x3010, 181900x3014=>0x3015, 181910x3015=>0x3014, 181920x3016=>0x3017, 181930x3017=>0x3016, 181940x3018=>0x3019, 181950x3019=>0x3018, 181960x301A=>0x301B, 181970x301B=>0x301A, 181980x301D=>0x301E, 181990x301E=>0x301D, 182000xFE59=>0xFE5A, 182010xFE5A=>0xFE59, 182020xFE5B=>0xFE5C, 182030xFE5C=>0xFE5B, 182040xFE5D=>0xFE5E, 182050xFE5E=>0xFE5D, 182060xFE64=>0xFE65, 182070xFE65=>0xFE64, 182080xFF08=>0xFF09, 182090xFF09=>0xFF08, 182100xFF1C=>0xFF1E, 182110xFF1E=>0xFF1C, 182120xFF3B=>0xFF3D, 182130xFF3D=>0xFF3B, 182140xFF5B=>0xFF5D, 182150xFF5D=>0xFF5B, 182160xFF5F=>0xFF60, 182170xFF60=>0xFF5F, 182180xFF62=>0xFF63, 182190xFF63=>0xFF62); 18220 18221/** 18222 * Arabic shape substitutions: char code => (isolated, final, initial, medial). 18223 * @public 18224 */ 18225public static $uni_arabicsubst = array( 182261569=>array(65152), 182271570=>array(65153, 65154, 65153, 65154), 182281571=>array(65155, 65156, 65155, 65156), 182291572=>array(65157, 65158), 182301573=>array(65159, 65160, 65159, 65160), 182311574=>array(65161, 65162, 65163, 65164), 182321575=>array(65165, 65166, 65165, 65166), 182331576=>array(65167, 65168, 65169, 65170), 182341577=>array(65171, 65172), 182351578=>array(65173, 65174, 65175, 65176), 182361579=>array(65177, 65178, 65179, 65180), 182371580=>array(65181, 65182, 65183, 65184), 182381581=>array(65185, 65186, 65187, 65188), 182391582=>array(65189, 65190, 65191, 65192), 182401583=>array(65193, 65194, 65193, 65194), 182411584=>array(65195, 65196, 65195, 65196), 182421585=>array(65197, 65198, 65197, 65198), 182431586=>array(65199, 65200, 65199, 65200), 182441587=>array(65201, 65202, 65203, 65204), 182451588=>array(65205, 65206, 65207, 65208), 182461589=>array(65209, 65210, 65211, 65212), 182471590=>array(65213, 65214, 65215, 65216), 182481591=>array(65217, 65218, 65219, 65220), 182491592=>array(65221, 65222, 65223, 65224), 182501593=>array(65225, 65226, 65227, 65228), 182511594=>array(65229, 65230, 65231, 65232), 182521601=>array(65233, 65234, 65235, 65236), 182531602=>array(65237, 65238, 65239, 65240), 182541603=>array(65241, 65242, 65243, 65244), 182551604=>array(65245, 65246, 65247, 65248), 182561605=>array(65249, 65250, 65251, 65252), 182571606=>array(65253, 65254, 65255, 65256), 182581607=>array(65257, 65258, 65259, 65260), 182591608=>array(65261, 65262, 65261, 65262), 182601609=>array(65263, 65264, 64488, 64489), 182611610=>array(65265, 65266, 65267, 65268), 182621649=>array(64336, 64337), 182631655=>array(64477), 182641657=>array(64358, 64359, 64360, 64361), 182651658=>array(64350, 64351, 64352, 64353), 182661659=>array(64338, 64339, 64340, 64341), 182671662=>array(64342, 64343, 64344, 64345), 182681663=>array(64354, 64355, 64356, 64357), 182691664=>array(64346, 64347, 64348, 64349), 182701667=>array(64374, 64375, 64376, 64377), 182711668=>array(64370, 64371, 64372, 64373), 182721670=>array(64378, 64379, 64380, 64381), 182731671=>array(64382, 64383, 64384, 64385), 182741672=>array(64392, 64393), 182751676=>array(64388, 64389), 182761677=>array(64386, 64387), 182771678=>array(64390, 64391), 182781681=>array(64396, 64397), 182791688=>array(64394, 64395, 64394, 64395), 182801700=>array(64362, 64363, 64364, 64365), 182811702=>array(64366, 64367, 64368, 64369), 182821705=>array(64398, 64399, 64400, 64401), 182831709=>array(64467, 64468, 64469, 64470), 182841711=>array(64402, 64403, 64404, 64405), 182851713=>array(64410, 64411, 64412, 64413), 182861715=>array(64406, 64407, 64408, 64409), 182871722=>array(64414, 64415), 182881723=>array(64416, 64417, 64418, 64419), 182891726=>array(64426, 64427, 64428, 64429), 182901728=>array(64420, 64421), 182911729=>array(64422, 64423, 64424, 64425), 182921733=>array(64480, 64481), 182931734=>array(64473, 64474), 182941735=>array(64471, 64472), 182951736=>array(64475, 64476), 182961737=>array(64482, 64483), 182971739=>array(64478, 64479), 182981740=>array(64508, 64509, 64510, 64511), 182991744=>array(64484, 64485, 64486, 64487), 183001746=>array(64430, 64431), 183011747=>array(64432, 64433) 18302); 18303 18304/** 18305 * Arabic laa letter: (char code => isolated, final, initial, medial). 18306 * @public 18307 */ 18308public static $uni_laa_array = array ( 183091570 =>array(65269, 65270, 65269, 65270), 183101571 =>array(65271, 65272, 65271, 65272), 183111573 =>array(65273, 65274, 65273, 65274), 183121575 =>array(65275, 65276, 65275, 65276) 18313); 18314 18315/** 18316 * Array of character substitutions for sequences of two diacritics symbols. 18317 * Putting the combining mark and character in the same glyph allows us to avoid the two marks overlapping each other in an illegible manner. 18318 * second NSM char code => substitution char 18319 * @public 18320 */ 18321public static $uni_diacritics = array ( 183221612=>64606, # Shadda + Dammatan 183231613=>64607, # Shadda + Kasratan 183241614=>64608, # Shadda + Fatha 183251615=>64609, # Shadda + Damma 183261616=>64610 # Shadda + Kasra 18327); 18328 18329/** 18330 * Array of character substitutions from UTF-8 Unicode to Latin1. 18331 * @public 18332 */ 18333public static $uni_utf8tolatin = array ( 183348364=>128, # Euro1 18335338=>140, # OE 18336352=>138, # Scaron 18337376=>159, # Ydieresis 18338381=>142, # Zcaron2 183398226=>149, # bullet3 18340710=>136, # circumflex 183418224=>134, # dagger 183428225=>135, # daggerdbl 183438230=>133, # ellipsis 183448212=>151, # emdash 183458211=>150, # endash 18346402=>131, # florin 183478249=>139, # guilsinglleft 183488250=>155, # guilsinglright 18349339=>156, # oe 183508240=>137, # perthousand 183518222=>132, # quotedblbase 183528220=>147, # quotedblleft 183538221=>148, # quotedblright 183548216=>145, # quoteleft 183558217=>146, # quoteright 183568218=>130, # quotesinglbase 18357353=>154, # scaron 18358732=>152, # tilde 183598482=>153, # trademark 18360382=>158 # zcaron2 18361); 18362 18363/** 18364 * Array of Encoding Maps. 18365 * @public static 18366 */ 18367public static $encmap = array( 18368 18369// encoding map for: cp874 18370'cp874' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'ellipsis',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'kokaithai',162=>'khokhaithai',163=>'khokhuatthai',164=>'khokhwaithai',165=>'khokhonthai',166=>'khorakhangthai',167=>'ngonguthai',168=>'chochanthai',169=>'chochingthai',170=>'chochangthai',171=>'sosothai',172=>'chochoethai',173=>'yoyingthai',174=>'dochadathai',175=>'topatakthai',176=>'thothanthai',177=>'thonangmonthothai',178=>'thophuthaothai',179=>'nonenthai',180=>'dodekthai',181=>'totaothai',182=>'thothungthai',183=>'thothahanthai',184=>'thothongthai',185=>'nonuthai',186=>'bobaimaithai',187=>'poplathai',188=>'phophungthai',189=>'fofathai',190=>'phophanthai',191=>'fofanthai',192=>'phosamphaothai',193=>'momathai',194=>'yoyakthai',195=>'roruathai',196=>'ruthai',197=>'lolingthai',198=>'luthai',199=>'wowaenthai',200=>'sosalathai',201=>'sorusithai',202=>'sosuathai',203=>'hohipthai',204=>'lochulathai',205=>'oangthai',206=>'honokhukthai',207=>'paiyannoithai',208=>'saraathai',209=>'maihanakatthai',210=>'saraaathai',211=>'saraamthai',212=>'saraithai',213=>'saraiithai',214=>'sarauethai',215=>'saraueethai',216=>'sarauthai',217=>'sarauuthai',218=>'phinthuthai',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'bahtthai',224=>'saraethai',225=>'saraaethai',226=>'saraothai',227=>'saraaimaimuanthai',228=>'saraaimaimalaithai',229=>'lakkhangyaothai',230=>'maiyamokthai',231=>'maitaikhuthai',232=>'maiekthai',233=>'maithothai',234=>'maitrithai',235=>'maichattawathai',236=>'thanthakhatthai',237=>'nikhahitthai',238=>'yamakkanthai',239=>'fongmanthai',240=>'zerothai',241=>'onethai',242=>'twothai',243=>'threethai',244=>'fourthai',245=>'fivethai',246=>'sixthai',247=>'seventhai',248=>'eightthai',249=>'ninethai',250=>'angkhankhuthai',251=>'khomutthai',252=>'.notdef',253=>'.notdef',254=>'.notdef',255=>'.notdef'), 18371 18372// encoding map for: cp1250 18373'cp1250' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'.notdef',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'.notdef',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'Sacute',141=>'Tcaron',142=>'Zcaron',143=>'Zacute',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'sacute',157=>'tcaron',158=>'zcaron',159=>'zacute',160=>'space',161=>'caron',162=>'breve',163=>'Lslash',164=>'currency',165=>'Aogonek',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'Scedilla',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'Zdotaccent',176=>'degree',177=>'plusminus',178=>'ogonek',179=>'lslash',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'aogonek',186=>'scedilla',187=>'guillemotright',188=>'Lcaron',189=>'hungarumlaut',190=>'lcaron',191=>'zdotaccent',192=>'Racute',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Lacute',198=>'Cacute',199=>'Ccedilla',200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Ecaron',205=>'Iacute',206=>'Icircumflex',207=>'Dcaron',208=>'Dcroat',209=>'Nacute',210=>'Ncaron',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'multiply',216=>'Rcaron',217=>'Uring',218=>'Uacute',219=>'Uhungarumlaut',220=>'Udieresis',221=>'Yacute',222=>'Tcommaaccent',223=>'germandbls',224=>'racute',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'lacute',230=>'cacute',231=>'ccedilla',232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'ecaron',237=>'iacute',238=>'icircumflex',239=>'dcaron',240=>'dcroat',241=>'nacute',242=>'ncaron',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'divide',248=>'rcaron',249=>'uring',250=>'uacute',251=>'uhungarumlaut',252=>'udieresis',253=>'yacute',254=>'tcommaaccent',255=>'dotaccent'), 18374 18375// encoding map for: cp1251 18376'cp1251' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'afii10051',129=>'afii10052',130=>'quotesinglbase',131=>'afii10100',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'Euro',137=>'perthousand',138=>'afii10058',139=>'guilsinglleft',140=>'afii10059',141=>'afii10061',142=>'afii10060',143=>'afii10145',144=>'afii10099',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'afii10106',155=>'guilsinglright',156=>'afii10107',157=>'afii10109',158=>'afii10108',159=>'afii10193',160=>'space',161=>'afii10062',162=>'afii10110',163=>'afii10057',164=>'currency',165=>'afii10050',166=>'brokenbar',167=>'section',168=>'afii10023',169=>'copyright',170=>'afii10053',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'afii10056',176=>'degree',177=>'plusminus',178=>'afii10055',179=>'afii10103',180=>'afii10098',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'afii10071',185=>'afii61352',186=>'afii10101',187=>'guillemotright',188=>'afii10105',189=>'afii10054',190=>'afii10102',191=>'afii10104',192=>'afii10017',193=>'afii10018',194=>'afii10019',195=>'afii10020',196=>'afii10021',197=>'afii10022',198=>'afii10024',199=>'afii10025',200=>'afii10026',201=>'afii10027',202=>'afii10028',203=>'afii10029',204=>'afii10030',205=>'afii10031',206=>'afii10032',207=>'afii10033',208=>'afii10034',209=>'afii10035',210=>'afii10036',211=>'afii10037',212=>'afii10038',213=>'afii10039',214=>'afii10040',215=>'afii10041',216=>'afii10042',217=>'afii10043',218=>'afii10044',219=>'afii10045',220=>'afii10046',221=>'afii10047',222=>'afii10048',223=>'afii10049',224=>'afii10065',225=>'afii10066',226=>'afii10067',227=>'afii10068',228=>'afii10069',229=>'afii10070',230=>'afii10072',231=>'afii10073',232=>'afii10074',233=>'afii10075',234=>'afii10076',235=>'afii10077',236=>'afii10078',237=>'afii10079',238=>'afii10080',239=>'afii10081',240=>'afii10082',241=>'afii10083',242=>'afii10084',243=>'afii10085',244=>'afii10086',245=>'afii10087',246=>'afii10088',247=>'afii10089',248=>'afii10090',249=>'afii10091',250=>'afii10092',251=>'afii10093',252=>'afii10094',253=>'afii10095',254=>'afii10096',255=>'afii10097'), 18377 18378// encoding map for: cp1252 18379'cp1252' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'Zcaron',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'zcaron',159=>'Ydieresis',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'), 18380 18381// encoding map for: cp1253 18382'cp1253' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'.notdef',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'dieresistonos',162=>'Alphatonos',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'afii00208',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'tonos',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'Epsilontonos',185=>'Etatonos',186=>'Iotatonos',187=>'guillemotright',188=>'Omicrontonos',189=>'onehalf',190=>'Upsilontonos',191=>'Omegatonos',192=>'iotadieresistonos',193=>'Alpha',194=>'Beta',195=>'Gamma',196=>'Delta',197=>'Epsilon',198=>'Zeta',199=>'Eta',200=>'Theta',201=>'Iota',202=>'Kappa',203=>'Lambda',204=>'Mu',205=>'Nu',206=>'Xi',207=>'Omicron',208=>'Pi',209=>'Rho',210=>'.notdef',211=>'Sigma',212=>'Tau',213=>'Upsilon',214=>'Phi',215=>'Chi',216=>'Psi',217=>'Omega',218=>'Iotadieresis',219=>'Upsilondieresis',220=>'alphatonos',221=>'epsilontonos',222=>'etatonos',223=>'iotatonos',224=>'upsilondieresistonos',225=>'alpha',226=>'beta',227=>'gamma',228=>'delta',229=>'epsilon',230=>'zeta',231=>'eta',232=>'theta',233=>'iota',234=>'kappa',235=>'lambda',236=>'mu',237=>'nu',238=>'xi',239=>'omicron',240=>'pi',241=>'rho',242=>'sigma1',243=>'sigma',244=>'tau',245=>'upsilon',246=>'phi',247=>'chi',248=>'psi',249=>'omega',250=>'iotadieresis',251=>'upsilondieresis',252=>'omicrontonos',253=>'upsilontonos',254=>'omegatonos',255=>'.notdef'), 18383 18384// encoding map for: cp1254 18385'cp1254' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'Scaron',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'scaron',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'), 18386 18387// encoding map for: cp1255 18388'cp1255' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'afii57636',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'multiply',171=>'guillemotleft',172=>'logicalnot',173=>'sfthyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'middot',184=>'cedilla',185=>'onesuperior',186=>'divide',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'afii57799',193=>'afii57801',194=>'afii57800',195=>'afii57802',196=>'afii57793',197=>'afii57794',198=>'afii57795',199=>'afii57798',200=>'afii57797',201=>'afii57806',202=>'.notdef',203=>'afii57796',204=>'afii57807',205=>'afii57839',206=>'afii57645',207=>'afii57841',208=>'afii57842',209=>'afii57804',210=>'afii57803',211=>'afii57658',212=>'afii57716',213=>'afii57717',214=>'afii57718',215=>'gereshhebrew',216=>'gershayimhebrew',217=>'.notdef',218=>'.notdef',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'.notdef',224=>'afii57664',225=>'afii57665',226=>'afii57666',227=>'afii57667',228=>'afii57668',229=>'afii57669',230=>'afii57670',231=>'afii57671',232=>'afii57672',233=>'afii57673',234=>'afii57674',235=>'afii57675',236=>'afii57676',237=>'afii57677',238=>'afii57678',239=>'afii57679',240=>'afii57680',241=>'afii57681',242=>'afii57682',243=>'afii57683',244=>'afii57684',245=>'afii57685',246=>'afii57686',247=>'afii57687',248=>'afii57688',249=>'afii57689',250=>'afii57690',251=>'.notdef',252=>'.notdef',253=>'afii299',254=>'afii300',255=>'.notdef'), 18389 18390// encoding map for: cp1256 18391'cp1256' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'afii57506',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'afii57511',139=>'guilsinglleft',140=>'OE',141=>'afii57507',142=>'afii57508',143=>'afii57512',144=>'afii57509',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'afii57513',155=>'guilsinglright',156=>'oe',157=>'afii61664',158=>'afii301',159=>'afii57514',160=>'space',161=>'afii57388',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'afii57403',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'afii57407',192=>'.notdef',193=>'afii57409',194=>'afii57410',195=>'afii57411',196=>'afii57412',197=>'afii57413',198=>'afii57414',199=>'afii57415',200=>'afii57416',201=>'afii57417',202=>'afii57418',203=>'afii57419',204=>'afii57420',205=>'afii57421',206=>'afii57422',207=>'afii57423',208=>'afii57424',209=>'afii57425',210=>'afii57426',211=>'afii57427',212=>'afii57428',213=>'afii57429',214=>'afii57430',215=>'multiply',216=>'afii57431',217=>'afii57432',218=>'afii57433',219=>'afii57434',220=>'afii57440',221=>'afii57441',222=>'afii57442',223=>'afii57443',224=>'agrave',225=>'afii57444',226=>'acircumflex',227=>'afii57445',228=>'afii57446',229=>'afii57470',230=>'afii57448',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'afii57449',237=>'afii57450',238=>'icircumflex',239=>'idieresis',240=>'afii57451',241=>'afii57452',242=>'afii57453',243=>'afii57454',244=>'ocircumflex',245=>'afii57455',246=>'afii57456',247=>'divide',248=>'afii57457',249=>'ugrave',250=>'afii57458',251=>'ucircumflex',252=>'udieresis',253=>'afii299',254=>'afii300',255=>'afii57519'), 18392 18393// encoding map for: cp1257 18394'cp1257' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'.notdef',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'.notdef',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'.notdef',141=>'dieresis',142=>'caron',143=>'cedilla',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'.notdef',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'.notdef',157=>'macron',158=>'ogonek',159=>'.notdef',160=>'space',161=>'.notdef',162=>'cent',163=>'sterling',164=>'currency',165=>'.notdef',166=>'brokenbar',167=>'section',168=>'Oslash',169=>'copyright',170=>'Rcommaaccent',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'AE',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'oslash',185=>'onesuperior',186=>'rcommaaccent',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'ae',192=>'Aogonek',193=>'Iogonek',194=>'Amacron',195=>'Cacute',196=>'Adieresis',197=>'Aring',198=>'Eogonek',199=>'Emacron',200=>'Ccaron',201=>'Eacute',202=>'Zacute',203=>'Edotaccent',204=>'Gcommaaccent',205=>'Kcommaaccent',206=>'Imacron',207=>'Lcommaaccent',208=>'Scaron',209=>'Nacute',210=>'Ncommaaccent',211=>'Oacute',212=>'Omacron',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Uogonek',217=>'Lslash',218=>'Sacute',219=>'Umacron',220=>'Udieresis',221=>'Zdotaccent',222=>'Zcaron',223=>'germandbls',224=>'aogonek',225=>'iogonek',226=>'amacron',227=>'cacute',228=>'adieresis',229=>'aring',230=>'eogonek',231=>'emacron',232=>'ccaron',233=>'eacute',234=>'zacute',235=>'edotaccent',236=>'gcommaaccent',237=>'kcommaaccent',238=>'imacron',239=>'lcommaaccent',240=>'scaron',241=>'nacute',242=>'ncommaaccent',243=>'oacute',244=>'omacron',245=>'otilde',246=>'odieresis',247=>'divide',248=>'uogonek',249=>'lslash',250=>'sacute',251=>'umacron',252=>'udieresis',253=>'zdotaccent',254=>'zcaron',255=>'dotaccent'), 18395 18396// encoding map for: cp1258 18397'cp1258' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'Euro',129=>'.notdef',130=>'quotesinglbase',131=>'florin',132=>'quotedblbase',133=>'ellipsis',134=>'dagger',135=>'daggerdbl',136=>'circumflex',137=>'perthousand',138=>'.notdef',139=>'guilsinglleft',140=>'OE',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'quoteleft',146=>'quoteright',147=>'quotedblleft',148=>'quotedblright',149=>'bullet',150=>'endash',151=>'emdash',152=>'tilde',153=>'trademark',154=>'.notdef',155=>'guilsinglright',156=>'oe',157=>'.notdef',158=>'.notdef',159=>'Ydieresis',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'gravecomb',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Dcroat',209=>'Ntilde',210=>'hookabovecomb',211=>'Oacute',212=>'Ocircumflex',213=>'Ohorn',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Uhorn',222=>'tildecomb',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'acutecomb',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'dcroat',241=>'ntilde',242=>'dotbelowcomb',243=>'oacute',244=>'ocircumflex',245=>'ohorn',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'uhorn',254=>'dong',255=>'ydieresis'), 18398 18399// encoding map for: iso-8859-1 18400'iso-8859-1' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'), 18401 18402// encoding map for: iso-8859-2 18403'iso-8859-2' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'Aogonek',162=>'breve',163=>'Lslash',164=>'currency',165=>'Lcaron',166=>'Sacute',167=>'section',168=>'dieresis',169=>'Scaron',170=>'Scedilla',171=>'Tcaron',172=>'Zacute',173=>'hyphen',174=>'Zcaron',175=>'Zdotaccent',176=>'degree',177=>'aogonek',178=>'ogonek',179=>'lslash',180=>'acute',181=>'lcaron',182=>'sacute',183=>'caron',184=>'cedilla',185=>'scaron',186=>'scedilla',187=>'tcaron',188=>'zacute',189=>'hungarumlaut',190=>'zcaron',191=>'zdotaccent',192=>'Racute',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Lacute',198=>'Cacute',199=>'Ccedilla',200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Ecaron',205=>'Iacute',206=>'Icircumflex',207=>'Dcaron',208=>'Dcroat',209=>'Nacute',210=>'Ncaron',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'multiply',216=>'Rcaron',217=>'Uring',218=>'Uacute',219=>'Uhungarumlaut',220=>'Udieresis',221=>'Yacute',222=>'Tcommaaccent',223=>'germandbls',224=>'racute',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'lacute',230=>'cacute',231=>'ccedilla',232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'ecaron',237=>'iacute',238=>'icircumflex',239=>'dcaron',240=>'dcroat',241=>'nacute',242=>'ncaron',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'divide',248=>'rcaron',249=>'uring',250=>'uacute',251=>'uhungarumlaut',252=>'udieresis',253=>'yacute',254=>'tcommaaccent',255=>'dotaccent'), 18404 18405// encoding map for: iso-8859-4 18406'iso-8859-4' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'Aogonek',162=>'kgreenlandic',163=>'Rcommaaccent',164=>'currency',165=>'Itilde',166=>'Lcommaaccent',167=>'section',168=>'dieresis',169=>'Scaron',170=>'Emacron',171=>'Gcommaaccent',172=>'Tbar',173=>'hyphen',174=>'Zcaron',175=>'macron',176=>'degree',177=>'aogonek',178=>'ogonek',179=>'rcommaaccent',180=>'acute',181=>'itilde',182=>'lcommaaccent',183=>'caron',184=>'cedilla',185=>'scaron',186=>'emacron',187=>'gcommaaccent',188=>'tbar',189=>'Eng',190=>'zcaron',191=>'eng',192=>'Amacron',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Iogonek',200=>'Ccaron',201=>'Eacute',202=>'Eogonek',203=>'Edieresis',204=>'Edotaccent',205=>'Iacute',206=>'Icircumflex',207=>'Imacron',208=>'Dcroat',209=>'Ncommaaccent',210=>'Omacron',211=>'Kcommaaccent',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Uogonek',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Utilde',222=>'Umacron',223=>'germandbls',224=>'amacron',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'iogonek',232=>'ccaron',233=>'eacute',234=>'eogonek',235=>'edieresis',236=>'edotaccent',237=>'iacute',238=>'icircumflex',239=>'imacron',240=>'dcroat',241=>'ncommaaccent',242=>'omacron',243=>'kcommaaccent',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'uogonek',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'utilde',254=>'umacron',255=>'dotaccent'), 18407 18408// encoding map for: iso-8859-5 18409'iso-8859-5' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'afii10023',162=>'afii10051',163=>'afii10052',164=>'afii10053',165=>'afii10054',166=>'afii10055',167=>'afii10056',168=>'afii10057',169=>'afii10058',170=>'afii10059',171=>'afii10060',172=>'afii10061',173=>'hyphen',174=>'afii10062',175=>'afii10145',176=>'afii10017',177=>'afii10018',178=>'afii10019',179=>'afii10020',180=>'afii10021',181=>'afii10022',182=>'afii10024',183=>'afii10025',184=>'afii10026',185=>'afii10027',186=>'afii10028',187=>'afii10029',188=>'afii10030',189=>'afii10031',190=>'afii10032',191=>'afii10033',192=>'afii10034',193=>'afii10035',194=>'afii10036',195=>'afii10037',196=>'afii10038',197=>'afii10039',198=>'afii10040',199=>'afii10041',200=>'afii10042',201=>'afii10043',202=>'afii10044',203=>'afii10045',204=>'afii10046',205=>'afii10047',206=>'afii10048',207=>'afii10049',208=>'afii10065',209=>'afii10066',210=>'afii10067',211=>'afii10068',212=>'afii10069',213=>'afii10070',214=>'afii10072',215=>'afii10073',216=>'afii10074',217=>'afii10075',218=>'afii10076',219=>'afii10077',220=>'afii10078',221=>'afii10079',222=>'afii10080',223=>'afii10081',224=>'afii10082',225=>'afii10083',226=>'afii10084',227=>'afii10085',228=>'afii10086',229=>'afii10087',230=>'afii10088',231=>'afii10089',232=>'afii10090',233=>'afii10091',234=>'afii10092',235=>'afii10093',236=>'afii10094',237=>'afii10095',238=>'afii10096',239=>'afii10097',240=>'afii61352',241=>'afii10071',242=>'afii10099',243=>'afii10100',244=>'afii10101',245=>'afii10102',246=>'afii10103',247=>'afii10104',248=>'afii10105',249=>'afii10106',250=>'afii10107',251=>'afii10108',252=>'afii10109',253=>'section',254=>'afii10110',255=>'afii10193'), 18410 18411// encoding map for: iso-8859-7 18412'iso-8859-7' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'quoteleft',162=>'quoteright',163=>'sterling',164=>'.notdef',165=>'.notdef',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'.notdef',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'.notdef',175=>'afii00208',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'tonos',181=>'dieresistonos',182=>'Alphatonos',183=>'periodcentered',184=>'Epsilontonos',185=>'Etatonos',186=>'Iotatonos',187=>'guillemotright',188=>'Omicrontonos',189=>'onehalf',190=>'Upsilontonos',191=>'Omegatonos',192=>'iotadieresistonos',193=>'Alpha',194=>'Beta',195=>'Gamma',196=>'Delta',197=>'Epsilon',198=>'Zeta',199=>'Eta',200=>'Theta',201=>'Iota',202=>'Kappa',203=>'Lambda',204=>'Mu',205=>'Nu',206=>'Xi',207=>'Omicron',208=>'Pi',209=>'Rho',210=>'.notdef',211=>'Sigma',212=>'Tau',213=>'Upsilon',214=>'Phi',215=>'Chi',216=>'Psi',217=>'Omega',218=>'Iotadieresis',219=>'Upsilondieresis',220=>'alphatonos',221=>'epsilontonos',222=>'etatonos',223=>'iotatonos',224=>'upsilondieresistonos',225=>'alpha',226=>'beta',227=>'gamma',228=>'delta',229=>'epsilon',230=>'zeta',231=>'eta',232=>'theta',233=>'iota',234=>'kappa',235=>'lambda',236=>'mu',237=>'nu',238=>'xi',239=>'omicron',240=>'pi',241=>'rho',242=>'sigma1',243=>'sigma',244=>'tau',245=>'upsilon',246=>'phi',247=>'chi',248=>'psi',249=>'omega',250=>'iotadieresis',251=>'upsilondieresis',252=>'omicrontonos',253=>'upsilontonos',254=>'omegatonos',255=>'.notdef'), 18413 18414// encoding map for: iso-8859-9 18415'iso-8859-9' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'currency',165=>'yen',166=>'brokenbar',167=>'section',168=>'dieresis',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'acute',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'cedilla',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'onequarter',189=>'onehalf',190=>'threequarters',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Gbreve',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Idotaccent',222=>'Scedilla',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'gbreve',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'dotlessi',254=>'scedilla',255=>'ydieresis'), 18416 18417// encoding map for: iso-8859-11 18418'iso-8859-11' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'kokaithai',162=>'khokhaithai',163=>'khokhuatthai',164=>'khokhwaithai',165=>'khokhonthai',166=>'khorakhangthai',167=>'ngonguthai',168=>'chochanthai',169=>'chochingthai',170=>'chochangthai',171=>'sosothai',172=>'chochoethai',173=>'yoyingthai',174=>'dochadathai',175=>'topatakthai',176=>'thothanthai',177=>'thonangmonthothai',178=>'thophuthaothai',179=>'nonenthai',180=>'dodekthai',181=>'totaothai',182=>'thothungthai',183=>'thothahanthai',184=>'thothongthai',185=>'nonuthai',186=>'bobaimaithai',187=>'poplathai',188=>'phophungthai',189=>'fofathai',190=>'phophanthai',191=>'fofanthai',192=>'phosamphaothai',193=>'momathai',194=>'yoyakthai',195=>'roruathai',196=>'ruthai',197=>'lolingthai',198=>'luthai',199=>'wowaenthai',200=>'sosalathai',201=>'sorusithai',202=>'sosuathai',203=>'hohipthai',204=>'lochulathai',205=>'oangthai',206=>'honokhukthai',207=>'paiyannoithai',208=>'saraathai',209=>'maihanakatthai',210=>'saraaathai',211=>'saraamthai',212=>'saraithai',213=>'saraiithai',214=>'sarauethai',215=>'saraueethai',216=>'sarauthai',217=>'sarauuthai',218=>'phinthuthai',219=>'.notdef',220=>'.notdef',221=>'.notdef',222=>'.notdef',223=>'bahtthai',224=>'saraethai',225=>'saraaethai',226=>'saraothai',227=>'saraaimaimuanthai',228=>'saraaimaimalaithai',229=>'lakkhangyaothai',230=>'maiyamokthai',231=>'maitaikhuthai',232=>'maiekthai',233=>'maithothai',234=>'maitrithai',235=>'maichattawathai',236=>'thanthakhatthai',237=>'nikhahitthai',238=>'yamakkanthai',239=>'fongmanthai',240=>'zerothai',241=>'onethai',242=>'twothai',243=>'threethai',244=>'fourthai',245=>'fivethai',246=>'sixthai',247=>'seventhai',248=>'eightthai',249=>'ninethai',250=>'angkhankhuthai',251=>'khomutthai',252=>'.notdef',253=>'.notdef',254=>'.notdef',255=>'.notdef'), 18419 18420// encoding map for: iso-8859-15 18421'iso-8859-15' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'exclamdown',162=>'cent',163=>'sterling',164=>'Euro',165=>'yen',166=>'Scaron',167=>'section',168=>'scaron',169=>'copyright',170=>'ordfeminine',171=>'guillemotleft',172=>'logicalnot',173=>'hyphen',174=>'registered',175=>'macron',176=>'degree',177=>'plusminus',178=>'twosuperior',179=>'threesuperior',180=>'Zcaron',181=>'mu',182=>'paragraph',183=>'periodcentered',184=>'zcaron',185=>'onesuperior',186=>'ordmasculine',187=>'guillemotright',188=>'OE',189=>'oe',190=>'Ydieresis',191=>'questiondown',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Atilde',196=>'Adieresis',197=>'Aring',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Eth',209=>'Ntilde',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Otilde',214=>'Odieresis',215=>'multiply',216=>'Oslash',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Yacute',222=>'Thorn',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'atilde',228=>'adieresis',229=>'aring',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'eth',241=>'ntilde',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'otilde',246=>'odieresis',247=>'divide',248=>'oslash',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'yacute',254=>'thorn',255=>'ydieresis'), 18422 18423// encoding map for: iso-8859-16 18424'iso-8859-16' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'space',161=>'Aogonek',162=>'aogonek',163=>'Lslash',164=>'Euro',165=>'quotedblbase',166=>'Scaron',167=>'section',168=>'scaron',169=>'copyright',170=>'Scommaaccent',171=>'guillemotleft',172=>'Zacute',173=>'hyphen',174=>'zacute',175=>'Zdotaccent',176=>'degree',177=>'plusminus',178=>'Ccaron',179=>'lslash',180=>'Zcaron',181=>'quotedblright',182=>'paragraph',183=>'periodcentered',184=>'zcaron',185=>'ccaron',186=>'scommaaccent',187=>'guillemotright',188=>'OE',189=>'oe',190=>'Ydieresis',191=>'zdotaccent',192=>'Agrave',193=>'Aacute',194=>'Acircumflex',195=>'Abreve',196=>'Adieresis',197=>'Cacute',198=>'AE',199=>'Ccedilla',200=>'Egrave',201=>'Eacute',202=>'Ecircumflex',203=>'Edieresis',204=>'Igrave',205=>'Iacute',206=>'Icircumflex',207=>'Idieresis',208=>'Dcroat',209=>'Nacute',210=>'Ograve',211=>'Oacute',212=>'Ocircumflex',213=>'Ohungarumlaut',214=>'Odieresis',215=>'Sacute',216=>'Uhungarumlaut',217=>'Ugrave',218=>'Uacute',219=>'Ucircumflex',220=>'Udieresis',221=>'Eogonek',222=>'Tcommaaccent',223=>'germandbls',224=>'agrave',225=>'aacute',226=>'acircumflex',227=>'abreve',228=>'adieresis',229=>'cacute',230=>'ae',231=>'ccedilla',232=>'egrave',233=>'eacute',234=>'ecircumflex',235=>'edieresis',236=>'igrave',237=>'iacute',238=>'icircumflex',239=>'idieresis',240=>'dcroat',241=>'nacute',242=>'ograve',243=>'oacute',244=>'ocircumflex',245=>'ohungarumlaut',246=>'odieresis',247=>'sacute',248=>'uhungarumlaut',249=>'ugrave',250=>'uacute',251=>'ucircumflex',252=>'udieresis',253=>'eogonek',254=>'tcommaaccent',255=>'ydieresis'), 18425 18426// encoding map for: koi8-r 18427'koi8-r' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000',136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock',144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'periodcentered',150=>'radical',151=>'approxequal',152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide',160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'SF520000',165=>'SF390000',166=>'SF220000',167=>'SF210000',168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'SF270000',174=>'SF260000',175=>'SF360000',176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'SF200000',181=>'SF230000',182=>'SF470000',183=>'SF480000',184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'SF530000',190=>'SF440000',191=>'copyright',192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068',200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080',208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067',216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092',224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020',232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032',240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019',248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'), 18428 18429// encoding map for: koi8-u 18430'koi8-u' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'quotedbl',35=>'numbersign',36=>'dollar',37=>'percent',38=>'ampersand',39=>'quotesingle',40=>'parenleft',41=>'parenright',42=>'asterisk',43=>'plus',44=>'comma',45=>'hyphen',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'at',65=>'A',66=>'B',67=>'C',68=>'D',69=>'E',70=>'F',71=>'G',72=>'H',73=>'I',74=>'J',75=>'K',76=>'L',77=>'M',78=>'N',79=>'O',80=>'P',81=>'Q',82=>'R',83=>'S',84=>'T',85=>'U',86=>'V',87=>'W',88=>'X',89=>'Y',90=>'Z',91=>'bracketleft',92=>'backslash',93=>'bracketright',94=>'asciicircum',95=>'underscore',96=>'grave',97=>'a',98=>'b',99=>'c',100=>'d',101=>'e',102=>'f',103=>'g',104=>'h',105=>'i',106=>'j',107=>'k',108=>'l',109=>'m',110=>'n',111=>'o',112=>'p',113=>'q',114=>'r',115=>'s',116=>'t',117=>'u',118=>'v',119=>'w',120=>'x',121=>'y',122=>'z',123=>'braceleft',124=>'bar',125=>'braceright',126=>'asciitilde',127=>'.notdef',128=>'SF100000',129=>'SF110000',130=>'SF010000',131=>'SF030000',132=>'SF020000',133=>'SF040000',134=>'SF080000',135=>'SF090000',136=>'SF060000',137=>'SF070000',138=>'SF050000',139=>'upblock',140=>'dnblock',141=>'block',142=>'lfblock',143=>'rtblock',144=>'ltshade',145=>'shade',146=>'dkshade',147=>'integraltp',148=>'filledbox',149=>'bullet',150=>'radical',151=>'approxequal',152=>'lessequal',153=>'greaterequal',154=>'space',155=>'integralbt',156=>'degree',157=>'twosuperior',158=>'periodcentered',159=>'divide',160=>'SF430000',161=>'SF240000',162=>'SF510000',163=>'afii10071',164=>'afii10101',165=>'SF390000',166=>'afii10103',167=>'afii10104',168=>'SF250000',169=>'SF500000',170=>'SF490000',171=>'SF380000',172=>'SF280000',173=>'afii10098',174=>'SF260000',175=>'SF360000',176=>'SF370000',177=>'SF420000',178=>'SF190000',179=>'afii10023',180=>'afii10053',181=>'SF230000',182=>'afii10055',183=>'afii10056',184=>'SF410000',185=>'SF450000',186=>'SF460000',187=>'SF400000',188=>'SF540000',189=>'afii10050',190=>'SF440000',191=>'copyright',192=>'afii10096',193=>'afii10065',194=>'afii10066',195=>'afii10088',196=>'afii10069',197=>'afii10070',198=>'afii10086',199=>'afii10068',200=>'afii10087',201=>'afii10074',202=>'afii10075',203=>'afii10076',204=>'afii10077',205=>'afii10078',206=>'afii10079',207=>'afii10080',208=>'afii10081',209=>'afii10097',210=>'afii10082',211=>'afii10083',212=>'afii10084',213=>'afii10085',214=>'afii10072',215=>'afii10067',216=>'afii10094',217=>'afii10093',218=>'afii10073',219=>'afii10090',220=>'afii10095',221=>'afii10091',222=>'afii10089',223=>'afii10092',224=>'afii10048',225=>'afii10017',226=>'afii10018',227=>'afii10040',228=>'afii10021',229=>'afii10022',230=>'afii10038',231=>'afii10020',232=>'afii10039',233=>'afii10026',234=>'afii10027',235=>'afii10028',236=>'afii10029',237=>'afii10030',238=>'afii10031',239=>'afii10032',240=>'afii10033',241=>'afii10049',242=>'afii10034',243=>'afii10035',244=>'afii10036',245=>'afii10037',246=>'afii10024',247=>'afii10019',248=>'afii10046',249=>'afii10045',250=>'afii10025',251=>'afii10042',252=>'afii10047',253=>'afii10043',254=>'afii10041',255=>'afii10044'), 18431 18432// encoding map for: symbol 18433'symbol' => array(0=>'.notdef',1=>'.notdef',2=>'.notdef',3=>'.notdef',4=>'.notdef',5=>'.notdef',6=>'.notdef',7=>'.notdef',8=>'.notdef',9=>'.notdef',10=>'.notdef',11=>'.notdef',12=>'.notdef',13=>'.notdef',14=>'.notdef',15=>'.notdef',16=>'.notdef',17=>'.notdef',18=>'.notdef',19=>'.notdef',20=>'.notdef',21=>'.notdef',22=>'.notdef',23=>'.notdef',24=>'.notdef',25=>'.notdef',26=>'.notdef',27=>'.notdef',28=>'.notdef',29=>'.notdef',30=>'.notdef',31=>'.notdef',32=>'space',33=>'exclam',34=>'universal',35=>'numbersign',36=>'existential',37=>'percent',38=>'ampersand',39=>'suchthat',40=>'parenleft',41=>'parenright',42=>'asteriskmath',43=>'plus',44=>'comma',45=>'minus',46=>'period',47=>'slash',48=>'zero',49=>'one',50=>'two',51=>'three',52=>'four',53=>'five',54=>'six',55=>'seven',56=>'eight',57=>'nine',58=>'colon',59=>'semicolon',60=>'less',61=>'equal',62=>'greater',63=>'question',64=>'congruent',65=>'Alpha',66=>'Beta',67=>'Chi',68=>'Delta',69=>'Epsilon',70=>'Phi',71=>'Gamma',72=>'Eta',73=>'Iota',74=>'theta1',75=>'Kappa',76=>'Lambda',77=>'Mu',78=>'Nu',79=>'Omicron',80=>'Pi',81=>'Theta',82=>'Rho',83=>'Sigma',84=>'Tau',85=>'Upsilon',86=>'sigma1',87=>'Omega',88=>'Xi',89=>'Psi',90=>'Zeta',91=>'bracketleft',92=>'therefore',93=>'bracketright',94=>'perpendicular',95=>'underscore',96=>'radicalex',97=>'alpha',98=>'beta',99=>'chi',100=>'delta',101=>'epsilon',102=>'phi',103=>'gamma',104=>'eta',105=>'iota',106=>'phi1',107=>'kappa',108=>'lambda',109=>'mu',110=>'nu',111=>'omicron',112=>'pi',113=>'theta',114=>'rho',115=>'sigma',116=>'tau',117=>'upsilon',118=>'omega1',119=>'omega',120=>'xi',121=>'psi',122=>'zeta',123=>'braceleft',124=>'bar',125=>'braceright',126=>'similar',127=>'.notdef',128=>'.notdef',129=>'.notdef',130=>'.notdef',131=>'.notdef',132=>'.notdef',133=>'.notdef',134=>'.notdef',135=>'.notdef',136=>'.notdef',137=>'.notdef',138=>'.notdef',139=>'.notdef',140=>'.notdef',141=>'.notdef',142=>'.notdef',143=>'.notdef',144=>'.notdef',145=>'.notdef',146=>'.notdef',147=>'.notdef',148=>'.notdef',149=>'.notdef',150=>'.notdef',151=>'.notdef',152=>'.notdef',153=>'.notdef',154=>'.notdef',155=>'.notdef',156=>'.notdef',157=>'.notdef',158=>'.notdef',159=>'.notdef',160=>'Euro',161=>'Upsilon1',162=>'minute',163=>'lessequal',164=>'fraction',165=>'infinity',166=>'florin',167=>'club',168=>'diamond',169=>'heart',170=>'spade',171=>'arrowboth',172=>'arrowleft',173=>'arrowup',174=>'arrowright',175=>'arrowdown',176=>'degree',177=>'plusminus',178=>'second',179=>'greaterequal',180=>'multiply',181=>'proportional',182=>'partialdiff',183=>'bullet',184=>'divide',185=>'notequal',186=>'equivalence',187=>'approxequal',188=>'ellipsis',189=>'arrowvertex',190=>'arrowhorizex',191=>'carriagereturn',192=>'aleph',193=>'Ifraktur',194=>'Rfraktur',195=>'weierstrass',196=>'circlemultiply',197=>'circleplus',198=>'emptyset',199=>'intersection',200=>'union',201=>'propersuperset',202=>'reflexsuperset',203=>'notsubset',204=>'propersubset',205=>'reflexsubset',206=>'element',207=>'notelement',208=>'angle',209=>'gradient',210=>'registerserif',211=>'copyrightserif',212=>'trademarkserif',213=>'product',214=>'radical',215=>'dotmath',216=>'logicalnot',217=>'logicaland',218=>'logicalor',219=>'arrowdblboth',220=>'arrowdblleft',221=>'arrowdblup',222=>'arrowdblright',223=>'arrowdbldown',224=>'lozenge',225=>'angleleft',226=>'registersans',227=>'copyrightsans',228=>'trademarksans',229=>'summation',230=>'parenlefttp',231=>'parenleftex',232=>'parenleftbt',233=>'bracketlefttp',234=>'bracketleftex',235=>'bracketleftbt',236=>'bracelefttp',237=>'braceleftmid',238=>'braceleftbt',239=>'braceex',240=>'.notdef',241=>'angleright',242=>'integral',243=>'integraltp',244=>'integralex',245=>'integralbt',246=>'parenrighttp',247=>'parenrightex',248=>'parenrightbt',249=>'bracketrighttp',250=>'bracketrightex',251=>'bracketrightbt',252=>'bracerighttp',253=>'bracerightmid',254=>'bracerightbt',255=>'.notdef',1226=>'registered',1227=>'copyright',1228=>'trademark') 18434 18435); // end of encoding maps 18436 18437/** 18438 * ToUnicode map for Identity-H stream 18439 * @public static 18440 */ 18441public static $uni_identity_h = "/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo << /Registry (Adobe) /Ordering (UCS) /Supplement 0 >> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n/WMode 0 def\n1 begincodespacerange\n<0000> <FFFF>\nendcodespacerange\n100 beginbfrange\n<0000> <00ff> <0000>\n<0100> <01ff> <0100>\n<0200> <02ff> <0200>\n<0300> <03ff> <0300>\n<0400> <04ff> <0400>\n<0500> <05ff> <0500>\n<0600> <06ff> <0600>\n<0700> <07ff> <0700>\n<0800> <08ff> <0800>\n<0900> <09ff> <0900>\n<0a00> <0aff> <0a00>\n<0b00> <0bff> <0b00>\n<0c00> <0cff> <0c00>\n<0d00> <0dff> <0d00>\n<0e00> <0eff> <0e00>\n<0f00> <0fff> <0f00>\n<1000> <10ff> <1000>\n<1100> <11ff> <1100>\n<1200> <12ff> <1200>\n<1300> <13ff> <1300>\n<1400> <14ff> <1400>\n<1500> <15ff> <1500>\n<1600> <16ff> <1600>\n<1700> <17ff> <1700>\n<1800> <18ff> <1800>\n<1900> <19ff> <1900>\n<1a00> <1aff> <1a00>\n<1b00> <1bff> <1b00>\n<1c00> <1cff> <1c00>\n<1d00> <1dff> <1d00>\n<1e00> <1eff> <1e00>\n<1f00> <1fff> <1f00>\n<2000> <20ff> <2000>\n<2100> <21ff> <2100>\n<2200> <22ff> <2200>\n<2300> <23ff> <2300>\n<2400> <24ff> <2400>\n<2500> <25ff> <2500>\n<2600> <26ff> <2600>\n<2700> <27ff> <2700>\n<2800> <28ff> <2800>\n<2900> <29ff> <2900>\n<2a00> <2aff> <2a00>\n<2b00> <2bff> <2b00>\n<2c00> <2cff> <2c00>\n<2d00> <2dff> <2d00>\n<2e00> <2eff> <2e00>\n<2f00> <2fff> <2f00>\n<3000> <30ff> <3000>\n<3100> <31ff> <3100>\n<3200> <32ff> <3200>\n<3300> <33ff> <3300>\n<3400> <34ff> <3400>\n<3500> <35ff> <3500>\n<3600> <36ff> <3600>\n<3700> <37ff> <3700>\n<3800> <38ff> <3800>\n<3900> <39ff> <3900>\n<3a00> <3aff> <3a00>\n<3b00> <3bff> <3b00>\n<3c00> <3cff> <3c00>\n<3d00> <3dff> <3d00>\n<3e00> <3eff> <3e00>\n<3f00> <3fff> <3f00>\n<4000> <40ff> <4000>\n<4100> <41ff> <4100>\n<4200> <42ff> <4200>\n<4300> <43ff> <4300>\n<4400> <44ff> <4400>\n<4500> <45ff> <4500>\n<4600> <46ff> <4600>\n<4700> <47ff> <4700>\n<4800> <48ff> <4800>\n<4900> <49ff> <4900>\n<4a00> <4aff> <4a00>\n<4b00> <4bff> <4b00>\n<4c00> <4cff> <4c00>\n<4d00> <4dff> <4d00>\n<4e00> <4eff> <4e00>\n<4f00> <4fff> <4f00>\n<5000> <50ff> <5000>\n<5100> <51ff> <5100>\n<5200> <52ff> <5200>\n<5300> <53ff> <5300>\n<5400> <54ff> <5400>\n<5500> <55ff> <5500>\n<5600> <56ff> <5600>\n<5700> <57ff> <5700>\n<5800> <58ff> <5800>\n<5900> <59ff> <5900>\n<5a00> <5aff> <5a00>\n<5b00> <5bff> <5b00>\n<5c00> <5cff> <5c00>\n<5d00> <5dff> <5d00>\n<5e00> <5eff> <5e00>\n<5f00> <5fff> <5f00>\n<6000> <60ff> <6000>\n<6100> <61ff> <6100>\n<6200> <62ff> <6200>\n<6300> <63ff> <6300>\nendbfrange\n100 beginbfrange\n<6400> <64ff> <6400>\n<6500> <65ff> <6500>\n<6600> <66ff> <6600>\n<6700> <67ff> <6700>\n<6800> <68ff> <6800>\n<6900> <69ff> <6900>\n<6a00> <6aff> <6a00>\n<6b00> <6bff> <6b00>\n<6c00> <6cff> <6c00>\n<6d00> <6dff> <6d00>\n<6e00> <6eff> <6e00>\n<6f00> <6fff> <6f00>\n<7000> <70ff> <7000>\n<7100> <71ff> <7100>\n<7200> <72ff> <7200>\n<7300> <73ff> <7300>\n<7400> <74ff> <7400>\n<7500> <75ff> <7500>\n<7600> <76ff> <7600>\n<7700> <77ff> <7700>\n<7800> <78ff> <7800>\n<7900> <79ff> <7900>\n<7a00> <7aff> <7a00>\n<7b00> <7bff> <7b00>\n<7c00> <7cff> <7c00>\n<7d00> <7dff> <7d00>\n<7e00> <7eff> <7e00>\n<7f00> <7fff> <7f00>\n<8000> <80ff> <8000>\n<8100> <81ff> <8100>\n<8200> <82ff> <8200>\n<8300> <83ff> <8300>\n<8400> <84ff> <8400>\n<8500> <85ff> <8500>\n<8600> <86ff> <8600>\n<8700> <87ff> <8700>\n<8800> <88ff> <8800>\n<8900> <89ff> <8900>\n<8a00> <8aff> <8a00>\n<8b00> <8bff> <8b00>\n<8c00> <8cff> <8c00>\n<8d00> <8dff> <8d00>\n<8e00> <8eff> <8e00>\n<8f00> <8fff> <8f00>\n<9000> <90ff> <9000>\n<9100> <91ff> <9100>\n<9200> <92ff> <9200>\n<9300> <93ff> <9300>\n<9400> <94ff> <9400>\n<9500> <95ff> <9500>\n<9600> <96ff> <9600>\n<9700> <97ff> <9700>\n<9800> <98ff> <9800>\n<9900> <99ff> <9900>\n<9a00> <9aff> <9a00>\n<9b00> <9bff> <9b00>\n<9c00> <9cff> <9c00>\n<9d00> <9dff> <9d00>\n<9e00> <9eff> <9e00>\n<9f00> <9fff> <9f00>\n<a000> <a0ff> <a000>\n<a100> <a1ff> <a100>\n<a200> <a2ff> <a200>\n<a300> <a3ff> <a300>\n<a400> <a4ff> <a400>\n<a500> <a5ff> <a500>\n<a600> <a6ff> <a600>\n<a700> <a7ff> <a700>\n<a800> <a8ff> <a800>\n<a900> <a9ff> <a900>\n<aa00> <aaff> <aa00>\n<ab00> <abff> <ab00>\n<ac00> <acff> <ac00>\n<ad00> <adff> <ad00>\n<ae00> <aeff> <ae00>\n<af00> <afff> <af00>\n<b000> <b0ff> <b000>\n<b100> <b1ff> <b100>\n<b200> <b2ff> <b200>\n<b300> <b3ff> <b300>\n<b400> <b4ff> <b400>\n<b500> <b5ff> <b500>\n<b600> <b6ff> <b600>\n<b700> <b7ff> <b700>\n<b800> <b8ff> <b800>\n<b900> <b9ff> <b900>\n<ba00> <baff> <ba00>\n<bb00> <bbff> <bb00>\n<bc00> <bcff> <bc00>\n<bd00> <bdff> <bd00>\n<be00> <beff> <be00>\n<bf00> <bfff> <bf00>\n<c000> <c0ff> <c000>\n<c100> <c1ff> <c100>\n<c200> <c2ff> <c200>\n<c300> <c3ff> <c300>\n<c400> <c4ff> <c400>\n<c500> <c5ff> <c500>\n<c600> <c6ff> <c600>\n<c700> <c7ff> <c700>\nendbfrange\n56 beginbfrange\n<c800> <c8ff> <c800>\n<c900> <c9ff> <c900>\n<ca00> <caff> <ca00>\n<cb00> <cbff> <cb00>\n<cc00> <ccff> <cc00>\n<cd00> <cdff> <cd00>\n<ce00> <ceff> <ce00>\n<cf00> <cfff> <cf00>\n<d000> <d0ff> <d000>\n<d100> <d1ff> <d100>\n<d200> <d2ff> <d200>\n<d300> <d3ff> <d300>\n<d400> <d4ff> <d400>\n<d500> <d5ff> <d500>\n<d600> <d6ff> <d600>\n<d700> <d7ff> <d700>\n<d800> <d8ff> <d800>\n<d900> <d9ff> <d900>\n<da00> <daff> <da00>\n<db00> <dbff> <db00>\n<dc00> <dcff> <dc00>\n<dd00> <ddff> <dd00>\n<de00> <deff> <de00>\n<df00> <dfff> <df00>\n<e000> <e0ff> <e000>\n<e100> <e1ff> <e100>\n<e200> <e2ff> <e200>\n<e300> <e3ff> <e300>\n<e400> <e4ff> <e400>\n<e500> <e5ff> <e500>\n<e600> <e6ff> <e600>\n<e700> <e7ff> <e700>\n<e800> <e8ff> <e800>\n<e900> <e9ff> <e900>\n<ea00> <eaff> <ea00>\n<eb00> <ebff> <eb00>\n<ec00> <ecff> <ec00>\n<ed00> <edff> <ed00>\n<ee00> <eeff> <ee00>\n<ef00> <efff> <ef00>\n<f000> <f0ff> <f000>\n<f100> <f1ff> <f100>\n<f200> <f2ff> <f200>\n<f300> <f3ff> <f300>\n<f400> <f4ff> <f400>\n<f500> <f5ff> <f500>\n<f600> <f6ff> <f600>\n<f700> <f7ff> <f700>\n<f800> <f8ff> <f800>\n<f900> <f9ff> <f900>\n<fa00> <faff> <fa00>\n<fb00> <fbff> <fb00>\n<fc00> <fcff> <fc00>\n<fd00> <fdff> <fd00>\n<fe00> <feff> <fe00>\n<ff00> <ffff> <ff00>\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend"; 18442 18443} // END OF TCPDF_FONT_DATA CLASS 18444 18445//============================================================+ 18446// END OF FILE 18447//============================================================+ 18448