EmsEAiHourSumTab1.java 256 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626
  1. package com.steerinfo.ems.emseaihoursumtab1.model;
  2. import com.steerinfo.framework.model.IBasePO;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.util.Date;
  5. public class EmsEAiHourSumTab1 implements IBasePO<String> {
  6. /**
  7. * 时间(CLOCK,VARCHAR,20)
  8. */
  9. @ApiModelProperty(value="时间",required=true)
  10. private String clock;
  11. /**
  12. * 写入时间(INSERT_TIME,TIMESTAMP,7)
  13. */
  14. @ApiModelProperty(value="写入时间",required=false)
  15. private Date insertTime;
  16. /**
  17. * 1#总降1#主变高压101有功电度量(TAG1,FLOAT,126)
  18. */
  19. @ApiModelProperty(value="1#总降1#主变高压101有功电度量",required=false)
  20. private Double tag1;
  21. /**
  22. * 1#总降2#主变高压102有功电度量(TAG2,FLOAT,126)
  23. */
  24. @ApiModelProperty(value="1#总降2#主变高压102有功电度量",required=false)
  25. private Double tag2;
  26. /**
  27. * 1#总降3#主变高压103有功电度量(TAG3,FLOAT,126)
  28. */
  29. @ApiModelProperty(value="1#总降3#主变高压103有功电度量",required=false)
  30. private Double tag3;
  31. /**
  32. * 1#总降4#主变高压104有功电度量(TAG4,FLOAT,126)
  33. */
  34. @ApiModelProperty(value="1#总降4#主变高压104有功电度量",required=false)
  35. private Double tag4;
  36. /**
  37. * 1#总降钢钢线(3#进线)152有功电度量(TAG5,FLOAT,126)
  38. */
  39. @ApiModelProperty(value="1#总降钢钢线(3#进线)152有功电度量",required=false)
  40. private Double tag5;
  41. /**
  42. * 1#总降钰钢IV回(1#进线)157有功电度量(TAG6,FLOAT,126)
  43. */
  44. @ApiModelProperty(value="1#总降钰钢IV回(1#进线)157有功电度量",required=false)
  45. private Double tag6;
  46. /**
  47. * 1#总降3#主变10KV进线603有功电度量(TAG7,FLOAT,126)
  48. */
  49. @ApiModelProperty(value="1#总降3#主变10KV进线603有功电度量",required=false)
  50. private Double tag7;
  51. /**
  52. * 1#总降4#主变10KV进线604有功电度量(TAG8,FLOAT,126)
  53. */
  54. @ApiModelProperty(value="1#总降4#主变10KV进线604有功电度量",required=false)
  55. private Double tag8;
  56. /**
  57. * 1#总降1#主变6KV进线A6010有功电度量(TAG9,FLOAT,126)
  58. */
  59. @ApiModelProperty(value="1#总降1#主变6KV进线A6010有功电度量",required=false)
  60. private Double tag9;
  61. /**
  62. * 1#总降1#主变6KV进线B6011有功电度量(TAG10,FLOAT,126)
  63. */
  64. @ApiModelProperty(value="1#总降1#主变6KV进线B6011有功电度量",required=false)
  65. private Double tag10;
  66. /**
  67. * 1#总降2#主变6KV进线A6020有功电度量(TAG11,FLOAT,126)
  68. */
  69. @ApiModelProperty(value="1#总降2#主变6KV进线A6020有功电度量",required=false)
  70. private Double tag11;
  71. /**
  72. * 1#总降2#主变6KV进线B6021有功电度量(TAG12,FLOAT,126)
  73. */
  74. @ApiModelProperty(value="1#总降2#主变6KV进线B6021有功电度量",required=false)
  75. private Double tag12;
  76. /**
  77. * 1#总降1#无源滤波柜B6101有功电度量(TAG13,FLOAT,126)
  78. */
  79. @ApiModelProperty(value="1#总降1#无源滤波柜B6101有功电度量",required=false)
  80. private Double tag13;
  81. /**
  82. * 1#总降三高线1#6102有功电度量(TAG14,FLOAT,126)
  83. */
  84. @ApiModelProperty(value="1#总降三高线1#6102有功电度量",required=false)
  85. private Double tag14;
  86. /**
  87. * 1#总降1#无源滤波柜A6103有功电度量(TAG15,FLOAT,126)
  88. */
  89. @ApiModelProperty(value="1#总降1#无源滤波柜A6103有功电度量",required=false)
  90. private Double tag15;
  91. /**
  92. * 1#总降棒材1#6104有功电度量(TAG16,FLOAT,126)
  93. */
  94. @ApiModelProperty(value="1#总降棒材1#6104有功电度量",required=false)
  95. private Double tag16;
  96. /**
  97. * 1#总降物业1#6105有功电度量(TAG17,FLOAT,126)
  98. */
  99. @ApiModelProperty(value="1#总降物业1#6105有功电度量",required=false)
  100. private Double tag17;
  101. /**
  102. * 1#总降一高线1#6106有功电度量(TAG18,FLOAT,126)
  103. */
  104. @ApiModelProperty(value="1#总降一高线1#6106有功电度量",required=false)
  105. private Double tag18;
  106. /**
  107. * 1#总降4500制氧1#6107有功电度量(TAG19,FLOAT,126)
  108. */
  109. @ApiModelProperty(value="1#总降4500制氧1#6107有功电度量",required=false)
  110. private Double tag19;
  111. /**
  112. * 1#总降回转窑1#6201有功电度量(TAG20,FLOAT,126)
  113. */
  114. @ApiModelProperty(value="1#总降回转窑1#6201有功电度量",required=false)
  115. private Double tag20;
  116. /**
  117. * 1#总降棒材2#6202有功电度量(TAG21,FLOAT,126)
  118. */
  119. @ApiModelProperty(value="1#总降棒材2#6202有功电度量",required=false)
  120. private Double tag21;
  121. /**
  122. * 1#总降1#电容器6203有功电度量(TAG22,FLOAT,126)
  123. */
  124. @ApiModelProperty(value="1#总降1#电容器6203有功电度量",required=false)
  125. private Double tag22;
  126. /**
  127. * 1#总降高炉1#6204有功电度量(TAG23,FLOAT,126)
  128. */
  129. @ApiModelProperty(value="1#总降高炉1#6204有功电度量",required=false)
  130. private Double tag23;
  131. /**
  132. * 1#总降宾馆1#6205有功电度量(TAG24,FLOAT,126)
  133. */
  134. @ApiModelProperty(value="1#总降宾馆1#6205有功电度量",required=false)
  135. private Double tag24;
  136. /**
  137. * 1#总降三高线2#6301有功电度量(TAG25,FLOAT,126)
  138. */
  139. @ApiModelProperty(value="1#总降三高线2#6301有功电度量",required=false)
  140. private Double tag25;
  141. @ApiModelProperty(value="",required=false)
  142. private Double tag26;
  143. /**
  144. * 1#总降二万制氧2#6304有功电度量(TAG27,FLOAT,126)
  145. */
  146. @ApiModelProperty(value="1#总降二万制氧2#6304有功电度量",required=false)
  147. private Double tag27;
  148. /**
  149. * 1#总降高炉2#6305有功电度量(TAG28,FLOAT,126)
  150. */
  151. @ApiModelProperty(value="1#总降高炉2#6305有功电度量",required=false)
  152. private Double tag28;
  153. /**
  154. * 1#总降回转窑2#6401有功电度量(TAG29,FLOAT,126)
  155. */
  156. @ApiModelProperty(value="1#总降回转窑2#6401有功电度量",required=false)
  157. private Double tag29;
  158. /**
  159. * 1#总降二万制氧1#6402有功电度量(TAG30,FLOAT,126)
  160. */
  161. @ApiModelProperty(value="1#总降二万制氧1#6402有功电度量",required=false)
  162. private Double tag30;
  163. /**
  164. * 1#总降4500制氧1#6403有功电度量(TAG31,FLOAT,126)
  165. */
  166. @ApiModelProperty(value="1#总降4500制氧1#6403有功电度量",required=false)
  167. private Double tag31;
  168. /**
  169. * 1#总降一高线2#6404有功电度量(TAG32,FLOAT,126)
  170. */
  171. @ApiModelProperty(value="1#总降一高线2#6404有功电度量",required=false)
  172. private Double tag32;
  173. /**
  174. * 1#总降2#无源滤波柜A6405有功电度量(TAG33,FLOAT,126)
  175. */
  176. @ApiModelProperty(value="1#总降2#无源滤波柜A6405有功电度量",required=false)
  177. private Double tag33;
  178. /**
  179. * 1#总降2#无源滤波柜B6406有功电度量(TAG34,FLOAT,126)
  180. */
  181. @ApiModelProperty(value="1#总降2#无源滤波柜B6406有功电度量",required=false)
  182. private Double tag34;
  183. @ApiModelProperty(value="",required=false)
  184. private Double tag35;
  185. /**
  186. * 1#总降精炼炉1#8301有功电度量(TAG36,FLOAT,126)
  187. */
  188. @ApiModelProperty(value="1#总降精炼炉1#8301有功电度量",required=false)
  189. private Double tag36;
  190. /**
  191. * 1#总降炼钢1#8302有功电度量(TAG37,FLOAT,126)
  192. */
  193. @ApiModelProperty(value="1#总降炼钢1#8302有功电度量",required=false)
  194. private Double tag37;
  195. /**
  196. * 1#总降烧结机头1#8303有功电度量(TAG38,FLOAT,126)
  197. */
  198. @ApiModelProperty(value="1#总降烧结机头1#8303有功电度量",required=false)
  199. private Double tag38;
  200. /**
  201. * 1#总降3#电容器8304有功电度量(TAG39,FLOAT,126)
  202. */
  203. @ApiModelProperty(value="1#总降3#电容器8304有功电度量",required=false)
  204. private Double tag39;
  205. @ApiModelProperty(value="",required=false)
  206. private Double tag40;
  207. /**
  208. * 1#总降高炉水泵房1#8307有功电度量(TAG41,FLOAT,126)
  209. */
  210. @ApiModelProperty(value="1#总降高炉水泵房1#8307有功电度量",required=false)
  211. private Double tag41;
  212. /**
  213. * 1#总降备用8308有功电度量(TAG42,FLOAT,126)
  214. */
  215. @ApiModelProperty(value="1#总降备用8308有功电度量",required=false)
  216. private Double tag42;
  217. /**
  218. * 1#总降高炉风机1#8309有功电度量(TAG43,FLOAT,126)
  219. */
  220. @ApiModelProperty(value="1#总降高炉风机1#8309有功电度量",required=false)
  221. private Double tag43;
  222. /**
  223. * 1#总降烧结机尾1#8310有功电度量(TAG44,FLOAT,126)
  224. */
  225. @ApiModelProperty(value="1#总降烧结机尾1#8310有功电度量",required=false)
  226. private Double tag44;
  227. /**
  228. * 1#总降机修8311有功电度量(TAG45,FLOAT,126)
  229. */
  230. @ApiModelProperty(value="1#总降机修8311有功电度量",required=false)
  231. private Double tag45;
  232. /**
  233. * 1#总降炼钢水泵房1#8312有功电度量(TAG46,FLOAT,126)
  234. */
  235. @ApiModelProperty(value="1#总降炼钢水泵房1#8312有功电度量",required=false)
  236. private Double tag46;
  237. /**
  238. * 1#总降烧结机头2#8401有功电度量(TAG47,FLOAT,126)
  239. */
  240. @ApiModelProperty(value="1#总降烧结机头2#8401有功电度量",required=false)
  241. private Double tag47;
  242. @ApiModelProperty(value="",required=false)
  243. private Double tag48;
  244. /**
  245. * 1#总降TRT8404有功电度量(TAG49,FLOAT,126)
  246. */
  247. @ApiModelProperty(value="1#总降TRT8404有功电度量",required=false)
  248. private Double tag49;
  249. /**
  250. * 1#总降烧结机尾2#8405有功电度量(TAG50,FLOAT,126)
  251. */
  252. @ApiModelProperty(value="1#总降烧结机尾2#8405有功电度量",required=false)
  253. private Double tag50;
  254. /**
  255. * 1#总降超细粉8406有功电度量(TAG51,FLOAT,126)
  256. */
  257. @ApiModelProperty(value="1#总降超细粉8406有功电度量",required=false)
  258. private Double tag51;
  259. /**
  260. * 1#总降炼钢水泵房2#8407有功电度量(TAG52,FLOAT,126)
  261. */
  262. @ApiModelProperty(value="1#总降炼钢水泵房2#8407有功电度量",required=false)
  263. private Double tag52;
  264. /**
  265. * 1#总降高炉风机2#8408有功电度量(TAG53,FLOAT,126)
  266. */
  267. @ApiModelProperty(value="1#总降高炉风机2#8408有功电度量",required=false)
  268. private Double tag53;
  269. /**
  270. * 1#总降TRT备用8409有功电度量(TAG54,FLOAT,126)
  271. */
  272. @ApiModelProperty(value="1#总降TRT备用8409有功电度量",required=false)
  273. private Double tag54;
  274. @ApiModelProperty(value="",required=false)
  275. private Double tag55;
  276. /**
  277. * 1#总降精炼炉2#8412有功电度量(TAG56,FLOAT,126)
  278. */
  279. @ApiModelProperty(value="1#总降精炼炉2#8412有功电度量",required=false)
  280. private Double tag56;
  281. /**
  282. * 1#总降炼钢2#8413有功电度量(TAG57,FLOAT,126)
  283. */
  284. @ApiModelProperty(value="1#总降炼钢2#8413有功电度量",required=false)
  285. private Double tag57;
  286. @ApiModelProperty(value="",required=false)
  287. private Double tag58;
  288. /**
  289. * 2#总降降2#主变高压102有功电度量(TAG59,FLOAT,126)
  290. */
  291. @ApiModelProperty(value="2#总降降2#主变高压102有功电度量",required=false)
  292. private Double tag59;
  293. /**
  294. * 2#总降降3#主变高压103有功电度量(TAG60,FLOAT,126)
  295. */
  296. @ApiModelProperty(value="2#总降降3#主变高压103有功电度量",required=false)
  297. private Double tag60;
  298. /**
  299. * 2#总降降4#主变高压104有功电度量(TAG61,FLOAT,126)
  300. */
  301. @ApiModelProperty(value="2#总降降4#主变高压104有功电度量",required=false)
  302. private Double tag61;
  303. /**
  304. * 2#总降降钰钢Ⅲ线回155有功电度量(TAG62,FLOAT,126)
  305. */
  306. @ApiModelProperty(value="2#总降降钰钢Ⅲ线回155有功电度量",required=false)
  307. private Double tag62;
  308. /**
  309. * 2#总降降钢钢Ⅰ线158有功电度量(TAG63,FLOAT,126)
  310. */
  311. @ApiModelProperty(value="2#总降降钢钢Ⅰ线158有功电度量",required=false)
  312. private Double tag63;
  313. /**
  314. * 2#总降降钰钢Ⅴ线159有功电度量(TAG64,FLOAT,126)
  315. */
  316. @ApiModelProperty(value="2#总降降钰钢Ⅴ线159有功电度量",required=false)
  317. private Double tag64;
  318. /**
  319. * 2#总降降4#主变中压304有功电度量(TAG65,FLOAT,126)
  320. */
  321. @ApiModelProperty(value="2#总降降4#主变中压304有功电度量",required=false)
  322. private Double tag65;
  323. /**
  324. * 2#总降降2#主变低压压602有功电度量(TAG66,FLOAT,126)
  325. */
  326. @ApiModelProperty(value="2#总降降2#主变低压压602有功电度量",required=false)
  327. private Double tag66;
  328. /**
  329. * 2#总降降3#主变低压压603有功电度量(TAG67,FLOAT,126)
  330. */
  331. @ApiModelProperty(value="2#总降降3#主变低压压603有功电度量",required=false)
  332. private Double tag67;
  333. /**
  334. * 2#总降降4#主变低压604有功电度量(TAG68,FLOAT,126)
  335. */
  336. @ApiModelProperty(value="2#总降降4#主变低压604有功电度量",required=false)
  337. private Double tag68;
  338. /**
  339. * 2#总降降5A4#高线1#线610有功电度量(TAG69,FLOAT,126)
  340. */
  341. @ApiModelProperty(value="2#总降降5A4#高线1#线610有功电度量",required=false)
  342. private Double tag69;
  343. /**
  344. * 2#总降降6A4#高线2#线611有功电度量(TAG70,FLOAT,126)
  345. */
  346. @ApiModelProperty(value="2#总降降6A4#高线2#线611有功电度量",required=false)
  347. private Double tag70;
  348. /**
  349. * 2#总降降7A5#高线1#612有功电度量(TAG71,FLOAT,126)
  350. */
  351. @ApiModelProperty(value="2#总降降7A5#高线1#612有功电度量",required=false)
  352. private Double tag71;
  353. /**
  354. * 2#总降降8A5#高线2#线613有功电度量(TAG72,FLOAT,126)
  355. */
  356. @ApiModelProperty(value="2#总降降8A5#高线2#线613有功电度量",required=false)
  357. private Double tag72;
  358. /**
  359. * 2#总降降9A厂用电1#614有功电度量(TAG73,FLOAT,126)
  360. */
  361. @ApiModelProperty(value="2#总降降9A厂用电1#614有功电度量",required=false)
  362. private Double tag73;
  363. /**
  364. * 2#总降降10A联络柜615有功电度量(TAG74,FLOAT,126)
  365. */
  366. @ApiModelProperty(value="2#总降降10A联络柜615有功电度量",required=false)
  367. private Double tag74;
  368. /**
  369. * 2#总降降11A一焦脱硫616有功电度量(TAG75,FLOAT,126)
  370. */
  371. @ApiModelProperty(value="2#总降降11A一焦脱硫616有功电度量",required=false)
  372. private Double tag75;
  373. /**
  374. * 2#总降降备用617有功电度量(TAG76,FLOAT,126)
  375. */
  376. @ApiModelProperty(value="2#总降降备用617有功电度量",required=false)
  377. private Double tag76;
  378. /**
  379. * 2#总降降13A3#电容器618有功电度量(TAG77,FLOAT,126)
  380. */
  381. @ApiModelProperty(value="2#总降降13A3#电容器618有功电度量",required=false)
  382. private Double tag77;
  383. /**
  384. * 2#总降降14A4#电容器619有功电度量(TAG78,FLOAT,126)
  385. */
  386. @ApiModelProperty(value="2#总降降14A4#电容器619有功电度量",required=false)
  387. private Double tag78;
  388. /**
  389. * 2#总降降二次除尘636有功电度量(TAG79,FLOAT,126)
  390. */
  391. @ApiModelProperty(value="2#总降降二次除尘636有功电度量",required=false)
  392. private Double tag79;
  393. /**
  394. * 2#总降降2#电容637有功电度量(TAG80,FLOAT,126)
  395. */
  396. @ApiModelProperty(value="2#总降降2#电容637有功电度量",required=false)
  397. private Double tag80;
  398. /**
  399. * 2#总降降备用638有功电度量(TAG81,FLOAT,126)
  400. */
  401. @ApiModelProperty(value="2#总降降备用638有功电度量",required=false)
  402. private Double tag81;
  403. /**
  404. * 2#总降降空压站639有功电度量(TAG82,FLOAT,126)
  405. */
  406. @ApiModelProperty(value="2#总降降空压站639有功电度量",required=false)
  407. private Double tag82;
  408. /**
  409. * 2#总降降20000m31#640有功电度量(TAG83,FLOAT,126)
  410. */
  411. @ApiModelProperty(value="2#总降降20000m31#640有功电度量",required=false)
  412. private Double tag83;
  413. /**
  414. * 2#总降降高线Ⅱ段1#641有功电度量(TAG84,FLOAT,126)
  415. */
  416. @ApiModelProperty(value="2#总降降高线Ⅱ段1#641有功电度量",required=false)
  417. private Double tag84;
  418. /**
  419. * 2#总降降二炼钢1#642有功电度量(TAG85,FLOAT,126)
  420. */
  421. @ApiModelProperty(value="2#总降降二炼钢1#642有功电度量",required=false)
  422. private Double tag85;
  423. /**
  424. * 2#总降降联络柜1#643有功电度量(TAG86,FLOAT,126)
  425. */
  426. @ApiModelProperty(value="2#总降降联络柜1#643有功电度量",required=false)
  427. private Double tag86;
  428. /**
  429. * 2#总降降高线Ⅰ段1#644有功电度量(TAG87,FLOAT,126)
  430. */
  431. @ApiModelProperty(value="2#总降降高线Ⅰ段1#644有功电度量",required=false)
  432. private Double tag87;
  433. /**
  434. * 2#总降降焦化1#645有功电度量(TAG88,FLOAT,126)
  435. */
  436. @ApiModelProperty(value="2#总降降焦化1#645有功电度量",required=false)
  437. private Double tag88;
  438. /**
  439. * 2#总降降2# 制氧1#646有功电度量(TAG89,FLOAT,126)
  440. */
  441. @ApiModelProperty(value="2#总降降2# 制氧1#646有功电度量",required=false)
  442. private Double tag89;
  443. /**
  444. * 2#总降降2# 制氧2#647有功电度量(TAG90,FLOAT,126)
  445. */
  446. @ApiModelProperty(value="2#总降降2# 制氧2#647有功电度量",required=false)
  447. private Double tag90;
  448. /**
  449. * 2#总降降备用648有功电度量(TAG91,FLOAT,126)
  450. */
  451. @ApiModelProperty(value="2#总降降备用648有功电度量",required=false)
  452. private Double tag91;
  453. /**
  454. * 2#总降降焦化2#649有功电度量(TAG92,FLOAT,126)
  455. */
  456. @ApiModelProperty(value="2#总降降焦化2#649有功电度量",required=false)
  457. private Double tag92;
  458. /**
  459. * 2#总降降1#电容器650有功电度量(TAG93,FLOAT,126)
  460. */
  461. @ApiModelProperty(value="2#总降降1#电容器650有功电度量",required=false)
  462. private Double tag93;
  463. /**
  464. * 2#总降降联络柜2#651有功电度量(TAG94,FLOAT,126)
  465. */
  466. @ApiModelProperty(value="2#总降降联络柜2#651有功电度量",required=false)
  467. private Double tag94;
  468. /**
  469. * 2#总降降联络柜2#652有功电度量(TAG95,FLOAT,126)
  470. */
  471. @ApiModelProperty(value="2#总降降联络柜2#652有功电度量",required=false)
  472. private Double tag95;
  473. /**
  474. * 2#总降降备用656有功电度量(TAG96,FLOAT,126)
  475. */
  476. @ApiModelProperty(value="2#总降降备用656有功电度量",required=false)
  477. private Double tag96;
  478. /**
  479. * 2#总降降20000m32#657有功电度量(TAG97,FLOAT,126)
  480. */
  481. @ApiModelProperty(value="2#总降降20000m32#657有功电度量",required=false)
  482. private Double tag97;
  483. /**
  484. * 2#总降降高线Ⅱ段2#658有功电度量(TAG98,FLOAT,126)
  485. */
  486. @ApiModelProperty(value="2#总降降高线Ⅱ段2#658有功电度量",required=false)
  487. private Double tag98;
  488. /**
  489. * 2#总降降高线Ⅰ段2#659有功电度量(TAG99,FLOAT,126)
  490. */
  491. @ApiModelProperty(value="2#总降降高线Ⅰ段2#659有功电度量",required=false)
  492. private Double tag99;
  493. /**
  494. * 2#总降降二炼钢2#660有功电度量(TAG100,FLOAT,126)
  495. */
  496. @ApiModelProperty(value="2#总降降二炼钢2#660有功电度量",required=false)
  497. private Double tag100;
  498. /**
  499. * 2#总降降1#主变高压A1010有功电度量(TAG101,FLOAT,126)
  500. */
  501. @ApiModelProperty(value="2#总降降1#主变高压A1010有功电度量",required=false)
  502. private Double tag101;
  503. /**
  504. * 2#总降降1#主变高压B1011有功电度量(TAG102,FLOAT,126)
  505. */
  506. @ApiModelProperty(value="2#总降降1#主变高压B1011有功电度量",required=false)
  507. private Double tag102;
  508. /**
  509. * 2#总降降暖泉煤矿3402有功电度量(TAG103,FLOAT,126)
  510. */
  511. @ApiModelProperty(value="2#总降降暖泉煤矿3402有功电度量",required=false)
  512. private Double tag103;
  513. /**
  514. * 2#总降降沈家峁煤矿3403有功电度量(TAG104,FLOAT,126)
  515. */
  516. @ApiModelProperty(value="2#总降降沈家峁煤矿3403有功电度量",required=false)
  517. private Double tag104;
  518. /**
  519. * 2#总降降钢张线3404有功电度量(TAG105,FLOAT,126)
  520. */
  521. @ApiModelProperty(value="2#总降降钢张线3404有功电度量",required=false)
  522. private Double tag105;
  523. /**
  524. * 2#总降降备用3-3405有功电度量(TAG106,FLOAT,126)
  525. */
  526. @ApiModelProperty(value="2#总降降备用3-3405有功电度量",required=false)
  527. private Double tag106;
  528. /**
  529. * 2#总降降干熄焦3406有功电度量(TAG107,FLOAT,126)
  530. */
  531. @ApiModelProperty(value="2#总降降干熄焦3406有功电度量",required=false)
  532. private Double tag107;
  533. @ApiModelProperty(value="",required=false)
  534. private Double tag108;
  535. /**
  536. * 2#总降降1# 站用变6107有功电度量(TAG109,FLOAT,126)
  537. */
  538. @ApiModelProperty(value="2#总降降1# 站用变6107有功电度量",required=false)
  539. private Double tag109;
  540. /**
  541. * 2#总降降2# 站用变6207有功电度量(TAG110,FLOAT,126)
  542. */
  543. @ApiModelProperty(value="2#总降降2# 站用变6207有功电度量",required=false)
  544. private Double tag110;
  545. /**
  546. * 2#总降降出线1-6401有功电度量(TAG111,FLOAT,126)
  547. */
  548. @ApiModelProperty(value="2#总降降出线1-6401有功电度量",required=false)
  549. private Double tag111;
  550. /**
  551. * 2#总降降出线2-6402有功电度量(TAG112,FLOAT,126)
  552. */
  553. @ApiModelProperty(value="2#总降降出线2-6402有功电度量",required=false)
  554. private Double tag112;
  555. /**
  556. * 2#总降降出线3-6403有功电度量(TAG113,FLOAT,126)
  557. */
  558. @ApiModelProperty(value="2#总降降出线3-6403有功电度量",required=false)
  559. private Double tag113;
  560. /**
  561. * 2#总降降出线4-6404有功电度量(TAG114,FLOAT,126)
  562. */
  563. @ApiModelProperty(value="2#总降降出线4-6404有功电度量",required=false)
  564. private Double tag114;
  565. /**
  566. * 2#总降降出线5-6405有功电度量(TAG115,FLOAT,126)
  567. */
  568. @ApiModelProperty(value="2#总降降出线5-6405有功电度量",required=false)
  569. private Double tag115;
  570. /**
  571. * 2#总降降出线6-6406有功电度量(TAG116,FLOAT,126)
  572. */
  573. @ApiModelProperty(value="2#总降降出线6-6406有功电度量",required=false)
  574. private Double tag116;
  575. /**
  576. * 2#总降降出线7-6407有功电度量(TAG117,FLOAT,126)
  577. */
  578. @ApiModelProperty(value="2#总降降出线7-6407有功电度量",required=false)
  579. private Double tag117;
  580. /**
  581. * 2#总降降1#制氧1#线6408有功电度量(TAG118,FLOAT,126)
  582. */
  583. @ApiModelProperty(value="2#总降降1#制氧1#线6408有功电度量",required=false)
  584. private Double tag118;
  585. /**
  586. * 2#总降降1#制氧2#线6409有功电度量(TAG119,FLOAT,126)
  587. */
  588. @ApiModelProperty(value="2#总降降1#制氧2#线6409有功电度量",required=false)
  589. private Double tag119;
  590. /**
  591. * 2#总降降厂用变2#6410有功电度量(TAG120,FLOAT,126)
  592. */
  593. @ApiModelProperty(value="2#总降降厂用变2#6410有功电度量",required=false)
  594. private Double tag120;
  595. /**
  596. * 2#总降降5#电容器6411有功电度量(TAG121,FLOAT,126)
  597. */
  598. @ApiModelProperty(value="2#总降降5#电容器6411有功电度量",required=false)
  599. private Double tag121;
  600. /**
  601. * 2#总降降4#电容器6412有功电度量(TAG122,FLOAT,126)
  602. */
  603. @ApiModelProperty(value="2#总降降4#电容器6412有功电度量",required=false)
  604. private Double tag122;
  605. /**
  606. * 3#总降1#主变高压101有功电度量(TAG123,FLOAT,126)
  607. */
  608. @ApiModelProperty(value="3#总降1#主变高压101有功电度量",required=false)
  609. private Double tag123;
  610. /**
  611. * 3#总降2#主变高压102有功电度量(TAG124,FLOAT,126)
  612. */
  613. @ApiModelProperty(value="3#总降2#主变高压102有功电度量",required=false)
  614. private Double tag124;
  615. @ApiModelProperty(value="",required=false)
  616. private Double tag125;
  617. /**
  618. * 3#总降1#主变低压601有功电度量(TAG126,FLOAT,126)
  619. */
  620. @ApiModelProperty(value="3#总降1#主变低压601有功电度量",required=false)
  621. private Double tag126;
  622. /**
  623. * 3#总降2#主变低压602有功电度量(TAG127,FLOAT,126)
  624. */
  625. @ApiModelProperty(value="3#总降2#主变低压602有功电度量",required=false)
  626. private Double tag127;
  627. /**
  628. * 3#总降3#主变低压603有功电度量(TAG128,FLOAT,126)
  629. */
  630. @ApiModelProperty(value="3#总降3#主变低压603有功电度量",required=false)
  631. private Double tag128;
  632. /**
  633. * 3#总降钰钢Ⅰ线主表141有功电度量(南瑞采集可能写错)(TAG129,FLOAT,126)
  634. */
  635. @ApiModelProperty(value="3#总降钰钢Ⅰ线主表141有功电度量(南瑞采集可能写错)",required=false)
  636. private Double tag129;
  637. /**
  638. * 3#总降钰钢Ⅰ线副表142有功电度量(南瑞采集可能写错)(TAG130,FLOAT,126)
  639. */
  640. @ApiModelProperty(value="3#总降钰钢Ⅰ线副表142有功电度量(南瑞采集可能写错)",required=false)
  641. private Double tag130;
  642. /**
  643. * 3#总降钰钢Ⅲ线主表143有功电度量(南瑞采集可能写错)(TAG131,FLOAT,126)
  644. */
  645. @ApiModelProperty(value="3#总降钰钢Ⅲ线主表143有功电度量(南瑞采集可能写错)",required=false)
  646. private Double tag131;
  647. /**
  648. * 3#总降钰钢Ⅲ线副表1432有功电度量(TAG132,FLOAT,126)
  649. */
  650. @ApiModelProperty(value="3#总降钰钢Ⅲ线副表1432有功电度量",required=false)
  651. private Double tag132;
  652. /**
  653. * 3#总降循环水泵房Ⅰ8101有功电度量(TAG133,FLOAT,126)
  654. */
  655. @ApiModelProperty(value="3#总降循环水泵房Ⅰ8101有功电度量",required=false)
  656. private Double tag133;
  657. /**
  658. * 3#总降1#高炉主控Ⅰ8102有功电度量(TAG134,FLOAT,126)
  659. */
  660. @ApiModelProperty(value="3#总降1#高炉主控Ⅰ8102有功电度量",required=false)
  661. private Double tag134;
  662. /**
  663. * 3#总降2#高炉主控Ⅰ8103有功电度量(TAG135,FLOAT,126)
  664. */
  665. @ApiModelProperty(value="3#总降2#高炉主控Ⅰ8103有功电度量",required=false)
  666. private Double tag135;
  667. /**
  668. * 3#总降1#烧结机头Ⅰ8104有功电度量(TAG136,FLOAT,126)
  669. */
  670. @ApiModelProperty(value="3#总降1#烧结机头Ⅰ8104有功电度量",required=false)
  671. private Double tag136;
  672. /**
  673. * 3#总降2#烧结机头Ⅰ8105有功电度量(TAG137,FLOAT,126)
  674. */
  675. @ApiModelProperty(value="3#总降2#烧结机头Ⅰ8105有功电度量",required=false)
  676. private Double tag137;
  677. /**
  678. * 3#总降鼓风机站Ⅰ8106有功电度量(TAG138,FLOAT,126)
  679. */
  680. @ApiModelProperty(value="3#总降鼓风机站Ⅰ8106有功电度量",required=false)
  681. private Double tag138;
  682. /**
  683. * 3#总降1#烧结机尾8108有功电度量(TAG139,FLOAT,126)
  684. */
  685. @ApiModelProperty(value="3#总降1#烧结机尾8108有功电度量",required=false)
  686. private Double tag139;
  687. /**
  688. * 3#总降2#烧结机尾8109有功电度量(TAG140,FLOAT,126)
  689. */
  690. @ApiModelProperty(value="3#总降2#烧结机尾8109有功电度量",required=false)
  691. private Double tag140;
  692. /**
  693. * 3#总降回转窑Ⅰ8110有功电度量(TAG141,FLOAT,126)
  694. */
  695. @ApiModelProperty(value="3#总降回转窑Ⅰ8110有功电度量",required=false)
  696. private Double tag141;
  697. /**
  698. * 3#总降洗煤厂Ⅰ8111有功电度量(TAG142,FLOAT,126)
  699. */
  700. @ApiModelProperty(value="3#总降洗煤厂Ⅰ8111有功电度量",required=false)
  701. private Double tag142;
  702. /**
  703. * 3#总降焦化Ⅰ8112有功电度量(TAG143,FLOAT,126)
  704. */
  705. @ApiModelProperty(value="3#总降焦化Ⅰ8112有功电度量",required=false)
  706. private Double tag143;
  707. /**
  708. * 3#总降竖炉Ⅰ8113有功电度量(TAG144,FLOAT,126)
  709. */
  710. @ApiModelProperty(value="3#总降竖炉Ⅰ8113有功电度量",required=false)
  711. private Double tag144;
  712. /**
  713. * 3#总降备用8114有功电度量(TAG145,FLOAT,126)
  714. */
  715. @ApiModelProperty(value="3#总降备用8114有功电度量",required=false)
  716. private Double tag145;
  717. /**
  718. * 3#总降2#电容器8115有功电度量(TAG146,FLOAT,126)
  719. */
  720. @ApiModelProperty(value="3#总降2#电容器8115有功电度量",required=false)
  721. private Double tag146;
  722. /**
  723. * 3#总降3#电容器8116有功电度量(TAG147,FLOAT,126)
  724. */
  725. @ApiModelProperty(value="3#总降3#电容器8116有功电度量",required=false)
  726. private Double tag147;
  727. /**
  728. * 3#总降循环泵房Ⅱ8201有功电度量(TAG148,FLOAT,126)
  729. */
  730. @ApiModelProperty(value="3#总降循环泵房Ⅱ8201有功电度量",required=false)
  731. private Double tag148;
  732. /**
  733. * 3#总降1#高炉主控Ⅱ8202有功电度量(TAG149,FLOAT,126)
  734. */
  735. @ApiModelProperty(value="3#总降1#高炉主控Ⅱ8202有功电度量",required=false)
  736. private Double tag149;
  737. /**
  738. * 3#总降2#高炉主控Ⅱ8203有功电度量(TAG150,FLOAT,126)
  739. */
  740. @ApiModelProperty(value="3#总降2#高炉主控Ⅱ8203有功电度量",required=false)
  741. private Double tag150;
  742. /**
  743. * 3#总降鼓风机站Ⅱ8204有功电度量(TAG151,FLOAT,126)
  744. */
  745. @ApiModelProperty(value="3#总降鼓风机站Ⅱ8204有功电度量",required=false)
  746. private Double tag151;
  747. /**
  748. * 3#总降1#烧结机头Ⅱ8205有功电度量(TAG152,FLOAT,126)
  749. */
  750. @ApiModelProperty(value="3#总降1#烧结机头Ⅱ8205有功电度量",required=false)
  751. private Double tag152;
  752. /**
  753. * 3#总降2#烧结机头Ⅱ8206有功电度量(TAG153,FLOAT,126)
  754. */
  755. @ApiModelProperty(value="3#总降2#烧结机头Ⅱ8206有功电度量",required=false)
  756. private Double tag153;
  757. /**
  758. * 3#总降1#烧结机尾Ⅱ8208有功电度量(TAG154,FLOAT,126)
  759. */
  760. @ApiModelProperty(value="3#总降1#烧结机尾Ⅱ8208有功电度量",required=false)
  761. private Double tag154;
  762. /**
  763. * 3#总降2#烧结机尾Ⅱ8209有功电度量(TAG155,FLOAT,126)
  764. */
  765. @ApiModelProperty(value="3#总降2#烧结机尾Ⅱ8209有功电度量",required=false)
  766. private Double tag155;
  767. /**
  768. * 3#总降回转窑Ⅱ8211有功电度量(TAG156,FLOAT,126)
  769. */
  770. @ApiModelProperty(value="3#总降回转窑Ⅱ8211有功电度量",required=false)
  771. private Double tag156;
  772. /**
  773. * 3#总降洗煤厂Ⅱ8212有功电度量(TAG157,FLOAT,126)
  774. */
  775. @ApiModelProperty(value="3#总降洗煤厂Ⅱ8212有功电度量",required=false)
  776. private Double tag157;
  777. /**
  778. * 3#总降焦化Ⅱ8213有功电度量(TAG158,FLOAT,126)
  779. */
  780. @ApiModelProperty(value="3#总降焦化Ⅱ8213有功电度量",required=false)
  781. private Double tag158;
  782. /**
  783. * 3#总降4#电容器8214有功电度量(TAG159,FLOAT,126)
  784. */
  785. @ApiModelProperty(value="3#总降4#电容器8214有功电度量",required=false)
  786. private Double tag159;
  787. /**
  788. * 3#总降5#电容器8215有功电度量(TAG160,FLOAT,126)
  789. */
  790. @ApiModelProperty(value="3#总降5#电容器8215有功电度量",required=false)
  791. private Double tag160;
  792. /**
  793. * 3#总降竖炉Ⅱ8216有功电度量(TAG161,FLOAT,126)
  794. */
  795. @ApiModelProperty(value="3#总降竖炉Ⅱ8216有功电度量",required=false)
  796. private Double tag161;
  797. /**
  798. * 3#总降钢阳线8301有功电度量(TAG162,FLOAT,126)
  799. */
  800. @ApiModelProperty(value="3#总降钢阳线8301有功电度量",required=false)
  801. private Double tag162;
  802. /**
  803. * 3#总降洗煤厂Ⅱ8302有功电度量(TAG163,FLOAT,126)
  804. */
  805. @ApiModelProperty(value="3#总降洗煤厂Ⅱ8302有功电度量",required=false)
  806. private Double tag163;
  807. /**
  808. * 3#总降TRT发电8303有功电度量(TAG164,FLOAT,126)
  809. */
  810. @ApiModelProperty(value="3#总降TRT发电8303有功电度量",required=false)
  811. private Double tag164;
  812. /**
  813. * 3#总降2#精炼炉8304有功电度量(TAG165,FLOAT,126)
  814. */
  815. @ApiModelProperty(value="3#总降2#精炼炉8304有功电度量",required=false)
  816. private Double tag165;
  817. /**
  818. * 3#总降3#精炼炉8305有功电度量(TAG166,FLOAT,126)
  819. */
  820. @ApiModelProperty(value="3#总降3#精炼炉8305有功电度量",required=false)
  821. private Double tag166;
  822. /**
  823. * 3#总降钢阳线Ⅰ#8306有功电度量(TAG167,FLOAT,126)
  824. */
  825. @ApiModelProperty(value="3#总降钢阳线Ⅰ#8306有功电度量",required=false)
  826. private Double tag167;
  827. /**
  828. * 3#总降回转窑Ⅱ8307有功电度量(TAG168,FLOAT,126)
  829. */
  830. @ApiModelProperty(value="3#总降回转窑Ⅱ8307有功电度量",required=false)
  831. private Double tag168;
  832. /**
  833. * 1#总降1#主变高压101无功电度量(TAG169,FLOAT,126)
  834. */
  835. @ApiModelProperty(value="1#总降1#主变高压101无功电度量",required=false)
  836. private Double tag169;
  837. /**
  838. * 1#总降2#主变高压102无功电度量(TAG170,FLOAT,126)
  839. */
  840. @ApiModelProperty(value="1#总降2#主变高压102无功电度量",required=false)
  841. private Double tag170;
  842. /**
  843. * 1#总降3#主变高压103无功电度量(TAG171,FLOAT,126)
  844. */
  845. @ApiModelProperty(value="1#总降3#主变高压103无功电度量",required=false)
  846. private Double tag171;
  847. /**
  848. * 1#总降4#主变高压104无功电度量(TAG172,FLOAT,126)
  849. */
  850. @ApiModelProperty(value="1#总降4#主变高压104无功电度量",required=false)
  851. private Double tag172;
  852. /**
  853. * 1#总降钢钢线(3#进线)152无功电度量(TAG173,FLOAT,126)
  854. */
  855. @ApiModelProperty(value="1#总降钢钢线(3#进线)152无功电度量",required=false)
  856. private Double tag173;
  857. /**
  858. * 1#总降钰钢IV回(1#进线)157无功电度量(TAG174,FLOAT,126)
  859. */
  860. @ApiModelProperty(value="1#总降钰钢IV回(1#进线)157无功电度量",required=false)
  861. private Double tag174;
  862. /**
  863. * 1#总降3#主变10KV进线603无功电度量(TAG175,FLOAT,126)
  864. */
  865. @ApiModelProperty(value="1#总降3#主变10KV进线603无功电度量",required=false)
  866. private Double tag175;
  867. /**
  868. * 1#总降4#主变10KV进线604无功电度量(TAG176,FLOAT,126)
  869. */
  870. @ApiModelProperty(value="1#总降4#主变10KV进线604无功电度量",required=false)
  871. private Double tag176;
  872. /**
  873. * 1#总降1#主变6KV进线A6010无功电度量(TAG177,FLOAT,126)
  874. */
  875. @ApiModelProperty(value="1#总降1#主变6KV进线A6010无功电度量",required=false)
  876. private Double tag177;
  877. /**
  878. * 1#总降1#主变6KV进线B6011无功电度量(TAG178,FLOAT,126)
  879. */
  880. @ApiModelProperty(value="1#总降1#主变6KV进线B6011无功电度量",required=false)
  881. private Double tag178;
  882. /**
  883. * 1#总降2#主变6KV进线A6020无功电度量(TAG179,FLOAT,126)
  884. */
  885. @ApiModelProperty(value="1#总降2#主变6KV进线A6020无功电度量",required=false)
  886. private Double tag179;
  887. /**
  888. * 1#总降2#主变6KV进线B6021无功电度量(TAG180,FLOAT,126)
  889. */
  890. @ApiModelProperty(value="1#总降2#主变6KV进线B6021无功电度量",required=false)
  891. private Double tag180;
  892. /**
  893. * 1#总降1#无源滤波柜B6101无功电度量(TAG181,FLOAT,126)
  894. */
  895. @ApiModelProperty(value="1#总降1#无源滤波柜B6101无功电度量",required=false)
  896. private Double tag181;
  897. /**
  898. * 1#总降三高线1#6102无功电度量(TAG182,FLOAT,126)
  899. */
  900. @ApiModelProperty(value="1#总降三高线1#6102无功电度量",required=false)
  901. private Double tag182;
  902. /**
  903. * 1#总降1#无源滤波柜A6103无功电度量(TAG183,FLOAT,126)
  904. */
  905. @ApiModelProperty(value="1#总降1#无源滤波柜A6103无功电度量",required=false)
  906. private Double tag183;
  907. /**
  908. * 1#总降棒材1#6104无功电度量(TAG184,FLOAT,126)
  909. */
  910. @ApiModelProperty(value="1#总降棒材1#6104无功电度量",required=false)
  911. private Double tag184;
  912. /**
  913. * 1#总降物业1#6105无功电度量(TAG185,FLOAT,126)
  914. */
  915. @ApiModelProperty(value="1#总降物业1#6105无功电度量",required=false)
  916. private Double tag185;
  917. /**
  918. * 1#总降一高线1#6106无功电度量(TAG186,FLOAT,126)
  919. */
  920. @ApiModelProperty(value="1#总降一高线1#6106无功电度量",required=false)
  921. private Double tag186;
  922. /**
  923. * 1#总降4500制氧1#6107无功电度量(TAG187,FLOAT,126)
  924. */
  925. @ApiModelProperty(value="1#总降4500制氧1#6107无功电度量",required=false)
  926. private Double tag187;
  927. /**
  928. * 1#总降回转窑1#6201无功电度量(TAG188,FLOAT,126)
  929. */
  930. @ApiModelProperty(value="1#总降回转窑1#6201无功电度量",required=false)
  931. private Double tag188;
  932. /**
  933. * 1#总降棒材2#6202无功电度量(TAG189,FLOAT,126)
  934. */
  935. @ApiModelProperty(value="1#总降棒材2#6202无功电度量",required=false)
  936. private Double tag189;
  937. /**
  938. * 1#总降1#电容器6203无功电度量(TAG190,FLOAT,126)
  939. */
  940. @ApiModelProperty(value="1#总降1#电容器6203无功电度量",required=false)
  941. private Double tag190;
  942. /**
  943. * 1#总降高炉1#6204无功电度量(TAG191,FLOAT,126)
  944. */
  945. @ApiModelProperty(value="1#总降高炉1#6204无功电度量",required=false)
  946. private Double tag191;
  947. /**
  948. * 1#总降宾馆1#6205无功电度量(TAG192,FLOAT,126)
  949. */
  950. @ApiModelProperty(value="1#总降宾馆1#6205无功电度量",required=false)
  951. private Double tag192;
  952. /**
  953. * 1#总降三高线2#6301无功电度量(TAG193,FLOAT,126)
  954. */
  955. @ApiModelProperty(value="1#总降三高线2#6301无功电度量",required=false)
  956. private Double tag193;
  957. @ApiModelProperty(value="",required=false)
  958. private Double tag194;
  959. /**
  960. * 1#总降二万制氧2#6304无功电度量(TAG195,FLOAT,126)
  961. */
  962. @ApiModelProperty(value="1#总降二万制氧2#6304无功电度量",required=false)
  963. private Double tag195;
  964. /**
  965. * 1#总降高炉2#6305无功电度量(TAG196,FLOAT,126)
  966. */
  967. @ApiModelProperty(value="1#总降高炉2#6305无功电度量",required=false)
  968. private Double tag196;
  969. /**
  970. * 1#总降回转窑2#6401无功电度量(TAG197,FLOAT,126)
  971. */
  972. @ApiModelProperty(value="1#总降回转窑2#6401无功电度量",required=false)
  973. private Double tag197;
  974. /**
  975. * 1#总降二万制氧1#6402无功电度量(TAG198,FLOAT,126)
  976. */
  977. @ApiModelProperty(value="1#总降二万制氧1#6402无功电度量",required=false)
  978. private Double tag198;
  979. /**
  980. * 1#总降4500制氧1#6403无功电度量(TAG199,FLOAT,126)
  981. */
  982. @ApiModelProperty(value="1#总降4500制氧1#6403无功电度量",required=false)
  983. private Double tag199;
  984. /**
  985. * 1#总降一高线2#6404无功电度量(TAG200,FLOAT,126)
  986. */
  987. @ApiModelProperty(value="1#总降一高线2#6404无功电度量",required=false)
  988. private Double tag200;
  989. /**
  990. * 1#总降2#无源滤波柜A6405无功电度量(TAG201,FLOAT,126)
  991. */
  992. @ApiModelProperty(value="1#总降2#无源滤波柜A6405无功电度量",required=false)
  993. private Double tag201;
  994. /**
  995. * 1#总降2#无源滤波柜B6406无功电度量(TAG202,FLOAT,126)
  996. */
  997. @ApiModelProperty(value="1#总降2#无源滤波柜B6406无功电度量",required=false)
  998. private Double tag202;
  999. @ApiModelProperty(value="",required=false)
  1000. private Double tag203;
  1001. /**
  1002. * 1#总降精炼炉1#8301无功电度量(TAG204,FLOAT,126)
  1003. */
  1004. @ApiModelProperty(value="1#总降精炼炉1#8301无功电度量",required=false)
  1005. private Double tag204;
  1006. /**
  1007. * 1#总降炼钢1#8302无功电度量(TAG205,FLOAT,126)
  1008. */
  1009. @ApiModelProperty(value="1#总降炼钢1#8302无功电度量",required=false)
  1010. private Double tag205;
  1011. /**
  1012. * 1#总降烧结机头1#8303无功电度量(TAG206,FLOAT,126)
  1013. */
  1014. @ApiModelProperty(value="1#总降烧结机头1#8303无功电度量",required=false)
  1015. private Double tag206;
  1016. /**
  1017. * 1#总降3#电容器8304无功电度量(TAG207,FLOAT,126)
  1018. */
  1019. @ApiModelProperty(value="1#总降3#电容器8304无功电度量",required=false)
  1020. private Double tag207;
  1021. @ApiModelProperty(value="",required=false)
  1022. private Double tag208;
  1023. /**
  1024. * 1#总降高炉水泵房1#8307无功电度量(TAG209,FLOAT,126)
  1025. */
  1026. @ApiModelProperty(value="1#总降高炉水泵房1#8307无功电度量",required=false)
  1027. private Double tag209;
  1028. /**
  1029. * 1#总降备用8308无功电度量(TAG210,FLOAT,126)
  1030. */
  1031. @ApiModelProperty(value="1#总降备用8308无功电度量",required=false)
  1032. private Double tag210;
  1033. /**
  1034. * 1#总降高炉风机1#8309无功电度量(TAG211,FLOAT,126)
  1035. */
  1036. @ApiModelProperty(value="1#总降高炉风机1#8309无功电度量",required=false)
  1037. private Double tag211;
  1038. /**
  1039. * 1#总降烧结机尾1#8310无功电度量(TAG212,FLOAT,126)
  1040. */
  1041. @ApiModelProperty(value="1#总降烧结机尾1#8310无功电度量",required=false)
  1042. private Double tag212;
  1043. /**
  1044. * 1#总降机修8311无功电度量(TAG213,FLOAT,126)
  1045. */
  1046. @ApiModelProperty(value="1#总降机修8311无功电度量",required=false)
  1047. private Double tag213;
  1048. /**
  1049. * 1#总降炼钢水泵房1#8312无功电度量(TAG214,FLOAT,126)
  1050. */
  1051. @ApiModelProperty(value="1#总降炼钢水泵房1#8312无功电度量",required=false)
  1052. private Double tag214;
  1053. /**
  1054. * 1#总降烧结机头2#8401无功电度量(TAG215,FLOAT,126)
  1055. */
  1056. @ApiModelProperty(value="1#总降烧结机头2#8401无功电度量",required=false)
  1057. private Double tag215;
  1058. @ApiModelProperty(value="",required=false)
  1059. private Double tag216;
  1060. /**
  1061. * 1#总降TRT8404无功电度量(TAG217,FLOAT,126)
  1062. */
  1063. @ApiModelProperty(value="1#总降TRT8404无功电度量",required=false)
  1064. private Double tag217;
  1065. /**
  1066. * 1#总降烧结机尾2#8405无功电度量(TAG218,FLOAT,126)
  1067. */
  1068. @ApiModelProperty(value="1#总降烧结机尾2#8405无功电度量",required=false)
  1069. private Double tag218;
  1070. /**
  1071. * 1#总降超细粉8406无功电度量(TAG219,FLOAT,126)
  1072. */
  1073. @ApiModelProperty(value="1#总降超细粉8406无功电度量",required=false)
  1074. private Double tag219;
  1075. /**
  1076. * 1#总降炼钢水泵房2#8407无功电度量(TAG220,FLOAT,126)
  1077. */
  1078. @ApiModelProperty(value="1#总降炼钢水泵房2#8407无功电度量",required=false)
  1079. private Double tag220;
  1080. /**
  1081. * 1#总降高炉风机2#8408无功电度量(TAG221,FLOAT,126)
  1082. */
  1083. @ApiModelProperty(value="1#总降高炉风机2#8408无功电度量",required=false)
  1084. private Double tag221;
  1085. /**
  1086. * 1#总降TRT备用8409无功电度量(TAG222,FLOAT,126)
  1087. */
  1088. @ApiModelProperty(value="1#总降TRT备用8409无功电度量",required=false)
  1089. private Double tag222;
  1090. @ApiModelProperty(value="",required=false)
  1091. private Double tag223;
  1092. /**
  1093. * 1#总降精炼炉2#8412无功电度量(TAG224,FLOAT,126)
  1094. */
  1095. @ApiModelProperty(value="1#总降精炼炉2#8412无功电度量",required=false)
  1096. private Double tag224;
  1097. /**
  1098. * 1#总降炼钢2#8413无功电度量(TAG225,FLOAT,126)
  1099. */
  1100. @ApiModelProperty(value="1#总降炼钢2#8413无功电度量",required=false)
  1101. private Double tag225;
  1102. /**
  1103. * 2#总降1#主变高压101无功电度量(TAG226,FLOAT,126)
  1104. */
  1105. @ApiModelProperty(value="2#总降1#主变高压101无功电度量",required=false)
  1106. private Double tag226;
  1107. /**
  1108. * 2#总降2#主变高压102无功电度量(TAG227,FLOAT,126)
  1109. */
  1110. @ApiModelProperty(value="2#总降2#主变高压102无功电度量",required=false)
  1111. private Double tag227;
  1112. /**
  1113. * 2#总降3#主变高压103无功电度量(TAG228,FLOAT,126)
  1114. */
  1115. @ApiModelProperty(value="2#总降3#主变高压103无功电度量",required=false)
  1116. private Double tag228;
  1117. /**
  1118. * 2#总降4#主变高压104无功电度量(TAG229,FLOAT,126)
  1119. */
  1120. @ApiModelProperty(value="2#总降4#主变高压104无功电度量",required=false)
  1121. private Double tag229;
  1122. /**
  1123. * 2#总降钰钢Ⅲ线回155无功电度量(TAG230,FLOAT,126)
  1124. */
  1125. @ApiModelProperty(value="2#总降钰钢Ⅲ线回155无功电度量",required=false)
  1126. private Double tag230;
  1127. /**
  1128. * 2#总降钢钢Ⅰ线158无功电度量(TAG231,FLOAT,126)
  1129. */
  1130. @ApiModelProperty(value="2#总降钢钢Ⅰ线158无功电度量",required=false)
  1131. private Double tag231;
  1132. /**
  1133. * 2#总降钰钢Ⅴ线159无功电度量(TAG232,FLOAT,126)
  1134. */
  1135. @ApiModelProperty(value="2#总降钰钢Ⅴ线159无功电度量",required=false)
  1136. private Double tag232;
  1137. /**
  1138. * 2#总降4#主变中压304无功电度量(TAG233,FLOAT,126)
  1139. */
  1140. @ApiModelProperty(value="2#总降4#主变中压304无功电度量",required=false)
  1141. private Double tag233;
  1142. /**
  1143. * 2#总降2#主变低压压602无功电度量(TAG234,FLOAT,126)
  1144. */
  1145. @ApiModelProperty(value="2#总降2#主变低压压602无功电度量",required=false)
  1146. private Double tag234;
  1147. /**
  1148. * 2#总降3#主变低压压603无功电度量(TAG235,FLOAT,126)
  1149. */
  1150. @ApiModelProperty(value="2#总降3#主变低压压603无功电度量",required=false)
  1151. private Double tag235;
  1152. /**
  1153. * 2#总降4#主变低压604无功电度量(TAG236,FLOAT,126)
  1154. */
  1155. @ApiModelProperty(value="2#总降4#主变低压604无功电度量",required=false)
  1156. private Double tag236;
  1157. /**
  1158. * 2#总降5A4#高线1#线610无功电度量(TAG237,FLOAT,126)
  1159. */
  1160. @ApiModelProperty(value="2#总降5A4#高线1#线610无功电度量",required=false)
  1161. private Double tag237;
  1162. /**
  1163. * 2#总降6A4#高线2#线611无功电度量(TAG238,FLOAT,126)
  1164. */
  1165. @ApiModelProperty(value="2#总降6A4#高线2#线611无功电度量",required=false)
  1166. private Double tag238;
  1167. /**
  1168. * 2#总降7A5#高线1#612无功电度量(TAG239,FLOAT,126)
  1169. */
  1170. @ApiModelProperty(value="2#总降7A5#高线1#612无功电度量",required=false)
  1171. private Double tag239;
  1172. /**
  1173. * 2#总降8A5#高线2#线613无功电度量(TAG240,FLOAT,126)
  1174. */
  1175. @ApiModelProperty(value="2#总降8A5#高线2#线613无功电度量",required=false)
  1176. private Double tag240;
  1177. /**
  1178. * 2#总降9A厂用电1#614无功电度量(TAG241,FLOAT,126)
  1179. */
  1180. @ApiModelProperty(value="2#总降9A厂用电1#614无功电度量",required=false)
  1181. private Double tag241;
  1182. /**
  1183. * 2#总降10A联络柜615无功电度量(TAG242,FLOAT,126)
  1184. */
  1185. @ApiModelProperty(value="2#总降10A联络柜615无功电度量",required=false)
  1186. private Double tag242;
  1187. /**
  1188. * 2#总降11A一焦脱硫616无功电度量(TAG243,FLOAT,126)
  1189. */
  1190. @ApiModelProperty(value="2#总降11A一焦脱硫616无功电度量",required=false)
  1191. private Double tag243;
  1192. /**
  1193. * 2#总降备用617无功电度量(TAG244,FLOAT,126)
  1194. */
  1195. @ApiModelProperty(value="2#总降备用617无功电度量",required=false)
  1196. private Double tag244;
  1197. /**
  1198. * 2#总降13A3#电容器618无功电度量(TAG245,FLOAT,126)
  1199. */
  1200. @ApiModelProperty(value="2#总降13A3#电容器618无功电度量",required=false)
  1201. private Double tag245;
  1202. /**
  1203. * 2#总降14A4#电容器619无功电度量(TAG246,FLOAT,126)
  1204. */
  1205. @ApiModelProperty(value="2#总降14A4#电容器619无功电度量",required=false)
  1206. private Double tag246;
  1207. /**
  1208. * 2#总降二次除尘636无功电度量(TAG247,FLOAT,126)
  1209. */
  1210. @ApiModelProperty(value="2#总降二次除尘636无功电度量",required=false)
  1211. private Double tag247;
  1212. /**
  1213. * 2#总降2#电容637无功电度量(TAG248,FLOAT,126)
  1214. */
  1215. @ApiModelProperty(value="2#总降2#电容637无功电度量",required=false)
  1216. private Double tag248;
  1217. /**
  1218. * 2#总降备用638无功电度量(TAG249,FLOAT,126)
  1219. */
  1220. @ApiModelProperty(value="2#总降备用638无功电度量",required=false)
  1221. private Double tag249;
  1222. /**
  1223. * 2#总降空压站639无功电度量(TAG250,FLOAT,126)
  1224. */
  1225. @ApiModelProperty(value="2#总降空压站639无功电度量",required=false)
  1226. private Double tag250;
  1227. /**
  1228. * 2#总降20000m31#640无功电度量(TAG251,FLOAT,126)
  1229. */
  1230. @ApiModelProperty(value="2#总降20000m31#640无功电度量",required=false)
  1231. private Double tag251;
  1232. /**
  1233. * 2#总降高线Ⅱ段1#641无功电度量(TAG252,FLOAT,126)
  1234. */
  1235. @ApiModelProperty(value="2#总降高线Ⅱ段1#641无功电度量",required=false)
  1236. private Double tag252;
  1237. /**
  1238. * 2#总降二炼钢1#642无功电度量(TAG253,FLOAT,126)
  1239. */
  1240. @ApiModelProperty(value="2#总降二炼钢1#642无功电度量",required=false)
  1241. private Double tag253;
  1242. /**
  1243. * 2#总降联络柜1#643无功电度量(TAG254,FLOAT,126)
  1244. */
  1245. @ApiModelProperty(value="2#总降联络柜1#643无功电度量",required=false)
  1246. private Double tag254;
  1247. /**
  1248. * 2#总降高线Ⅰ段1#644无功电度量(TAG255,FLOAT,126)
  1249. */
  1250. @ApiModelProperty(value="2#总降高线Ⅰ段1#644无功电度量",required=false)
  1251. private Double tag255;
  1252. /**
  1253. * 2#总降焦化1#645无功电度量(TAG256,FLOAT,126)
  1254. */
  1255. @ApiModelProperty(value="2#总降焦化1#645无功电度量",required=false)
  1256. private Double tag256;
  1257. /**
  1258. * 2#总降2# 制氧1#646无功电度量(TAG257,FLOAT,126)
  1259. */
  1260. @ApiModelProperty(value="2#总降2# 制氧1#646无功电度量",required=false)
  1261. private Double tag257;
  1262. /**
  1263. * 2#总降2# 制氧2#647无功电度量(TAG258,FLOAT,126)
  1264. */
  1265. @ApiModelProperty(value="2#总降2# 制氧2#647无功电度量",required=false)
  1266. private Double tag258;
  1267. /**
  1268. * 2#总降备用648无功电度量(TAG259,FLOAT,126)
  1269. */
  1270. @ApiModelProperty(value="2#总降备用648无功电度量",required=false)
  1271. private Double tag259;
  1272. /**
  1273. * 2#总降焦化2#649无功电度量(TAG260,FLOAT,126)
  1274. */
  1275. @ApiModelProperty(value="2#总降焦化2#649无功电度量",required=false)
  1276. private Double tag260;
  1277. /**
  1278. * 2#总降1#电容器650无功电度量(TAG261,FLOAT,126)
  1279. */
  1280. @ApiModelProperty(value="2#总降1#电容器650无功电度量",required=false)
  1281. private Double tag261;
  1282. /**
  1283. * 2#总降联络柜2#651无功电度量(TAG262,FLOAT,126)
  1284. */
  1285. @ApiModelProperty(value="2#总降联络柜2#651无功电度量",required=false)
  1286. private Double tag262;
  1287. /**
  1288. * 2#总降联络柜2#652无功电度量(TAG263,FLOAT,126)
  1289. */
  1290. @ApiModelProperty(value="2#总降联络柜2#652无功电度量",required=false)
  1291. private Double tag263;
  1292. /**
  1293. * 2#总降备用656无功电度量(TAG264,FLOAT,126)
  1294. */
  1295. @ApiModelProperty(value="2#总降备用656无功电度量",required=false)
  1296. private Double tag264;
  1297. /**
  1298. * 2#总降20000m32#657无功电度量(TAG265,FLOAT,126)
  1299. */
  1300. @ApiModelProperty(value="2#总降20000m32#657无功电度量",required=false)
  1301. private Double tag265;
  1302. /**
  1303. * 2#总降高线Ⅱ段2#658无功电度量(TAG266,FLOAT,126)
  1304. */
  1305. @ApiModelProperty(value="2#总降高线Ⅱ段2#658无功电度量",required=false)
  1306. private Double tag266;
  1307. /**
  1308. * 2#总降高线Ⅰ段2#659无功电度量(TAG267,FLOAT,126)
  1309. */
  1310. @ApiModelProperty(value="2#总降高线Ⅰ段2#659无功电度量",required=false)
  1311. private Double tag267;
  1312. /**
  1313. * 2#总降二炼钢2#660无功电度量(TAG268,FLOAT,126)
  1314. */
  1315. @ApiModelProperty(value="2#总降二炼钢2#660无功电度量",required=false)
  1316. private Double tag268;
  1317. /**
  1318. * 2#总降1#主变高压A1010无功电度量(TAG269,FLOAT,126)
  1319. */
  1320. @ApiModelProperty(value="2#总降1#主变高压A1010无功电度量",required=false)
  1321. private Double tag269;
  1322. /**
  1323. * 2#总降1#主变高压B1011无功电度量(TAG270,FLOAT,126)
  1324. */
  1325. @ApiModelProperty(value="2#总降1#主变高压B1011无功电度量",required=false)
  1326. private Double tag270;
  1327. /**
  1328. * 2#总降暖泉煤矿3402无功电度量(TAG271,FLOAT,126)
  1329. */
  1330. @ApiModelProperty(value="2#总降暖泉煤矿3402无功电度量",required=false)
  1331. private Double tag271;
  1332. /**
  1333. * 2#总降沈家峁煤矿3403无功电度量(TAG272,FLOAT,126)
  1334. */
  1335. @ApiModelProperty(value="2#总降沈家峁煤矿3403无功电度量",required=false)
  1336. private Double tag272;
  1337. /**
  1338. * 2#总降钢张线3404无功电度量(TAG273,FLOAT,126)
  1339. */
  1340. @ApiModelProperty(value="2#总降钢张线3404无功电度量",required=false)
  1341. private Double tag273;
  1342. /**
  1343. * 2#总降备用3-3405无功电度量(TAG274,FLOAT,126)
  1344. */
  1345. @ApiModelProperty(value="2#总降备用3-3405无功电度量",required=false)
  1346. private Double tag274;
  1347. /**
  1348. * 2#总降干熄焦3406无功电度量(TAG275,FLOAT,126)
  1349. */
  1350. @ApiModelProperty(value="2#总降干熄焦3406无功电度量",required=false)
  1351. private Double tag275;
  1352. @ApiModelProperty(value="",required=false)
  1353. private Double tag276;
  1354. /**
  1355. * 2#总降1# 站用变6107无功电度量(TAG277,FLOAT,126)
  1356. */
  1357. @ApiModelProperty(value="2#总降1# 站用变6107无功电度量",required=false)
  1358. private Double tag277;
  1359. /**
  1360. * 2#总降2# 站用变6207无功电度量(TAG278,FLOAT,126)
  1361. */
  1362. @ApiModelProperty(value="2#总降2# 站用变6207无功电度量",required=false)
  1363. private Double tag278;
  1364. /**
  1365. * 2#总降出线1-6401无功电度量(TAG279,FLOAT,126)
  1366. */
  1367. @ApiModelProperty(value="2#总降出线1-6401无功电度量",required=false)
  1368. private Double tag279;
  1369. /**
  1370. * 2#总降出线2-6402无功电度量(TAG280,FLOAT,126)
  1371. */
  1372. @ApiModelProperty(value="2#总降出线2-6402无功电度量",required=false)
  1373. private Double tag280;
  1374. /**
  1375. * 2#总降出线3-6403无功电度量(TAG281,FLOAT,126)
  1376. */
  1377. @ApiModelProperty(value="2#总降出线3-6403无功电度量",required=false)
  1378. private Double tag281;
  1379. /**
  1380. * 2#总降出线4-6404无功电度量(TAG282,FLOAT,126)
  1381. */
  1382. @ApiModelProperty(value="2#总降出线4-6404无功电度量",required=false)
  1383. private Double tag282;
  1384. /**
  1385. * 2#总降出线5-6405无功电度量(TAG283,FLOAT,126)
  1386. */
  1387. @ApiModelProperty(value="2#总降出线5-6405无功电度量",required=false)
  1388. private Double tag283;
  1389. /**
  1390. * 2#总降出线6-6406无功电度量(TAG284,FLOAT,126)
  1391. */
  1392. @ApiModelProperty(value="2#总降出线6-6406无功电度量",required=false)
  1393. private Double tag284;
  1394. /**
  1395. * 2#总降出线7-6407无功电度量(TAG285,FLOAT,126)
  1396. */
  1397. @ApiModelProperty(value="2#总降出线7-6407无功电度量",required=false)
  1398. private Double tag285;
  1399. /**
  1400. * 2#总降1#制氧1#线6408无功电度量(TAG286,FLOAT,126)
  1401. */
  1402. @ApiModelProperty(value="2#总降1#制氧1#线6408无功电度量",required=false)
  1403. private Double tag286;
  1404. /**
  1405. * 2#总降1#制氧2#线6409无功电度量(TAG287,FLOAT,126)
  1406. */
  1407. @ApiModelProperty(value="2#总降1#制氧2#线6409无功电度量",required=false)
  1408. private Double tag287;
  1409. /**
  1410. * 2#总降厂用变2#6410无功电度量(TAG288,FLOAT,126)
  1411. */
  1412. @ApiModelProperty(value="2#总降厂用变2#6410无功电度量",required=false)
  1413. private Double tag288;
  1414. /**
  1415. * 2#总降5#电容器6411无功电度量(TAG289,FLOAT,126)
  1416. */
  1417. @ApiModelProperty(value="2#总降5#电容器6411无功电度量",required=false)
  1418. private Double tag289;
  1419. /**
  1420. * 2#总降4#电容器6412无功电度量(TAG290,FLOAT,126)
  1421. */
  1422. @ApiModelProperty(value="2#总降4#电容器6412无功电度量",required=false)
  1423. private Double tag290;
  1424. /**
  1425. * 3#总降1#主变高压101无功电度量(TAG291,FLOAT,126)
  1426. */
  1427. @ApiModelProperty(value="3#总降1#主变高压101无功电度量",required=false)
  1428. private Double tag291;
  1429. /**
  1430. * 3#总降2#主变高压102无功电度量(TAG292,FLOAT,126)
  1431. */
  1432. @ApiModelProperty(value="3#总降2#主变高压102无功电度量",required=false)
  1433. private Double tag292;
  1434. /**
  1435. * 3#总降3#主变高压103无功电度量(TAG293,FLOAT,126)
  1436. */
  1437. @ApiModelProperty(value="3#总降3#主变高压103无功电度量",required=false)
  1438. private Double tag293;
  1439. /**
  1440. * 3#总降1#主变低压601无功电度量(TAG294,FLOAT,126)
  1441. */
  1442. @ApiModelProperty(value="3#总降1#主变低压601无功电度量",required=false)
  1443. private Double tag294;
  1444. /**
  1445. * 3#总降2#主变低压602无功电度量(TAG295,FLOAT,126)
  1446. */
  1447. @ApiModelProperty(value="3#总降2#主变低压602无功电度量",required=false)
  1448. private Double tag295;
  1449. /**
  1450. * 3#总降3#主变低压603无功电度量(TAG296,FLOAT,126)
  1451. */
  1452. @ApiModelProperty(value="3#总降3#主变低压603无功电度量",required=false)
  1453. private Double tag296;
  1454. /**
  1455. * 3#总降钰钢Ⅰ线主表141无功电度量(南瑞采集可能写错)(TAG297,FLOAT,126)
  1456. */
  1457. @ApiModelProperty(value="3#总降钰钢Ⅰ线主表141无功电度量(南瑞采集可能写错)",required=false)
  1458. private Double tag297;
  1459. /**
  1460. * 3#总降钰钢Ⅰ线副表142无功电度量(南瑞采集可能写错)(TAG298,FLOAT,126)
  1461. */
  1462. @ApiModelProperty(value="3#总降钰钢Ⅰ线副表142无功电度量(南瑞采集可能写错)",required=false)
  1463. private Double tag298;
  1464. /**
  1465. * 3#总降钰钢Ⅲ线主表143无功电度量(南瑞采集可能写错)(TAG299,FLOAT,126)
  1466. */
  1467. @ApiModelProperty(value="3#总降钰钢Ⅲ线主表143无功电度量(南瑞采集可能写错)",required=false)
  1468. private Double tag299;
  1469. /**
  1470. * 3#总降钰钢Ⅲ线副表1432无功电度量(TAG300,FLOAT,126)
  1471. */
  1472. @ApiModelProperty(value="3#总降钰钢Ⅲ线副表1432无功电度量",required=false)
  1473. private Double tag300;
  1474. /**
  1475. * 3#总降循环水泵房Ⅰ8101无功电度量(TAG301,FLOAT,126)
  1476. */
  1477. @ApiModelProperty(value="3#总降循环水泵房Ⅰ8101无功电度量",required=false)
  1478. private Double tag301;
  1479. /**
  1480. * 3#总降1#高炉主控Ⅰ8102无功电度量(TAG302,FLOAT,126)
  1481. */
  1482. @ApiModelProperty(value="3#总降1#高炉主控Ⅰ8102无功电度量",required=false)
  1483. private Double tag302;
  1484. /**
  1485. * 3#总降2#高炉主控Ⅰ8103无功电度量(TAG303,FLOAT,126)
  1486. */
  1487. @ApiModelProperty(value="3#总降2#高炉主控Ⅰ8103无功电度量",required=false)
  1488. private Double tag303;
  1489. /**
  1490. * 3#总降1#烧结机头Ⅰ8104无功电度量(TAG304,FLOAT,126)
  1491. */
  1492. @ApiModelProperty(value="3#总降1#烧结机头Ⅰ8104无功电度量",required=false)
  1493. private Double tag304;
  1494. /**
  1495. * 3#总降2#烧结机头Ⅰ8105无功电度量(TAG305,FLOAT,126)
  1496. */
  1497. @ApiModelProperty(value="3#总降2#烧结机头Ⅰ8105无功电度量",required=false)
  1498. private Double tag305;
  1499. /**
  1500. * 3#总降鼓风机站Ⅰ8106无功电度量(TAG306,FLOAT,126)
  1501. */
  1502. @ApiModelProperty(value="3#总降鼓风机站Ⅰ8106无功电度量",required=false)
  1503. private Double tag306;
  1504. /**
  1505. * 3#总降1#烧结机尾8108无功电度量(TAG307,FLOAT,126)
  1506. */
  1507. @ApiModelProperty(value="3#总降1#烧结机尾8108无功电度量",required=false)
  1508. private Double tag307;
  1509. /**
  1510. * 3#总降2#烧结机尾8109无功电度量(TAG308,FLOAT,126)
  1511. */
  1512. @ApiModelProperty(value="3#总降2#烧结机尾8109无功电度量",required=false)
  1513. private Double tag308;
  1514. /**
  1515. * 3#总降回转窑Ⅰ8110无功电度量(TAG309,FLOAT,126)
  1516. */
  1517. @ApiModelProperty(value="3#总降回转窑Ⅰ8110无功电度量",required=false)
  1518. private Double tag309;
  1519. /**
  1520. * 3#总降洗煤厂Ⅰ8111无功电度量(TAG310,FLOAT,126)
  1521. */
  1522. @ApiModelProperty(value="3#总降洗煤厂Ⅰ8111无功电度量",required=false)
  1523. private Double tag310;
  1524. /**
  1525. * 3#总降焦化Ⅰ8112无功电度量(TAG311,FLOAT,126)
  1526. */
  1527. @ApiModelProperty(value="3#总降焦化Ⅰ8112无功电度量",required=false)
  1528. private Double tag311;
  1529. /**
  1530. * 3#总降竖炉Ⅰ8113无功电度量(TAG312,FLOAT,126)
  1531. */
  1532. @ApiModelProperty(value="3#总降竖炉Ⅰ8113无功电度量",required=false)
  1533. private Double tag312;
  1534. /**
  1535. * 3#总降备用8114无功电度量(TAG313,FLOAT,126)
  1536. */
  1537. @ApiModelProperty(value="3#总降备用8114无功电度量",required=false)
  1538. private Double tag313;
  1539. /**
  1540. * 3#总降2#电容器8115无功电度量(TAG314,FLOAT,126)
  1541. */
  1542. @ApiModelProperty(value="3#总降2#电容器8115无功电度量",required=false)
  1543. private Double tag314;
  1544. /**
  1545. * 3#总降3#电容器8116无功电度量(TAG315,FLOAT,126)
  1546. */
  1547. @ApiModelProperty(value="3#总降3#电容器8116无功电度量",required=false)
  1548. private Double tag315;
  1549. /**
  1550. * 3#总降循环泵房Ⅱ8201无功电度量(TAG316,FLOAT,126)
  1551. */
  1552. @ApiModelProperty(value="3#总降循环泵房Ⅱ8201无功电度量",required=false)
  1553. private Double tag316;
  1554. /**
  1555. * 3#总降1#高炉主控Ⅱ8202无功电度量(TAG317,FLOAT,126)
  1556. */
  1557. @ApiModelProperty(value="3#总降1#高炉主控Ⅱ8202无功电度量",required=false)
  1558. private Double tag317;
  1559. /**
  1560. * 3#总降2#高炉主控Ⅱ8203无功电度量(TAG318,FLOAT,126)
  1561. */
  1562. @ApiModelProperty(value="3#总降2#高炉主控Ⅱ8203无功电度量",required=false)
  1563. private Double tag318;
  1564. /**
  1565. * 3#总降鼓风机站Ⅱ8204无功电度量(TAG319,FLOAT,126)
  1566. */
  1567. @ApiModelProperty(value="3#总降鼓风机站Ⅱ8204无功电度量",required=false)
  1568. private Double tag319;
  1569. /**
  1570. * 3#总降1#烧结机头Ⅱ8205无功电度量(TAG320,FLOAT,126)
  1571. */
  1572. @ApiModelProperty(value="3#总降1#烧结机头Ⅱ8205无功电度量",required=false)
  1573. private Double tag320;
  1574. /**
  1575. * 3#总降2#烧结机头Ⅱ8206无功电度量(TAG321,FLOAT,126)
  1576. */
  1577. @ApiModelProperty(value="3#总降2#烧结机头Ⅱ8206无功电度量",required=false)
  1578. private Double tag321;
  1579. /**
  1580. * 3#总降1#烧结机尾Ⅱ8208无功电度量(TAG322,FLOAT,126)
  1581. */
  1582. @ApiModelProperty(value="3#总降1#烧结机尾Ⅱ8208无功电度量",required=false)
  1583. private Double tag322;
  1584. /**
  1585. * 3#总降2#烧结机尾Ⅱ8209无功电度量(TAG323,FLOAT,126)
  1586. */
  1587. @ApiModelProperty(value="3#总降2#烧结机尾Ⅱ8209无功电度量",required=false)
  1588. private Double tag323;
  1589. /**
  1590. * 3#总降回转窑Ⅱ8211无功电度量(TAG324,FLOAT,126)
  1591. */
  1592. @ApiModelProperty(value="3#总降回转窑Ⅱ8211无功电度量",required=false)
  1593. private Double tag324;
  1594. /**
  1595. * 3#总降洗煤厂Ⅱ8212无功电度量(TAG325,FLOAT,126)
  1596. */
  1597. @ApiModelProperty(value="3#总降洗煤厂Ⅱ8212无功电度量",required=false)
  1598. private Double tag325;
  1599. /**
  1600. * 3#总降焦化Ⅱ8213无功电度量(TAG326,FLOAT,126)
  1601. */
  1602. @ApiModelProperty(value="3#总降焦化Ⅱ8213无功电度量",required=false)
  1603. private Double tag326;
  1604. /**
  1605. * 3#总降4#电容器8214无功电度量(TAG327,FLOAT,126)
  1606. */
  1607. @ApiModelProperty(value="3#总降4#电容器8214无功电度量",required=false)
  1608. private Double tag327;
  1609. /**
  1610. * 3#总降5#电容器8215无功电度量(TAG328,FLOAT,126)
  1611. */
  1612. @ApiModelProperty(value="3#总降5#电容器8215无功电度量",required=false)
  1613. private Double tag328;
  1614. /**
  1615. * 3#总降竖炉Ⅱ8216无功电度量(TAG329,FLOAT,126)
  1616. */
  1617. @ApiModelProperty(value="3#总降竖炉Ⅱ8216无功电度量",required=false)
  1618. private Double tag329;
  1619. /**
  1620. * 3#总降钢阳线8301无功电度量(TAG330,FLOAT,126)
  1621. */
  1622. @ApiModelProperty(value="3#总降钢阳线8301无功电度量",required=false)
  1623. private Double tag330;
  1624. /**
  1625. * 3#总降洗煤厂Ⅱ8302无功电度量(TAG331,FLOAT,126)
  1626. */
  1627. @ApiModelProperty(value="3#总降洗煤厂Ⅱ8302无功电度量",required=false)
  1628. private Double tag331;
  1629. /**
  1630. * 3#总降TRT发电8303无功电度量(TAG332,FLOAT,126)
  1631. */
  1632. @ApiModelProperty(value="3#总降TRT发电8303无功电度量",required=false)
  1633. private Double tag332;
  1634. /**
  1635. * 3#总降2#精炼炉8304无功电度量(TAG333,FLOAT,126)
  1636. */
  1637. @ApiModelProperty(value="3#总降2#精炼炉8304无功电度量",required=false)
  1638. private Double tag333;
  1639. /**
  1640. * 3#总降3#精炼炉8305无功电度量(TAG334,FLOAT,126)
  1641. */
  1642. @ApiModelProperty(value="3#总降3#精炼炉8305无功电度量",required=false)
  1643. private Double tag334;
  1644. /**
  1645. * 3#总降钢阳线Ⅰ#8306无功电度量(TAG335,FLOAT,126)
  1646. */
  1647. @ApiModelProperty(value="3#总降钢阳线Ⅰ#8306无功电度量",required=false)
  1648. private Double tag335;
  1649. /**
  1650. * 3#总降回转窑Ⅱ8307无功电度量(TAG336,FLOAT,126)
  1651. */
  1652. @ApiModelProperty(value="3#总降回转窑Ⅱ8307无功电度量",required=false)
  1653. private Double tag336;
  1654. @ApiModelProperty(value="",required=false)
  1655. private Double tag337;
  1656. @ApiModelProperty(value="",required=false)
  1657. private Double tag338;
  1658. @ApiModelProperty(value="",required=false)
  1659. private Double tag339;
  1660. @ApiModelProperty(value="",required=false)
  1661. private Double tag340;
  1662. @ApiModelProperty(value="",required=false)
  1663. private Double tag341;
  1664. @ApiModelProperty(value="",required=false)
  1665. private Double tag342;
  1666. @ApiModelProperty(value="",required=false)
  1667. private Double tag343;
  1668. @ApiModelProperty(value="",required=false)
  1669. private Double tag344;
  1670. @ApiModelProperty(value="",required=false)
  1671. private Double tag345;
  1672. @ApiModelProperty(value="",required=false)
  1673. private Double tag346;
  1674. @ApiModelProperty(value="",required=false)
  1675. private Double tag347;
  1676. @ApiModelProperty(value="",required=false)
  1677. private Double tag348;
  1678. @ApiModelProperty(value="",required=false)
  1679. private Double tag349;
  1680. @ApiModelProperty(value="",required=false)
  1681. private Double tag350;
  1682. @ApiModelProperty(value="",required=false)
  1683. private Double tag351;
  1684. @ApiModelProperty(value="",required=false)
  1685. private Double tag352;
  1686. @ApiModelProperty(value="",required=false)
  1687. private Double tag353;
  1688. @ApiModelProperty(value="",required=false)
  1689. private Double tag354;
  1690. @ApiModelProperty(value="",required=false)
  1691. private Double tag355;
  1692. @ApiModelProperty(value="",required=false)
  1693. private Double tag356;
  1694. @ApiModelProperty(value="",required=false)
  1695. private Double tag357;
  1696. @ApiModelProperty(value="",required=false)
  1697. private Double tag358;
  1698. @ApiModelProperty(value="",required=false)
  1699. private Double tag359;
  1700. @ApiModelProperty(value="",required=false)
  1701. private Double tag360;
  1702. @ApiModelProperty(value="",required=false)
  1703. private Double tag361;
  1704. @ApiModelProperty(value="",required=false)
  1705. private Double tag362;
  1706. @ApiModelProperty(value="",required=false)
  1707. private Double tag363;
  1708. @ApiModelProperty(value="",required=false)
  1709. private Double tag364;
  1710. @ApiModelProperty(value="",required=false)
  1711. private Double tag365;
  1712. @ApiModelProperty(value="",required=false)
  1713. private Double tag366;
  1714. @ApiModelProperty(value="",required=false)
  1715. private Double tag367;
  1716. @ApiModelProperty(value="",required=false)
  1717. private Double tag368;
  1718. @ApiModelProperty(value="",required=false)
  1719. private Double tag369;
  1720. @ApiModelProperty(value="",required=false)
  1721. private Double tag370;
  1722. @ApiModelProperty(value="",required=false)
  1723. private Double tag371;
  1724. @ApiModelProperty(value="",required=false)
  1725. private Double tag372;
  1726. @ApiModelProperty(value="",required=false)
  1727. private Double tag373;
  1728. @ApiModelProperty(value="",required=false)
  1729. private Double tag374;
  1730. @ApiModelProperty(value="",required=false)
  1731. private Double tag375;
  1732. @ApiModelProperty(value="",required=false)
  1733. private Double tag376;
  1734. @ApiModelProperty(value="",required=false)
  1735. private Double tag377;
  1736. @ApiModelProperty(value="",required=false)
  1737. private Double tag378;
  1738. @ApiModelProperty(value="",required=false)
  1739. private Double tag379;
  1740. @ApiModelProperty(value="",required=false)
  1741. private Double tag380;
  1742. @ApiModelProperty(value="",required=false)
  1743. private Double tag381;
  1744. @ApiModelProperty(value="",required=false)
  1745. private Double tag382;
  1746. @ApiModelProperty(value="",required=false)
  1747. private Double tag383;
  1748. @ApiModelProperty(value="",required=false)
  1749. private Double tag384;
  1750. @ApiModelProperty(value="",required=false)
  1751. private Double tag385;
  1752. @ApiModelProperty(value="",required=false)
  1753. private Double tag386;
  1754. @ApiModelProperty(value="",required=false)
  1755. private Double tag387;
  1756. @ApiModelProperty(value="",required=false)
  1757. private Double tag388;
  1758. @ApiModelProperty(value="",required=false)
  1759. private Double tag389;
  1760. @ApiModelProperty(value="",required=false)
  1761. private Double tag390;
  1762. @ApiModelProperty(value="",required=false)
  1763. private Double tag391;
  1764. @ApiModelProperty(value="",required=false)
  1765. private Double tag392;
  1766. @ApiModelProperty(value="",required=false)
  1767. private Double tag393;
  1768. @ApiModelProperty(value="",required=false)
  1769. private Double tag394;
  1770. @ApiModelProperty(value="",required=false)
  1771. private Double tag395;
  1772. @ApiModelProperty(value="",required=false)
  1773. private Double tag396;
  1774. @ApiModelProperty(value="",required=false)
  1775. private Double tag397;
  1776. @ApiModelProperty(value="",required=false)
  1777. private Double tag398;
  1778. @ApiModelProperty(value="",required=false)
  1779. private Double tag399;
  1780. @ApiModelProperty(value="",required=false)
  1781. private Double tag400;
  1782. @ApiModelProperty(value="",required=false)
  1783. private Double tag401;
  1784. @ApiModelProperty(value="",required=false)
  1785. private Double tag402;
  1786. @ApiModelProperty(value="",required=false)
  1787. private Double tag403;
  1788. @ApiModelProperty(value="",required=false)
  1789. private Double tag404;
  1790. @ApiModelProperty(value="",required=false)
  1791. private Double tag405;
  1792. @ApiModelProperty(value="",required=false)
  1793. private Double tag406;
  1794. @ApiModelProperty(value="",required=false)
  1795. private Double tag407;
  1796. @ApiModelProperty(value="",required=false)
  1797. private Double tag408;
  1798. @ApiModelProperty(value="",required=false)
  1799. private Double tag409;
  1800. @ApiModelProperty(value="",required=false)
  1801. private Double tag410;
  1802. @ApiModelProperty(value="",required=false)
  1803. private Double tag411;
  1804. @ApiModelProperty(value="",required=false)
  1805. private Double tag412;
  1806. @ApiModelProperty(value="",required=false)
  1807. private Double tag413;
  1808. @ApiModelProperty(value="",required=false)
  1809. private Double tag414;
  1810. @ApiModelProperty(value="",required=false)
  1811. private Double tag415;
  1812. @ApiModelProperty(value="",required=false)
  1813. private Double tag416;
  1814. @ApiModelProperty(value="",required=false)
  1815. private Double tag417;
  1816. @ApiModelProperty(value="",required=false)
  1817. private Double tag418;
  1818. @ApiModelProperty(value="",required=false)
  1819. private Double tag419;
  1820. @ApiModelProperty(value="",required=false)
  1821. private Double tag420;
  1822. @ApiModelProperty(value="",required=false)
  1823. private Double tag421;
  1824. @ApiModelProperty(value="",required=false)
  1825. private Double tag422;
  1826. @ApiModelProperty(value="",required=false)
  1827. private Double tag423;
  1828. @ApiModelProperty(value="",required=false)
  1829. private Double tag424;
  1830. @ApiModelProperty(value="",required=false)
  1831. private Double tag425;
  1832. @ApiModelProperty(value="",required=false)
  1833. private Double tag426;
  1834. @ApiModelProperty(value="",required=false)
  1835. private Double tag427;
  1836. @ApiModelProperty(value="",required=false)
  1837. private Double tag428;
  1838. @ApiModelProperty(value="",required=false)
  1839. private Double tag429;
  1840. @ApiModelProperty(value="",required=false)
  1841. private Double tag430;
  1842. @ApiModelProperty(value="",required=false)
  1843. private Double tag431;
  1844. @ApiModelProperty(value="",required=false)
  1845. private Double tag432;
  1846. @ApiModelProperty(value="",required=false)
  1847. private Double tag433;
  1848. @ApiModelProperty(value="",required=false)
  1849. private Double tag434;
  1850. @ApiModelProperty(value="",required=false)
  1851. private Double tag435;
  1852. @ApiModelProperty(value="",required=false)
  1853. private Double tag436;
  1854. @ApiModelProperty(value="",required=false)
  1855. private Double tag437;
  1856. @ApiModelProperty(value="",required=false)
  1857. private Double tag438;
  1858. @ApiModelProperty(value="",required=false)
  1859. private Double tag439;
  1860. @ApiModelProperty(value="",required=false)
  1861. private Double tag440;
  1862. @ApiModelProperty(value="",required=false)
  1863. private Double tag441;
  1864. @ApiModelProperty(value="",required=false)
  1865. private Double tag442;
  1866. @ApiModelProperty(value="",required=false)
  1867. private Double tag443;
  1868. @ApiModelProperty(value="",required=false)
  1869. private Double tag444;
  1870. @ApiModelProperty(value="",required=false)
  1871. private Double tag445;
  1872. @ApiModelProperty(value="",required=false)
  1873. private Double tag446;
  1874. @ApiModelProperty(value="",required=false)
  1875. private Double tag447;
  1876. @ApiModelProperty(value="",required=false)
  1877. private Double tag448;
  1878. @ApiModelProperty(value="",required=false)
  1879. private Double tag449;
  1880. @ApiModelProperty(value="",required=false)
  1881. private Double tag450;
  1882. @ApiModelProperty(value="",required=false)
  1883. private Double tag451;
  1884. @ApiModelProperty(value="",required=false)
  1885. private Double tag452;
  1886. @ApiModelProperty(value="",required=false)
  1887. private Double tag453;
  1888. @ApiModelProperty(value="",required=false)
  1889. private Double tag454;
  1890. @ApiModelProperty(value="",required=false)
  1891. private Double tag455;
  1892. @ApiModelProperty(value="",required=false)
  1893. private Double tag456;
  1894. @ApiModelProperty(value="",required=false)
  1895. private Double tag457;
  1896. @ApiModelProperty(value="",required=false)
  1897. private Double tag458;
  1898. @ApiModelProperty(value="",required=false)
  1899. private Double tag459;
  1900. @ApiModelProperty(value="",required=false)
  1901. private Double tag460;
  1902. @ApiModelProperty(value="",required=false)
  1903. private Double tag461;
  1904. @ApiModelProperty(value="",required=false)
  1905. private Double tag462;
  1906. @ApiModelProperty(value="",required=false)
  1907. private Double tag463;
  1908. @ApiModelProperty(value="",required=false)
  1909. private Double tag464;
  1910. @ApiModelProperty(value="",required=false)
  1911. private Double tag465;
  1912. @ApiModelProperty(value="",required=false)
  1913. private Double tag466;
  1914. @ApiModelProperty(value="",required=false)
  1915. private Double tag467;
  1916. @ApiModelProperty(value="",required=false)
  1917. private Double tag468;
  1918. @ApiModelProperty(value="",required=false)
  1919. private Double tag469;
  1920. @ApiModelProperty(value="",required=false)
  1921. private Double tag470;
  1922. @ApiModelProperty(value="",required=false)
  1923. private Double tag471;
  1924. @ApiModelProperty(value="",required=false)
  1925. private Double tag472;
  1926. @ApiModelProperty(value="",required=false)
  1927. private Double tag473;
  1928. @ApiModelProperty(value="",required=false)
  1929. private Double tag474;
  1930. @ApiModelProperty(value="",required=false)
  1931. private Double tag475;
  1932. @ApiModelProperty(value="",required=false)
  1933. private Double tag476;
  1934. @ApiModelProperty(value="",required=false)
  1935. private Double tag477;
  1936. @ApiModelProperty(value="",required=false)
  1937. private Double tag478;
  1938. @ApiModelProperty(value="",required=false)
  1939. private Double tag479;
  1940. @ApiModelProperty(value="",required=false)
  1941. private Double tag480;
  1942. @ApiModelProperty(value="",required=false)
  1943. private Double tag481;
  1944. @ApiModelProperty(value="",required=false)
  1945. private Double tag482;
  1946. @ApiModelProperty(value="",required=false)
  1947. private Double tag483;
  1948. @ApiModelProperty(value="",required=false)
  1949. private Double tag484;
  1950. @ApiModelProperty(value="",required=false)
  1951. private Double tag485;
  1952. @ApiModelProperty(value="",required=false)
  1953. private Double tag486;
  1954. @ApiModelProperty(value="",required=false)
  1955. private Double tag487;
  1956. @ApiModelProperty(value="",required=false)
  1957. private Double tag488;
  1958. @ApiModelProperty(value="",required=false)
  1959. private Double tag489;
  1960. @ApiModelProperty(value="",required=false)
  1961. private Double tag490;
  1962. @ApiModelProperty(value="",required=false)
  1963. private Double tag491;
  1964. @ApiModelProperty(value="",required=false)
  1965. private Double tag492;
  1966. @ApiModelProperty(value="",required=false)
  1967. private Double tag493;
  1968. @ApiModelProperty(value="",required=false)
  1969. private Double tag494;
  1970. @ApiModelProperty(value="",required=false)
  1971. private Double tag495;
  1972. @ApiModelProperty(value="",required=false)
  1973. private Double tag496;
  1974. @ApiModelProperty(value="",required=false)
  1975. private Double tag497;
  1976. @ApiModelProperty(value="",required=false)
  1977. private Double tag498;
  1978. @ApiModelProperty(value="",required=false)
  1979. private Double tag499;
  1980. @ApiModelProperty(value="",required=false)
  1981. private Double tag500;
  1982. @ApiModelProperty(value="",required=false)
  1983. private Double tag501;
  1984. @ApiModelProperty(value="",required=false)
  1985. private Double tag502;
  1986. @ApiModelProperty(value="",required=false)
  1987. private Double tag503;
  1988. @ApiModelProperty(value="",required=false)
  1989. private Double tag504;
  1990. @ApiModelProperty(value="",required=false)
  1991. private Double tag505;
  1992. @ApiModelProperty(value="",required=false)
  1993. private Double tag506;
  1994. @ApiModelProperty(value="",required=false)
  1995. private Double tag507;
  1996. @ApiModelProperty(value="",required=false)
  1997. private Double tag508;
  1998. @ApiModelProperty(value="",required=false)
  1999. private Double tag509;
  2000. @ApiModelProperty(value="",required=false)
  2001. private Double tag510;
  2002. @ApiModelProperty(value="",required=false)
  2003. private Double tag511;
  2004. @ApiModelProperty(value="",required=false)
  2005. private Double tag512;
  2006. @ApiModelProperty(value="",required=false)
  2007. private Double tag513;
  2008. @ApiModelProperty(value="",required=false)
  2009. private Double tag514;
  2010. @ApiModelProperty(value="",required=false)
  2011. private Double tag515;
  2012. @ApiModelProperty(value="",required=false)
  2013. private Double tag516;
  2014. @ApiModelProperty(value="",required=false)
  2015. private Double tag517;
  2016. @ApiModelProperty(value="",required=false)
  2017. private Double tag518;
  2018. @ApiModelProperty(value="",required=false)
  2019. private Double tag519;
  2020. @ApiModelProperty(value="",required=false)
  2021. private Double tag520;
  2022. @ApiModelProperty(value="",required=false)
  2023. private Double tag521;
  2024. @ApiModelProperty(value="",required=false)
  2025. private Double tag522;
  2026. @ApiModelProperty(value="",required=false)
  2027. private Double tag523;
  2028. @ApiModelProperty(value="",required=false)
  2029. private Double tag524;
  2030. @ApiModelProperty(value="",required=false)
  2031. private Double tag525;
  2032. @ApiModelProperty(value="",required=false)
  2033. private Double tag526;
  2034. @ApiModelProperty(value="",required=false)
  2035. private Double tag527;
  2036. @ApiModelProperty(value="",required=false)
  2037. private Double tag528;
  2038. @ApiModelProperty(value="",required=false)
  2039. private Double tag529;
  2040. @ApiModelProperty(value="",required=false)
  2041. private Double tag530;
  2042. @ApiModelProperty(value="",required=false)
  2043. private Double tag531;
  2044. @ApiModelProperty(value="",required=false)
  2045. private Double tag532;
  2046. @ApiModelProperty(value="",required=false)
  2047. private Double tag533;
  2048. @ApiModelProperty(value="",required=false)
  2049. private Double tag534;
  2050. @ApiModelProperty(value="",required=false)
  2051. private Double tag535;
  2052. @ApiModelProperty(value="",required=false)
  2053. private Double tag536;
  2054. @ApiModelProperty(value="",required=false)
  2055. private Double tag537;
  2056. @ApiModelProperty(value="",required=false)
  2057. private Double tag538;
  2058. @ApiModelProperty(value="",required=false)
  2059. private Double tag539;
  2060. @ApiModelProperty(value="",required=false)
  2061. private Double tag540;
  2062. @ApiModelProperty(value="",required=false)
  2063. private Double tag541;
  2064. @ApiModelProperty(value="",required=false)
  2065. private Double tag542;
  2066. @ApiModelProperty(value="",required=false)
  2067. private Double tag543;
  2068. @ApiModelProperty(value="",required=false)
  2069. private Double tag544;
  2070. @ApiModelProperty(value="",required=false)
  2071. private Double tag545;
  2072. @ApiModelProperty(value="",required=false)
  2073. private Double tag546;
  2074. @ApiModelProperty(value="",required=false)
  2075. private Double tag547;
  2076. @ApiModelProperty(value="",required=false)
  2077. private Double tag548;
  2078. @ApiModelProperty(value="",required=false)
  2079. private Double tag549;
  2080. @ApiModelProperty(value="",required=false)
  2081. private Double tag550;
  2082. @ApiModelProperty(value="",required=false)
  2083. private Double tag551;
  2084. @ApiModelProperty(value="",required=false)
  2085. private Double tag552;
  2086. @ApiModelProperty(value="",required=false)
  2087. private Double tag553;
  2088. @ApiModelProperty(value="",required=false)
  2089. private Double tag554;
  2090. @ApiModelProperty(value="",required=false)
  2091. private Double tag555;
  2092. @ApiModelProperty(value="",required=false)
  2093. private Double tag556;
  2094. @ApiModelProperty(value="",required=false)
  2095. private Double tag557;
  2096. @ApiModelProperty(value="",required=false)
  2097. private Double tag558;
  2098. @ApiModelProperty(value="",required=false)
  2099. private Double tag559;
  2100. @ApiModelProperty(value="",required=false)
  2101. private Double tag560;
  2102. @ApiModelProperty(value="",required=false)
  2103. private Double tag561;
  2104. @ApiModelProperty(value="",required=false)
  2105. private Double tag562;
  2106. @ApiModelProperty(value="",required=false)
  2107. private Double tag563;
  2108. @ApiModelProperty(value="",required=false)
  2109. private Double tag564;
  2110. @ApiModelProperty(value="",required=false)
  2111. private Double tag565;
  2112. @ApiModelProperty(value="",required=false)
  2113. private Double tag566;
  2114. @ApiModelProperty(value="",required=false)
  2115. private Double tag567;
  2116. @ApiModelProperty(value="",required=false)
  2117. private Double tag568;
  2118. @ApiModelProperty(value="",required=false)
  2119. private Double tag569;
  2120. @ApiModelProperty(value="",required=false)
  2121. private Double tag570;
  2122. @ApiModelProperty(value="",required=false)
  2123. private Double tag571;
  2124. @ApiModelProperty(value="",required=false)
  2125. private Double tag572;
  2126. @ApiModelProperty(value="",required=false)
  2127. private Double tag573;
  2128. @ApiModelProperty(value="",required=false)
  2129. private Double tag574;
  2130. @ApiModelProperty(value="",required=false)
  2131. private Double tag575;
  2132. @ApiModelProperty(value="",required=false)
  2133. private Double tag576;
  2134. @ApiModelProperty(value="",required=false)
  2135. private Double tag577;
  2136. @ApiModelProperty(value="",required=false)
  2137. private Double tag578;
  2138. @ApiModelProperty(value="",required=false)
  2139. private Double tag579;
  2140. @ApiModelProperty(value="",required=false)
  2141. private Double tag580;
  2142. @ApiModelProperty(value="",required=false)
  2143. private Double tag581;
  2144. @ApiModelProperty(value="",required=false)
  2145. private Double tag582;
  2146. @ApiModelProperty(value="",required=false)
  2147. private Double tag583;
  2148. @ApiModelProperty(value="",required=false)
  2149. private Double tag584;
  2150. @ApiModelProperty(value="",required=false)
  2151. private Double tag585;
  2152. @ApiModelProperty(value="",required=false)
  2153. private Double tag586;
  2154. @ApiModelProperty(value="",required=false)
  2155. private Double tag587;
  2156. @ApiModelProperty(value="",required=false)
  2157. private Double tag588;
  2158. @ApiModelProperty(value="",required=false)
  2159. private Double tag589;
  2160. @ApiModelProperty(value="",required=false)
  2161. private Double tag590;
  2162. @ApiModelProperty(value="",required=false)
  2163. private Double tag591;
  2164. @ApiModelProperty(value="",required=false)
  2165. private Double tag592;
  2166. @ApiModelProperty(value="",required=false)
  2167. private Double tag593;
  2168. @ApiModelProperty(value="",required=false)
  2169. private Double tag594;
  2170. @ApiModelProperty(value="",required=false)
  2171. private Double tag595;
  2172. @ApiModelProperty(value="",required=false)
  2173. private Double tag596;
  2174. @ApiModelProperty(value="",required=false)
  2175. private Double tag597;
  2176. @ApiModelProperty(value="",required=false)
  2177. private Double tag598;
  2178. @ApiModelProperty(value="",required=false)
  2179. private Double tag599;
  2180. @ApiModelProperty(value="",required=false)
  2181. private Double tag600;
  2182. @ApiModelProperty(value="",required=false)
  2183. private Double tag601;
  2184. @ApiModelProperty(value="",required=false)
  2185. private Double tag602;
  2186. @ApiModelProperty(value="",required=false)
  2187. private Double tag603;
  2188. @ApiModelProperty(value="",required=false)
  2189. private Double tag604;
  2190. @ApiModelProperty(value="",required=false)
  2191. private Double tag605;
  2192. @ApiModelProperty(value="",required=false)
  2193. private Double tag606;
  2194. @ApiModelProperty(value="",required=false)
  2195. private Double tag607;
  2196. @ApiModelProperty(value="",required=false)
  2197. private Double tag608;
  2198. @ApiModelProperty(value="",required=false)
  2199. private Double tag609;
  2200. @ApiModelProperty(value="",required=false)
  2201. private Double tag610;
  2202. @ApiModelProperty(value="",required=false)
  2203. private Double tag611;
  2204. @ApiModelProperty(value="",required=false)
  2205. private Double tag612;
  2206. @ApiModelProperty(value="",required=false)
  2207. private Double tag613;
  2208. @ApiModelProperty(value="",required=false)
  2209. private Double tag614;
  2210. @ApiModelProperty(value="",required=false)
  2211. private Double tag615;
  2212. @ApiModelProperty(value="",required=false)
  2213. private Double tag616;
  2214. @ApiModelProperty(value="",required=false)
  2215. private Double tag617;
  2216. @ApiModelProperty(value="",required=false)
  2217. private Double tag618;
  2218. @ApiModelProperty(value="",required=false)
  2219. private Double tag619;
  2220. @ApiModelProperty(value="",required=false)
  2221. private Double tag620;
  2222. @ApiModelProperty(value="",required=false)
  2223. private Double tag621;
  2224. @ApiModelProperty(value="",required=false)
  2225. private Double tag622;
  2226. @ApiModelProperty(value="",required=false)
  2227. private Double tag623;
  2228. @ApiModelProperty(value="",required=false)
  2229. private Double tag624;
  2230. @ApiModelProperty(value="",required=false)
  2231. private Double tag625;
  2232. @ApiModelProperty(value="",required=false)
  2233. private Double tag626;
  2234. @ApiModelProperty(value="",required=false)
  2235. private Double tag627;
  2236. @ApiModelProperty(value="",required=false)
  2237. private Double tag628;
  2238. @ApiModelProperty(value="",required=false)
  2239. private Double tag629;
  2240. @ApiModelProperty(value="",required=false)
  2241. private Double tag630;
  2242. @ApiModelProperty(value="",required=false)
  2243. private Double tag631;
  2244. @ApiModelProperty(value="",required=false)
  2245. private Double tag632;
  2246. @ApiModelProperty(value="",required=false)
  2247. private Double tag633;
  2248. @ApiModelProperty(value="",required=false)
  2249. private Double tag634;
  2250. @ApiModelProperty(value="",required=false)
  2251. private Double tag635;
  2252. @ApiModelProperty(value="",required=false)
  2253. private Double tag636;
  2254. @ApiModelProperty(value="",required=false)
  2255. private Double tag637;
  2256. @ApiModelProperty(value="",required=false)
  2257. private Double tag638;
  2258. @ApiModelProperty(value="",required=false)
  2259. private Double tag639;
  2260. @ApiModelProperty(value="",required=false)
  2261. private Double tag640;
  2262. @ApiModelProperty(value="",required=false)
  2263. private Double tag641;
  2264. @ApiModelProperty(value="",required=false)
  2265. private Double tag642;
  2266. @ApiModelProperty(value="",required=false)
  2267. private Double tag643;
  2268. @ApiModelProperty(value="",required=false)
  2269. private Double tag644;
  2270. @ApiModelProperty(value="",required=false)
  2271. private Double tag645;
  2272. @ApiModelProperty(value="",required=false)
  2273. private Double tag646;
  2274. @ApiModelProperty(value="",required=false)
  2275. private Double tag647;
  2276. @ApiModelProperty(value="",required=false)
  2277. private Double tag648;
  2278. @ApiModelProperty(value="",required=false)
  2279. private Double tag649;
  2280. @ApiModelProperty(value="",required=false)
  2281. private Double tag650;
  2282. @ApiModelProperty(value="",required=false)
  2283. private Double tag651;
  2284. @ApiModelProperty(value="",required=false)
  2285. private Double tag652;
  2286. @ApiModelProperty(value="",required=false)
  2287. private Double tag653;
  2288. @ApiModelProperty(value="",required=false)
  2289. private Double tag654;
  2290. @ApiModelProperty(value="",required=false)
  2291. private Double tag655;
  2292. @ApiModelProperty(value="",required=false)
  2293. private Double tag656;
  2294. @ApiModelProperty(value="",required=false)
  2295. private Double tag657;
  2296. @ApiModelProperty(value="",required=false)
  2297. private Double tag658;
  2298. @ApiModelProperty(value="",required=false)
  2299. private Double tag659;
  2300. @ApiModelProperty(value="",required=false)
  2301. private Double tag660;
  2302. @ApiModelProperty(value="",required=false)
  2303. private Double tag661;
  2304. @ApiModelProperty(value="",required=false)
  2305. private Double tag662;
  2306. @ApiModelProperty(value="",required=false)
  2307. private Double tag663;
  2308. @ApiModelProperty(value="",required=false)
  2309. private Double tag664;
  2310. @ApiModelProperty(value="",required=false)
  2311. private Double tag665;
  2312. @ApiModelProperty(value="",required=false)
  2313. private Double tag666;
  2314. @ApiModelProperty(value="",required=false)
  2315. private Double tag667;
  2316. @ApiModelProperty(value="",required=false)
  2317. private Double tag668;
  2318. @ApiModelProperty(value="",required=false)
  2319. private Double tag669;
  2320. @ApiModelProperty(value="",required=false)
  2321. private Double tag670;
  2322. @ApiModelProperty(value="",required=false)
  2323. private Double tag671;
  2324. @ApiModelProperty(value="",required=false)
  2325. private Double tag672;
  2326. @ApiModelProperty(value="",required=false)
  2327. private Double tag673;
  2328. @ApiModelProperty(value="",required=false)
  2329. private Double tag674;
  2330. @ApiModelProperty(value="",required=false)
  2331. private Double tag675;
  2332. @ApiModelProperty(value="",required=false)
  2333. private Double tag676;
  2334. @ApiModelProperty(value="",required=false)
  2335. private Double tag677;
  2336. @ApiModelProperty(value="",required=false)
  2337. private Double tag678;
  2338. @ApiModelProperty(value="",required=false)
  2339. private Double tag679;
  2340. @ApiModelProperty(value="",required=false)
  2341. private Double tag680;
  2342. @ApiModelProperty(value="",required=false)
  2343. private Double tag681;
  2344. @ApiModelProperty(value="",required=false)
  2345. private Double tag682;
  2346. @ApiModelProperty(value="",required=false)
  2347. private Double tag683;
  2348. @ApiModelProperty(value="",required=false)
  2349. private Double tag684;
  2350. @ApiModelProperty(value="",required=false)
  2351. private Double tag685;
  2352. @ApiModelProperty(value="",required=false)
  2353. private Double tag686;
  2354. @ApiModelProperty(value="",required=false)
  2355. private Double tag687;
  2356. @ApiModelProperty(value="",required=false)
  2357. private Double tag688;
  2358. @ApiModelProperty(value="",required=false)
  2359. private Double tag689;
  2360. @ApiModelProperty(value="",required=false)
  2361. private Double tag690;
  2362. @ApiModelProperty(value="",required=false)
  2363. private Double tag691;
  2364. @ApiModelProperty(value="",required=false)
  2365. private Double tag692;
  2366. @ApiModelProperty(value="",required=false)
  2367. private Double tag693;
  2368. @ApiModelProperty(value="",required=false)
  2369. private Double tag694;
  2370. @ApiModelProperty(value="",required=false)
  2371. private Double tag695;
  2372. @ApiModelProperty(value="",required=false)
  2373. private Double tag696;
  2374. @ApiModelProperty(value="",required=false)
  2375. private Double tag697;
  2376. @ApiModelProperty(value="",required=false)
  2377. private Double tag698;
  2378. @ApiModelProperty(value="",required=false)
  2379. private Double tag699;
  2380. @ApiModelProperty(value="",required=false)
  2381. private Double tag700;
  2382. @ApiModelProperty(value="",required=false)
  2383. private Double tag701;
  2384. @ApiModelProperty(value="",required=false)
  2385. private Double tag702;
  2386. @ApiModelProperty(value="",required=false)
  2387. private Double tag703;
  2388. @ApiModelProperty(value="",required=false)
  2389. private Double tag704;
  2390. @ApiModelProperty(value="",required=false)
  2391. private Double tag705;
  2392. @ApiModelProperty(value="",required=false)
  2393. private Double tag706;
  2394. @ApiModelProperty(value="",required=false)
  2395. private Double tag707;
  2396. @ApiModelProperty(value="",required=false)
  2397. private Double tag708;
  2398. @ApiModelProperty(value="",required=false)
  2399. private Double tag709;
  2400. @ApiModelProperty(value="",required=false)
  2401. private Double tag710;
  2402. @ApiModelProperty(value="",required=false)
  2403. private Double tag711;
  2404. @ApiModelProperty(value="",required=false)
  2405. private Double tag712;
  2406. @ApiModelProperty(value="",required=false)
  2407. private Double tag713;
  2408. @ApiModelProperty(value="",required=false)
  2409. private Double tag714;
  2410. @ApiModelProperty(value="",required=false)
  2411. private Double tag715;
  2412. @ApiModelProperty(value="",required=false)
  2413. private Double tag716;
  2414. @ApiModelProperty(value="",required=false)
  2415. private Double tag717;
  2416. @ApiModelProperty(value="",required=false)
  2417. private Double tag718;
  2418. @ApiModelProperty(value="",required=false)
  2419. private Double tag719;
  2420. @ApiModelProperty(value="",required=false)
  2421. private Double tag720;
  2422. @ApiModelProperty(value="",required=false)
  2423. private Double tag721;
  2424. @ApiModelProperty(value="",required=false)
  2425. private Double tag722;
  2426. @ApiModelProperty(value="",required=false)
  2427. private Double tag723;
  2428. @ApiModelProperty(value="",required=false)
  2429. private Double tag724;
  2430. @ApiModelProperty(value="",required=false)
  2431. private Double tag725;
  2432. @ApiModelProperty(value="",required=false)
  2433. private Double tag726;
  2434. @ApiModelProperty(value="",required=false)
  2435. private Double tag727;
  2436. @ApiModelProperty(value="",required=false)
  2437. private Double tag728;
  2438. @ApiModelProperty(value="",required=false)
  2439. private Double tag729;
  2440. @ApiModelProperty(value="",required=false)
  2441. private Double tag730;
  2442. @ApiModelProperty(value="",required=false)
  2443. private Double tag731;
  2444. @ApiModelProperty(value="",required=false)
  2445. private Double tag732;
  2446. @ApiModelProperty(value="",required=false)
  2447. private Double tag733;
  2448. @ApiModelProperty(value="",required=false)
  2449. private Double tag734;
  2450. @ApiModelProperty(value="",required=false)
  2451. private Double tag735;
  2452. @ApiModelProperty(value="",required=false)
  2453. private Double tag736;
  2454. @ApiModelProperty(value="",required=false)
  2455. private Double tag737;
  2456. @ApiModelProperty(value="",required=false)
  2457. private Double tag738;
  2458. @ApiModelProperty(value="",required=false)
  2459. private Double tag739;
  2460. @ApiModelProperty(value="",required=false)
  2461. private Double tag740;
  2462. @ApiModelProperty(value="",required=false)
  2463. private Double tag741;
  2464. @ApiModelProperty(value="",required=false)
  2465. private Double tag742;
  2466. @ApiModelProperty(value="",required=false)
  2467. private Double tag743;
  2468. @ApiModelProperty(value="",required=false)
  2469. private Double tag744;
  2470. @ApiModelProperty(value="",required=false)
  2471. private Double tag745;
  2472. @ApiModelProperty(value="",required=false)
  2473. private Double tag746;
  2474. @ApiModelProperty(value="",required=false)
  2475. private Double tag747;
  2476. @ApiModelProperty(value="",required=false)
  2477. private Double tag748;
  2478. @ApiModelProperty(value="",required=false)
  2479. private Double tag749;
  2480. @ApiModelProperty(value="",required=false)
  2481. private Double tag750;
  2482. @ApiModelProperty(value="",required=false)
  2483. private Double tag751;
  2484. @ApiModelProperty(value="",required=false)
  2485. private Double tag752;
  2486. @ApiModelProperty(value="",required=false)
  2487. private Double tag753;
  2488. @ApiModelProperty(value="",required=false)
  2489. private Double tag754;
  2490. @ApiModelProperty(value="",required=false)
  2491. private Double tag755;
  2492. @ApiModelProperty(value="",required=false)
  2493. private Double tag756;
  2494. @ApiModelProperty(value="",required=false)
  2495. private Double tag757;
  2496. @ApiModelProperty(value="",required=false)
  2497. private Double tag758;
  2498. @ApiModelProperty(value="",required=false)
  2499. private Double tag759;
  2500. @ApiModelProperty(value="",required=false)
  2501. private Double tag760;
  2502. @ApiModelProperty(value="",required=false)
  2503. private Double tag761;
  2504. @ApiModelProperty(value="",required=false)
  2505. private Double tag762;
  2506. @ApiModelProperty(value="",required=false)
  2507. private Double tag763;
  2508. @ApiModelProperty(value="",required=false)
  2509. private Double tag764;
  2510. @ApiModelProperty(value="",required=false)
  2511. private Double tag765;
  2512. @ApiModelProperty(value="",required=false)
  2513. private Double tag766;
  2514. @ApiModelProperty(value="",required=false)
  2515. private Double tag767;
  2516. @ApiModelProperty(value="",required=false)
  2517. private Double tag768;
  2518. @ApiModelProperty(value="",required=false)
  2519. private Double tag769;
  2520. @ApiModelProperty(value="",required=false)
  2521. private Double tag770;
  2522. @ApiModelProperty(value="",required=false)
  2523. private Double tag771;
  2524. @ApiModelProperty(value="",required=false)
  2525. private Double tag772;
  2526. @ApiModelProperty(value="",required=false)
  2527. private Double tag773;
  2528. @ApiModelProperty(value="",required=false)
  2529. private Double tag774;
  2530. @ApiModelProperty(value="",required=false)
  2531. private Double tag775;
  2532. @ApiModelProperty(value="",required=false)
  2533. private Double tag776;
  2534. @ApiModelProperty(value="",required=false)
  2535. private Double tag777;
  2536. @ApiModelProperty(value="",required=false)
  2537. private Double tag778;
  2538. @ApiModelProperty(value="",required=false)
  2539. private Double tag779;
  2540. @ApiModelProperty(value="",required=false)
  2541. private Double tag780;
  2542. @ApiModelProperty(value="",required=false)
  2543. private Double tag781;
  2544. @ApiModelProperty(value="",required=false)
  2545. private Double tag782;
  2546. @ApiModelProperty(value="",required=false)
  2547. private Double tag783;
  2548. @ApiModelProperty(value="",required=false)
  2549. private Double tag784;
  2550. @ApiModelProperty(value="",required=false)
  2551. private Double tag785;
  2552. @ApiModelProperty(value="",required=false)
  2553. private Double tag786;
  2554. @ApiModelProperty(value="",required=false)
  2555. private Double tag787;
  2556. @ApiModelProperty(value="",required=false)
  2557. private Double tag788;
  2558. @ApiModelProperty(value="",required=false)
  2559. private Double tag789;
  2560. @ApiModelProperty(value="",required=false)
  2561. private Double tag790;
  2562. @ApiModelProperty(value="",required=false)
  2563. private Double tag791;
  2564. @ApiModelProperty(value="",required=false)
  2565. private Double tag792;
  2566. @ApiModelProperty(value="",required=false)
  2567. private Double tag793;
  2568. @ApiModelProperty(value="",required=false)
  2569. private Double tag794;
  2570. @ApiModelProperty(value="",required=false)
  2571. private Double tag795;
  2572. @ApiModelProperty(value="",required=false)
  2573. private Double tag796;
  2574. @ApiModelProperty(value="",required=false)
  2575. private Double tag797;
  2576. @ApiModelProperty(value="",required=false)
  2577. private Double tag798;
  2578. @ApiModelProperty(value="",required=false)
  2579. private Double tag799;
  2580. @ApiModelProperty(value="",required=false)
  2581. private Double tag800;
  2582. private static final long serialVersionUID = 1L;
  2583. @Override
  2584. public String getId() {
  2585. return this.clock;
  2586. }
  2587. @Override
  2588. public void setId(String clock) {
  2589. this.clock = clock == null ? null : clock.trim();
  2590. }
  2591. public String getClock() {
  2592. return clock;
  2593. }
  2594. public void setClock(String clock) {
  2595. this.clock = clock == null ? null : clock.trim();
  2596. }
  2597. public Date getInsertTime() {
  2598. return insertTime;
  2599. }
  2600. public void setInsertTime(Date insertTime) {
  2601. this.insertTime = insertTime;
  2602. }
  2603. public Double getTag1() {
  2604. return tag1;
  2605. }
  2606. public void setTag1(Double tag1) {
  2607. this.tag1 = tag1;
  2608. }
  2609. public Double getTag2() {
  2610. return tag2;
  2611. }
  2612. public void setTag2(Double tag2) {
  2613. this.tag2 = tag2;
  2614. }
  2615. public Double getTag3() {
  2616. return tag3;
  2617. }
  2618. public void setTag3(Double tag3) {
  2619. this.tag3 = tag3;
  2620. }
  2621. public Double getTag4() {
  2622. return tag4;
  2623. }
  2624. public void setTag4(Double tag4) {
  2625. this.tag4 = tag4;
  2626. }
  2627. public Double getTag5() {
  2628. return tag5;
  2629. }
  2630. public void setTag5(Double tag5) {
  2631. this.tag5 = tag5;
  2632. }
  2633. public Double getTag6() {
  2634. return tag6;
  2635. }
  2636. public void setTag6(Double tag6) {
  2637. this.tag6 = tag6;
  2638. }
  2639. public Double getTag7() {
  2640. return tag7;
  2641. }
  2642. public void setTag7(Double tag7) {
  2643. this.tag7 = tag7;
  2644. }
  2645. public Double getTag8() {
  2646. return tag8;
  2647. }
  2648. public void setTag8(Double tag8) {
  2649. this.tag8 = tag8;
  2650. }
  2651. public Double getTag9() {
  2652. return tag9;
  2653. }
  2654. public void setTag9(Double tag9) {
  2655. this.tag9 = tag9;
  2656. }
  2657. public Double getTag10() {
  2658. return tag10;
  2659. }
  2660. public void setTag10(Double tag10) {
  2661. this.tag10 = tag10;
  2662. }
  2663. public Double getTag11() {
  2664. return tag11;
  2665. }
  2666. public void setTag11(Double tag11) {
  2667. this.tag11 = tag11;
  2668. }
  2669. public Double getTag12() {
  2670. return tag12;
  2671. }
  2672. public void setTag12(Double tag12) {
  2673. this.tag12 = tag12;
  2674. }
  2675. public Double getTag13() {
  2676. return tag13;
  2677. }
  2678. public void setTag13(Double tag13) {
  2679. this.tag13 = tag13;
  2680. }
  2681. public Double getTag14() {
  2682. return tag14;
  2683. }
  2684. public void setTag14(Double tag14) {
  2685. this.tag14 = tag14;
  2686. }
  2687. public Double getTag15() {
  2688. return tag15;
  2689. }
  2690. public void setTag15(Double tag15) {
  2691. this.tag15 = tag15;
  2692. }
  2693. public Double getTag16() {
  2694. return tag16;
  2695. }
  2696. public void setTag16(Double tag16) {
  2697. this.tag16 = tag16;
  2698. }
  2699. public Double getTag17() {
  2700. return tag17;
  2701. }
  2702. public void setTag17(Double tag17) {
  2703. this.tag17 = tag17;
  2704. }
  2705. public Double getTag18() {
  2706. return tag18;
  2707. }
  2708. public void setTag18(Double tag18) {
  2709. this.tag18 = tag18;
  2710. }
  2711. public Double getTag19() {
  2712. return tag19;
  2713. }
  2714. public void setTag19(Double tag19) {
  2715. this.tag19 = tag19;
  2716. }
  2717. public Double getTag20() {
  2718. return tag20;
  2719. }
  2720. public void setTag20(Double tag20) {
  2721. this.tag20 = tag20;
  2722. }
  2723. public Double getTag21() {
  2724. return tag21;
  2725. }
  2726. public void setTag21(Double tag21) {
  2727. this.tag21 = tag21;
  2728. }
  2729. public Double getTag22() {
  2730. return tag22;
  2731. }
  2732. public void setTag22(Double tag22) {
  2733. this.tag22 = tag22;
  2734. }
  2735. public Double getTag23() {
  2736. return tag23;
  2737. }
  2738. public void setTag23(Double tag23) {
  2739. this.tag23 = tag23;
  2740. }
  2741. public Double getTag24() {
  2742. return tag24;
  2743. }
  2744. public void setTag24(Double tag24) {
  2745. this.tag24 = tag24;
  2746. }
  2747. public Double getTag25() {
  2748. return tag25;
  2749. }
  2750. public void setTag25(Double tag25) {
  2751. this.tag25 = tag25;
  2752. }
  2753. public Double getTag26() {
  2754. return tag26;
  2755. }
  2756. public void setTag26(Double tag26) {
  2757. this.tag26 = tag26;
  2758. }
  2759. public Double getTag27() {
  2760. return tag27;
  2761. }
  2762. public void setTag27(Double tag27) {
  2763. this.tag27 = tag27;
  2764. }
  2765. public Double getTag28() {
  2766. return tag28;
  2767. }
  2768. public void setTag28(Double tag28) {
  2769. this.tag28 = tag28;
  2770. }
  2771. public Double getTag29() {
  2772. return tag29;
  2773. }
  2774. public void setTag29(Double tag29) {
  2775. this.tag29 = tag29;
  2776. }
  2777. public Double getTag30() {
  2778. return tag30;
  2779. }
  2780. public void setTag30(Double tag30) {
  2781. this.tag30 = tag30;
  2782. }
  2783. public Double getTag31() {
  2784. return tag31;
  2785. }
  2786. public void setTag31(Double tag31) {
  2787. this.tag31 = tag31;
  2788. }
  2789. public Double getTag32() {
  2790. return tag32;
  2791. }
  2792. public void setTag32(Double tag32) {
  2793. this.tag32 = tag32;
  2794. }
  2795. public Double getTag33() {
  2796. return tag33;
  2797. }
  2798. public void setTag33(Double tag33) {
  2799. this.tag33 = tag33;
  2800. }
  2801. public Double getTag34() {
  2802. return tag34;
  2803. }
  2804. public void setTag34(Double tag34) {
  2805. this.tag34 = tag34;
  2806. }
  2807. public Double getTag35() {
  2808. return tag35;
  2809. }
  2810. public void setTag35(Double tag35) {
  2811. this.tag35 = tag35;
  2812. }
  2813. public Double getTag36() {
  2814. return tag36;
  2815. }
  2816. public void setTag36(Double tag36) {
  2817. this.tag36 = tag36;
  2818. }
  2819. public Double getTag37() {
  2820. return tag37;
  2821. }
  2822. public void setTag37(Double tag37) {
  2823. this.tag37 = tag37;
  2824. }
  2825. public Double getTag38() {
  2826. return tag38;
  2827. }
  2828. public void setTag38(Double tag38) {
  2829. this.tag38 = tag38;
  2830. }
  2831. public Double getTag39() {
  2832. return tag39;
  2833. }
  2834. public void setTag39(Double tag39) {
  2835. this.tag39 = tag39;
  2836. }
  2837. public Double getTag40() {
  2838. return tag40;
  2839. }
  2840. public void setTag40(Double tag40) {
  2841. this.tag40 = tag40;
  2842. }
  2843. public Double getTag41() {
  2844. return tag41;
  2845. }
  2846. public void setTag41(Double tag41) {
  2847. this.tag41 = tag41;
  2848. }
  2849. public Double getTag42() {
  2850. return tag42;
  2851. }
  2852. public void setTag42(Double tag42) {
  2853. this.tag42 = tag42;
  2854. }
  2855. public Double getTag43() {
  2856. return tag43;
  2857. }
  2858. public void setTag43(Double tag43) {
  2859. this.tag43 = tag43;
  2860. }
  2861. public Double getTag44() {
  2862. return tag44;
  2863. }
  2864. public void setTag44(Double tag44) {
  2865. this.tag44 = tag44;
  2866. }
  2867. public Double getTag45() {
  2868. return tag45;
  2869. }
  2870. public void setTag45(Double tag45) {
  2871. this.tag45 = tag45;
  2872. }
  2873. public Double getTag46() {
  2874. return tag46;
  2875. }
  2876. public void setTag46(Double tag46) {
  2877. this.tag46 = tag46;
  2878. }
  2879. public Double getTag47() {
  2880. return tag47;
  2881. }
  2882. public void setTag47(Double tag47) {
  2883. this.tag47 = tag47;
  2884. }
  2885. public Double getTag48() {
  2886. return tag48;
  2887. }
  2888. public void setTag48(Double tag48) {
  2889. this.tag48 = tag48;
  2890. }
  2891. public Double getTag49() {
  2892. return tag49;
  2893. }
  2894. public void setTag49(Double tag49) {
  2895. this.tag49 = tag49;
  2896. }
  2897. public Double getTag50() {
  2898. return tag50;
  2899. }
  2900. public void setTag50(Double tag50) {
  2901. this.tag50 = tag50;
  2902. }
  2903. public Double getTag51() {
  2904. return tag51;
  2905. }
  2906. public void setTag51(Double tag51) {
  2907. this.tag51 = tag51;
  2908. }
  2909. public Double getTag52() {
  2910. return tag52;
  2911. }
  2912. public void setTag52(Double tag52) {
  2913. this.tag52 = tag52;
  2914. }
  2915. public Double getTag53() {
  2916. return tag53;
  2917. }
  2918. public void setTag53(Double tag53) {
  2919. this.tag53 = tag53;
  2920. }
  2921. public Double getTag54() {
  2922. return tag54;
  2923. }
  2924. public void setTag54(Double tag54) {
  2925. this.tag54 = tag54;
  2926. }
  2927. public Double getTag55() {
  2928. return tag55;
  2929. }
  2930. public void setTag55(Double tag55) {
  2931. this.tag55 = tag55;
  2932. }
  2933. public Double getTag56() {
  2934. return tag56;
  2935. }
  2936. public void setTag56(Double tag56) {
  2937. this.tag56 = tag56;
  2938. }
  2939. public Double getTag57() {
  2940. return tag57;
  2941. }
  2942. public void setTag57(Double tag57) {
  2943. this.tag57 = tag57;
  2944. }
  2945. public Double getTag58() {
  2946. return tag58;
  2947. }
  2948. public void setTag58(Double tag58) {
  2949. this.tag58 = tag58;
  2950. }
  2951. public Double getTag59() {
  2952. return tag59;
  2953. }
  2954. public void setTag59(Double tag59) {
  2955. this.tag59 = tag59;
  2956. }
  2957. public Double getTag60() {
  2958. return tag60;
  2959. }
  2960. public void setTag60(Double tag60) {
  2961. this.tag60 = tag60;
  2962. }
  2963. public Double getTag61() {
  2964. return tag61;
  2965. }
  2966. public void setTag61(Double tag61) {
  2967. this.tag61 = tag61;
  2968. }
  2969. public Double getTag62() {
  2970. return tag62;
  2971. }
  2972. public void setTag62(Double tag62) {
  2973. this.tag62 = tag62;
  2974. }
  2975. public Double getTag63() {
  2976. return tag63;
  2977. }
  2978. public void setTag63(Double tag63) {
  2979. this.tag63 = tag63;
  2980. }
  2981. public Double getTag64() {
  2982. return tag64;
  2983. }
  2984. public void setTag64(Double tag64) {
  2985. this.tag64 = tag64;
  2986. }
  2987. public Double getTag65() {
  2988. return tag65;
  2989. }
  2990. public void setTag65(Double tag65) {
  2991. this.tag65 = tag65;
  2992. }
  2993. public Double getTag66() {
  2994. return tag66;
  2995. }
  2996. public void setTag66(Double tag66) {
  2997. this.tag66 = tag66;
  2998. }
  2999. public Double getTag67() {
  3000. return tag67;
  3001. }
  3002. public void setTag67(Double tag67) {
  3003. this.tag67 = tag67;
  3004. }
  3005. public Double getTag68() {
  3006. return tag68;
  3007. }
  3008. public void setTag68(Double tag68) {
  3009. this.tag68 = tag68;
  3010. }
  3011. public Double getTag69() {
  3012. return tag69;
  3013. }
  3014. public void setTag69(Double tag69) {
  3015. this.tag69 = tag69;
  3016. }
  3017. public Double getTag70() {
  3018. return tag70;
  3019. }
  3020. public void setTag70(Double tag70) {
  3021. this.tag70 = tag70;
  3022. }
  3023. public Double getTag71() {
  3024. return tag71;
  3025. }
  3026. public void setTag71(Double tag71) {
  3027. this.tag71 = tag71;
  3028. }
  3029. public Double getTag72() {
  3030. return tag72;
  3031. }
  3032. public void setTag72(Double tag72) {
  3033. this.tag72 = tag72;
  3034. }
  3035. public Double getTag73() {
  3036. return tag73;
  3037. }
  3038. public void setTag73(Double tag73) {
  3039. this.tag73 = tag73;
  3040. }
  3041. public Double getTag74() {
  3042. return tag74;
  3043. }
  3044. public void setTag74(Double tag74) {
  3045. this.tag74 = tag74;
  3046. }
  3047. public Double getTag75() {
  3048. return tag75;
  3049. }
  3050. public void setTag75(Double tag75) {
  3051. this.tag75 = tag75;
  3052. }
  3053. public Double getTag76() {
  3054. return tag76;
  3055. }
  3056. public void setTag76(Double tag76) {
  3057. this.tag76 = tag76;
  3058. }
  3059. public Double getTag77() {
  3060. return tag77;
  3061. }
  3062. public void setTag77(Double tag77) {
  3063. this.tag77 = tag77;
  3064. }
  3065. public Double getTag78() {
  3066. return tag78;
  3067. }
  3068. public void setTag78(Double tag78) {
  3069. this.tag78 = tag78;
  3070. }
  3071. public Double getTag79() {
  3072. return tag79;
  3073. }
  3074. public void setTag79(Double tag79) {
  3075. this.tag79 = tag79;
  3076. }
  3077. public Double getTag80() {
  3078. return tag80;
  3079. }
  3080. public void setTag80(Double tag80) {
  3081. this.tag80 = tag80;
  3082. }
  3083. public Double getTag81() {
  3084. return tag81;
  3085. }
  3086. public void setTag81(Double tag81) {
  3087. this.tag81 = tag81;
  3088. }
  3089. public Double getTag82() {
  3090. return tag82;
  3091. }
  3092. public void setTag82(Double tag82) {
  3093. this.tag82 = tag82;
  3094. }
  3095. public Double getTag83() {
  3096. return tag83;
  3097. }
  3098. public void setTag83(Double tag83) {
  3099. this.tag83 = tag83;
  3100. }
  3101. public Double getTag84() {
  3102. return tag84;
  3103. }
  3104. public void setTag84(Double tag84) {
  3105. this.tag84 = tag84;
  3106. }
  3107. public Double getTag85() {
  3108. return tag85;
  3109. }
  3110. public void setTag85(Double tag85) {
  3111. this.tag85 = tag85;
  3112. }
  3113. public Double getTag86() {
  3114. return tag86;
  3115. }
  3116. public void setTag86(Double tag86) {
  3117. this.tag86 = tag86;
  3118. }
  3119. public Double getTag87() {
  3120. return tag87;
  3121. }
  3122. public void setTag87(Double tag87) {
  3123. this.tag87 = tag87;
  3124. }
  3125. public Double getTag88() {
  3126. return tag88;
  3127. }
  3128. public void setTag88(Double tag88) {
  3129. this.tag88 = tag88;
  3130. }
  3131. public Double getTag89() {
  3132. return tag89;
  3133. }
  3134. public void setTag89(Double tag89) {
  3135. this.tag89 = tag89;
  3136. }
  3137. public Double getTag90() {
  3138. return tag90;
  3139. }
  3140. public void setTag90(Double tag90) {
  3141. this.tag90 = tag90;
  3142. }
  3143. public Double getTag91() {
  3144. return tag91;
  3145. }
  3146. public void setTag91(Double tag91) {
  3147. this.tag91 = tag91;
  3148. }
  3149. public Double getTag92() {
  3150. return tag92;
  3151. }
  3152. public void setTag92(Double tag92) {
  3153. this.tag92 = tag92;
  3154. }
  3155. public Double getTag93() {
  3156. return tag93;
  3157. }
  3158. public void setTag93(Double tag93) {
  3159. this.tag93 = tag93;
  3160. }
  3161. public Double getTag94() {
  3162. return tag94;
  3163. }
  3164. public void setTag94(Double tag94) {
  3165. this.tag94 = tag94;
  3166. }
  3167. public Double getTag95() {
  3168. return tag95;
  3169. }
  3170. public void setTag95(Double tag95) {
  3171. this.tag95 = tag95;
  3172. }
  3173. public Double getTag96() {
  3174. return tag96;
  3175. }
  3176. public void setTag96(Double tag96) {
  3177. this.tag96 = tag96;
  3178. }
  3179. public Double getTag97() {
  3180. return tag97;
  3181. }
  3182. public void setTag97(Double tag97) {
  3183. this.tag97 = tag97;
  3184. }
  3185. public Double getTag98() {
  3186. return tag98;
  3187. }
  3188. public void setTag98(Double tag98) {
  3189. this.tag98 = tag98;
  3190. }
  3191. public Double getTag99() {
  3192. return tag99;
  3193. }
  3194. public void setTag99(Double tag99) {
  3195. this.tag99 = tag99;
  3196. }
  3197. public Double getTag100() {
  3198. return tag100;
  3199. }
  3200. public void setTag100(Double tag100) {
  3201. this.tag100 = tag100;
  3202. }
  3203. public Double getTag101() {
  3204. return tag101;
  3205. }
  3206. public void setTag101(Double tag101) {
  3207. this.tag101 = tag101;
  3208. }
  3209. public Double getTag102() {
  3210. return tag102;
  3211. }
  3212. public void setTag102(Double tag102) {
  3213. this.tag102 = tag102;
  3214. }
  3215. public Double getTag103() {
  3216. return tag103;
  3217. }
  3218. public void setTag103(Double tag103) {
  3219. this.tag103 = tag103;
  3220. }
  3221. public Double getTag104() {
  3222. return tag104;
  3223. }
  3224. public void setTag104(Double tag104) {
  3225. this.tag104 = tag104;
  3226. }
  3227. public Double getTag105() {
  3228. return tag105;
  3229. }
  3230. public void setTag105(Double tag105) {
  3231. this.tag105 = tag105;
  3232. }
  3233. public Double getTag106() {
  3234. return tag106;
  3235. }
  3236. public void setTag106(Double tag106) {
  3237. this.tag106 = tag106;
  3238. }
  3239. public Double getTag107() {
  3240. return tag107;
  3241. }
  3242. public void setTag107(Double tag107) {
  3243. this.tag107 = tag107;
  3244. }
  3245. public Double getTag108() {
  3246. return tag108;
  3247. }
  3248. public void setTag108(Double tag108) {
  3249. this.tag108 = tag108;
  3250. }
  3251. public Double getTag109() {
  3252. return tag109;
  3253. }
  3254. public void setTag109(Double tag109) {
  3255. this.tag109 = tag109;
  3256. }
  3257. public Double getTag110() {
  3258. return tag110;
  3259. }
  3260. public void setTag110(Double tag110) {
  3261. this.tag110 = tag110;
  3262. }
  3263. public Double getTag111() {
  3264. return tag111;
  3265. }
  3266. public void setTag111(Double tag111) {
  3267. this.tag111 = tag111;
  3268. }
  3269. public Double getTag112() {
  3270. return tag112;
  3271. }
  3272. public void setTag112(Double tag112) {
  3273. this.tag112 = tag112;
  3274. }
  3275. public Double getTag113() {
  3276. return tag113;
  3277. }
  3278. public void setTag113(Double tag113) {
  3279. this.tag113 = tag113;
  3280. }
  3281. public Double getTag114() {
  3282. return tag114;
  3283. }
  3284. public void setTag114(Double tag114) {
  3285. this.tag114 = tag114;
  3286. }
  3287. public Double getTag115() {
  3288. return tag115;
  3289. }
  3290. public void setTag115(Double tag115) {
  3291. this.tag115 = tag115;
  3292. }
  3293. public Double getTag116() {
  3294. return tag116;
  3295. }
  3296. public void setTag116(Double tag116) {
  3297. this.tag116 = tag116;
  3298. }
  3299. public Double getTag117() {
  3300. return tag117;
  3301. }
  3302. public void setTag117(Double tag117) {
  3303. this.tag117 = tag117;
  3304. }
  3305. public Double getTag118() {
  3306. return tag118;
  3307. }
  3308. public void setTag118(Double tag118) {
  3309. this.tag118 = tag118;
  3310. }
  3311. public Double getTag119() {
  3312. return tag119;
  3313. }
  3314. public void setTag119(Double tag119) {
  3315. this.tag119 = tag119;
  3316. }
  3317. public Double getTag120() {
  3318. return tag120;
  3319. }
  3320. public void setTag120(Double tag120) {
  3321. this.tag120 = tag120;
  3322. }
  3323. public Double getTag121() {
  3324. return tag121;
  3325. }
  3326. public void setTag121(Double tag121) {
  3327. this.tag121 = tag121;
  3328. }
  3329. public Double getTag122() {
  3330. return tag122;
  3331. }
  3332. public void setTag122(Double tag122) {
  3333. this.tag122 = tag122;
  3334. }
  3335. public Double getTag123() {
  3336. return tag123;
  3337. }
  3338. public void setTag123(Double tag123) {
  3339. this.tag123 = tag123;
  3340. }
  3341. public Double getTag124() {
  3342. return tag124;
  3343. }
  3344. public void setTag124(Double tag124) {
  3345. this.tag124 = tag124;
  3346. }
  3347. public Double getTag125() {
  3348. return tag125;
  3349. }
  3350. public void setTag125(Double tag125) {
  3351. this.tag125 = tag125;
  3352. }
  3353. public Double getTag126() {
  3354. return tag126;
  3355. }
  3356. public void setTag126(Double tag126) {
  3357. this.tag126 = tag126;
  3358. }
  3359. public Double getTag127() {
  3360. return tag127;
  3361. }
  3362. public void setTag127(Double tag127) {
  3363. this.tag127 = tag127;
  3364. }
  3365. public Double getTag128() {
  3366. return tag128;
  3367. }
  3368. public void setTag128(Double tag128) {
  3369. this.tag128 = tag128;
  3370. }
  3371. public Double getTag129() {
  3372. return tag129;
  3373. }
  3374. public void setTag129(Double tag129) {
  3375. this.tag129 = tag129;
  3376. }
  3377. public Double getTag130() {
  3378. return tag130;
  3379. }
  3380. public void setTag130(Double tag130) {
  3381. this.tag130 = tag130;
  3382. }
  3383. public Double getTag131() {
  3384. return tag131;
  3385. }
  3386. public void setTag131(Double tag131) {
  3387. this.tag131 = tag131;
  3388. }
  3389. public Double getTag132() {
  3390. return tag132;
  3391. }
  3392. public void setTag132(Double tag132) {
  3393. this.tag132 = tag132;
  3394. }
  3395. public Double getTag133() {
  3396. return tag133;
  3397. }
  3398. public void setTag133(Double tag133) {
  3399. this.tag133 = tag133;
  3400. }
  3401. public Double getTag134() {
  3402. return tag134;
  3403. }
  3404. public void setTag134(Double tag134) {
  3405. this.tag134 = tag134;
  3406. }
  3407. public Double getTag135() {
  3408. return tag135;
  3409. }
  3410. public void setTag135(Double tag135) {
  3411. this.tag135 = tag135;
  3412. }
  3413. public Double getTag136() {
  3414. return tag136;
  3415. }
  3416. public void setTag136(Double tag136) {
  3417. this.tag136 = tag136;
  3418. }
  3419. public Double getTag137() {
  3420. return tag137;
  3421. }
  3422. public void setTag137(Double tag137) {
  3423. this.tag137 = tag137;
  3424. }
  3425. public Double getTag138() {
  3426. return tag138;
  3427. }
  3428. public void setTag138(Double tag138) {
  3429. this.tag138 = tag138;
  3430. }
  3431. public Double getTag139() {
  3432. return tag139;
  3433. }
  3434. public void setTag139(Double tag139) {
  3435. this.tag139 = tag139;
  3436. }
  3437. public Double getTag140() {
  3438. return tag140;
  3439. }
  3440. public void setTag140(Double tag140) {
  3441. this.tag140 = tag140;
  3442. }
  3443. public Double getTag141() {
  3444. return tag141;
  3445. }
  3446. public void setTag141(Double tag141) {
  3447. this.tag141 = tag141;
  3448. }
  3449. public Double getTag142() {
  3450. return tag142;
  3451. }
  3452. public void setTag142(Double tag142) {
  3453. this.tag142 = tag142;
  3454. }
  3455. public Double getTag143() {
  3456. return tag143;
  3457. }
  3458. public void setTag143(Double tag143) {
  3459. this.tag143 = tag143;
  3460. }
  3461. public Double getTag144() {
  3462. return tag144;
  3463. }
  3464. public void setTag144(Double tag144) {
  3465. this.tag144 = tag144;
  3466. }
  3467. public Double getTag145() {
  3468. return tag145;
  3469. }
  3470. public void setTag145(Double tag145) {
  3471. this.tag145 = tag145;
  3472. }
  3473. public Double getTag146() {
  3474. return tag146;
  3475. }
  3476. public void setTag146(Double tag146) {
  3477. this.tag146 = tag146;
  3478. }
  3479. public Double getTag147() {
  3480. return tag147;
  3481. }
  3482. public void setTag147(Double tag147) {
  3483. this.tag147 = tag147;
  3484. }
  3485. public Double getTag148() {
  3486. return tag148;
  3487. }
  3488. public void setTag148(Double tag148) {
  3489. this.tag148 = tag148;
  3490. }
  3491. public Double getTag149() {
  3492. return tag149;
  3493. }
  3494. public void setTag149(Double tag149) {
  3495. this.tag149 = tag149;
  3496. }
  3497. public Double getTag150() {
  3498. return tag150;
  3499. }
  3500. public void setTag150(Double tag150) {
  3501. this.tag150 = tag150;
  3502. }
  3503. public Double getTag151() {
  3504. return tag151;
  3505. }
  3506. public void setTag151(Double tag151) {
  3507. this.tag151 = tag151;
  3508. }
  3509. public Double getTag152() {
  3510. return tag152;
  3511. }
  3512. public void setTag152(Double tag152) {
  3513. this.tag152 = tag152;
  3514. }
  3515. public Double getTag153() {
  3516. return tag153;
  3517. }
  3518. public void setTag153(Double tag153) {
  3519. this.tag153 = tag153;
  3520. }
  3521. public Double getTag154() {
  3522. return tag154;
  3523. }
  3524. public void setTag154(Double tag154) {
  3525. this.tag154 = tag154;
  3526. }
  3527. public Double getTag155() {
  3528. return tag155;
  3529. }
  3530. public void setTag155(Double tag155) {
  3531. this.tag155 = tag155;
  3532. }
  3533. public Double getTag156() {
  3534. return tag156;
  3535. }
  3536. public void setTag156(Double tag156) {
  3537. this.tag156 = tag156;
  3538. }
  3539. public Double getTag157() {
  3540. return tag157;
  3541. }
  3542. public void setTag157(Double tag157) {
  3543. this.tag157 = tag157;
  3544. }
  3545. public Double getTag158() {
  3546. return tag158;
  3547. }
  3548. public void setTag158(Double tag158) {
  3549. this.tag158 = tag158;
  3550. }
  3551. public Double getTag159() {
  3552. return tag159;
  3553. }
  3554. public void setTag159(Double tag159) {
  3555. this.tag159 = tag159;
  3556. }
  3557. public Double getTag160() {
  3558. return tag160;
  3559. }
  3560. public void setTag160(Double tag160) {
  3561. this.tag160 = tag160;
  3562. }
  3563. public Double getTag161() {
  3564. return tag161;
  3565. }
  3566. public void setTag161(Double tag161) {
  3567. this.tag161 = tag161;
  3568. }
  3569. public Double getTag162() {
  3570. return tag162;
  3571. }
  3572. public void setTag162(Double tag162) {
  3573. this.tag162 = tag162;
  3574. }
  3575. public Double getTag163() {
  3576. return tag163;
  3577. }
  3578. public void setTag163(Double tag163) {
  3579. this.tag163 = tag163;
  3580. }
  3581. public Double getTag164() {
  3582. return tag164;
  3583. }
  3584. public void setTag164(Double tag164) {
  3585. this.tag164 = tag164;
  3586. }
  3587. public Double getTag165() {
  3588. return tag165;
  3589. }
  3590. public void setTag165(Double tag165) {
  3591. this.tag165 = tag165;
  3592. }
  3593. public Double getTag166() {
  3594. return tag166;
  3595. }
  3596. public void setTag166(Double tag166) {
  3597. this.tag166 = tag166;
  3598. }
  3599. public Double getTag167() {
  3600. return tag167;
  3601. }
  3602. public void setTag167(Double tag167) {
  3603. this.tag167 = tag167;
  3604. }
  3605. public Double getTag168() {
  3606. return tag168;
  3607. }
  3608. public void setTag168(Double tag168) {
  3609. this.tag168 = tag168;
  3610. }
  3611. public Double getTag169() {
  3612. return tag169;
  3613. }
  3614. public void setTag169(Double tag169) {
  3615. this.tag169 = tag169;
  3616. }
  3617. public Double getTag170() {
  3618. return tag170;
  3619. }
  3620. public void setTag170(Double tag170) {
  3621. this.tag170 = tag170;
  3622. }
  3623. public Double getTag171() {
  3624. return tag171;
  3625. }
  3626. public void setTag171(Double tag171) {
  3627. this.tag171 = tag171;
  3628. }
  3629. public Double getTag172() {
  3630. return tag172;
  3631. }
  3632. public void setTag172(Double tag172) {
  3633. this.tag172 = tag172;
  3634. }
  3635. public Double getTag173() {
  3636. return tag173;
  3637. }
  3638. public void setTag173(Double tag173) {
  3639. this.tag173 = tag173;
  3640. }
  3641. public Double getTag174() {
  3642. return tag174;
  3643. }
  3644. public void setTag174(Double tag174) {
  3645. this.tag174 = tag174;
  3646. }
  3647. public Double getTag175() {
  3648. return tag175;
  3649. }
  3650. public void setTag175(Double tag175) {
  3651. this.tag175 = tag175;
  3652. }
  3653. public Double getTag176() {
  3654. return tag176;
  3655. }
  3656. public void setTag176(Double tag176) {
  3657. this.tag176 = tag176;
  3658. }
  3659. public Double getTag177() {
  3660. return tag177;
  3661. }
  3662. public void setTag177(Double tag177) {
  3663. this.tag177 = tag177;
  3664. }
  3665. public Double getTag178() {
  3666. return tag178;
  3667. }
  3668. public void setTag178(Double tag178) {
  3669. this.tag178 = tag178;
  3670. }
  3671. public Double getTag179() {
  3672. return tag179;
  3673. }
  3674. public void setTag179(Double tag179) {
  3675. this.tag179 = tag179;
  3676. }
  3677. public Double getTag180() {
  3678. return tag180;
  3679. }
  3680. public void setTag180(Double tag180) {
  3681. this.tag180 = tag180;
  3682. }
  3683. public Double getTag181() {
  3684. return tag181;
  3685. }
  3686. public void setTag181(Double tag181) {
  3687. this.tag181 = tag181;
  3688. }
  3689. public Double getTag182() {
  3690. return tag182;
  3691. }
  3692. public void setTag182(Double tag182) {
  3693. this.tag182 = tag182;
  3694. }
  3695. public Double getTag183() {
  3696. return tag183;
  3697. }
  3698. public void setTag183(Double tag183) {
  3699. this.tag183 = tag183;
  3700. }
  3701. public Double getTag184() {
  3702. return tag184;
  3703. }
  3704. public void setTag184(Double tag184) {
  3705. this.tag184 = tag184;
  3706. }
  3707. public Double getTag185() {
  3708. return tag185;
  3709. }
  3710. public void setTag185(Double tag185) {
  3711. this.tag185 = tag185;
  3712. }
  3713. public Double getTag186() {
  3714. return tag186;
  3715. }
  3716. public void setTag186(Double tag186) {
  3717. this.tag186 = tag186;
  3718. }
  3719. public Double getTag187() {
  3720. return tag187;
  3721. }
  3722. public void setTag187(Double tag187) {
  3723. this.tag187 = tag187;
  3724. }
  3725. public Double getTag188() {
  3726. return tag188;
  3727. }
  3728. public void setTag188(Double tag188) {
  3729. this.tag188 = tag188;
  3730. }
  3731. public Double getTag189() {
  3732. return tag189;
  3733. }
  3734. public void setTag189(Double tag189) {
  3735. this.tag189 = tag189;
  3736. }
  3737. public Double getTag190() {
  3738. return tag190;
  3739. }
  3740. public void setTag190(Double tag190) {
  3741. this.tag190 = tag190;
  3742. }
  3743. public Double getTag191() {
  3744. return tag191;
  3745. }
  3746. public void setTag191(Double tag191) {
  3747. this.tag191 = tag191;
  3748. }
  3749. public Double getTag192() {
  3750. return tag192;
  3751. }
  3752. public void setTag192(Double tag192) {
  3753. this.tag192 = tag192;
  3754. }
  3755. public Double getTag193() {
  3756. return tag193;
  3757. }
  3758. public void setTag193(Double tag193) {
  3759. this.tag193 = tag193;
  3760. }
  3761. public Double getTag194() {
  3762. return tag194;
  3763. }
  3764. public void setTag194(Double tag194) {
  3765. this.tag194 = tag194;
  3766. }
  3767. public Double getTag195() {
  3768. return tag195;
  3769. }
  3770. public void setTag195(Double tag195) {
  3771. this.tag195 = tag195;
  3772. }
  3773. public Double getTag196() {
  3774. return tag196;
  3775. }
  3776. public void setTag196(Double tag196) {
  3777. this.tag196 = tag196;
  3778. }
  3779. public Double getTag197() {
  3780. return tag197;
  3781. }
  3782. public void setTag197(Double tag197) {
  3783. this.tag197 = tag197;
  3784. }
  3785. public Double getTag198() {
  3786. return tag198;
  3787. }
  3788. public void setTag198(Double tag198) {
  3789. this.tag198 = tag198;
  3790. }
  3791. public Double getTag199() {
  3792. return tag199;
  3793. }
  3794. public void setTag199(Double tag199) {
  3795. this.tag199 = tag199;
  3796. }
  3797. public Double getTag200() {
  3798. return tag200;
  3799. }
  3800. public void setTag200(Double tag200) {
  3801. this.tag200 = tag200;
  3802. }
  3803. public Double getTag201() {
  3804. return tag201;
  3805. }
  3806. public void setTag201(Double tag201) {
  3807. this.tag201 = tag201;
  3808. }
  3809. public Double getTag202() {
  3810. return tag202;
  3811. }
  3812. public void setTag202(Double tag202) {
  3813. this.tag202 = tag202;
  3814. }
  3815. public Double getTag203() {
  3816. return tag203;
  3817. }
  3818. public void setTag203(Double tag203) {
  3819. this.tag203 = tag203;
  3820. }
  3821. public Double getTag204() {
  3822. return tag204;
  3823. }
  3824. public void setTag204(Double tag204) {
  3825. this.tag204 = tag204;
  3826. }
  3827. public Double getTag205() {
  3828. return tag205;
  3829. }
  3830. public void setTag205(Double tag205) {
  3831. this.tag205 = tag205;
  3832. }
  3833. public Double getTag206() {
  3834. return tag206;
  3835. }
  3836. public void setTag206(Double tag206) {
  3837. this.tag206 = tag206;
  3838. }
  3839. public Double getTag207() {
  3840. return tag207;
  3841. }
  3842. public void setTag207(Double tag207) {
  3843. this.tag207 = tag207;
  3844. }
  3845. public Double getTag208() {
  3846. return tag208;
  3847. }
  3848. public void setTag208(Double tag208) {
  3849. this.tag208 = tag208;
  3850. }
  3851. public Double getTag209() {
  3852. return tag209;
  3853. }
  3854. public void setTag209(Double tag209) {
  3855. this.tag209 = tag209;
  3856. }
  3857. public Double getTag210() {
  3858. return tag210;
  3859. }
  3860. public void setTag210(Double tag210) {
  3861. this.tag210 = tag210;
  3862. }
  3863. public Double getTag211() {
  3864. return tag211;
  3865. }
  3866. public void setTag211(Double tag211) {
  3867. this.tag211 = tag211;
  3868. }
  3869. public Double getTag212() {
  3870. return tag212;
  3871. }
  3872. public void setTag212(Double tag212) {
  3873. this.tag212 = tag212;
  3874. }
  3875. public Double getTag213() {
  3876. return tag213;
  3877. }
  3878. public void setTag213(Double tag213) {
  3879. this.tag213 = tag213;
  3880. }
  3881. public Double getTag214() {
  3882. return tag214;
  3883. }
  3884. public void setTag214(Double tag214) {
  3885. this.tag214 = tag214;
  3886. }
  3887. public Double getTag215() {
  3888. return tag215;
  3889. }
  3890. public void setTag215(Double tag215) {
  3891. this.tag215 = tag215;
  3892. }
  3893. public Double getTag216() {
  3894. return tag216;
  3895. }
  3896. public void setTag216(Double tag216) {
  3897. this.tag216 = tag216;
  3898. }
  3899. public Double getTag217() {
  3900. return tag217;
  3901. }
  3902. public void setTag217(Double tag217) {
  3903. this.tag217 = tag217;
  3904. }
  3905. public Double getTag218() {
  3906. return tag218;
  3907. }
  3908. public void setTag218(Double tag218) {
  3909. this.tag218 = tag218;
  3910. }
  3911. public Double getTag219() {
  3912. return tag219;
  3913. }
  3914. public void setTag219(Double tag219) {
  3915. this.tag219 = tag219;
  3916. }
  3917. public Double getTag220() {
  3918. return tag220;
  3919. }
  3920. public void setTag220(Double tag220) {
  3921. this.tag220 = tag220;
  3922. }
  3923. public Double getTag221() {
  3924. return tag221;
  3925. }
  3926. public void setTag221(Double tag221) {
  3927. this.tag221 = tag221;
  3928. }
  3929. public Double getTag222() {
  3930. return tag222;
  3931. }
  3932. public void setTag222(Double tag222) {
  3933. this.tag222 = tag222;
  3934. }
  3935. public Double getTag223() {
  3936. return tag223;
  3937. }
  3938. public void setTag223(Double tag223) {
  3939. this.tag223 = tag223;
  3940. }
  3941. public Double getTag224() {
  3942. return tag224;
  3943. }
  3944. public void setTag224(Double tag224) {
  3945. this.tag224 = tag224;
  3946. }
  3947. public Double getTag225() {
  3948. return tag225;
  3949. }
  3950. public void setTag225(Double tag225) {
  3951. this.tag225 = tag225;
  3952. }
  3953. public Double getTag226() {
  3954. return tag226;
  3955. }
  3956. public void setTag226(Double tag226) {
  3957. this.tag226 = tag226;
  3958. }
  3959. public Double getTag227() {
  3960. return tag227;
  3961. }
  3962. public void setTag227(Double tag227) {
  3963. this.tag227 = tag227;
  3964. }
  3965. public Double getTag228() {
  3966. return tag228;
  3967. }
  3968. public void setTag228(Double tag228) {
  3969. this.tag228 = tag228;
  3970. }
  3971. public Double getTag229() {
  3972. return tag229;
  3973. }
  3974. public void setTag229(Double tag229) {
  3975. this.tag229 = tag229;
  3976. }
  3977. public Double getTag230() {
  3978. return tag230;
  3979. }
  3980. public void setTag230(Double tag230) {
  3981. this.tag230 = tag230;
  3982. }
  3983. public Double getTag231() {
  3984. return tag231;
  3985. }
  3986. public void setTag231(Double tag231) {
  3987. this.tag231 = tag231;
  3988. }
  3989. public Double getTag232() {
  3990. return tag232;
  3991. }
  3992. public void setTag232(Double tag232) {
  3993. this.tag232 = tag232;
  3994. }
  3995. public Double getTag233() {
  3996. return tag233;
  3997. }
  3998. public void setTag233(Double tag233) {
  3999. this.tag233 = tag233;
  4000. }
  4001. public Double getTag234() {
  4002. return tag234;
  4003. }
  4004. public void setTag234(Double tag234) {
  4005. this.tag234 = tag234;
  4006. }
  4007. public Double getTag235() {
  4008. return tag235;
  4009. }
  4010. public void setTag235(Double tag235) {
  4011. this.tag235 = tag235;
  4012. }
  4013. public Double getTag236() {
  4014. return tag236;
  4015. }
  4016. public void setTag236(Double tag236) {
  4017. this.tag236 = tag236;
  4018. }
  4019. public Double getTag237() {
  4020. return tag237;
  4021. }
  4022. public void setTag237(Double tag237) {
  4023. this.tag237 = tag237;
  4024. }
  4025. public Double getTag238() {
  4026. return tag238;
  4027. }
  4028. public void setTag238(Double tag238) {
  4029. this.tag238 = tag238;
  4030. }
  4031. public Double getTag239() {
  4032. return tag239;
  4033. }
  4034. public void setTag239(Double tag239) {
  4035. this.tag239 = tag239;
  4036. }
  4037. public Double getTag240() {
  4038. return tag240;
  4039. }
  4040. public void setTag240(Double tag240) {
  4041. this.tag240 = tag240;
  4042. }
  4043. public Double getTag241() {
  4044. return tag241;
  4045. }
  4046. public void setTag241(Double tag241) {
  4047. this.tag241 = tag241;
  4048. }
  4049. public Double getTag242() {
  4050. return tag242;
  4051. }
  4052. public void setTag242(Double tag242) {
  4053. this.tag242 = tag242;
  4054. }
  4055. public Double getTag243() {
  4056. return tag243;
  4057. }
  4058. public void setTag243(Double tag243) {
  4059. this.tag243 = tag243;
  4060. }
  4061. public Double getTag244() {
  4062. return tag244;
  4063. }
  4064. public void setTag244(Double tag244) {
  4065. this.tag244 = tag244;
  4066. }
  4067. public Double getTag245() {
  4068. return tag245;
  4069. }
  4070. public void setTag245(Double tag245) {
  4071. this.tag245 = tag245;
  4072. }
  4073. public Double getTag246() {
  4074. return tag246;
  4075. }
  4076. public void setTag246(Double tag246) {
  4077. this.tag246 = tag246;
  4078. }
  4079. public Double getTag247() {
  4080. return tag247;
  4081. }
  4082. public void setTag247(Double tag247) {
  4083. this.tag247 = tag247;
  4084. }
  4085. public Double getTag248() {
  4086. return tag248;
  4087. }
  4088. public void setTag248(Double tag248) {
  4089. this.tag248 = tag248;
  4090. }
  4091. public Double getTag249() {
  4092. return tag249;
  4093. }
  4094. public void setTag249(Double tag249) {
  4095. this.tag249 = tag249;
  4096. }
  4097. public Double getTag250() {
  4098. return tag250;
  4099. }
  4100. public void setTag250(Double tag250) {
  4101. this.tag250 = tag250;
  4102. }
  4103. public Double getTag251() {
  4104. return tag251;
  4105. }
  4106. public void setTag251(Double tag251) {
  4107. this.tag251 = tag251;
  4108. }
  4109. public Double getTag252() {
  4110. return tag252;
  4111. }
  4112. public void setTag252(Double tag252) {
  4113. this.tag252 = tag252;
  4114. }
  4115. public Double getTag253() {
  4116. return tag253;
  4117. }
  4118. public void setTag253(Double tag253) {
  4119. this.tag253 = tag253;
  4120. }
  4121. public Double getTag254() {
  4122. return tag254;
  4123. }
  4124. public void setTag254(Double tag254) {
  4125. this.tag254 = tag254;
  4126. }
  4127. public Double getTag255() {
  4128. return tag255;
  4129. }
  4130. public void setTag255(Double tag255) {
  4131. this.tag255 = tag255;
  4132. }
  4133. public Double getTag256() {
  4134. return tag256;
  4135. }
  4136. public void setTag256(Double tag256) {
  4137. this.tag256 = tag256;
  4138. }
  4139. public Double getTag257() {
  4140. return tag257;
  4141. }
  4142. public void setTag257(Double tag257) {
  4143. this.tag257 = tag257;
  4144. }
  4145. public Double getTag258() {
  4146. return tag258;
  4147. }
  4148. public void setTag258(Double tag258) {
  4149. this.tag258 = tag258;
  4150. }
  4151. public Double getTag259() {
  4152. return tag259;
  4153. }
  4154. public void setTag259(Double tag259) {
  4155. this.tag259 = tag259;
  4156. }
  4157. public Double getTag260() {
  4158. return tag260;
  4159. }
  4160. public void setTag260(Double tag260) {
  4161. this.tag260 = tag260;
  4162. }
  4163. public Double getTag261() {
  4164. return tag261;
  4165. }
  4166. public void setTag261(Double tag261) {
  4167. this.tag261 = tag261;
  4168. }
  4169. public Double getTag262() {
  4170. return tag262;
  4171. }
  4172. public void setTag262(Double tag262) {
  4173. this.tag262 = tag262;
  4174. }
  4175. public Double getTag263() {
  4176. return tag263;
  4177. }
  4178. public void setTag263(Double tag263) {
  4179. this.tag263 = tag263;
  4180. }
  4181. public Double getTag264() {
  4182. return tag264;
  4183. }
  4184. public void setTag264(Double tag264) {
  4185. this.tag264 = tag264;
  4186. }
  4187. public Double getTag265() {
  4188. return tag265;
  4189. }
  4190. public void setTag265(Double tag265) {
  4191. this.tag265 = tag265;
  4192. }
  4193. public Double getTag266() {
  4194. return tag266;
  4195. }
  4196. public void setTag266(Double tag266) {
  4197. this.tag266 = tag266;
  4198. }
  4199. public Double getTag267() {
  4200. return tag267;
  4201. }
  4202. public void setTag267(Double tag267) {
  4203. this.tag267 = tag267;
  4204. }
  4205. public Double getTag268() {
  4206. return tag268;
  4207. }
  4208. public void setTag268(Double tag268) {
  4209. this.tag268 = tag268;
  4210. }
  4211. public Double getTag269() {
  4212. return tag269;
  4213. }
  4214. public void setTag269(Double tag269) {
  4215. this.tag269 = tag269;
  4216. }
  4217. public Double getTag270() {
  4218. return tag270;
  4219. }
  4220. public void setTag270(Double tag270) {
  4221. this.tag270 = tag270;
  4222. }
  4223. public Double getTag271() {
  4224. return tag271;
  4225. }
  4226. public void setTag271(Double tag271) {
  4227. this.tag271 = tag271;
  4228. }
  4229. public Double getTag272() {
  4230. return tag272;
  4231. }
  4232. public void setTag272(Double tag272) {
  4233. this.tag272 = tag272;
  4234. }
  4235. public Double getTag273() {
  4236. return tag273;
  4237. }
  4238. public void setTag273(Double tag273) {
  4239. this.tag273 = tag273;
  4240. }
  4241. public Double getTag274() {
  4242. return tag274;
  4243. }
  4244. public void setTag274(Double tag274) {
  4245. this.tag274 = tag274;
  4246. }
  4247. public Double getTag275() {
  4248. return tag275;
  4249. }
  4250. public void setTag275(Double tag275) {
  4251. this.tag275 = tag275;
  4252. }
  4253. public Double getTag276() {
  4254. return tag276;
  4255. }
  4256. public void setTag276(Double tag276) {
  4257. this.tag276 = tag276;
  4258. }
  4259. public Double getTag277() {
  4260. return tag277;
  4261. }
  4262. public void setTag277(Double tag277) {
  4263. this.tag277 = tag277;
  4264. }
  4265. public Double getTag278() {
  4266. return tag278;
  4267. }
  4268. public void setTag278(Double tag278) {
  4269. this.tag278 = tag278;
  4270. }
  4271. public Double getTag279() {
  4272. return tag279;
  4273. }
  4274. public void setTag279(Double tag279) {
  4275. this.tag279 = tag279;
  4276. }
  4277. public Double getTag280() {
  4278. return tag280;
  4279. }
  4280. public void setTag280(Double tag280) {
  4281. this.tag280 = tag280;
  4282. }
  4283. public Double getTag281() {
  4284. return tag281;
  4285. }
  4286. public void setTag281(Double tag281) {
  4287. this.tag281 = tag281;
  4288. }
  4289. public Double getTag282() {
  4290. return tag282;
  4291. }
  4292. public void setTag282(Double tag282) {
  4293. this.tag282 = tag282;
  4294. }
  4295. public Double getTag283() {
  4296. return tag283;
  4297. }
  4298. public void setTag283(Double tag283) {
  4299. this.tag283 = tag283;
  4300. }
  4301. public Double getTag284() {
  4302. return tag284;
  4303. }
  4304. public void setTag284(Double tag284) {
  4305. this.tag284 = tag284;
  4306. }
  4307. public Double getTag285() {
  4308. return tag285;
  4309. }
  4310. public void setTag285(Double tag285) {
  4311. this.tag285 = tag285;
  4312. }
  4313. public Double getTag286() {
  4314. return tag286;
  4315. }
  4316. public void setTag286(Double tag286) {
  4317. this.tag286 = tag286;
  4318. }
  4319. public Double getTag287() {
  4320. return tag287;
  4321. }
  4322. public void setTag287(Double tag287) {
  4323. this.tag287 = tag287;
  4324. }
  4325. public Double getTag288() {
  4326. return tag288;
  4327. }
  4328. public void setTag288(Double tag288) {
  4329. this.tag288 = tag288;
  4330. }
  4331. public Double getTag289() {
  4332. return tag289;
  4333. }
  4334. public void setTag289(Double tag289) {
  4335. this.tag289 = tag289;
  4336. }
  4337. public Double getTag290() {
  4338. return tag290;
  4339. }
  4340. public void setTag290(Double tag290) {
  4341. this.tag290 = tag290;
  4342. }
  4343. public Double getTag291() {
  4344. return tag291;
  4345. }
  4346. public void setTag291(Double tag291) {
  4347. this.tag291 = tag291;
  4348. }
  4349. public Double getTag292() {
  4350. return tag292;
  4351. }
  4352. public void setTag292(Double tag292) {
  4353. this.tag292 = tag292;
  4354. }
  4355. public Double getTag293() {
  4356. return tag293;
  4357. }
  4358. public void setTag293(Double tag293) {
  4359. this.tag293 = tag293;
  4360. }
  4361. public Double getTag294() {
  4362. return tag294;
  4363. }
  4364. public void setTag294(Double tag294) {
  4365. this.tag294 = tag294;
  4366. }
  4367. public Double getTag295() {
  4368. return tag295;
  4369. }
  4370. public void setTag295(Double tag295) {
  4371. this.tag295 = tag295;
  4372. }
  4373. public Double getTag296() {
  4374. return tag296;
  4375. }
  4376. public void setTag296(Double tag296) {
  4377. this.tag296 = tag296;
  4378. }
  4379. public Double getTag297() {
  4380. return tag297;
  4381. }
  4382. public void setTag297(Double tag297) {
  4383. this.tag297 = tag297;
  4384. }
  4385. public Double getTag298() {
  4386. return tag298;
  4387. }
  4388. public void setTag298(Double tag298) {
  4389. this.tag298 = tag298;
  4390. }
  4391. public Double getTag299() {
  4392. return tag299;
  4393. }
  4394. public void setTag299(Double tag299) {
  4395. this.tag299 = tag299;
  4396. }
  4397. public Double getTag300() {
  4398. return tag300;
  4399. }
  4400. public void setTag300(Double tag300) {
  4401. this.tag300 = tag300;
  4402. }
  4403. public Double getTag301() {
  4404. return tag301;
  4405. }
  4406. public void setTag301(Double tag301) {
  4407. this.tag301 = tag301;
  4408. }
  4409. public Double getTag302() {
  4410. return tag302;
  4411. }
  4412. public void setTag302(Double tag302) {
  4413. this.tag302 = tag302;
  4414. }
  4415. public Double getTag303() {
  4416. return tag303;
  4417. }
  4418. public void setTag303(Double tag303) {
  4419. this.tag303 = tag303;
  4420. }
  4421. public Double getTag304() {
  4422. return tag304;
  4423. }
  4424. public void setTag304(Double tag304) {
  4425. this.tag304 = tag304;
  4426. }
  4427. public Double getTag305() {
  4428. return tag305;
  4429. }
  4430. public void setTag305(Double tag305) {
  4431. this.tag305 = tag305;
  4432. }
  4433. public Double getTag306() {
  4434. return tag306;
  4435. }
  4436. public void setTag306(Double tag306) {
  4437. this.tag306 = tag306;
  4438. }
  4439. public Double getTag307() {
  4440. return tag307;
  4441. }
  4442. public void setTag307(Double tag307) {
  4443. this.tag307 = tag307;
  4444. }
  4445. public Double getTag308() {
  4446. return tag308;
  4447. }
  4448. public void setTag308(Double tag308) {
  4449. this.tag308 = tag308;
  4450. }
  4451. public Double getTag309() {
  4452. return tag309;
  4453. }
  4454. public void setTag309(Double tag309) {
  4455. this.tag309 = tag309;
  4456. }
  4457. public Double getTag310() {
  4458. return tag310;
  4459. }
  4460. public void setTag310(Double tag310) {
  4461. this.tag310 = tag310;
  4462. }
  4463. public Double getTag311() {
  4464. return tag311;
  4465. }
  4466. public void setTag311(Double tag311) {
  4467. this.tag311 = tag311;
  4468. }
  4469. public Double getTag312() {
  4470. return tag312;
  4471. }
  4472. public void setTag312(Double tag312) {
  4473. this.tag312 = tag312;
  4474. }
  4475. public Double getTag313() {
  4476. return tag313;
  4477. }
  4478. public void setTag313(Double tag313) {
  4479. this.tag313 = tag313;
  4480. }
  4481. public Double getTag314() {
  4482. return tag314;
  4483. }
  4484. public void setTag314(Double tag314) {
  4485. this.tag314 = tag314;
  4486. }
  4487. public Double getTag315() {
  4488. return tag315;
  4489. }
  4490. public void setTag315(Double tag315) {
  4491. this.tag315 = tag315;
  4492. }
  4493. public Double getTag316() {
  4494. return tag316;
  4495. }
  4496. public void setTag316(Double tag316) {
  4497. this.tag316 = tag316;
  4498. }
  4499. public Double getTag317() {
  4500. return tag317;
  4501. }
  4502. public void setTag317(Double tag317) {
  4503. this.tag317 = tag317;
  4504. }
  4505. public Double getTag318() {
  4506. return tag318;
  4507. }
  4508. public void setTag318(Double tag318) {
  4509. this.tag318 = tag318;
  4510. }
  4511. public Double getTag319() {
  4512. return tag319;
  4513. }
  4514. public void setTag319(Double tag319) {
  4515. this.tag319 = tag319;
  4516. }
  4517. public Double getTag320() {
  4518. return tag320;
  4519. }
  4520. public void setTag320(Double tag320) {
  4521. this.tag320 = tag320;
  4522. }
  4523. public Double getTag321() {
  4524. return tag321;
  4525. }
  4526. public void setTag321(Double tag321) {
  4527. this.tag321 = tag321;
  4528. }
  4529. public Double getTag322() {
  4530. return tag322;
  4531. }
  4532. public void setTag322(Double tag322) {
  4533. this.tag322 = tag322;
  4534. }
  4535. public Double getTag323() {
  4536. return tag323;
  4537. }
  4538. public void setTag323(Double tag323) {
  4539. this.tag323 = tag323;
  4540. }
  4541. public Double getTag324() {
  4542. return tag324;
  4543. }
  4544. public void setTag324(Double tag324) {
  4545. this.tag324 = tag324;
  4546. }
  4547. public Double getTag325() {
  4548. return tag325;
  4549. }
  4550. public void setTag325(Double tag325) {
  4551. this.tag325 = tag325;
  4552. }
  4553. public Double getTag326() {
  4554. return tag326;
  4555. }
  4556. public void setTag326(Double tag326) {
  4557. this.tag326 = tag326;
  4558. }
  4559. public Double getTag327() {
  4560. return tag327;
  4561. }
  4562. public void setTag327(Double tag327) {
  4563. this.tag327 = tag327;
  4564. }
  4565. public Double getTag328() {
  4566. return tag328;
  4567. }
  4568. public void setTag328(Double tag328) {
  4569. this.tag328 = tag328;
  4570. }
  4571. public Double getTag329() {
  4572. return tag329;
  4573. }
  4574. public void setTag329(Double tag329) {
  4575. this.tag329 = tag329;
  4576. }
  4577. public Double getTag330() {
  4578. return tag330;
  4579. }
  4580. public void setTag330(Double tag330) {
  4581. this.tag330 = tag330;
  4582. }
  4583. public Double getTag331() {
  4584. return tag331;
  4585. }
  4586. public void setTag331(Double tag331) {
  4587. this.tag331 = tag331;
  4588. }
  4589. public Double getTag332() {
  4590. return tag332;
  4591. }
  4592. public void setTag332(Double tag332) {
  4593. this.tag332 = tag332;
  4594. }
  4595. public Double getTag333() {
  4596. return tag333;
  4597. }
  4598. public void setTag333(Double tag333) {
  4599. this.tag333 = tag333;
  4600. }
  4601. public Double getTag334() {
  4602. return tag334;
  4603. }
  4604. public void setTag334(Double tag334) {
  4605. this.tag334 = tag334;
  4606. }
  4607. public Double getTag335() {
  4608. return tag335;
  4609. }
  4610. public void setTag335(Double tag335) {
  4611. this.tag335 = tag335;
  4612. }
  4613. public Double getTag336() {
  4614. return tag336;
  4615. }
  4616. public void setTag336(Double tag336) {
  4617. this.tag336 = tag336;
  4618. }
  4619. public Double getTag337() {
  4620. return tag337;
  4621. }
  4622. public void setTag337(Double tag337) {
  4623. this.tag337 = tag337;
  4624. }
  4625. public Double getTag338() {
  4626. return tag338;
  4627. }
  4628. public void setTag338(Double tag338) {
  4629. this.tag338 = tag338;
  4630. }
  4631. public Double getTag339() {
  4632. return tag339;
  4633. }
  4634. public void setTag339(Double tag339) {
  4635. this.tag339 = tag339;
  4636. }
  4637. public Double getTag340() {
  4638. return tag340;
  4639. }
  4640. public void setTag340(Double tag340) {
  4641. this.tag340 = tag340;
  4642. }
  4643. public Double getTag341() {
  4644. return tag341;
  4645. }
  4646. public void setTag341(Double tag341) {
  4647. this.tag341 = tag341;
  4648. }
  4649. public Double getTag342() {
  4650. return tag342;
  4651. }
  4652. public void setTag342(Double tag342) {
  4653. this.tag342 = tag342;
  4654. }
  4655. public Double getTag343() {
  4656. return tag343;
  4657. }
  4658. public void setTag343(Double tag343) {
  4659. this.tag343 = tag343;
  4660. }
  4661. public Double getTag344() {
  4662. return tag344;
  4663. }
  4664. public void setTag344(Double tag344) {
  4665. this.tag344 = tag344;
  4666. }
  4667. public Double getTag345() {
  4668. return tag345;
  4669. }
  4670. public void setTag345(Double tag345) {
  4671. this.tag345 = tag345;
  4672. }
  4673. public Double getTag346() {
  4674. return tag346;
  4675. }
  4676. public void setTag346(Double tag346) {
  4677. this.tag346 = tag346;
  4678. }
  4679. public Double getTag347() {
  4680. return tag347;
  4681. }
  4682. public void setTag347(Double tag347) {
  4683. this.tag347 = tag347;
  4684. }
  4685. public Double getTag348() {
  4686. return tag348;
  4687. }
  4688. public void setTag348(Double tag348) {
  4689. this.tag348 = tag348;
  4690. }
  4691. public Double getTag349() {
  4692. return tag349;
  4693. }
  4694. public void setTag349(Double tag349) {
  4695. this.tag349 = tag349;
  4696. }
  4697. public Double getTag350() {
  4698. return tag350;
  4699. }
  4700. public void setTag350(Double tag350) {
  4701. this.tag350 = tag350;
  4702. }
  4703. public Double getTag351() {
  4704. return tag351;
  4705. }
  4706. public void setTag351(Double tag351) {
  4707. this.tag351 = tag351;
  4708. }
  4709. public Double getTag352() {
  4710. return tag352;
  4711. }
  4712. public void setTag352(Double tag352) {
  4713. this.tag352 = tag352;
  4714. }
  4715. public Double getTag353() {
  4716. return tag353;
  4717. }
  4718. public void setTag353(Double tag353) {
  4719. this.tag353 = tag353;
  4720. }
  4721. public Double getTag354() {
  4722. return tag354;
  4723. }
  4724. public void setTag354(Double tag354) {
  4725. this.tag354 = tag354;
  4726. }
  4727. public Double getTag355() {
  4728. return tag355;
  4729. }
  4730. public void setTag355(Double tag355) {
  4731. this.tag355 = tag355;
  4732. }
  4733. public Double getTag356() {
  4734. return tag356;
  4735. }
  4736. public void setTag356(Double tag356) {
  4737. this.tag356 = tag356;
  4738. }
  4739. public Double getTag357() {
  4740. return tag357;
  4741. }
  4742. public void setTag357(Double tag357) {
  4743. this.tag357 = tag357;
  4744. }
  4745. public Double getTag358() {
  4746. return tag358;
  4747. }
  4748. public void setTag358(Double tag358) {
  4749. this.tag358 = tag358;
  4750. }
  4751. public Double getTag359() {
  4752. return tag359;
  4753. }
  4754. public void setTag359(Double tag359) {
  4755. this.tag359 = tag359;
  4756. }
  4757. public Double getTag360() {
  4758. return tag360;
  4759. }
  4760. public void setTag360(Double tag360) {
  4761. this.tag360 = tag360;
  4762. }
  4763. public Double getTag361() {
  4764. return tag361;
  4765. }
  4766. public void setTag361(Double tag361) {
  4767. this.tag361 = tag361;
  4768. }
  4769. public Double getTag362() {
  4770. return tag362;
  4771. }
  4772. public void setTag362(Double tag362) {
  4773. this.tag362 = tag362;
  4774. }
  4775. public Double getTag363() {
  4776. return tag363;
  4777. }
  4778. public void setTag363(Double tag363) {
  4779. this.tag363 = tag363;
  4780. }
  4781. public Double getTag364() {
  4782. return tag364;
  4783. }
  4784. public void setTag364(Double tag364) {
  4785. this.tag364 = tag364;
  4786. }
  4787. public Double getTag365() {
  4788. return tag365;
  4789. }
  4790. public void setTag365(Double tag365) {
  4791. this.tag365 = tag365;
  4792. }
  4793. public Double getTag366() {
  4794. return tag366;
  4795. }
  4796. public void setTag366(Double tag366) {
  4797. this.tag366 = tag366;
  4798. }
  4799. public Double getTag367() {
  4800. return tag367;
  4801. }
  4802. public void setTag367(Double tag367) {
  4803. this.tag367 = tag367;
  4804. }
  4805. public Double getTag368() {
  4806. return tag368;
  4807. }
  4808. public void setTag368(Double tag368) {
  4809. this.tag368 = tag368;
  4810. }
  4811. public Double getTag369() {
  4812. return tag369;
  4813. }
  4814. public void setTag369(Double tag369) {
  4815. this.tag369 = tag369;
  4816. }
  4817. public Double getTag370() {
  4818. return tag370;
  4819. }
  4820. public void setTag370(Double tag370) {
  4821. this.tag370 = tag370;
  4822. }
  4823. public Double getTag371() {
  4824. return tag371;
  4825. }
  4826. public void setTag371(Double tag371) {
  4827. this.tag371 = tag371;
  4828. }
  4829. public Double getTag372() {
  4830. return tag372;
  4831. }
  4832. public void setTag372(Double tag372) {
  4833. this.tag372 = tag372;
  4834. }
  4835. public Double getTag373() {
  4836. return tag373;
  4837. }
  4838. public void setTag373(Double tag373) {
  4839. this.tag373 = tag373;
  4840. }
  4841. public Double getTag374() {
  4842. return tag374;
  4843. }
  4844. public void setTag374(Double tag374) {
  4845. this.tag374 = tag374;
  4846. }
  4847. public Double getTag375() {
  4848. return tag375;
  4849. }
  4850. public void setTag375(Double tag375) {
  4851. this.tag375 = tag375;
  4852. }
  4853. public Double getTag376() {
  4854. return tag376;
  4855. }
  4856. public void setTag376(Double tag376) {
  4857. this.tag376 = tag376;
  4858. }
  4859. public Double getTag377() {
  4860. return tag377;
  4861. }
  4862. public void setTag377(Double tag377) {
  4863. this.tag377 = tag377;
  4864. }
  4865. public Double getTag378() {
  4866. return tag378;
  4867. }
  4868. public void setTag378(Double tag378) {
  4869. this.tag378 = tag378;
  4870. }
  4871. public Double getTag379() {
  4872. return tag379;
  4873. }
  4874. public void setTag379(Double tag379) {
  4875. this.tag379 = tag379;
  4876. }
  4877. public Double getTag380() {
  4878. return tag380;
  4879. }
  4880. public void setTag380(Double tag380) {
  4881. this.tag380 = tag380;
  4882. }
  4883. public Double getTag381() {
  4884. return tag381;
  4885. }
  4886. public void setTag381(Double tag381) {
  4887. this.tag381 = tag381;
  4888. }
  4889. public Double getTag382() {
  4890. return tag382;
  4891. }
  4892. public void setTag382(Double tag382) {
  4893. this.tag382 = tag382;
  4894. }
  4895. public Double getTag383() {
  4896. return tag383;
  4897. }
  4898. public void setTag383(Double tag383) {
  4899. this.tag383 = tag383;
  4900. }
  4901. public Double getTag384() {
  4902. return tag384;
  4903. }
  4904. public void setTag384(Double tag384) {
  4905. this.tag384 = tag384;
  4906. }
  4907. public Double getTag385() {
  4908. return tag385;
  4909. }
  4910. public void setTag385(Double tag385) {
  4911. this.tag385 = tag385;
  4912. }
  4913. public Double getTag386() {
  4914. return tag386;
  4915. }
  4916. public void setTag386(Double tag386) {
  4917. this.tag386 = tag386;
  4918. }
  4919. public Double getTag387() {
  4920. return tag387;
  4921. }
  4922. public void setTag387(Double tag387) {
  4923. this.tag387 = tag387;
  4924. }
  4925. public Double getTag388() {
  4926. return tag388;
  4927. }
  4928. public void setTag388(Double tag388) {
  4929. this.tag388 = tag388;
  4930. }
  4931. public Double getTag389() {
  4932. return tag389;
  4933. }
  4934. public void setTag389(Double tag389) {
  4935. this.tag389 = tag389;
  4936. }
  4937. public Double getTag390() {
  4938. return tag390;
  4939. }
  4940. public void setTag390(Double tag390) {
  4941. this.tag390 = tag390;
  4942. }
  4943. public Double getTag391() {
  4944. return tag391;
  4945. }
  4946. public void setTag391(Double tag391) {
  4947. this.tag391 = tag391;
  4948. }
  4949. public Double getTag392() {
  4950. return tag392;
  4951. }
  4952. public void setTag392(Double tag392) {
  4953. this.tag392 = tag392;
  4954. }
  4955. public Double getTag393() {
  4956. return tag393;
  4957. }
  4958. public void setTag393(Double tag393) {
  4959. this.tag393 = tag393;
  4960. }
  4961. public Double getTag394() {
  4962. return tag394;
  4963. }
  4964. public void setTag394(Double tag394) {
  4965. this.tag394 = tag394;
  4966. }
  4967. public Double getTag395() {
  4968. return tag395;
  4969. }
  4970. public void setTag395(Double tag395) {
  4971. this.tag395 = tag395;
  4972. }
  4973. public Double getTag396() {
  4974. return tag396;
  4975. }
  4976. public void setTag396(Double tag396) {
  4977. this.tag396 = tag396;
  4978. }
  4979. public Double getTag397() {
  4980. return tag397;
  4981. }
  4982. public void setTag397(Double tag397) {
  4983. this.tag397 = tag397;
  4984. }
  4985. public Double getTag398() {
  4986. return tag398;
  4987. }
  4988. public void setTag398(Double tag398) {
  4989. this.tag398 = tag398;
  4990. }
  4991. public Double getTag399() {
  4992. return tag399;
  4993. }
  4994. public void setTag399(Double tag399) {
  4995. this.tag399 = tag399;
  4996. }
  4997. public Double getTag400() {
  4998. return tag400;
  4999. }
  5000. public void setTag400(Double tag400) {
  5001. this.tag400 = tag400;
  5002. }
  5003. public Double getTag401() {
  5004. return tag401;
  5005. }
  5006. public void setTag401(Double tag401) {
  5007. this.tag401 = tag401;
  5008. }
  5009. public Double getTag402() {
  5010. return tag402;
  5011. }
  5012. public void setTag402(Double tag402) {
  5013. this.tag402 = tag402;
  5014. }
  5015. public Double getTag403() {
  5016. return tag403;
  5017. }
  5018. public void setTag403(Double tag403) {
  5019. this.tag403 = tag403;
  5020. }
  5021. public Double getTag404() {
  5022. return tag404;
  5023. }
  5024. public void setTag404(Double tag404) {
  5025. this.tag404 = tag404;
  5026. }
  5027. public Double getTag405() {
  5028. return tag405;
  5029. }
  5030. public void setTag405(Double tag405) {
  5031. this.tag405 = tag405;
  5032. }
  5033. public Double getTag406() {
  5034. return tag406;
  5035. }
  5036. public void setTag406(Double tag406) {
  5037. this.tag406 = tag406;
  5038. }
  5039. public Double getTag407() {
  5040. return tag407;
  5041. }
  5042. public void setTag407(Double tag407) {
  5043. this.tag407 = tag407;
  5044. }
  5045. public Double getTag408() {
  5046. return tag408;
  5047. }
  5048. public void setTag408(Double tag408) {
  5049. this.tag408 = tag408;
  5050. }
  5051. public Double getTag409() {
  5052. return tag409;
  5053. }
  5054. public void setTag409(Double tag409) {
  5055. this.tag409 = tag409;
  5056. }
  5057. public Double getTag410() {
  5058. return tag410;
  5059. }
  5060. public void setTag410(Double tag410) {
  5061. this.tag410 = tag410;
  5062. }
  5063. public Double getTag411() {
  5064. return tag411;
  5065. }
  5066. public void setTag411(Double tag411) {
  5067. this.tag411 = tag411;
  5068. }
  5069. public Double getTag412() {
  5070. return tag412;
  5071. }
  5072. public void setTag412(Double tag412) {
  5073. this.tag412 = tag412;
  5074. }
  5075. public Double getTag413() {
  5076. return tag413;
  5077. }
  5078. public void setTag413(Double tag413) {
  5079. this.tag413 = tag413;
  5080. }
  5081. public Double getTag414() {
  5082. return tag414;
  5083. }
  5084. public void setTag414(Double tag414) {
  5085. this.tag414 = tag414;
  5086. }
  5087. public Double getTag415() {
  5088. return tag415;
  5089. }
  5090. public void setTag415(Double tag415) {
  5091. this.tag415 = tag415;
  5092. }
  5093. public Double getTag416() {
  5094. return tag416;
  5095. }
  5096. public void setTag416(Double tag416) {
  5097. this.tag416 = tag416;
  5098. }
  5099. public Double getTag417() {
  5100. return tag417;
  5101. }
  5102. public void setTag417(Double tag417) {
  5103. this.tag417 = tag417;
  5104. }
  5105. public Double getTag418() {
  5106. return tag418;
  5107. }
  5108. public void setTag418(Double tag418) {
  5109. this.tag418 = tag418;
  5110. }
  5111. public Double getTag419() {
  5112. return tag419;
  5113. }
  5114. public void setTag419(Double tag419) {
  5115. this.tag419 = tag419;
  5116. }
  5117. public Double getTag420() {
  5118. return tag420;
  5119. }
  5120. public void setTag420(Double tag420) {
  5121. this.tag420 = tag420;
  5122. }
  5123. public Double getTag421() {
  5124. return tag421;
  5125. }
  5126. public void setTag421(Double tag421) {
  5127. this.tag421 = tag421;
  5128. }
  5129. public Double getTag422() {
  5130. return tag422;
  5131. }
  5132. public void setTag422(Double tag422) {
  5133. this.tag422 = tag422;
  5134. }
  5135. public Double getTag423() {
  5136. return tag423;
  5137. }
  5138. public void setTag423(Double tag423) {
  5139. this.tag423 = tag423;
  5140. }
  5141. public Double getTag424() {
  5142. return tag424;
  5143. }
  5144. public void setTag424(Double tag424) {
  5145. this.tag424 = tag424;
  5146. }
  5147. public Double getTag425() {
  5148. return tag425;
  5149. }
  5150. public void setTag425(Double tag425) {
  5151. this.tag425 = tag425;
  5152. }
  5153. public Double getTag426() {
  5154. return tag426;
  5155. }
  5156. public void setTag426(Double tag426) {
  5157. this.tag426 = tag426;
  5158. }
  5159. public Double getTag427() {
  5160. return tag427;
  5161. }
  5162. public void setTag427(Double tag427) {
  5163. this.tag427 = tag427;
  5164. }
  5165. public Double getTag428() {
  5166. return tag428;
  5167. }
  5168. public void setTag428(Double tag428) {
  5169. this.tag428 = tag428;
  5170. }
  5171. public Double getTag429() {
  5172. return tag429;
  5173. }
  5174. public void setTag429(Double tag429) {
  5175. this.tag429 = tag429;
  5176. }
  5177. public Double getTag430() {
  5178. return tag430;
  5179. }
  5180. public void setTag430(Double tag430) {
  5181. this.tag430 = tag430;
  5182. }
  5183. public Double getTag431() {
  5184. return tag431;
  5185. }
  5186. public void setTag431(Double tag431) {
  5187. this.tag431 = tag431;
  5188. }
  5189. public Double getTag432() {
  5190. return tag432;
  5191. }
  5192. public void setTag432(Double tag432) {
  5193. this.tag432 = tag432;
  5194. }
  5195. public Double getTag433() {
  5196. return tag433;
  5197. }
  5198. public void setTag433(Double tag433) {
  5199. this.tag433 = tag433;
  5200. }
  5201. public Double getTag434() {
  5202. return tag434;
  5203. }
  5204. public void setTag434(Double tag434) {
  5205. this.tag434 = tag434;
  5206. }
  5207. public Double getTag435() {
  5208. return tag435;
  5209. }
  5210. public void setTag435(Double tag435) {
  5211. this.tag435 = tag435;
  5212. }
  5213. public Double getTag436() {
  5214. return tag436;
  5215. }
  5216. public void setTag436(Double tag436) {
  5217. this.tag436 = tag436;
  5218. }
  5219. public Double getTag437() {
  5220. return tag437;
  5221. }
  5222. public void setTag437(Double tag437) {
  5223. this.tag437 = tag437;
  5224. }
  5225. public Double getTag438() {
  5226. return tag438;
  5227. }
  5228. public void setTag438(Double tag438) {
  5229. this.tag438 = tag438;
  5230. }
  5231. public Double getTag439() {
  5232. return tag439;
  5233. }
  5234. public void setTag439(Double tag439) {
  5235. this.tag439 = tag439;
  5236. }
  5237. public Double getTag440() {
  5238. return tag440;
  5239. }
  5240. public void setTag440(Double tag440) {
  5241. this.tag440 = tag440;
  5242. }
  5243. public Double getTag441() {
  5244. return tag441;
  5245. }
  5246. public void setTag441(Double tag441) {
  5247. this.tag441 = tag441;
  5248. }
  5249. public Double getTag442() {
  5250. return tag442;
  5251. }
  5252. public void setTag442(Double tag442) {
  5253. this.tag442 = tag442;
  5254. }
  5255. public Double getTag443() {
  5256. return tag443;
  5257. }
  5258. public void setTag443(Double tag443) {
  5259. this.tag443 = tag443;
  5260. }
  5261. public Double getTag444() {
  5262. return tag444;
  5263. }
  5264. public void setTag444(Double tag444) {
  5265. this.tag444 = tag444;
  5266. }
  5267. public Double getTag445() {
  5268. return tag445;
  5269. }
  5270. public void setTag445(Double tag445) {
  5271. this.tag445 = tag445;
  5272. }
  5273. public Double getTag446() {
  5274. return tag446;
  5275. }
  5276. public void setTag446(Double tag446) {
  5277. this.tag446 = tag446;
  5278. }
  5279. public Double getTag447() {
  5280. return tag447;
  5281. }
  5282. public void setTag447(Double tag447) {
  5283. this.tag447 = tag447;
  5284. }
  5285. public Double getTag448() {
  5286. return tag448;
  5287. }
  5288. public void setTag448(Double tag448) {
  5289. this.tag448 = tag448;
  5290. }
  5291. public Double getTag449() {
  5292. return tag449;
  5293. }
  5294. public void setTag449(Double tag449) {
  5295. this.tag449 = tag449;
  5296. }
  5297. public Double getTag450() {
  5298. return tag450;
  5299. }
  5300. public void setTag450(Double tag450) {
  5301. this.tag450 = tag450;
  5302. }
  5303. public Double getTag451() {
  5304. return tag451;
  5305. }
  5306. public void setTag451(Double tag451) {
  5307. this.tag451 = tag451;
  5308. }
  5309. public Double getTag452() {
  5310. return tag452;
  5311. }
  5312. public void setTag452(Double tag452) {
  5313. this.tag452 = tag452;
  5314. }
  5315. public Double getTag453() {
  5316. return tag453;
  5317. }
  5318. public void setTag453(Double tag453) {
  5319. this.tag453 = tag453;
  5320. }
  5321. public Double getTag454() {
  5322. return tag454;
  5323. }
  5324. public void setTag454(Double tag454) {
  5325. this.tag454 = tag454;
  5326. }
  5327. public Double getTag455() {
  5328. return tag455;
  5329. }
  5330. public void setTag455(Double tag455) {
  5331. this.tag455 = tag455;
  5332. }
  5333. public Double getTag456() {
  5334. return tag456;
  5335. }
  5336. public void setTag456(Double tag456) {
  5337. this.tag456 = tag456;
  5338. }
  5339. public Double getTag457() {
  5340. return tag457;
  5341. }
  5342. public void setTag457(Double tag457) {
  5343. this.tag457 = tag457;
  5344. }
  5345. public Double getTag458() {
  5346. return tag458;
  5347. }
  5348. public void setTag458(Double tag458) {
  5349. this.tag458 = tag458;
  5350. }
  5351. public Double getTag459() {
  5352. return tag459;
  5353. }
  5354. public void setTag459(Double tag459) {
  5355. this.tag459 = tag459;
  5356. }
  5357. public Double getTag460() {
  5358. return tag460;
  5359. }
  5360. public void setTag460(Double tag460) {
  5361. this.tag460 = tag460;
  5362. }
  5363. public Double getTag461() {
  5364. return tag461;
  5365. }
  5366. public void setTag461(Double tag461) {
  5367. this.tag461 = tag461;
  5368. }
  5369. public Double getTag462() {
  5370. return tag462;
  5371. }
  5372. public void setTag462(Double tag462) {
  5373. this.tag462 = tag462;
  5374. }
  5375. public Double getTag463() {
  5376. return tag463;
  5377. }
  5378. public void setTag463(Double tag463) {
  5379. this.tag463 = tag463;
  5380. }
  5381. public Double getTag464() {
  5382. return tag464;
  5383. }
  5384. public void setTag464(Double tag464) {
  5385. this.tag464 = tag464;
  5386. }
  5387. public Double getTag465() {
  5388. return tag465;
  5389. }
  5390. public void setTag465(Double tag465) {
  5391. this.tag465 = tag465;
  5392. }
  5393. public Double getTag466() {
  5394. return tag466;
  5395. }
  5396. public void setTag466(Double tag466) {
  5397. this.tag466 = tag466;
  5398. }
  5399. public Double getTag467() {
  5400. return tag467;
  5401. }
  5402. public void setTag467(Double tag467) {
  5403. this.tag467 = tag467;
  5404. }
  5405. public Double getTag468() {
  5406. return tag468;
  5407. }
  5408. public void setTag468(Double tag468) {
  5409. this.tag468 = tag468;
  5410. }
  5411. public Double getTag469() {
  5412. return tag469;
  5413. }
  5414. public void setTag469(Double tag469) {
  5415. this.tag469 = tag469;
  5416. }
  5417. public Double getTag470() {
  5418. return tag470;
  5419. }
  5420. public void setTag470(Double tag470) {
  5421. this.tag470 = tag470;
  5422. }
  5423. public Double getTag471() {
  5424. return tag471;
  5425. }
  5426. public void setTag471(Double tag471) {
  5427. this.tag471 = tag471;
  5428. }
  5429. public Double getTag472() {
  5430. return tag472;
  5431. }
  5432. public void setTag472(Double tag472) {
  5433. this.tag472 = tag472;
  5434. }
  5435. public Double getTag473() {
  5436. return tag473;
  5437. }
  5438. public void setTag473(Double tag473) {
  5439. this.tag473 = tag473;
  5440. }
  5441. public Double getTag474() {
  5442. return tag474;
  5443. }
  5444. public void setTag474(Double tag474) {
  5445. this.tag474 = tag474;
  5446. }
  5447. public Double getTag475() {
  5448. return tag475;
  5449. }
  5450. public void setTag475(Double tag475) {
  5451. this.tag475 = tag475;
  5452. }
  5453. public Double getTag476() {
  5454. return tag476;
  5455. }
  5456. public void setTag476(Double tag476) {
  5457. this.tag476 = tag476;
  5458. }
  5459. public Double getTag477() {
  5460. return tag477;
  5461. }
  5462. public void setTag477(Double tag477) {
  5463. this.tag477 = tag477;
  5464. }
  5465. public Double getTag478() {
  5466. return tag478;
  5467. }
  5468. public void setTag478(Double tag478) {
  5469. this.tag478 = tag478;
  5470. }
  5471. public Double getTag479() {
  5472. return tag479;
  5473. }
  5474. public void setTag479(Double tag479) {
  5475. this.tag479 = tag479;
  5476. }
  5477. public Double getTag480() {
  5478. return tag480;
  5479. }
  5480. public void setTag480(Double tag480) {
  5481. this.tag480 = tag480;
  5482. }
  5483. public Double getTag481() {
  5484. return tag481;
  5485. }
  5486. public void setTag481(Double tag481) {
  5487. this.tag481 = tag481;
  5488. }
  5489. public Double getTag482() {
  5490. return tag482;
  5491. }
  5492. public void setTag482(Double tag482) {
  5493. this.tag482 = tag482;
  5494. }
  5495. public Double getTag483() {
  5496. return tag483;
  5497. }
  5498. public void setTag483(Double tag483) {
  5499. this.tag483 = tag483;
  5500. }
  5501. public Double getTag484() {
  5502. return tag484;
  5503. }
  5504. public void setTag484(Double tag484) {
  5505. this.tag484 = tag484;
  5506. }
  5507. public Double getTag485() {
  5508. return tag485;
  5509. }
  5510. public void setTag485(Double tag485) {
  5511. this.tag485 = tag485;
  5512. }
  5513. public Double getTag486() {
  5514. return tag486;
  5515. }
  5516. public void setTag486(Double tag486) {
  5517. this.tag486 = tag486;
  5518. }
  5519. public Double getTag487() {
  5520. return tag487;
  5521. }
  5522. public void setTag487(Double tag487) {
  5523. this.tag487 = tag487;
  5524. }
  5525. public Double getTag488() {
  5526. return tag488;
  5527. }
  5528. public void setTag488(Double tag488) {
  5529. this.tag488 = tag488;
  5530. }
  5531. public Double getTag489() {
  5532. return tag489;
  5533. }
  5534. public void setTag489(Double tag489) {
  5535. this.tag489 = tag489;
  5536. }
  5537. public Double getTag490() {
  5538. return tag490;
  5539. }
  5540. public void setTag490(Double tag490) {
  5541. this.tag490 = tag490;
  5542. }
  5543. public Double getTag491() {
  5544. return tag491;
  5545. }
  5546. public void setTag491(Double tag491) {
  5547. this.tag491 = tag491;
  5548. }
  5549. public Double getTag492() {
  5550. return tag492;
  5551. }
  5552. public void setTag492(Double tag492) {
  5553. this.tag492 = tag492;
  5554. }
  5555. public Double getTag493() {
  5556. return tag493;
  5557. }
  5558. public void setTag493(Double tag493) {
  5559. this.tag493 = tag493;
  5560. }
  5561. public Double getTag494() {
  5562. return tag494;
  5563. }
  5564. public void setTag494(Double tag494) {
  5565. this.tag494 = tag494;
  5566. }
  5567. public Double getTag495() {
  5568. return tag495;
  5569. }
  5570. public void setTag495(Double tag495) {
  5571. this.tag495 = tag495;
  5572. }
  5573. public Double getTag496() {
  5574. return tag496;
  5575. }
  5576. public void setTag496(Double tag496) {
  5577. this.tag496 = tag496;
  5578. }
  5579. public Double getTag497() {
  5580. return tag497;
  5581. }
  5582. public void setTag497(Double tag497) {
  5583. this.tag497 = tag497;
  5584. }
  5585. public Double getTag498() {
  5586. return tag498;
  5587. }
  5588. public void setTag498(Double tag498) {
  5589. this.tag498 = tag498;
  5590. }
  5591. public Double getTag499() {
  5592. return tag499;
  5593. }
  5594. public void setTag499(Double tag499) {
  5595. this.tag499 = tag499;
  5596. }
  5597. public Double getTag500() {
  5598. return tag500;
  5599. }
  5600. public void setTag500(Double tag500) {
  5601. this.tag500 = tag500;
  5602. }
  5603. public Double getTag501() {
  5604. return tag501;
  5605. }
  5606. public void setTag501(Double tag501) {
  5607. this.tag501 = tag501;
  5608. }
  5609. public Double getTag502() {
  5610. return tag502;
  5611. }
  5612. public void setTag502(Double tag502) {
  5613. this.tag502 = tag502;
  5614. }
  5615. public Double getTag503() {
  5616. return tag503;
  5617. }
  5618. public void setTag503(Double tag503) {
  5619. this.tag503 = tag503;
  5620. }
  5621. public Double getTag504() {
  5622. return tag504;
  5623. }
  5624. public void setTag504(Double tag504) {
  5625. this.tag504 = tag504;
  5626. }
  5627. public Double getTag505() {
  5628. return tag505;
  5629. }
  5630. public void setTag505(Double tag505) {
  5631. this.tag505 = tag505;
  5632. }
  5633. public Double getTag506() {
  5634. return tag506;
  5635. }
  5636. public void setTag506(Double tag506) {
  5637. this.tag506 = tag506;
  5638. }
  5639. public Double getTag507() {
  5640. return tag507;
  5641. }
  5642. public void setTag507(Double tag507) {
  5643. this.tag507 = tag507;
  5644. }
  5645. public Double getTag508() {
  5646. return tag508;
  5647. }
  5648. public void setTag508(Double tag508) {
  5649. this.tag508 = tag508;
  5650. }
  5651. public Double getTag509() {
  5652. return tag509;
  5653. }
  5654. public void setTag509(Double tag509) {
  5655. this.tag509 = tag509;
  5656. }
  5657. public Double getTag510() {
  5658. return tag510;
  5659. }
  5660. public void setTag510(Double tag510) {
  5661. this.tag510 = tag510;
  5662. }
  5663. public Double getTag511() {
  5664. return tag511;
  5665. }
  5666. public void setTag511(Double tag511) {
  5667. this.tag511 = tag511;
  5668. }
  5669. public Double getTag512() {
  5670. return tag512;
  5671. }
  5672. public void setTag512(Double tag512) {
  5673. this.tag512 = tag512;
  5674. }
  5675. public Double getTag513() {
  5676. return tag513;
  5677. }
  5678. public void setTag513(Double tag513) {
  5679. this.tag513 = tag513;
  5680. }
  5681. public Double getTag514() {
  5682. return tag514;
  5683. }
  5684. public void setTag514(Double tag514) {
  5685. this.tag514 = tag514;
  5686. }
  5687. public Double getTag515() {
  5688. return tag515;
  5689. }
  5690. public void setTag515(Double tag515) {
  5691. this.tag515 = tag515;
  5692. }
  5693. public Double getTag516() {
  5694. return tag516;
  5695. }
  5696. public void setTag516(Double tag516) {
  5697. this.tag516 = tag516;
  5698. }
  5699. public Double getTag517() {
  5700. return tag517;
  5701. }
  5702. public void setTag517(Double tag517) {
  5703. this.tag517 = tag517;
  5704. }
  5705. public Double getTag518() {
  5706. return tag518;
  5707. }
  5708. public void setTag518(Double tag518) {
  5709. this.tag518 = tag518;
  5710. }
  5711. public Double getTag519() {
  5712. return tag519;
  5713. }
  5714. public void setTag519(Double tag519) {
  5715. this.tag519 = tag519;
  5716. }
  5717. public Double getTag520() {
  5718. return tag520;
  5719. }
  5720. public void setTag520(Double tag520) {
  5721. this.tag520 = tag520;
  5722. }
  5723. public Double getTag521() {
  5724. return tag521;
  5725. }
  5726. public void setTag521(Double tag521) {
  5727. this.tag521 = tag521;
  5728. }
  5729. public Double getTag522() {
  5730. return tag522;
  5731. }
  5732. public void setTag522(Double tag522) {
  5733. this.tag522 = tag522;
  5734. }
  5735. public Double getTag523() {
  5736. return tag523;
  5737. }
  5738. public void setTag523(Double tag523) {
  5739. this.tag523 = tag523;
  5740. }
  5741. public Double getTag524() {
  5742. return tag524;
  5743. }
  5744. public void setTag524(Double tag524) {
  5745. this.tag524 = tag524;
  5746. }
  5747. public Double getTag525() {
  5748. return tag525;
  5749. }
  5750. public void setTag525(Double tag525) {
  5751. this.tag525 = tag525;
  5752. }
  5753. public Double getTag526() {
  5754. return tag526;
  5755. }
  5756. public void setTag526(Double tag526) {
  5757. this.tag526 = tag526;
  5758. }
  5759. public Double getTag527() {
  5760. return tag527;
  5761. }
  5762. public void setTag527(Double tag527) {
  5763. this.tag527 = tag527;
  5764. }
  5765. public Double getTag528() {
  5766. return tag528;
  5767. }
  5768. public void setTag528(Double tag528) {
  5769. this.tag528 = tag528;
  5770. }
  5771. public Double getTag529() {
  5772. return tag529;
  5773. }
  5774. public void setTag529(Double tag529) {
  5775. this.tag529 = tag529;
  5776. }
  5777. public Double getTag530() {
  5778. return tag530;
  5779. }
  5780. public void setTag530(Double tag530) {
  5781. this.tag530 = tag530;
  5782. }
  5783. public Double getTag531() {
  5784. return tag531;
  5785. }
  5786. public void setTag531(Double tag531) {
  5787. this.tag531 = tag531;
  5788. }
  5789. public Double getTag532() {
  5790. return tag532;
  5791. }
  5792. public void setTag532(Double tag532) {
  5793. this.tag532 = tag532;
  5794. }
  5795. public Double getTag533() {
  5796. return tag533;
  5797. }
  5798. public void setTag533(Double tag533) {
  5799. this.tag533 = tag533;
  5800. }
  5801. public Double getTag534() {
  5802. return tag534;
  5803. }
  5804. public void setTag534(Double tag534) {
  5805. this.tag534 = tag534;
  5806. }
  5807. public Double getTag535() {
  5808. return tag535;
  5809. }
  5810. public void setTag535(Double tag535) {
  5811. this.tag535 = tag535;
  5812. }
  5813. public Double getTag536() {
  5814. return tag536;
  5815. }
  5816. public void setTag536(Double tag536) {
  5817. this.tag536 = tag536;
  5818. }
  5819. public Double getTag537() {
  5820. return tag537;
  5821. }
  5822. public void setTag537(Double tag537) {
  5823. this.tag537 = tag537;
  5824. }
  5825. public Double getTag538() {
  5826. return tag538;
  5827. }
  5828. public void setTag538(Double tag538) {
  5829. this.tag538 = tag538;
  5830. }
  5831. public Double getTag539() {
  5832. return tag539;
  5833. }
  5834. public void setTag539(Double tag539) {
  5835. this.tag539 = tag539;
  5836. }
  5837. public Double getTag540() {
  5838. return tag540;
  5839. }
  5840. public void setTag540(Double tag540) {
  5841. this.tag540 = tag540;
  5842. }
  5843. public Double getTag541() {
  5844. return tag541;
  5845. }
  5846. public void setTag541(Double tag541) {
  5847. this.tag541 = tag541;
  5848. }
  5849. public Double getTag542() {
  5850. return tag542;
  5851. }
  5852. public void setTag542(Double tag542) {
  5853. this.tag542 = tag542;
  5854. }
  5855. public Double getTag543() {
  5856. return tag543;
  5857. }
  5858. public void setTag543(Double tag543) {
  5859. this.tag543 = tag543;
  5860. }
  5861. public Double getTag544() {
  5862. return tag544;
  5863. }
  5864. public void setTag544(Double tag544) {
  5865. this.tag544 = tag544;
  5866. }
  5867. public Double getTag545() {
  5868. return tag545;
  5869. }
  5870. public void setTag545(Double tag545) {
  5871. this.tag545 = tag545;
  5872. }
  5873. public Double getTag546() {
  5874. return tag546;
  5875. }
  5876. public void setTag546(Double tag546) {
  5877. this.tag546 = tag546;
  5878. }
  5879. public Double getTag547() {
  5880. return tag547;
  5881. }
  5882. public void setTag547(Double tag547) {
  5883. this.tag547 = tag547;
  5884. }
  5885. public Double getTag548() {
  5886. return tag548;
  5887. }
  5888. public void setTag548(Double tag548) {
  5889. this.tag548 = tag548;
  5890. }
  5891. public Double getTag549() {
  5892. return tag549;
  5893. }
  5894. public void setTag549(Double tag549) {
  5895. this.tag549 = tag549;
  5896. }
  5897. public Double getTag550() {
  5898. return tag550;
  5899. }
  5900. public void setTag550(Double tag550) {
  5901. this.tag550 = tag550;
  5902. }
  5903. public Double getTag551() {
  5904. return tag551;
  5905. }
  5906. public void setTag551(Double tag551) {
  5907. this.tag551 = tag551;
  5908. }
  5909. public Double getTag552() {
  5910. return tag552;
  5911. }
  5912. public void setTag552(Double tag552) {
  5913. this.tag552 = tag552;
  5914. }
  5915. public Double getTag553() {
  5916. return tag553;
  5917. }
  5918. public void setTag553(Double tag553) {
  5919. this.tag553 = tag553;
  5920. }
  5921. public Double getTag554() {
  5922. return tag554;
  5923. }
  5924. public void setTag554(Double tag554) {
  5925. this.tag554 = tag554;
  5926. }
  5927. public Double getTag555() {
  5928. return tag555;
  5929. }
  5930. public void setTag555(Double tag555) {
  5931. this.tag555 = tag555;
  5932. }
  5933. public Double getTag556() {
  5934. return tag556;
  5935. }
  5936. public void setTag556(Double tag556) {
  5937. this.tag556 = tag556;
  5938. }
  5939. public Double getTag557() {
  5940. return tag557;
  5941. }
  5942. public void setTag557(Double tag557) {
  5943. this.tag557 = tag557;
  5944. }
  5945. public Double getTag558() {
  5946. return tag558;
  5947. }
  5948. public void setTag558(Double tag558) {
  5949. this.tag558 = tag558;
  5950. }
  5951. public Double getTag559() {
  5952. return tag559;
  5953. }
  5954. public void setTag559(Double tag559) {
  5955. this.tag559 = tag559;
  5956. }
  5957. public Double getTag560() {
  5958. return tag560;
  5959. }
  5960. public void setTag560(Double tag560) {
  5961. this.tag560 = tag560;
  5962. }
  5963. public Double getTag561() {
  5964. return tag561;
  5965. }
  5966. public void setTag561(Double tag561) {
  5967. this.tag561 = tag561;
  5968. }
  5969. public Double getTag562() {
  5970. return tag562;
  5971. }
  5972. public void setTag562(Double tag562) {
  5973. this.tag562 = tag562;
  5974. }
  5975. public Double getTag563() {
  5976. return tag563;
  5977. }
  5978. public void setTag563(Double tag563) {
  5979. this.tag563 = tag563;
  5980. }
  5981. public Double getTag564() {
  5982. return tag564;
  5983. }
  5984. public void setTag564(Double tag564) {
  5985. this.tag564 = tag564;
  5986. }
  5987. public Double getTag565() {
  5988. return tag565;
  5989. }
  5990. public void setTag565(Double tag565) {
  5991. this.tag565 = tag565;
  5992. }
  5993. public Double getTag566() {
  5994. return tag566;
  5995. }
  5996. public void setTag566(Double tag566) {
  5997. this.tag566 = tag566;
  5998. }
  5999. public Double getTag567() {
  6000. return tag567;
  6001. }
  6002. public void setTag567(Double tag567) {
  6003. this.tag567 = tag567;
  6004. }
  6005. public Double getTag568() {
  6006. return tag568;
  6007. }
  6008. public void setTag568(Double tag568) {
  6009. this.tag568 = tag568;
  6010. }
  6011. public Double getTag569() {
  6012. return tag569;
  6013. }
  6014. public void setTag569(Double tag569) {
  6015. this.tag569 = tag569;
  6016. }
  6017. public Double getTag570() {
  6018. return tag570;
  6019. }
  6020. public void setTag570(Double tag570) {
  6021. this.tag570 = tag570;
  6022. }
  6023. public Double getTag571() {
  6024. return tag571;
  6025. }
  6026. public void setTag571(Double tag571) {
  6027. this.tag571 = tag571;
  6028. }
  6029. public Double getTag572() {
  6030. return tag572;
  6031. }
  6032. public void setTag572(Double tag572) {
  6033. this.tag572 = tag572;
  6034. }
  6035. public Double getTag573() {
  6036. return tag573;
  6037. }
  6038. public void setTag573(Double tag573) {
  6039. this.tag573 = tag573;
  6040. }
  6041. public Double getTag574() {
  6042. return tag574;
  6043. }
  6044. public void setTag574(Double tag574) {
  6045. this.tag574 = tag574;
  6046. }
  6047. public Double getTag575() {
  6048. return tag575;
  6049. }
  6050. public void setTag575(Double tag575) {
  6051. this.tag575 = tag575;
  6052. }
  6053. public Double getTag576() {
  6054. return tag576;
  6055. }
  6056. public void setTag576(Double tag576) {
  6057. this.tag576 = tag576;
  6058. }
  6059. public Double getTag577() {
  6060. return tag577;
  6061. }
  6062. public void setTag577(Double tag577) {
  6063. this.tag577 = tag577;
  6064. }
  6065. public Double getTag578() {
  6066. return tag578;
  6067. }
  6068. public void setTag578(Double tag578) {
  6069. this.tag578 = tag578;
  6070. }
  6071. public Double getTag579() {
  6072. return tag579;
  6073. }
  6074. public void setTag579(Double tag579) {
  6075. this.tag579 = tag579;
  6076. }
  6077. public Double getTag580() {
  6078. return tag580;
  6079. }
  6080. public void setTag580(Double tag580) {
  6081. this.tag580 = tag580;
  6082. }
  6083. public Double getTag581() {
  6084. return tag581;
  6085. }
  6086. public void setTag581(Double tag581) {
  6087. this.tag581 = tag581;
  6088. }
  6089. public Double getTag582() {
  6090. return tag582;
  6091. }
  6092. public void setTag582(Double tag582) {
  6093. this.tag582 = tag582;
  6094. }
  6095. public Double getTag583() {
  6096. return tag583;
  6097. }
  6098. public void setTag583(Double tag583) {
  6099. this.tag583 = tag583;
  6100. }
  6101. public Double getTag584() {
  6102. return tag584;
  6103. }
  6104. public void setTag584(Double tag584) {
  6105. this.tag584 = tag584;
  6106. }
  6107. public Double getTag585() {
  6108. return tag585;
  6109. }
  6110. public void setTag585(Double tag585) {
  6111. this.tag585 = tag585;
  6112. }
  6113. public Double getTag586() {
  6114. return tag586;
  6115. }
  6116. public void setTag586(Double tag586) {
  6117. this.tag586 = tag586;
  6118. }
  6119. public Double getTag587() {
  6120. return tag587;
  6121. }
  6122. public void setTag587(Double tag587) {
  6123. this.tag587 = tag587;
  6124. }
  6125. public Double getTag588() {
  6126. return tag588;
  6127. }
  6128. public void setTag588(Double tag588) {
  6129. this.tag588 = tag588;
  6130. }
  6131. public Double getTag589() {
  6132. return tag589;
  6133. }
  6134. public void setTag589(Double tag589) {
  6135. this.tag589 = tag589;
  6136. }
  6137. public Double getTag590() {
  6138. return tag590;
  6139. }
  6140. public void setTag590(Double tag590) {
  6141. this.tag590 = tag590;
  6142. }
  6143. public Double getTag591() {
  6144. return tag591;
  6145. }
  6146. public void setTag591(Double tag591) {
  6147. this.tag591 = tag591;
  6148. }
  6149. public Double getTag592() {
  6150. return tag592;
  6151. }
  6152. public void setTag592(Double tag592) {
  6153. this.tag592 = tag592;
  6154. }
  6155. public Double getTag593() {
  6156. return tag593;
  6157. }
  6158. public void setTag593(Double tag593) {
  6159. this.tag593 = tag593;
  6160. }
  6161. public Double getTag594() {
  6162. return tag594;
  6163. }
  6164. public void setTag594(Double tag594) {
  6165. this.tag594 = tag594;
  6166. }
  6167. public Double getTag595() {
  6168. return tag595;
  6169. }
  6170. public void setTag595(Double tag595) {
  6171. this.tag595 = tag595;
  6172. }
  6173. public Double getTag596() {
  6174. return tag596;
  6175. }
  6176. public void setTag596(Double tag596) {
  6177. this.tag596 = tag596;
  6178. }
  6179. public Double getTag597() {
  6180. return tag597;
  6181. }
  6182. public void setTag597(Double tag597) {
  6183. this.tag597 = tag597;
  6184. }
  6185. public Double getTag598() {
  6186. return tag598;
  6187. }
  6188. public void setTag598(Double tag598) {
  6189. this.tag598 = tag598;
  6190. }
  6191. public Double getTag599() {
  6192. return tag599;
  6193. }
  6194. public void setTag599(Double tag599) {
  6195. this.tag599 = tag599;
  6196. }
  6197. public Double getTag600() {
  6198. return tag600;
  6199. }
  6200. public void setTag600(Double tag600) {
  6201. this.tag600 = tag600;
  6202. }
  6203. public Double getTag601() {
  6204. return tag601;
  6205. }
  6206. public void setTag601(Double tag601) {
  6207. this.tag601 = tag601;
  6208. }
  6209. public Double getTag602() {
  6210. return tag602;
  6211. }
  6212. public void setTag602(Double tag602) {
  6213. this.tag602 = tag602;
  6214. }
  6215. public Double getTag603() {
  6216. return tag603;
  6217. }
  6218. public void setTag603(Double tag603) {
  6219. this.tag603 = tag603;
  6220. }
  6221. public Double getTag604() {
  6222. return tag604;
  6223. }
  6224. public void setTag604(Double tag604) {
  6225. this.tag604 = tag604;
  6226. }
  6227. public Double getTag605() {
  6228. return tag605;
  6229. }
  6230. public void setTag605(Double tag605) {
  6231. this.tag605 = tag605;
  6232. }
  6233. public Double getTag606() {
  6234. return tag606;
  6235. }
  6236. public void setTag606(Double tag606) {
  6237. this.tag606 = tag606;
  6238. }
  6239. public Double getTag607() {
  6240. return tag607;
  6241. }
  6242. public void setTag607(Double tag607) {
  6243. this.tag607 = tag607;
  6244. }
  6245. public Double getTag608() {
  6246. return tag608;
  6247. }
  6248. public void setTag608(Double tag608) {
  6249. this.tag608 = tag608;
  6250. }
  6251. public Double getTag609() {
  6252. return tag609;
  6253. }
  6254. public void setTag609(Double tag609) {
  6255. this.tag609 = tag609;
  6256. }
  6257. public Double getTag610() {
  6258. return tag610;
  6259. }
  6260. public void setTag610(Double tag610) {
  6261. this.tag610 = tag610;
  6262. }
  6263. public Double getTag611() {
  6264. return tag611;
  6265. }
  6266. public void setTag611(Double tag611) {
  6267. this.tag611 = tag611;
  6268. }
  6269. public Double getTag612() {
  6270. return tag612;
  6271. }
  6272. public void setTag612(Double tag612) {
  6273. this.tag612 = tag612;
  6274. }
  6275. public Double getTag613() {
  6276. return tag613;
  6277. }
  6278. public void setTag613(Double tag613) {
  6279. this.tag613 = tag613;
  6280. }
  6281. public Double getTag614() {
  6282. return tag614;
  6283. }
  6284. public void setTag614(Double tag614) {
  6285. this.tag614 = tag614;
  6286. }
  6287. public Double getTag615() {
  6288. return tag615;
  6289. }
  6290. public void setTag615(Double tag615) {
  6291. this.tag615 = tag615;
  6292. }
  6293. public Double getTag616() {
  6294. return tag616;
  6295. }
  6296. public void setTag616(Double tag616) {
  6297. this.tag616 = tag616;
  6298. }
  6299. public Double getTag617() {
  6300. return tag617;
  6301. }
  6302. public void setTag617(Double tag617) {
  6303. this.tag617 = tag617;
  6304. }
  6305. public Double getTag618() {
  6306. return tag618;
  6307. }
  6308. public void setTag618(Double tag618) {
  6309. this.tag618 = tag618;
  6310. }
  6311. public Double getTag619() {
  6312. return tag619;
  6313. }
  6314. public void setTag619(Double tag619) {
  6315. this.tag619 = tag619;
  6316. }
  6317. public Double getTag620() {
  6318. return tag620;
  6319. }
  6320. public void setTag620(Double tag620) {
  6321. this.tag620 = tag620;
  6322. }
  6323. public Double getTag621() {
  6324. return tag621;
  6325. }
  6326. public void setTag621(Double tag621) {
  6327. this.tag621 = tag621;
  6328. }
  6329. public Double getTag622() {
  6330. return tag622;
  6331. }
  6332. public void setTag622(Double tag622) {
  6333. this.tag622 = tag622;
  6334. }
  6335. public Double getTag623() {
  6336. return tag623;
  6337. }
  6338. public void setTag623(Double tag623) {
  6339. this.tag623 = tag623;
  6340. }
  6341. public Double getTag624() {
  6342. return tag624;
  6343. }
  6344. public void setTag624(Double tag624) {
  6345. this.tag624 = tag624;
  6346. }
  6347. public Double getTag625() {
  6348. return tag625;
  6349. }
  6350. public void setTag625(Double tag625) {
  6351. this.tag625 = tag625;
  6352. }
  6353. public Double getTag626() {
  6354. return tag626;
  6355. }
  6356. public void setTag626(Double tag626) {
  6357. this.tag626 = tag626;
  6358. }
  6359. public Double getTag627() {
  6360. return tag627;
  6361. }
  6362. public void setTag627(Double tag627) {
  6363. this.tag627 = tag627;
  6364. }
  6365. public Double getTag628() {
  6366. return tag628;
  6367. }
  6368. public void setTag628(Double tag628) {
  6369. this.tag628 = tag628;
  6370. }
  6371. public Double getTag629() {
  6372. return tag629;
  6373. }
  6374. public void setTag629(Double tag629) {
  6375. this.tag629 = tag629;
  6376. }
  6377. public Double getTag630() {
  6378. return tag630;
  6379. }
  6380. public void setTag630(Double tag630) {
  6381. this.tag630 = tag630;
  6382. }
  6383. public Double getTag631() {
  6384. return tag631;
  6385. }
  6386. public void setTag631(Double tag631) {
  6387. this.tag631 = tag631;
  6388. }
  6389. public Double getTag632() {
  6390. return tag632;
  6391. }
  6392. public void setTag632(Double tag632) {
  6393. this.tag632 = tag632;
  6394. }
  6395. public Double getTag633() {
  6396. return tag633;
  6397. }
  6398. public void setTag633(Double tag633) {
  6399. this.tag633 = tag633;
  6400. }
  6401. public Double getTag634() {
  6402. return tag634;
  6403. }
  6404. public void setTag634(Double tag634) {
  6405. this.tag634 = tag634;
  6406. }
  6407. public Double getTag635() {
  6408. return tag635;
  6409. }
  6410. public void setTag635(Double tag635) {
  6411. this.tag635 = tag635;
  6412. }
  6413. public Double getTag636() {
  6414. return tag636;
  6415. }
  6416. public void setTag636(Double tag636) {
  6417. this.tag636 = tag636;
  6418. }
  6419. public Double getTag637() {
  6420. return tag637;
  6421. }
  6422. public void setTag637(Double tag637) {
  6423. this.tag637 = tag637;
  6424. }
  6425. public Double getTag638() {
  6426. return tag638;
  6427. }
  6428. public void setTag638(Double tag638) {
  6429. this.tag638 = tag638;
  6430. }
  6431. public Double getTag639() {
  6432. return tag639;
  6433. }
  6434. public void setTag639(Double tag639) {
  6435. this.tag639 = tag639;
  6436. }
  6437. public Double getTag640() {
  6438. return tag640;
  6439. }
  6440. public void setTag640(Double tag640) {
  6441. this.tag640 = tag640;
  6442. }
  6443. public Double getTag641() {
  6444. return tag641;
  6445. }
  6446. public void setTag641(Double tag641) {
  6447. this.tag641 = tag641;
  6448. }
  6449. public Double getTag642() {
  6450. return tag642;
  6451. }
  6452. public void setTag642(Double tag642) {
  6453. this.tag642 = tag642;
  6454. }
  6455. public Double getTag643() {
  6456. return tag643;
  6457. }
  6458. public void setTag643(Double tag643) {
  6459. this.tag643 = tag643;
  6460. }
  6461. public Double getTag644() {
  6462. return tag644;
  6463. }
  6464. public void setTag644(Double tag644) {
  6465. this.tag644 = tag644;
  6466. }
  6467. public Double getTag645() {
  6468. return tag645;
  6469. }
  6470. public void setTag645(Double tag645) {
  6471. this.tag645 = tag645;
  6472. }
  6473. public Double getTag646() {
  6474. return tag646;
  6475. }
  6476. public void setTag646(Double tag646) {
  6477. this.tag646 = tag646;
  6478. }
  6479. public Double getTag647() {
  6480. return tag647;
  6481. }
  6482. public void setTag647(Double tag647) {
  6483. this.tag647 = tag647;
  6484. }
  6485. public Double getTag648() {
  6486. return tag648;
  6487. }
  6488. public void setTag648(Double tag648) {
  6489. this.tag648 = tag648;
  6490. }
  6491. public Double getTag649() {
  6492. return tag649;
  6493. }
  6494. public void setTag649(Double tag649) {
  6495. this.tag649 = tag649;
  6496. }
  6497. public Double getTag650() {
  6498. return tag650;
  6499. }
  6500. public void setTag650(Double tag650) {
  6501. this.tag650 = tag650;
  6502. }
  6503. public Double getTag651() {
  6504. return tag651;
  6505. }
  6506. public void setTag651(Double tag651) {
  6507. this.tag651 = tag651;
  6508. }
  6509. public Double getTag652() {
  6510. return tag652;
  6511. }
  6512. public void setTag652(Double tag652) {
  6513. this.tag652 = tag652;
  6514. }
  6515. public Double getTag653() {
  6516. return tag653;
  6517. }
  6518. public void setTag653(Double tag653) {
  6519. this.tag653 = tag653;
  6520. }
  6521. public Double getTag654() {
  6522. return tag654;
  6523. }
  6524. public void setTag654(Double tag654) {
  6525. this.tag654 = tag654;
  6526. }
  6527. public Double getTag655() {
  6528. return tag655;
  6529. }
  6530. public void setTag655(Double tag655) {
  6531. this.tag655 = tag655;
  6532. }
  6533. public Double getTag656() {
  6534. return tag656;
  6535. }
  6536. public void setTag656(Double tag656) {
  6537. this.tag656 = tag656;
  6538. }
  6539. public Double getTag657() {
  6540. return tag657;
  6541. }
  6542. public void setTag657(Double tag657) {
  6543. this.tag657 = tag657;
  6544. }
  6545. public Double getTag658() {
  6546. return tag658;
  6547. }
  6548. public void setTag658(Double tag658) {
  6549. this.tag658 = tag658;
  6550. }
  6551. public Double getTag659() {
  6552. return tag659;
  6553. }
  6554. public void setTag659(Double tag659) {
  6555. this.tag659 = tag659;
  6556. }
  6557. public Double getTag660() {
  6558. return tag660;
  6559. }
  6560. public void setTag660(Double tag660) {
  6561. this.tag660 = tag660;
  6562. }
  6563. public Double getTag661() {
  6564. return tag661;
  6565. }
  6566. public void setTag661(Double tag661) {
  6567. this.tag661 = tag661;
  6568. }
  6569. public Double getTag662() {
  6570. return tag662;
  6571. }
  6572. public void setTag662(Double tag662) {
  6573. this.tag662 = tag662;
  6574. }
  6575. public Double getTag663() {
  6576. return tag663;
  6577. }
  6578. public void setTag663(Double tag663) {
  6579. this.tag663 = tag663;
  6580. }
  6581. public Double getTag664() {
  6582. return tag664;
  6583. }
  6584. public void setTag664(Double tag664) {
  6585. this.tag664 = tag664;
  6586. }
  6587. public Double getTag665() {
  6588. return tag665;
  6589. }
  6590. public void setTag665(Double tag665) {
  6591. this.tag665 = tag665;
  6592. }
  6593. public Double getTag666() {
  6594. return tag666;
  6595. }
  6596. public void setTag666(Double tag666) {
  6597. this.tag666 = tag666;
  6598. }
  6599. public Double getTag667() {
  6600. return tag667;
  6601. }
  6602. public void setTag667(Double tag667) {
  6603. this.tag667 = tag667;
  6604. }
  6605. public Double getTag668() {
  6606. return tag668;
  6607. }
  6608. public void setTag668(Double tag668) {
  6609. this.tag668 = tag668;
  6610. }
  6611. public Double getTag669() {
  6612. return tag669;
  6613. }
  6614. public void setTag669(Double tag669) {
  6615. this.tag669 = tag669;
  6616. }
  6617. public Double getTag670() {
  6618. return tag670;
  6619. }
  6620. public void setTag670(Double tag670) {
  6621. this.tag670 = tag670;
  6622. }
  6623. public Double getTag671() {
  6624. return tag671;
  6625. }
  6626. public void setTag671(Double tag671) {
  6627. this.tag671 = tag671;
  6628. }
  6629. public Double getTag672() {
  6630. return tag672;
  6631. }
  6632. public void setTag672(Double tag672) {
  6633. this.tag672 = tag672;
  6634. }
  6635. public Double getTag673() {
  6636. return tag673;
  6637. }
  6638. public void setTag673(Double tag673) {
  6639. this.tag673 = tag673;
  6640. }
  6641. public Double getTag674() {
  6642. return tag674;
  6643. }
  6644. public void setTag674(Double tag674) {
  6645. this.tag674 = tag674;
  6646. }
  6647. public Double getTag675() {
  6648. return tag675;
  6649. }
  6650. public void setTag675(Double tag675) {
  6651. this.tag675 = tag675;
  6652. }
  6653. public Double getTag676() {
  6654. return tag676;
  6655. }
  6656. public void setTag676(Double tag676) {
  6657. this.tag676 = tag676;
  6658. }
  6659. public Double getTag677() {
  6660. return tag677;
  6661. }
  6662. public void setTag677(Double tag677) {
  6663. this.tag677 = tag677;
  6664. }
  6665. public Double getTag678() {
  6666. return tag678;
  6667. }
  6668. public void setTag678(Double tag678) {
  6669. this.tag678 = tag678;
  6670. }
  6671. public Double getTag679() {
  6672. return tag679;
  6673. }
  6674. public void setTag679(Double tag679) {
  6675. this.tag679 = tag679;
  6676. }
  6677. public Double getTag680() {
  6678. return tag680;
  6679. }
  6680. public void setTag680(Double tag680) {
  6681. this.tag680 = tag680;
  6682. }
  6683. public Double getTag681() {
  6684. return tag681;
  6685. }
  6686. public void setTag681(Double tag681) {
  6687. this.tag681 = tag681;
  6688. }
  6689. public Double getTag682() {
  6690. return tag682;
  6691. }
  6692. public void setTag682(Double tag682) {
  6693. this.tag682 = tag682;
  6694. }
  6695. public Double getTag683() {
  6696. return tag683;
  6697. }
  6698. public void setTag683(Double tag683) {
  6699. this.tag683 = tag683;
  6700. }
  6701. public Double getTag684() {
  6702. return tag684;
  6703. }
  6704. public void setTag684(Double tag684) {
  6705. this.tag684 = tag684;
  6706. }
  6707. public Double getTag685() {
  6708. return tag685;
  6709. }
  6710. public void setTag685(Double tag685) {
  6711. this.tag685 = tag685;
  6712. }
  6713. public Double getTag686() {
  6714. return tag686;
  6715. }
  6716. public void setTag686(Double tag686) {
  6717. this.tag686 = tag686;
  6718. }
  6719. public Double getTag687() {
  6720. return tag687;
  6721. }
  6722. public void setTag687(Double tag687) {
  6723. this.tag687 = tag687;
  6724. }
  6725. public Double getTag688() {
  6726. return tag688;
  6727. }
  6728. public void setTag688(Double tag688) {
  6729. this.tag688 = tag688;
  6730. }
  6731. public Double getTag689() {
  6732. return tag689;
  6733. }
  6734. public void setTag689(Double tag689) {
  6735. this.tag689 = tag689;
  6736. }
  6737. public Double getTag690() {
  6738. return tag690;
  6739. }
  6740. public void setTag690(Double tag690) {
  6741. this.tag690 = tag690;
  6742. }
  6743. public Double getTag691() {
  6744. return tag691;
  6745. }
  6746. public void setTag691(Double tag691) {
  6747. this.tag691 = tag691;
  6748. }
  6749. public Double getTag692() {
  6750. return tag692;
  6751. }
  6752. public void setTag692(Double tag692) {
  6753. this.tag692 = tag692;
  6754. }
  6755. public Double getTag693() {
  6756. return tag693;
  6757. }
  6758. public void setTag693(Double tag693) {
  6759. this.tag693 = tag693;
  6760. }
  6761. public Double getTag694() {
  6762. return tag694;
  6763. }
  6764. public void setTag694(Double tag694) {
  6765. this.tag694 = tag694;
  6766. }
  6767. public Double getTag695() {
  6768. return tag695;
  6769. }
  6770. public void setTag695(Double tag695) {
  6771. this.tag695 = tag695;
  6772. }
  6773. public Double getTag696() {
  6774. return tag696;
  6775. }
  6776. public void setTag696(Double tag696) {
  6777. this.tag696 = tag696;
  6778. }
  6779. public Double getTag697() {
  6780. return tag697;
  6781. }
  6782. public void setTag697(Double tag697) {
  6783. this.tag697 = tag697;
  6784. }
  6785. public Double getTag698() {
  6786. return tag698;
  6787. }
  6788. public void setTag698(Double tag698) {
  6789. this.tag698 = tag698;
  6790. }
  6791. public Double getTag699() {
  6792. return tag699;
  6793. }
  6794. public void setTag699(Double tag699) {
  6795. this.tag699 = tag699;
  6796. }
  6797. public Double getTag700() {
  6798. return tag700;
  6799. }
  6800. public void setTag700(Double tag700) {
  6801. this.tag700 = tag700;
  6802. }
  6803. public Double getTag701() {
  6804. return tag701;
  6805. }
  6806. public void setTag701(Double tag701) {
  6807. this.tag701 = tag701;
  6808. }
  6809. public Double getTag702() {
  6810. return tag702;
  6811. }
  6812. public void setTag702(Double tag702) {
  6813. this.tag702 = tag702;
  6814. }
  6815. public Double getTag703() {
  6816. return tag703;
  6817. }
  6818. public void setTag703(Double tag703) {
  6819. this.tag703 = tag703;
  6820. }
  6821. public Double getTag704() {
  6822. return tag704;
  6823. }
  6824. public void setTag704(Double tag704) {
  6825. this.tag704 = tag704;
  6826. }
  6827. public Double getTag705() {
  6828. return tag705;
  6829. }
  6830. public void setTag705(Double tag705) {
  6831. this.tag705 = tag705;
  6832. }
  6833. public Double getTag706() {
  6834. return tag706;
  6835. }
  6836. public void setTag706(Double tag706) {
  6837. this.tag706 = tag706;
  6838. }
  6839. public Double getTag707() {
  6840. return tag707;
  6841. }
  6842. public void setTag707(Double tag707) {
  6843. this.tag707 = tag707;
  6844. }
  6845. public Double getTag708() {
  6846. return tag708;
  6847. }
  6848. public void setTag708(Double tag708) {
  6849. this.tag708 = tag708;
  6850. }
  6851. public Double getTag709() {
  6852. return tag709;
  6853. }
  6854. public void setTag709(Double tag709) {
  6855. this.tag709 = tag709;
  6856. }
  6857. public Double getTag710() {
  6858. return tag710;
  6859. }
  6860. public void setTag710(Double tag710) {
  6861. this.tag710 = tag710;
  6862. }
  6863. public Double getTag711() {
  6864. return tag711;
  6865. }
  6866. public void setTag711(Double tag711) {
  6867. this.tag711 = tag711;
  6868. }
  6869. public Double getTag712() {
  6870. return tag712;
  6871. }
  6872. public void setTag712(Double tag712) {
  6873. this.tag712 = tag712;
  6874. }
  6875. public Double getTag713() {
  6876. return tag713;
  6877. }
  6878. public void setTag713(Double tag713) {
  6879. this.tag713 = tag713;
  6880. }
  6881. public Double getTag714() {
  6882. return tag714;
  6883. }
  6884. public void setTag714(Double tag714) {
  6885. this.tag714 = tag714;
  6886. }
  6887. public Double getTag715() {
  6888. return tag715;
  6889. }
  6890. public void setTag715(Double tag715) {
  6891. this.tag715 = tag715;
  6892. }
  6893. public Double getTag716() {
  6894. return tag716;
  6895. }
  6896. public void setTag716(Double tag716) {
  6897. this.tag716 = tag716;
  6898. }
  6899. public Double getTag717() {
  6900. return tag717;
  6901. }
  6902. public void setTag717(Double tag717) {
  6903. this.tag717 = tag717;
  6904. }
  6905. public Double getTag718() {
  6906. return tag718;
  6907. }
  6908. public void setTag718(Double tag718) {
  6909. this.tag718 = tag718;
  6910. }
  6911. public Double getTag719() {
  6912. return tag719;
  6913. }
  6914. public void setTag719(Double tag719) {
  6915. this.tag719 = tag719;
  6916. }
  6917. public Double getTag720() {
  6918. return tag720;
  6919. }
  6920. public void setTag720(Double tag720) {
  6921. this.tag720 = tag720;
  6922. }
  6923. public Double getTag721() {
  6924. return tag721;
  6925. }
  6926. public void setTag721(Double tag721) {
  6927. this.tag721 = tag721;
  6928. }
  6929. public Double getTag722() {
  6930. return tag722;
  6931. }
  6932. public void setTag722(Double tag722) {
  6933. this.tag722 = tag722;
  6934. }
  6935. public Double getTag723() {
  6936. return tag723;
  6937. }
  6938. public void setTag723(Double tag723) {
  6939. this.tag723 = tag723;
  6940. }
  6941. public Double getTag724() {
  6942. return tag724;
  6943. }
  6944. public void setTag724(Double tag724) {
  6945. this.tag724 = tag724;
  6946. }
  6947. public Double getTag725() {
  6948. return tag725;
  6949. }
  6950. public void setTag725(Double tag725) {
  6951. this.tag725 = tag725;
  6952. }
  6953. public Double getTag726() {
  6954. return tag726;
  6955. }
  6956. public void setTag726(Double tag726) {
  6957. this.tag726 = tag726;
  6958. }
  6959. public Double getTag727() {
  6960. return tag727;
  6961. }
  6962. public void setTag727(Double tag727) {
  6963. this.tag727 = tag727;
  6964. }
  6965. public Double getTag728() {
  6966. return tag728;
  6967. }
  6968. public void setTag728(Double tag728) {
  6969. this.tag728 = tag728;
  6970. }
  6971. public Double getTag729() {
  6972. return tag729;
  6973. }
  6974. public void setTag729(Double tag729) {
  6975. this.tag729 = tag729;
  6976. }
  6977. public Double getTag730() {
  6978. return tag730;
  6979. }
  6980. public void setTag730(Double tag730) {
  6981. this.tag730 = tag730;
  6982. }
  6983. public Double getTag731() {
  6984. return tag731;
  6985. }
  6986. public void setTag731(Double tag731) {
  6987. this.tag731 = tag731;
  6988. }
  6989. public Double getTag732() {
  6990. return tag732;
  6991. }
  6992. public void setTag732(Double tag732) {
  6993. this.tag732 = tag732;
  6994. }
  6995. public Double getTag733() {
  6996. return tag733;
  6997. }
  6998. public void setTag733(Double tag733) {
  6999. this.tag733 = tag733;
  7000. }
  7001. public Double getTag734() {
  7002. return tag734;
  7003. }
  7004. public void setTag734(Double tag734) {
  7005. this.tag734 = tag734;
  7006. }
  7007. public Double getTag735() {
  7008. return tag735;
  7009. }
  7010. public void setTag735(Double tag735) {
  7011. this.tag735 = tag735;
  7012. }
  7013. public Double getTag736() {
  7014. return tag736;
  7015. }
  7016. public void setTag736(Double tag736) {
  7017. this.tag736 = tag736;
  7018. }
  7019. public Double getTag737() {
  7020. return tag737;
  7021. }
  7022. public void setTag737(Double tag737) {
  7023. this.tag737 = tag737;
  7024. }
  7025. public Double getTag738() {
  7026. return tag738;
  7027. }
  7028. public void setTag738(Double tag738) {
  7029. this.tag738 = tag738;
  7030. }
  7031. public Double getTag739() {
  7032. return tag739;
  7033. }
  7034. public void setTag739(Double tag739) {
  7035. this.tag739 = tag739;
  7036. }
  7037. public Double getTag740() {
  7038. return tag740;
  7039. }
  7040. public void setTag740(Double tag740) {
  7041. this.tag740 = tag740;
  7042. }
  7043. public Double getTag741() {
  7044. return tag741;
  7045. }
  7046. public void setTag741(Double tag741) {
  7047. this.tag741 = tag741;
  7048. }
  7049. public Double getTag742() {
  7050. return tag742;
  7051. }
  7052. public void setTag742(Double tag742) {
  7053. this.tag742 = tag742;
  7054. }
  7055. public Double getTag743() {
  7056. return tag743;
  7057. }
  7058. public void setTag743(Double tag743) {
  7059. this.tag743 = tag743;
  7060. }
  7061. public Double getTag744() {
  7062. return tag744;
  7063. }
  7064. public void setTag744(Double tag744) {
  7065. this.tag744 = tag744;
  7066. }
  7067. public Double getTag745() {
  7068. return tag745;
  7069. }
  7070. public void setTag745(Double tag745) {
  7071. this.tag745 = tag745;
  7072. }
  7073. public Double getTag746() {
  7074. return tag746;
  7075. }
  7076. public void setTag746(Double tag746) {
  7077. this.tag746 = tag746;
  7078. }
  7079. public Double getTag747() {
  7080. return tag747;
  7081. }
  7082. public void setTag747(Double tag747) {
  7083. this.tag747 = tag747;
  7084. }
  7085. public Double getTag748() {
  7086. return tag748;
  7087. }
  7088. public void setTag748(Double tag748) {
  7089. this.tag748 = tag748;
  7090. }
  7091. public Double getTag749() {
  7092. return tag749;
  7093. }
  7094. public void setTag749(Double tag749) {
  7095. this.tag749 = tag749;
  7096. }
  7097. public Double getTag750() {
  7098. return tag750;
  7099. }
  7100. public void setTag750(Double tag750) {
  7101. this.tag750 = tag750;
  7102. }
  7103. public Double getTag751() {
  7104. return tag751;
  7105. }
  7106. public void setTag751(Double tag751) {
  7107. this.tag751 = tag751;
  7108. }
  7109. public Double getTag752() {
  7110. return tag752;
  7111. }
  7112. public void setTag752(Double tag752) {
  7113. this.tag752 = tag752;
  7114. }
  7115. public Double getTag753() {
  7116. return tag753;
  7117. }
  7118. public void setTag753(Double tag753) {
  7119. this.tag753 = tag753;
  7120. }
  7121. public Double getTag754() {
  7122. return tag754;
  7123. }
  7124. public void setTag754(Double tag754) {
  7125. this.tag754 = tag754;
  7126. }
  7127. public Double getTag755() {
  7128. return tag755;
  7129. }
  7130. public void setTag755(Double tag755) {
  7131. this.tag755 = tag755;
  7132. }
  7133. public Double getTag756() {
  7134. return tag756;
  7135. }
  7136. public void setTag756(Double tag756) {
  7137. this.tag756 = tag756;
  7138. }
  7139. public Double getTag757() {
  7140. return tag757;
  7141. }
  7142. public void setTag757(Double tag757) {
  7143. this.tag757 = tag757;
  7144. }
  7145. public Double getTag758() {
  7146. return tag758;
  7147. }
  7148. public void setTag758(Double tag758) {
  7149. this.tag758 = tag758;
  7150. }
  7151. public Double getTag759() {
  7152. return tag759;
  7153. }
  7154. public void setTag759(Double tag759) {
  7155. this.tag759 = tag759;
  7156. }
  7157. public Double getTag760() {
  7158. return tag760;
  7159. }
  7160. public void setTag760(Double tag760) {
  7161. this.tag760 = tag760;
  7162. }
  7163. public Double getTag761() {
  7164. return tag761;
  7165. }
  7166. public void setTag761(Double tag761) {
  7167. this.tag761 = tag761;
  7168. }
  7169. public Double getTag762() {
  7170. return tag762;
  7171. }
  7172. public void setTag762(Double tag762) {
  7173. this.tag762 = tag762;
  7174. }
  7175. public Double getTag763() {
  7176. return tag763;
  7177. }
  7178. public void setTag763(Double tag763) {
  7179. this.tag763 = tag763;
  7180. }
  7181. public Double getTag764() {
  7182. return tag764;
  7183. }
  7184. public void setTag764(Double tag764) {
  7185. this.tag764 = tag764;
  7186. }
  7187. public Double getTag765() {
  7188. return tag765;
  7189. }
  7190. public void setTag765(Double tag765) {
  7191. this.tag765 = tag765;
  7192. }
  7193. public Double getTag766() {
  7194. return tag766;
  7195. }
  7196. public void setTag766(Double tag766) {
  7197. this.tag766 = tag766;
  7198. }
  7199. public Double getTag767() {
  7200. return tag767;
  7201. }
  7202. public void setTag767(Double tag767) {
  7203. this.tag767 = tag767;
  7204. }
  7205. public Double getTag768() {
  7206. return tag768;
  7207. }
  7208. public void setTag768(Double tag768) {
  7209. this.tag768 = tag768;
  7210. }
  7211. public Double getTag769() {
  7212. return tag769;
  7213. }
  7214. public void setTag769(Double tag769) {
  7215. this.tag769 = tag769;
  7216. }
  7217. public Double getTag770() {
  7218. return tag770;
  7219. }
  7220. public void setTag770(Double tag770) {
  7221. this.tag770 = tag770;
  7222. }
  7223. public Double getTag771() {
  7224. return tag771;
  7225. }
  7226. public void setTag771(Double tag771) {
  7227. this.tag771 = tag771;
  7228. }
  7229. public Double getTag772() {
  7230. return tag772;
  7231. }
  7232. public void setTag772(Double tag772) {
  7233. this.tag772 = tag772;
  7234. }
  7235. public Double getTag773() {
  7236. return tag773;
  7237. }
  7238. public void setTag773(Double tag773) {
  7239. this.tag773 = tag773;
  7240. }
  7241. public Double getTag774() {
  7242. return tag774;
  7243. }
  7244. public void setTag774(Double tag774) {
  7245. this.tag774 = tag774;
  7246. }
  7247. public Double getTag775() {
  7248. return tag775;
  7249. }
  7250. public void setTag775(Double tag775) {
  7251. this.tag775 = tag775;
  7252. }
  7253. public Double getTag776() {
  7254. return tag776;
  7255. }
  7256. public void setTag776(Double tag776) {
  7257. this.tag776 = tag776;
  7258. }
  7259. public Double getTag777() {
  7260. return tag777;
  7261. }
  7262. public void setTag777(Double tag777) {
  7263. this.tag777 = tag777;
  7264. }
  7265. public Double getTag778() {
  7266. return tag778;
  7267. }
  7268. public void setTag778(Double tag778) {
  7269. this.tag778 = tag778;
  7270. }
  7271. public Double getTag779() {
  7272. return tag779;
  7273. }
  7274. public void setTag779(Double tag779) {
  7275. this.tag779 = tag779;
  7276. }
  7277. public Double getTag780() {
  7278. return tag780;
  7279. }
  7280. public void setTag780(Double tag780) {
  7281. this.tag780 = tag780;
  7282. }
  7283. public Double getTag781() {
  7284. return tag781;
  7285. }
  7286. public void setTag781(Double tag781) {
  7287. this.tag781 = tag781;
  7288. }
  7289. public Double getTag782() {
  7290. return tag782;
  7291. }
  7292. public void setTag782(Double tag782) {
  7293. this.tag782 = tag782;
  7294. }
  7295. public Double getTag783() {
  7296. return tag783;
  7297. }
  7298. public void setTag783(Double tag783) {
  7299. this.tag783 = tag783;
  7300. }
  7301. public Double getTag784() {
  7302. return tag784;
  7303. }
  7304. public void setTag784(Double tag784) {
  7305. this.tag784 = tag784;
  7306. }
  7307. public Double getTag785() {
  7308. return tag785;
  7309. }
  7310. public void setTag785(Double tag785) {
  7311. this.tag785 = tag785;
  7312. }
  7313. public Double getTag786() {
  7314. return tag786;
  7315. }
  7316. public void setTag786(Double tag786) {
  7317. this.tag786 = tag786;
  7318. }
  7319. public Double getTag787() {
  7320. return tag787;
  7321. }
  7322. public void setTag787(Double tag787) {
  7323. this.tag787 = tag787;
  7324. }
  7325. public Double getTag788() {
  7326. return tag788;
  7327. }
  7328. public void setTag788(Double tag788) {
  7329. this.tag788 = tag788;
  7330. }
  7331. public Double getTag789() {
  7332. return tag789;
  7333. }
  7334. public void setTag789(Double tag789) {
  7335. this.tag789 = tag789;
  7336. }
  7337. public Double getTag790() {
  7338. return tag790;
  7339. }
  7340. public void setTag790(Double tag790) {
  7341. this.tag790 = tag790;
  7342. }
  7343. public Double getTag791() {
  7344. return tag791;
  7345. }
  7346. public void setTag791(Double tag791) {
  7347. this.tag791 = tag791;
  7348. }
  7349. public Double getTag792() {
  7350. return tag792;
  7351. }
  7352. public void setTag792(Double tag792) {
  7353. this.tag792 = tag792;
  7354. }
  7355. public Double getTag793() {
  7356. return tag793;
  7357. }
  7358. public void setTag793(Double tag793) {
  7359. this.tag793 = tag793;
  7360. }
  7361. public Double getTag794() {
  7362. return tag794;
  7363. }
  7364. public void setTag794(Double tag794) {
  7365. this.tag794 = tag794;
  7366. }
  7367. public Double getTag795() {
  7368. return tag795;
  7369. }
  7370. public void setTag795(Double tag795) {
  7371. this.tag795 = tag795;
  7372. }
  7373. public Double getTag796() {
  7374. return tag796;
  7375. }
  7376. public void setTag796(Double tag796) {
  7377. this.tag796 = tag796;
  7378. }
  7379. public Double getTag797() {
  7380. return tag797;
  7381. }
  7382. public void setTag797(Double tag797) {
  7383. this.tag797 = tag797;
  7384. }
  7385. public Double getTag798() {
  7386. return tag798;
  7387. }
  7388. public void setTag798(Double tag798) {
  7389. this.tag798 = tag798;
  7390. }
  7391. public Double getTag799() {
  7392. return tag799;
  7393. }
  7394. public void setTag799(Double tag799) {
  7395. this.tag799 = tag799;
  7396. }
  7397. public Double getTag800() {
  7398. return tag800;
  7399. }
  7400. public void setTag800(Double tag800) {
  7401. this.tag800 = tag800;
  7402. }
  7403. @Override
  7404. public String toString() {
  7405. StringBuilder sb = new StringBuilder();
  7406. sb.append(getClass().getSimpleName());
  7407. sb.append(" [");
  7408. sb.append("Hash = ").append(hashCode());
  7409. sb.append(", clock=").append(clock);
  7410. sb.append(", insertTime=").append(insertTime);
  7411. sb.append(", tag1=").append(tag1);
  7412. sb.append(", tag2=").append(tag2);
  7413. sb.append(", tag3=").append(tag3);
  7414. sb.append(", tag4=").append(tag4);
  7415. sb.append(", tag5=").append(tag5);
  7416. sb.append(", tag6=").append(tag6);
  7417. sb.append(", tag7=").append(tag7);
  7418. sb.append(", tag8=").append(tag8);
  7419. sb.append(", tag9=").append(tag9);
  7420. sb.append(", tag10=").append(tag10);
  7421. sb.append(", tag11=").append(tag11);
  7422. sb.append(", tag12=").append(tag12);
  7423. sb.append(", tag13=").append(tag13);
  7424. sb.append(", tag14=").append(tag14);
  7425. sb.append(", tag15=").append(tag15);
  7426. sb.append(", tag16=").append(tag16);
  7427. sb.append(", tag17=").append(tag17);
  7428. sb.append(", tag18=").append(tag18);
  7429. sb.append(", tag19=").append(tag19);
  7430. sb.append(", tag20=").append(tag20);
  7431. sb.append(", tag21=").append(tag21);
  7432. sb.append(", tag22=").append(tag22);
  7433. sb.append(", tag23=").append(tag23);
  7434. sb.append(", tag24=").append(tag24);
  7435. sb.append(", tag25=").append(tag25);
  7436. sb.append(", tag26=").append(tag26);
  7437. sb.append(", tag27=").append(tag27);
  7438. sb.append(", tag28=").append(tag28);
  7439. sb.append(", tag29=").append(tag29);
  7440. sb.append(", tag30=").append(tag30);
  7441. sb.append(", tag31=").append(tag31);
  7442. sb.append(", tag32=").append(tag32);
  7443. sb.append(", tag33=").append(tag33);
  7444. sb.append(", tag34=").append(tag34);
  7445. sb.append(", tag35=").append(tag35);
  7446. sb.append(", tag36=").append(tag36);
  7447. sb.append(", tag37=").append(tag37);
  7448. sb.append(", tag38=").append(tag38);
  7449. sb.append(", tag39=").append(tag39);
  7450. sb.append(", tag40=").append(tag40);
  7451. sb.append(", tag41=").append(tag41);
  7452. sb.append(", tag42=").append(tag42);
  7453. sb.append(", tag43=").append(tag43);
  7454. sb.append(", tag44=").append(tag44);
  7455. sb.append(", tag45=").append(tag45);
  7456. sb.append(", tag46=").append(tag46);
  7457. sb.append(", tag47=").append(tag47);
  7458. sb.append(", tag48=").append(tag48);
  7459. sb.append(", tag49=").append(tag49);
  7460. sb.append(", tag50=").append(tag50);
  7461. sb.append(", tag51=").append(tag51);
  7462. sb.append(", tag52=").append(tag52);
  7463. sb.append(", tag53=").append(tag53);
  7464. sb.append(", tag54=").append(tag54);
  7465. sb.append(", tag55=").append(tag55);
  7466. sb.append(", tag56=").append(tag56);
  7467. sb.append(", tag57=").append(tag57);
  7468. sb.append(", tag58=").append(tag58);
  7469. sb.append(", tag59=").append(tag59);
  7470. sb.append(", tag60=").append(tag60);
  7471. sb.append(", tag61=").append(tag61);
  7472. sb.append(", tag62=").append(tag62);
  7473. sb.append(", tag63=").append(tag63);
  7474. sb.append(", tag64=").append(tag64);
  7475. sb.append(", tag65=").append(tag65);
  7476. sb.append(", tag66=").append(tag66);
  7477. sb.append(", tag67=").append(tag67);
  7478. sb.append(", tag68=").append(tag68);
  7479. sb.append(", tag69=").append(tag69);
  7480. sb.append(", tag70=").append(tag70);
  7481. sb.append(", tag71=").append(tag71);
  7482. sb.append(", tag72=").append(tag72);
  7483. sb.append(", tag73=").append(tag73);
  7484. sb.append(", tag74=").append(tag74);
  7485. sb.append(", tag75=").append(tag75);
  7486. sb.append(", tag76=").append(tag76);
  7487. sb.append(", tag77=").append(tag77);
  7488. sb.append(", tag78=").append(tag78);
  7489. sb.append(", tag79=").append(tag79);
  7490. sb.append(", tag80=").append(tag80);
  7491. sb.append(", tag81=").append(tag81);
  7492. sb.append(", tag82=").append(tag82);
  7493. sb.append(", tag83=").append(tag83);
  7494. sb.append(", tag84=").append(tag84);
  7495. sb.append(", tag85=").append(tag85);
  7496. sb.append(", tag86=").append(tag86);
  7497. sb.append(", tag87=").append(tag87);
  7498. sb.append(", tag88=").append(tag88);
  7499. sb.append(", tag89=").append(tag89);
  7500. sb.append(", tag90=").append(tag90);
  7501. sb.append(", tag91=").append(tag91);
  7502. sb.append(", tag92=").append(tag92);
  7503. sb.append(", tag93=").append(tag93);
  7504. sb.append(", tag94=").append(tag94);
  7505. sb.append(", tag95=").append(tag95);
  7506. sb.append(", tag96=").append(tag96);
  7507. sb.append(", tag97=").append(tag97);
  7508. sb.append(", tag98=").append(tag98);
  7509. sb.append(", tag99=").append(tag99);
  7510. sb.append(", tag100=").append(tag100);
  7511. sb.append(", tag101=").append(tag101);
  7512. sb.append(", tag102=").append(tag102);
  7513. sb.append(", tag103=").append(tag103);
  7514. sb.append(", tag104=").append(tag104);
  7515. sb.append(", tag105=").append(tag105);
  7516. sb.append(", tag106=").append(tag106);
  7517. sb.append(", tag107=").append(tag107);
  7518. sb.append(", tag108=").append(tag108);
  7519. sb.append(", tag109=").append(tag109);
  7520. sb.append(", tag110=").append(tag110);
  7521. sb.append(", tag111=").append(tag111);
  7522. sb.append(", tag112=").append(tag112);
  7523. sb.append(", tag113=").append(tag113);
  7524. sb.append(", tag114=").append(tag114);
  7525. sb.append(", tag115=").append(tag115);
  7526. sb.append(", tag116=").append(tag116);
  7527. sb.append(", tag117=").append(tag117);
  7528. sb.append(", tag118=").append(tag118);
  7529. sb.append(", tag119=").append(tag119);
  7530. sb.append(", tag120=").append(tag120);
  7531. sb.append(", tag121=").append(tag121);
  7532. sb.append(", tag122=").append(tag122);
  7533. sb.append(", tag123=").append(tag123);
  7534. sb.append(", tag124=").append(tag124);
  7535. sb.append(", tag125=").append(tag125);
  7536. sb.append(", tag126=").append(tag126);
  7537. sb.append(", tag127=").append(tag127);
  7538. sb.append(", tag128=").append(tag128);
  7539. sb.append(", tag129=").append(tag129);
  7540. sb.append(", tag130=").append(tag130);
  7541. sb.append(", tag131=").append(tag131);
  7542. sb.append(", tag132=").append(tag132);
  7543. sb.append(", tag133=").append(tag133);
  7544. sb.append(", tag134=").append(tag134);
  7545. sb.append(", tag135=").append(tag135);
  7546. sb.append(", tag136=").append(tag136);
  7547. sb.append(", tag137=").append(tag137);
  7548. sb.append(", tag138=").append(tag138);
  7549. sb.append(", tag139=").append(tag139);
  7550. sb.append(", tag140=").append(tag140);
  7551. sb.append(", tag141=").append(tag141);
  7552. sb.append(", tag142=").append(tag142);
  7553. sb.append(", tag143=").append(tag143);
  7554. sb.append(", tag144=").append(tag144);
  7555. sb.append(", tag145=").append(tag145);
  7556. sb.append(", tag146=").append(tag146);
  7557. sb.append(", tag147=").append(tag147);
  7558. sb.append(", tag148=").append(tag148);
  7559. sb.append(", tag149=").append(tag149);
  7560. sb.append(", tag150=").append(tag150);
  7561. sb.append(", tag151=").append(tag151);
  7562. sb.append(", tag152=").append(tag152);
  7563. sb.append(", tag153=").append(tag153);
  7564. sb.append(", tag154=").append(tag154);
  7565. sb.append(", tag155=").append(tag155);
  7566. sb.append(", tag156=").append(tag156);
  7567. sb.append(", tag157=").append(tag157);
  7568. sb.append(", tag158=").append(tag158);
  7569. sb.append(", tag159=").append(tag159);
  7570. sb.append(", tag160=").append(tag160);
  7571. sb.append(", tag161=").append(tag161);
  7572. sb.append(", tag162=").append(tag162);
  7573. sb.append(", tag163=").append(tag163);
  7574. sb.append(", tag164=").append(tag164);
  7575. sb.append(", tag165=").append(tag165);
  7576. sb.append(", tag166=").append(tag166);
  7577. sb.append(", tag167=").append(tag167);
  7578. sb.append(", tag168=").append(tag168);
  7579. sb.append(", tag169=").append(tag169);
  7580. sb.append(", tag170=").append(tag170);
  7581. sb.append(", tag171=").append(tag171);
  7582. sb.append(", tag172=").append(tag172);
  7583. sb.append(", tag173=").append(tag173);
  7584. sb.append(", tag174=").append(tag174);
  7585. sb.append(", tag175=").append(tag175);
  7586. sb.append(", tag176=").append(tag176);
  7587. sb.append(", tag177=").append(tag177);
  7588. sb.append(", tag178=").append(tag178);
  7589. sb.append(", tag179=").append(tag179);
  7590. sb.append(", tag180=").append(tag180);
  7591. sb.append(", tag181=").append(tag181);
  7592. sb.append(", tag182=").append(tag182);
  7593. sb.append(", tag183=").append(tag183);
  7594. sb.append(", tag184=").append(tag184);
  7595. sb.append(", tag185=").append(tag185);
  7596. sb.append(", tag186=").append(tag186);
  7597. sb.append(", tag187=").append(tag187);
  7598. sb.append(", tag188=").append(tag188);
  7599. sb.append(", tag189=").append(tag189);
  7600. sb.append(", tag190=").append(tag190);
  7601. sb.append(", tag191=").append(tag191);
  7602. sb.append(", tag192=").append(tag192);
  7603. sb.append(", tag193=").append(tag193);
  7604. sb.append(", tag194=").append(tag194);
  7605. sb.append(", tag195=").append(tag195);
  7606. sb.append(", tag196=").append(tag196);
  7607. sb.append(", tag197=").append(tag197);
  7608. sb.append(", tag198=").append(tag198);
  7609. sb.append(", tag199=").append(tag199);
  7610. sb.append(", tag200=").append(tag200);
  7611. sb.append(", tag201=").append(tag201);
  7612. sb.append(", tag202=").append(tag202);
  7613. sb.append(", tag203=").append(tag203);
  7614. sb.append(", tag204=").append(tag204);
  7615. sb.append(", tag205=").append(tag205);
  7616. sb.append(", tag206=").append(tag206);
  7617. sb.append(", tag207=").append(tag207);
  7618. sb.append(", tag208=").append(tag208);
  7619. sb.append(", tag209=").append(tag209);
  7620. sb.append(", tag210=").append(tag210);
  7621. sb.append(", tag211=").append(tag211);
  7622. sb.append(", tag212=").append(tag212);
  7623. sb.append(", tag213=").append(tag213);
  7624. sb.append(", tag214=").append(tag214);
  7625. sb.append(", tag215=").append(tag215);
  7626. sb.append(", tag216=").append(tag216);
  7627. sb.append(", tag217=").append(tag217);
  7628. sb.append(", tag218=").append(tag218);
  7629. sb.append(", tag219=").append(tag219);
  7630. sb.append(", tag220=").append(tag220);
  7631. sb.append(", tag221=").append(tag221);
  7632. sb.append(", tag222=").append(tag222);
  7633. sb.append(", tag223=").append(tag223);
  7634. sb.append(", tag224=").append(tag224);
  7635. sb.append(", tag225=").append(tag225);
  7636. sb.append(", tag226=").append(tag226);
  7637. sb.append(", tag227=").append(tag227);
  7638. sb.append(", tag228=").append(tag228);
  7639. sb.append(", tag229=").append(tag229);
  7640. sb.append(", tag230=").append(tag230);
  7641. sb.append(", tag231=").append(tag231);
  7642. sb.append(", tag232=").append(tag232);
  7643. sb.append(", tag233=").append(tag233);
  7644. sb.append(", tag234=").append(tag234);
  7645. sb.append(", tag235=").append(tag235);
  7646. sb.append(", tag236=").append(tag236);
  7647. sb.append(", tag237=").append(tag237);
  7648. sb.append(", tag238=").append(tag238);
  7649. sb.append(", tag239=").append(tag239);
  7650. sb.append(", tag240=").append(tag240);
  7651. sb.append(", tag241=").append(tag241);
  7652. sb.append(", tag242=").append(tag242);
  7653. sb.append(", tag243=").append(tag243);
  7654. sb.append(", tag244=").append(tag244);
  7655. sb.append(", tag245=").append(tag245);
  7656. sb.append(", tag246=").append(tag246);
  7657. sb.append(", tag247=").append(tag247);
  7658. sb.append(", tag248=").append(tag248);
  7659. sb.append(", tag249=").append(tag249);
  7660. sb.append(", tag250=").append(tag250);
  7661. sb.append(", tag251=").append(tag251);
  7662. sb.append(", tag252=").append(tag252);
  7663. sb.append(", tag253=").append(tag253);
  7664. sb.append(", tag254=").append(tag254);
  7665. sb.append(", tag255=").append(tag255);
  7666. sb.append(", tag256=").append(tag256);
  7667. sb.append(", tag257=").append(tag257);
  7668. sb.append(", tag258=").append(tag258);
  7669. sb.append(", tag259=").append(tag259);
  7670. sb.append(", tag260=").append(tag260);
  7671. sb.append(", tag261=").append(tag261);
  7672. sb.append(", tag262=").append(tag262);
  7673. sb.append(", tag263=").append(tag263);
  7674. sb.append(", tag264=").append(tag264);
  7675. sb.append(", tag265=").append(tag265);
  7676. sb.append(", tag266=").append(tag266);
  7677. sb.append(", tag267=").append(tag267);
  7678. sb.append(", tag268=").append(tag268);
  7679. sb.append(", tag269=").append(tag269);
  7680. sb.append(", tag270=").append(tag270);
  7681. sb.append(", tag271=").append(tag271);
  7682. sb.append(", tag272=").append(tag272);
  7683. sb.append(", tag273=").append(tag273);
  7684. sb.append(", tag274=").append(tag274);
  7685. sb.append(", tag275=").append(tag275);
  7686. sb.append(", tag276=").append(tag276);
  7687. sb.append(", tag277=").append(tag277);
  7688. sb.append(", tag278=").append(tag278);
  7689. sb.append(", tag279=").append(tag279);
  7690. sb.append(", tag280=").append(tag280);
  7691. sb.append(", tag281=").append(tag281);
  7692. sb.append(", tag282=").append(tag282);
  7693. sb.append(", tag283=").append(tag283);
  7694. sb.append(", tag284=").append(tag284);
  7695. sb.append(", tag285=").append(tag285);
  7696. sb.append(", tag286=").append(tag286);
  7697. sb.append(", tag287=").append(tag287);
  7698. sb.append(", tag288=").append(tag288);
  7699. sb.append(", tag289=").append(tag289);
  7700. sb.append(", tag290=").append(tag290);
  7701. sb.append(", tag291=").append(tag291);
  7702. sb.append(", tag292=").append(tag292);
  7703. sb.append(", tag293=").append(tag293);
  7704. sb.append(", tag294=").append(tag294);
  7705. sb.append(", tag295=").append(tag295);
  7706. sb.append(", tag296=").append(tag296);
  7707. sb.append(", tag297=").append(tag297);
  7708. sb.append(", tag298=").append(tag298);
  7709. sb.append(", tag299=").append(tag299);
  7710. sb.append(", tag300=").append(tag300);
  7711. sb.append(", tag301=").append(tag301);
  7712. sb.append(", tag302=").append(tag302);
  7713. sb.append(", tag303=").append(tag303);
  7714. sb.append(", tag304=").append(tag304);
  7715. sb.append(", tag305=").append(tag305);
  7716. sb.append(", tag306=").append(tag306);
  7717. sb.append(", tag307=").append(tag307);
  7718. sb.append(", tag308=").append(tag308);
  7719. sb.append(", tag309=").append(tag309);
  7720. sb.append(", tag310=").append(tag310);
  7721. sb.append(", tag311=").append(tag311);
  7722. sb.append(", tag312=").append(tag312);
  7723. sb.append(", tag313=").append(tag313);
  7724. sb.append(", tag314=").append(tag314);
  7725. sb.append(", tag315=").append(tag315);
  7726. sb.append(", tag316=").append(tag316);
  7727. sb.append(", tag317=").append(tag317);
  7728. sb.append(", tag318=").append(tag318);
  7729. sb.append(", tag319=").append(tag319);
  7730. sb.append(", tag320=").append(tag320);
  7731. sb.append(", tag321=").append(tag321);
  7732. sb.append(", tag322=").append(tag322);
  7733. sb.append(", tag323=").append(tag323);
  7734. sb.append(", tag324=").append(tag324);
  7735. sb.append(", tag325=").append(tag325);
  7736. sb.append(", tag326=").append(tag326);
  7737. sb.append(", tag327=").append(tag327);
  7738. sb.append(", tag328=").append(tag328);
  7739. sb.append(", tag329=").append(tag329);
  7740. sb.append(", tag330=").append(tag330);
  7741. sb.append(", tag331=").append(tag331);
  7742. sb.append(", tag332=").append(tag332);
  7743. sb.append(", tag333=").append(tag333);
  7744. sb.append(", tag334=").append(tag334);
  7745. sb.append(", tag335=").append(tag335);
  7746. sb.append(", tag336=").append(tag336);
  7747. sb.append(", tag337=").append(tag337);
  7748. sb.append(", tag338=").append(tag338);
  7749. sb.append(", tag339=").append(tag339);
  7750. sb.append(", tag340=").append(tag340);
  7751. sb.append(", tag341=").append(tag341);
  7752. sb.append(", tag342=").append(tag342);
  7753. sb.append(", tag343=").append(tag343);
  7754. sb.append(", tag344=").append(tag344);
  7755. sb.append(", tag345=").append(tag345);
  7756. sb.append(", tag346=").append(tag346);
  7757. sb.append(", tag347=").append(tag347);
  7758. sb.append(", tag348=").append(tag348);
  7759. sb.append(", tag349=").append(tag349);
  7760. sb.append(", tag350=").append(tag350);
  7761. sb.append(", tag351=").append(tag351);
  7762. sb.append(", tag352=").append(tag352);
  7763. sb.append(", tag353=").append(tag353);
  7764. sb.append(", tag354=").append(tag354);
  7765. sb.append(", tag355=").append(tag355);
  7766. sb.append(", tag356=").append(tag356);
  7767. sb.append(", tag357=").append(tag357);
  7768. sb.append(", tag358=").append(tag358);
  7769. sb.append(", tag359=").append(tag359);
  7770. sb.append(", tag360=").append(tag360);
  7771. sb.append(", tag361=").append(tag361);
  7772. sb.append(", tag362=").append(tag362);
  7773. sb.append(", tag363=").append(tag363);
  7774. sb.append(", tag364=").append(tag364);
  7775. sb.append(", tag365=").append(tag365);
  7776. sb.append(", tag366=").append(tag366);
  7777. sb.append(", tag367=").append(tag367);
  7778. sb.append(", tag368=").append(tag368);
  7779. sb.append(", tag369=").append(tag369);
  7780. sb.append(", tag370=").append(tag370);
  7781. sb.append(", tag371=").append(tag371);
  7782. sb.append(", tag372=").append(tag372);
  7783. sb.append(", tag373=").append(tag373);
  7784. sb.append(", tag374=").append(tag374);
  7785. sb.append(", tag375=").append(tag375);
  7786. sb.append(", tag376=").append(tag376);
  7787. sb.append(", tag377=").append(tag377);
  7788. sb.append(", tag378=").append(tag378);
  7789. sb.append(", tag379=").append(tag379);
  7790. sb.append(", tag380=").append(tag380);
  7791. sb.append(", tag381=").append(tag381);
  7792. sb.append(", tag382=").append(tag382);
  7793. sb.append(", tag383=").append(tag383);
  7794. sb.append(", tag384=").append(tag384);
  7795. sb.append(", tag385=").append(tag385);
  7796. sb.append(", tag386=").append(tag386);
  7797. sb.append(", tag387=").append(tag387);
  7798. sb.append(", tag388=").append(tag388);
  7799. sb.append(", tag389=").append(tag389);
  7800. sb.append(", tag390=").append(tag390);
  7801. sb.append(", tag391=").append(tag391);
  7802. sb.append(", tag392=").append(tag392);
  7803. sb.append(", tag393=").append(tag393);
  7804. sb.append(", tag394=").append(tag394);
  7805. sb.append(", tag395=").append(tag395);
  7806. sb.append(", tag396=").append(tag396);
  7807. sb.append(", tag397=").append(tag397);
  7808. sb.append(", tag398=").append(tag398);
  7809. sb.append(", tag399=").append(tag399);
  7810. sb.append(", tag400=").append(tag400);
  7811. sb.append(", tag401=").append(tag401);
  7812. sb.append(", tag402=").append(tag402);
  7813. sb.append(", tag403=").append(tag403);
  7814. sb.append(", tag404=").append(tag404);
  7815. sb.append(", tag405=").append(tag405);
  7816. sb.append(", tag406=").append(tag406);
  7817. sb.append(", tag407=").append(tag407);
  7818. sb.append(", tag408=").append(tag408);
  7819. sb.append(", tag409=").append(tag409);
  7820. sb.append(", tag410=").append(tag410);
  7821. sb.append(", tag411=").append(tag411);
  7822. sb.append(", tag412=").append(tag412);
  7823. sb.append(", tag413=").append(tag413);
  7824. sb.append(", tag414=").append(tag414);
  7825. sb.append(", tag415=").append(tag415);
  7826. sb.append(", tag416=").append(tag416);
  7827. sb.append(", tag417=").append(tag417);
  7828. sb.append(", tag418=").append(tag418);
  7829. sb.append(", tag419=").append(tag419);
  7830. sb.append(", tag420=").append(tag420);
  7831. sb.append(", tag421=").append(tag421);
  7832. sb.append(", tag422=").append(tag422);
  7833. sb.append(", tag423=").append(tag423);
  7834. sb.append(", tag424=").append(tag424);
  7835. sb.append(", tag425=").append(tag425);
  7836. sb.append(", tag426=").append(tag426);
  7837. sb.append(", tag427=").append(tag427);
  7838. sb.append(", tag428=").append(tag428);
  7839. sb.append(", tag429=").append(tag429);
  7840. sb.append(", tag430=").append(tag430);
  7841. sb.append(", tag431=").append(tag431);
  7842. sb.append(", tag432=").append(tag432);
  7843. sb.append(", tag433=").append(tag433);
  7844. sb.append(", tag434=").append(tag434);
  7845. sb.append(", tag435=").append(tag435);
  7846. sb.append(", tag436=").append(tag436);
  7847. sb.append(", tag437=").append(tag437);
  7848. sb.append(", tag438=").append(tag438);
  7849. sb.append(", tag439=").append(tag439);
  7850. sb.append(", tag440=").append(tag440);
  7851. sb.append(", tag441=").append(tag441);
  7852. sb.append(", tag442=").append(tag442);
  7853. sb.append(", tag443=").append(tag443);
  7854. sb.append(", tag444=").append(tag444);
  7855. sb.append(", tag445=").append(tag445);
  7856. sb.append(", tag446=").append(tag446);
  7857. sb.append(", tag447=").append(tag447);
  7858. sb.append(", tag448=").append(tag448);
  7859. sb.append(", tag449=").append(tag449);
  7860. sb.append(", tag450=").append(tag450);
  7861. sb.append(", tag451=").append(tag451);
  7862. sb.append(", tag452=").append(tag452);
  7863. sb.append(", tag453=").append(tag453);
  7864. sb.append(", tag454=").append(tag454);
  7865. sb.append(", tag455=").append(tag455);
  7866. sb.append(", tag456=").append(tag456);
  7867. sb.append(", tag457=").append(tag457);
  7868. sb.append(", tag458=").append(tag458);
  7869. sb.append(", tag459=").append(tag459);
  7870. sb.append(", tag460=").append(tag460);
  7871. sb.append(", tag461=").append(tag461);
  7872. sb.append(", tag462=").append(tag462);
  7873. sb.append(", tag463=").append(tag463);
  7874. sb.append(", tag464=").append(tag464);
  7875. sb.append(", tag465=").append(tag465);
  7876. sb.append(", tag466=").append(tag466);
  7877. sb.append(", tag467=").append(tag467);
  7878. sb.append(", tag468=").append(tag468);
  7879. sb.append(", tag469=").append(tag469);
  7880. sb.append(", tag470=").append(tag470);
  7881. sb.append(", tag471=").append(tag471);
  7882. sb.append(", tag472=").append(tag472);
  7883. sb.append(", tag473=").append(tag473);
  7884. sb.append(", tag474=").append(tag474);
  7885. sb.append(", tag475=").append(tag475);
  7886. sb.append(", tag476=").append(tag476);
  7887. sb.append(", tag477=").append(tag477);
  7888. sb.append(", tag478=").append(tag478);
  7889. sb.append(", tag479=").append(tag479);
  7890. sb.append(", tag480=").append(tag480);
  7891. sb.append(", tag481=").append(tag481);
  7892. sb.append(", tag482=").append(tag482);
  7893. sb.append(", tag483=").append(tag483);
  7894. sb.append(", tag484=").append(tag484);
  7895. sb.append(", tag485=").append(tag485);
  7896. sb.append(", tag486=").append(tag486);
  7897. sb.append(", tag487=").append(tag487);
  7898. sb.append(", tag488=").append(tag488);
  7899. sb.append(", tag489=").append(tag489);
  7900. sb.append(", tag490=").append(tag490);
  7901. sb.append(", tag491=").append(tag491);
  7902. sb.append(", tag492=").append(tag492);
  7903. sb.append(", tag493=").append(tag493);
  7904. sb.append(", tag494=").append(tag494);
  7905. sb.append(", tag495=").append(tag495);
  7906. sb.append(", tag496=").append(tag496);
  7907. sb.append(", tag497=").append(tag497);
  7908. sb.append(", tag498=").append(tag498);
  7909. sb.append(", tag499=").append(tag499);
  7910. sb.append(", tag500=").append(tag500);
  7911. sb.append(", tag501=").append(tag501);
  7912. sb.append(", tag502=").append(tag502);
  7913. sb.append(", tag503=").append(tag503);
  7914. sb.append(", tag504=").append(tag504);
  7915. sb.append(", tag505=").append(tag505);
  7916. sb.append(", tag506=").append(tag506);
  7917. sb.append(", tag507=").append(tag507);
  7918. sb.append(", tag508=").append(tag508);
  7919. sb.append(", tag509=").append(tag509);
  7920. sb.append(", tag510=").append(tag510);
  7921. sb.append(", tag511=").append(tag511);
  7922. sb.append(", tag512=").append(tag512);
  7923. sb.append(", tag513=").append(tag513);
  7924. sb.append(", tag514=").append(tag514);
  7925. sb.append(", tag515=").append(tag515);
  7926. sb.append(", tag516=").append(tag516);
  7927. sb.append(", tag517=").append(tag517);
  7928. sb.append(", tag518=").append(tag518);
  7929. sb.append(", tag519=").append(tag519);
  7930. sb.append(", tag520=").append(tag520);
  7931. sb.append(", tag521=").append(tag521);
  7932. sb.append(", tag522=").append(tag522);
  7933. sb.append(", tag523=").append(tag523);
  7934. sb.append(", tag524=").append(tag524);
  7935. sb.append(", tag525=").append(tag525);
  7936. sb.append(", tag526=").append(tag526);
  7937. sb.append(", tag527=").append(tag527);
  7938. sb.append(", tag528=").append(tag528);
  7939. sb.append(", tag529=").append(tag529);
  7940. sb.append(", tag530=").append(tag530);
  7941. sb.append(", tag531=").append(tag531);
  7942. sb.append(", tag532=").append(tag532);
  7943. sb.append(", tag533=").append(tag533);
  7944. sb.append(", tag534=").append(tag534);
  7945. sb.append(", tag535=").append(tag535);
  7946. sb.append(", tag536=").append(tag536);
  7947. sb.append(", tag537=").append(tag537);
  7948. sb.append(", tag538=").append(tag538);
  7949. sb.append(", tag539=").append(tag539);
  7950. sb.append(", tag540=").append(tag540);
  7951. sb.append(", tag541=").append(tag541);
  7952. sb.append(", tag542=").append(tag542);
  7953. sb.append(", tag543=").append(tag543);
  7954. sb.append(", tag544=").append(tag544);
  7955. sb.append(", tag545=").append(tag545);
  7956. sb.append(", tag546=").append(tag546);
  7957. sb.append(", tag547=").append(tag547);
  7958. sb.append(", tag548=").append(tag548);
  7959. sb.append(", tag549=").append(tag549);
  7960. sb.append(", tag550=").append(tag550);
  7961. sb.append(", tag551=").append(tag551);
  7962. sb.append(", tag552=").append(tag552);
  7963. sb.append(", tag553=").append(tag553);
  7964. sb.append(", tag554=").append(tag554);
  7965. sb.append(", tag555=").append(tag555);
  7966. sb.append(", tag556=").append(tag556);
  7967. sb.append(", tag557=").append(tag557);
  7968. sb.append(", tag558=").append(tag558);
  7969. sb.append(", tag559=").append(tag559);
  7970. sb.append(", tag560=").append(tag560);
  7971. sb.append(", tag561=").append(tag561);
  7972. sb.append(", tag562=").append(tag562);
  7973. sb.append(", tag563=").append(tag563);
  7974. sb.append(", tag564=").append(tag564);
  7975. sb.append(", tag565=").append(tag565);
  7976. sb.append(", tag566=").append(tag566);
  7977. sb.append(", tag567=").append(tag567);
  7978. sb.append(", tag568=").append(tag568);
  7979. sb.append(", tag569=").append(tag569);
  7980. sb.append(", tag570=").append(tag570);
  7981. sb.append(", tag571=").append(tag571);
  7982. sb.append(", tag572=").append(tag572);
  7983. sb.append(", tag573=").append(tag573);
  7984. sb.append(", tag574=").append(tag574);
  7985. sb.append(", tag575=").append(tag575);
  7986. sb.append(", tag576=").append(tag576);
  7987. sb.append(", tag577=").append(tag577);
  7988. sb.append(", tag578=").append(tag578);
  7989. sb.append(", tag579=").append(tag579);
  7990. sb.append(", tag580=").append(tag580);
  7991. sb.append(", tag581=").append(tag581);
  7992. sb.append(", tag582=").append(tag582);
  7993. sb.append(", tag583=").append(tag583);
  7994. sb.append(", tag584=").append(tag584);
  7995. sb.append(", tag585=").append(tag585);
  7996. sb.append(", tag586=").append(tag586);
  7997. sb.append(", tag587=").append(tag587);
  7998. sb.append(", tag588=").append(tag588);
  7999. sb.append(", tag589=").append(tag589);
  8000. sb.append(", tag590=").append(tag590);
  8001. sb.append(", tag591=").append(tag591);
  8002. sb.append(", tag592=").append(tag592);
  8003. sb.append(", tag593=").append(tag593);
  8004. sb.append(", tag594=").append(tag594);
  8005. sb.append(", tag595=").append(tag595);
  8006. sb.append(", tag596=").append(tag596);
  8007. sb.append(", tag597=").append(tag597);
  8008. sb.append(", tag598=").append(tag598);
  8009. sb.append(", tag599=").append(tag599);
  8010. sb.append(", tag600=").append(tag600);
  8011. sb.append(", tag601=").append(tag601);
  8012. sb.append(", tag602=").append(tag602);
  8013. sb.append(", tag603=").append(tag603);
  8014. sb.append(", tag604=").append(tag604);
  8015. sb.append(", tag605=").append(tag605);
  8016. sb.append(", tag606=").append(tag606);
  8017. sb.append(", tag607=").append(tag607);
  8018. sb.append(", tag608=").append(tag608);
  8019. sb.append(", tag609=").append(tag609);
  8020. sb.append(", tag610=").append(tag610);
  8021. sb.append(", tag611=").append(tag611);
  8022. sb.append(", tag612=").append(tag612);
  8023. sb.append(", tag613=").append(tag613);
  8024. sb.append(", tag614=").append(tag614);
  8025. sb.append(", tag615=").append(tag615);
  8026. sb.append(", tag616=").append(tag616);
  8027. sb.append(", tag617=").append(tag617);
  8028. sb.append(", tag618=").append(tag618);
  8029. sb.append(", tag619=").append(tag619);
  8030. sb.append(", tag620=").append(tag620);
  8031. sb.append(", tag621=").append(tag621);
  8032. sb.append(", tag622=").append(tag622);
  8033. sb.append(", tag623=").append(tag623);
  8034. sb.append(", tag624=").append(tag624);
  8035. sb.append(", tag625=").append(tag625);
  8036. sb.append(", tag626=").append(tag626);
  8037. sb.append(", tag627=").append(tag627);
  8038. sb.append(", tag628=").append(tag628);
  8039. sb.append(", tag629=").append(tag629);
  8040. sb.append(", tag630=").append(tag630);
  8041. sb.append(", tag631=").append(tag631);
  8042. sb.append(", tag632=").append(tag632);
  8043. sb.append(", tag633=").append(tag633);
  8044. sb.append(", tag634=").append(tag634);
  8045. sb.append(", tag635=").append(tag635);
  8046. sb.append(", tag636=").append(tag636);
  8047. sb.append(", tag637=").append(tag637);
  8048. sb.append(", tag638=").append(tag638);
  8049. sb.append(", tag639=").append(tag639);
  8050. sb.append(", tag640=").append(tag640);
  8051. sb.append(", tag641=").append(tag641);
  8052. sb.append(", tag642=").append(tag642);
  8053. sb.append(", tag643=").append(tag643);
  8054. sb.append(", tag644=").append(tag644);
  8055. sb.append(", tag645=").append(tag645);
  8056. sb.append(", tag646=").append(tag646);
  8057. sb.append(", tag647=").append(tag647);
  8058. sb.append(", tag648=").append(tag648);
  8059. sb.append(", tag649=").append(tag649);
  8060. sb.append(", tag650=").append(tag650);
  8061. sb.append(", tag651=").append(tag651);
  8062. sb.append(", tag652=").append(tag652);
  8063. sb.append(", tag653=").append(tag653);
  8064. sb.append(", tag654=").append(tag654);
  8065. sb.append(", tag655=").append(tag655);
  8066. sb.append(", tag656=").append(tag656);
  8067. sb.append(", tag657=").append(tag657);
  8068. sb.append(", tag658=").append(tag658);
  8069. sb.append(", tag659=").append(tag659);
  8070. sb.append(", tag660=").append(tag660);
  8071. sb.append(", tag661=").append(tag661);
  8072. sb.append(", tag662=").append(tag662);
  8073. sb.append(", tag663=").append(tag663);
  8074. sb.append(", tag664=").append(tag664);
  8075. sb.append(", tag665=").append(tag665);
  8076. sb.append(", tag666=").append(tag666);
  8077. sb.append(", tag667=").append(tag667);
  8078. sb.append(", tag668=").append(tag668);
  8079. sb.append(", tag669=").append(tag669);
  8080. sb.append(", tag670=").append(tag670);
  8081. sb.append(", tag671=").append(tag671);
  8082. sb.append(", tag672=").append(tag672);
  8083. sb.append(", tag673=").append(tag673);
  8084. sb.append(", tag674=").append(tag674);
  8085. sb.append(", tag675=").append(tag675);
  8086. sb.append(", tag676=").append(tag676);
  8087. sb.append(", tag677=").append(tag677);
  8088. sb.append(", tag678=").append(tag678);
  8089. sb.append(", tag679=").append(tag679);
  8090. sb.append(", tag680=").append(tag680);
  8091. sb.append(", tag681=").append(tag681);
  8092. sb.append(", tag682=").append(tag682);
  8093. sb.append(", tag683=").append(tag683);
  8094. sb.append(", tag684=").append(tag684);
  8095. sb.append(", tag685=").append(tag685);
  8096. sb.append(", tag686=").append(tag686);
  8097. sb.append(", tag687=").append(tag687);
  8098. sb.append(", tag688=").append(tag688);
  8099. sb.append(", tag689=").append(tag689);
  8100. sb.append(", tag690=").append(tag690);
  8101. sb.append(", tag691=").append(tag691);
  8102. sb.append(", tag692=").append(tag692);
  8103. sb.append(", tag693=").append(tag693);
  8104. sb.append(", tag694=").append(tag694);
  8105. sb.append(", tag695=").append(tag695);
  8106. sb.append(", tag696=").append(tag696);
  8107. sb.append(", tag697=").append(tag697);
  8108. sb.append(", tag698=").append(tag698);
  8109. sb.append(", tag699=").append(tag699);
  8110. sb.append(", tag700=").append(tag700);
  8111. sb.append(", tag701=").append(tag701);
  8112. sb.append(", tag702=").append(tag702);
  8113. sb.append(", tag703=").append(tag703);
  8114. sb.append(", tag704=").append(tag704);
  8115. sb.append(", tag705=").append(tag705);
  8116. sb.append(", tag706=").append(tag706);
  8117. sb.append(", tag707=").append(tag707);
  8118. sb.append(", tag708=").append(tag708);
  8119. sb.append(", tag709=").append(tag709);
  8120. sb.append(", tag710=").append(tag710);
  8121. sb.append(", tag711=").append(tag711);
  8122. sb.append(", tag712=").append(tag712);
  8123. sb.append(", tag713=").append(tag713);
  8124. sb.append(", tag714=").append(tag714);
  8125. sb.append(", tag715=").append(tag715);
  8126. sb.append(", tag716=").append(tag716);
  8127. sb.append(", tag717=").append(tag717);
  8128. sb.append(", tag718=").append(tag718);
  8129. sb.append(", tag719=").append(tag719);
  8130. sb.append(", tag720=").append(tag720);
  8131. sb.append(", tag721=").append(tag721);
  8132. sb.append(", tag722=").append(tag722);
  8133. sb.append(", tag723=").append(tag723);
  8134. sb.append(", tag724=").append(tag724);
  8135. sb.append(", tag725=").append(tag725);
  8136. sb.append(", tag726=").append(tag726);
  8137. sb.append(", tag727=").append(tag727);
  8138. sb.append(", tag728=").append(tag728);
  8139. sb.append(", tag729=").append(tag729);
  8140. sb.append(", tag730=").append(tag730);
  8141. sb.append(", tag731=").append(tag731);
  8142. sb.append(", tag732=").append(tag732);
  8143. sb.append(", tag733=").append(tag733);
  8144. sb.append(", tag734=").append(tag734);
  8145. sb.append(", tag735=").append(tag735);
  8146. sb.append(", tag736=").append(tag736);
  8147. sb.append(", tag737=").append(tag737);
  8148. sb.append(", tag738=").append(tag738);
  8149. sb.append(", tag739=").append(tag739);
  8150. sb.append(", tag740=").append(tag740);
  8151. sb.append(", tag741=").append(tag741);
  8152. sb.append(", tag742=").append(tag742);
  8153. sb.append(", tag743=").append(tag743);
  8154. sb.append(", tag744=").append(tag744);
  8155. sb.append(", tag745=").append(tag745);
  8156. sb.append(", tag746=").append(tag746);
  8157. sb.append(", tag747=").append(tag747);
  8158. sb.append(", tag748=").append(tag748);
  8159. sb.append(", tag749=").append(tag749);
  8160. sb.append(", tag750=").append(tag750);
  8161. sb.append(", tag751=").append(tag751);
  8162. sb.append(", tag752=").append(tag752);
  8163. sb.append(", tag753=").append(tag753);
  8164. sb.append(", tag754=").append(tag754);
  8165. sb.append(", tag755=").append(tag755);
  8166. sb.append(", tag756=").append(tag756);
  8167. sb.append(", tag757=").append(tag757);
  8168. sb.append(", tag758=").append(tag758);
  8169. sb.append(", tag759=").append(tag759);
  8170. sb.append(", tag760=").append(tag760);
  8171. sb.append(", tag761=").append(tag761);
  8172. sb.append(", tag762=").append(tag762);
  8173. sb.append(", tag763=").append(tag763);
  8174. sb.append(", tag764=").append(tag764);
  8175. sb.append(", tag765=").append(tag765);
  8176. sb.append(", tag766=").append(tag766);
  8177. sb.append(", tag767=").append(tag767);
  8178. sb.append(", tag768=").append(tag768);
  8179. sb.append(", tag769=").append(tag769);
  8180. sb.append(", tag770=").append(tag770);
  8181. sb.append(", tag771=").append(tag771);
  8182. sb.append(", tag772=").append(tag772);
  8183. sb.append(", tag773=").append(tag773);
  8184. sb.append(", tag774=").append(tag774);
  8185. sb.append(", tag775=").append(tag775);
  8186. sb.append(", tag776=").append(tag776);
  8187. sb.append(", tag777=").append(tag777);
  8188. sb.append(", tag778=").append(tag778);
  8189. sb.append(", tag779=").append(tag779);
  8190. sb.append(", tag780=").append(tag780);
  8191. sb.append(", tag781=").append(tag781);
  8192. sb.append(", tag782=").append(tag782);
  8193. sb.append(", tag783=").append(tag783);
  8194. sb.append(", tag784=").append(tag784);
  8195. sb.append(", tag785=").append(tag785);
  8196. sb.append(", tag786=").append(tag786);
  8197. sb.append(", tag787=").append(tag787);
  8198. sb.append(", tag788=").append(tag788);
  8199. sb.append(", tag789=").append(tag789);
  8200. sb.append(", tag790=").append(tag790);
  8201. sb.append(", tag791=").append(tag791);
  8202. sb.append(", tag792=").append(tag792);
  8203. sb.append(", tag793=").append(tag793);
  8204. sb.append(", tag794=").append(tag794);
  8205. sb.append(", tag795=").append(tag795);
  8206. sb.append(", tag796=").append(tag796);
  8207. sb.append(", tag797=").append(tag797);
  8208. sb.append(", tag798=").append(tag798);
  8209. sb.append(", tag799=").append(tag799);
  8210. sb.append(", tag800=").append(tag800);
  8211. sb.append(", serialVersionUID=").append(serialVersionUID);
  8212. sb.append("]");
  8213. return sb.toString();
  8214. }
  8215. }