LICENSE 270 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720
  1. Licensing Information User Manual
  2. MySQL 8.0
  3. __________________________________________________________________
  4. Introduction
  5. This License Information User Manual contains Oracle's product license
  6. and other licensing information, including licensing information for
  7. third-party software which may be included in this distribution of
  8. MySQL 8.0.
  9. Last updated: January 2022
  10. Licensing Information
  11. This is a release of MySQL 8.0, brought to you by the MySQL team at
  12. Oracle. This software is released under version 2 of the GNU General
  13. Public License (GPLv2), as set forth below, with the following
  14. additional permissions:
  15. This distribution of MySQL 8.0 is distributed with certain software
  16. (including but not limited to OpenSSL) that is licensed under separate
  17. terms, as designated in a particular file or component or in the
  18. license documentation. Without limiting your rights under the GPLv2,
  19. the authors of MySQL hereby grant you an additional permission to link
  20. the program and your derivative works with the separately licensed
  21. software that they have included with the program.
  22. This distribution includes the MySQL C API client library
  23. (libmysqlclient) otherwise known as MySQL Connector/C. Without limiting
  24. the foregoing grant of rights under the GPLv2 and additional permission
  25. as to separately licensed software, this Connector is also subject to
  26. the Universal FOSS Exception, version 1.0, a copy of which is
  27. reproduced below and can also be found along with its FAQ at
  28. http://oss.oracle.com/licenses/universal-foss-exception.
  29. Copyright (c) 1997, 2022, Oracle and/or its affiliates.
  30. Election of GPLv2
  31. For the avoidance of doubt, except that if any license choice other
  32. than GPL or LGPL is available it will apply instead, Oracle elects to
  33. use only the General Public License version 2 (GPLv2) at this time for
  34. any software where a choice of GPL license versions is made available
  35. with the language indicating that GPLv2 or any later version may be
  36. used, or where a choice of which version of the GPL is applied is
  37. otherwise unspecified.
  38. GNU General Public License Version 2.0, June 1991
  39. The following applies to all products licensed under the GNU General
  40. Public License, Version 2.0: You may not use the identified files
  41. except in compliance with the GNU General Public License, Version
  42. 2.0 (the "License.") You may obtain a copy of the License at
  43. http://www.gnu.org/licenses/gpl-2.0.txt. A copy of the license is
  44. also reproduced below. Unless required by applicable law or agreed
  45. to in writing, software distributed under the License is distributed
  46. on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
  47. either express or implied. See the License for the specific language
  48. governing permissions and limitations under the License.
  49. ======================================================================
  50. ======================================================================
  51. GNU GENERAL PUBLIC LICENSE
  52. Version 2, June 1991
  53. Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
  54. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  55. Everyone is permitted to copy and distribute verbatim
  56. copies of this license document, but changing it is not
  57. allowed.
  58. Preamble
  59. The licenses for most software are designed to take away your
  60. freedom to share and change it. By contrast, the GNU General Public
  61. License is intended to guarantee your freedom to share and change free
  62. software--to make sure the software is free for all its users. This
  63. General Public License applies to most of the Free Software
  64. Foundation's software and to any other program whose authors commit to
  65. using it. (Some other Free Software Foundation software is covered by
  66. the GNU Lesser General Public License instead.) You can apply it to
  67. your programs, too.
  68. When we speak of free software, we are referring to freedom, not
  69. price. Our General Public Licenses are designed to make sure that you
  70. have the freedom to distribute copies of free software (and charge for
  71. this service if you wish), that you receive source code or can get it
  72. if you want it, that you can change the software or use pieces of it
  73. in new free programs; and that you know you can do these things.
  74. To protect your rights, we need to make restrictions that forbid
  75. anyone to deny you these rights or to ask you to surrender the rights.
  76. These restrictions translate to certain responsibilities for you if you
  77. distribute copies of the software, or if you modify it.
  78. For example, if you distribute copies of such a program, whether
  79. gratis or for a fee, you must give the recipients all the rights that
  80. you have. You must make sure that they, too, receive or can get the
  81. source code. And you must show them these terms so they know their
  82. rights.
  83. We protect your rights with two steps: (1) copyright the software,
  84. and (2) offer you this license which gives you legal permission to
  85. copy, distribute and/or modify the software.
  86. Also, for each author's protection and ours, we want to make certain
  87. that everyone understands that there is no warranty for this free
  88. software. If the software is modified by someone else and passed on,
  89. we want its recipients to know that what they have is not the original,
  90. so that any problems introduced by others will not reflect on the
  91. original authors' reputations.
  92. Finally, any free program is threatened constantly by software
  93. patents. We wish to avoid the danger that redistributors of a free
  94. program will individually obtain patent licenses, in effect making the
  95. program proprietary. To prevent this, we have made it clear that any
  96. patent must be licensed for everyone's free use or not licensed at all.
  97. The precise terms and conditions for copying, distribution and
  98. modification follow.
  99. GNU GENERAL PUBLIC LICENSE
  100. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  101. 0. This License applies to any program or other work which contains
  102. a notice placed by the copyright holder saying it may be distributed
  103. under the terms of this General Public License. The "Program", below,
  104. refers to any such program or work, and a "work based on the Program"
  105. means either the Program or any derivative work under copyright law:
  106. that is to say, a work containing the Program or a portion of it,
  107. either verbatim or with modifications and/or translated into another
  108. language. (Hereinafter, translation is included without limitation in
  109. the term "modification".) Each licensee is addressed as "you".
  110. Activities other than copying, distribution and modification are not
  111. covered by this License; they are outside its scope. The act of
  112. running the Program is not restricted, and the output from the Program
  113. is covered only if its contents constitute a work based on the
  114. Program (independent of having been made by running the Program).
  115. Whether that is true depends on what the Program does.
  116. 1. You may copy and distribute verbatim copies of the Program's
  117. source code as you receive it, in any medium, provided that you
  118. conspicuously and appropriately publish on each copy an appropriate
  119. copyright notice and disclaimer of warranty; keep intact all the
  120. notices that refer to this License and to the absence of any warranty;
  121. and give any other recipients of the Program a copy of this License
  122. along with the Program.
  123. You may charge a fee for the physical act of transferring a copy, and
  124. you may at your option offer warranty protection in exchange for a fee.
  125. 2. You may modify your copy or copies of the Program or any portion
  126. of it, thus forming a work based on the Program, and copy and
  127. distribute such modifications or work under the terms of Section 1
  128. above, provided that you also meet all of these conditions:
  129. a) You must cause the modified files to carry prominent notices
  130. stating that you changed the files and the date of any change.
  131. b) You must cause any work that you distribute or publish, that in
  132. whole or in part contains or is derived from the Program or any
  133. part thereof, to be licensed as a whole at no charge to all third
  134. parties under the terms of this License.
  135. c) If the modified program normally reads commands interactively
  136. when run, you must cause it, when started running for such
  137. interactive use in the most ordinary way, to print or display an
  138. announcement including an appropriate copyright notice and a
  139. notice that there is no warranty (or else, saying that you provide
  140. a warranty) and that users may redistribute the program under
  141. these conditions, and telling the user how to view a copy of this
  142. License. (Exception: if the Program itself is interactive but
  143. does not normally print such an announcement, your work based on
  144. the Program is not required to print an announcement.)
  145. These requirements apply to the modified work as a whole. If
  146. identifiable sections of that work are not derived from the Program,
  147. and can be reasonably considered independent and separate works in
  148. themselves, then this License, and its terms, do not apply to those
  149. sections when you distribute them as separate works. But when you
  150. distribute the same sections as part of a whole which is a work based
  151. on the Program, the distribution of the whole must be on the terms of
  152. this License, whose permissions for other licensees extend to the
  153. entire whole, and thus to each and every part regardless of who wrote it.
  154. Thus, it is not the intent of this section to claim rights or contest
  155. your rights to work written entirely by you; rather, the intent is to
  156. exercise the right to control the distribution of derivative or
  157. collective works based on the Program.
  158. In addition, mere aggregation of another work not based on the Program
  159. with the Program (or with a work based on the Program) on a volume of
  160. a storage or distribution medium does not bring the other work under
  161. the scope of this License.
  162. 3. You may copy and distribute the Program (or a work based on it,
  163. under Section 2) in object code or executable form under the terms of
  164. Sections 1 and 2 above provided that you also do one of the following:
  165. a) Accompany it with the complete corresponding machine-readable
  166. source code, which must be distributed under the terms of Sections
  167. 1 and 2 above on a medium customarily used for software
  168. interchange; or,
  169. b) Accompany it with a written offer, valid for at least three
  170. years, to give any third party, for a charge no more than your
  171. cost of physically performing source distribution, a complete
  172. machine-readable copy of the corresponding source code, to be
  173. distributed under the terms of Sections 1 and 2 above on a medium
  174. customarily used for software interchange; or,
  175. c) Accompany it with the information you received as to the offer
  176. to distribute corresponding source code. (This alternative is
  177. allowed only for noncommercial distribution and only if you
  178. received the program in object code or executable form with such
  179. an offer, in accord with Subsection b above.)
  180. The source code for a work means the preferred form of the work for
  181. making modifications to it. For an executable work, complete source
  182. code means all the source code for all modules it contains, plus any
  183. associated interface definition files, plus the scripts used to
  184. control compilation and installation of the executable. However, as
  185. a special exception, the source code distributed need not include
  186. anything that is normally distributed (in either source or binary
  187. form) with the major components (compiler, kernel, and so on) of the
  188. operating system on which the executable runs, unless that component
  189. itself accompanies the executable.
  190. If distribution of executable or object code is made by offering
  191. access to copy from a designated place, then offering equivalent
  192. access to copy the source code from the same place counts as
  193. distribution of the source code, even though third parties are not
  194. compelled to copy the source along with the object code.
  195. 4. You may not copy, modify, sublicense, or distribute the Program
  196. except as expressly provided under this License. Any attempt
  197. otherwise to copy, modify, sublicense or distribute the Program is
  198. void, and will automatically terminate your rights under this License.
  199. However, parties who have received copies, or rights, from you under
  200. this License will not have their licenses terminated so long as such
  201. parties remain in full compliance.
  202. 5. You are not required to accept this License, since you have not
  203. signed it. However, nothing else grants you permission to modify or
  204. distribute the Program or its derivative works. These actions are
  205. prohibited by law if you do not accept this License. Therefore, by
  206. modifying or distributing the Program (or any work based on the
  207. Program), you indicate your acceptance of this License to do so, and
  208. all its terms and conditions for copying, distributing or modifying
  209. the Program or works based on it.
  210. 6. Each time you redistribute the Program (or any work based on the
  211. Program), the recipient automatically receives a license from the
  212. original licensor to copy, distribute or modify the Program subject to
  213. these terms and conditions. You may not impose any further
  214. restrictions on the recipients' exercise of the rights granted herein.
  215. You are not responsible for enforcing compliance by third parties to
  216. this License.
  217. 7. If, as a consequence of a court judgment or allegation of patent
  218. infringement or for any other reason (not limited to patent issues),
  219. conditions are imposed on you (whether by court order, agreement or
  220. otherwise) that contradict the conditions of this License, they do not
  221. excuse you from the conditions of this License. If you cannot
  222. distribute so as to satisfy simultaneously your obligations under this
  223. License and any other pertinent obligations, then as a consequence you
  224. may not distribute the Program at all. For example, if a patent
  225. license would not permit royalty-free redistribution of the Program by
  226. all those who receive copies directly or indirectly through you, then
  227. the only way you could satisfy both it and this License would be to
  228. refrain entirely from distribution of the Program.
  229. If any portion of this section is held invalid or unenforceable under
  230. any particular circumstance, the balance of the section is intended to
  231. apply and the section as a whole is intended to apply in other
  232. circumstances.
  233. It is not the purpose of this section to induce you to infringe any
  234. patents or other property right claims or to contest validity of any
  235. such claims; this section has the sole purpose of protecting the
  236. integrity of the free software distribution system, which is
  237. implemented by public license practices. Many people have made
  238. generous contributions to the wide range of software distributed
  239. through that system in reliance on consistent application of that
  240. system; it is up to the author/donor to decide if he or she is willing
  241. to distribute software through any other system and a licensee cannot
  242. impose that choice.
  243. This section is intended to make thoroughly clear what is believed to
  244. be a consequence of the rest of this License.
  245. 8. If the distribution and/or use of the Program is restricted in
  246. certain countries either by patents or by copyrighted interfaces, the
  247. original copyright holder who places the Program under this License
  248. may add an explicit geographical distribution limitation excluding
  249. those countries, so that distribution is permitted only in or among
  250. countries not thus excluded. In such case, this License incorporates
  251. the limitation as if written in the body of this License.
  252. 9. The Free Software Foundation may publish revised and/or new
  253. versions of the General Public License from time to time. Such new
  254. versions will be similar in spirit to the present version, but may
  255. differ in detail to address new problems or concerns.
  256. Each version is given a distinguishing version number. If the Program
  257. specifies a version number of this License which applies to it and
  258. "any later version", you have the option of following the terms and
  259. conditions either of that version or of any later version published by
  260. the Free Software Foundation. If the Program does not specify a
  261. version number of this License, you may choose any version ever
  262. published by the Free Software Foundation.
  263. 10. If you wish to incorporate parts of the Program into other free
  264. programs whose distribution conditions are different, write to the
  265. author to ask for permission. For software which is copyrighted by the
  266. Free Software Foundation, write to the Free Software Foundation; we
  267. sometimes make exceptions for this. Our decision will be guided by the
  268. two goals of preserving the free status of all derivatives of our free
  269. software and of promoting the sharing and reuse of software generally.
  270. NO WARRANTY
  271. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
  272. WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  273. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  274. OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
  275. EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  276. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  277. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS
  278. WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  279. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  280. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  281. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  282. AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU
  283. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  284. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  285. PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  286. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  287. FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF
  288. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  289. DAMAGES.
  290. END OF TERMS AND CONDITIONS
  291. How to Apply These Terms to Your New Programs
  292. If you develop a new program, and you want it to be of the greatest
  293. possible use to the public, the best way to achieve this is to make it
  294. free software which everyone can redistribute and change under these terms.
  295. To do so, attach the following notices to the program. It is safest
  296. to attach them to the start of each source file to most effectively
  297. convey the exclusion of warranty; and each file should have at least
  298. the "copyright" line and a pointer to where the full notice is found.
  299. <one line to give the program's name and a brief idea of what it does.>
  300. Copyright (C) <year> <name of author>
  301. This program is free software; you can redistribute it and/or
  302. modify it under the terms of the GNU General Public License as
  303. published by the Free Software Foundation; either version 2 of
  304. the License, or (at your option) any later version.
  305. This program is distributed in the hope that it will be useful,
  306. but WITHOUT ANY WARRANTY; without even the implied warranty of
  307. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  308. GNU General Public License for more details.
  309. You should have received a copy of the GNU General Public License
  310. along with this program; if not, write to the Free Software
  311. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  312. 02110-1301 USA.
  313. Also add information on how to contact you by electronic and paper mail.
  314. If the program is interactive, make it output a short notice like this
  315. when it starts in an interactive mode:
  316. Gnomovision version 69, Copyright (C) year name of author
  317. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
  318. type 'show w'. This is free software, and you are welcome
  319. to redistribute it under certain conditions; type 'show c'
  320. for details.
  321. The hypothetical commands 'show w' and 'show c' should show the
  322. appropriate parts of the General Public License. Of course, the
  323. commands you use may be called something other than 'show w' and
  324. 'show c'; they could even be mouse-clicks or menu items--whatever
  325. suits your program.
  326. You should also get your employer (if you work as a programmer) or your
  327. school, if any, to sign a "copyright disclaimer" for the program, if
  328. necessary. Here is a sample; alter the names:
  329. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  330. program 'Gnomovision' (which makes passes at compilers) written
  331. by James Hacker.
  332. <signature of Ty Coon>, 1 April 1989
  333. Ty Coon, President of Vice
  334. This General Public License does not permit incorporating your program
  335. into proprietary programs. If your program is a subroutine library,
  336. you may consider it more useful to permit linking proprietary
  337. applications with the library. If this is what you want to do, use
  338. the GNU Lesser General Public License instead of this License.
  339. ======================================================================
  340. ======================================================================
  341. The Universal FOSS Exception, Version 1.0
  342. In addition to the rights set forth in the other license(s) included in
  343. the distribution for this software, data, and/or documentation
  344. (collectively the "Software", and such licenses collectively with this
  345. additional permission the "Software License"), the copyright holders
  346. wish to facilitate interoperability with other software, data, and/or
  347. documentation distributed with complete corresponding source under a
  348. license that is OSI-approved and/or categorized by the FSF as free
  349. (collectively "Other FOSS"). We therefore hereby grant the following
  350. additional permission with respect to the use and distribution of the
  351. Software with Other FOSS, and the constants, function signatures, data
  352. structures and other invocation methods used to run or interact with
  353. each of them (as to each, such software's "Interfaces"):
  354. i. The Software's Interfaces may, to the extent permitted by the
  355. license of the Other FOSS, be copied into, used and distributed in
  356. the Other FOSS in order to enable interoperability, without
  357. requiring a change to the license of the Other FOSS other than as
  358. to any Interfaces of the Software embedded therein. The Software's
  359. Interfaces remain at all times under the Software License,
  360. including without limitation as used in the Other FOSS (which upon
  361. any such use also then contains a portion of the Software under the
  362. Software License).
  363. ii. The Other FOSS's Interfaces may, to the extent permitted by the
  364. license of the Other FOSS, be copied into, used and distributed in
  365. the Software in order to enable interoperability, without requiring
  366. that such Interfaces be licensed under the terms of the Software
  367. License or otherwise altering their original terms, if this does
  368. not require any portion of the Software other than such Interfaces
  369. to be licensed under the terms other than the Software License.
  370. iii. If only Interfaces and no other code is copied between the
  371. Software and the Other FOSS in either direction, the use and/or
  372. distribution of the Software with the Other FOSS shall not be
  373. deemed to require that the Other FOSS be licensed under the license
  374. of the Software, other than as to any Interfaces of the Software
  375. copied into the Other FOSS. This includes, by way of example and
  376. without limitation, statically or dynamically linking the Software
  377. together with Other FOSS after enabling interoperability using the
  378. Interfaces of one or both, and distributing the resulting
  379. combination under different licenses for the respective portions
  380. thereof. For avoidance of doubt, a license which is OSI-approved or
  381. categorized by the FSF as free, includes, for the purpose of this
  382. permission, such licenses with additional permissions, and any
  383. license that has previously been so approved or categorized as
  384. free, even if now deprecated or otherwise no longer recognized as
  385. approved or free. Nothing in this additional permission grants any
  386. right to distribute any portion of the Software on terms other than
  387. those of the Software License or grants any additional permission
  388. of any kind for use or distribution of the Software in conjunction
  389. with software other than Other FOSS.
  390. ======================================================================
  391. ======================================================================
  392. Licenses for Third-Party Components
  393. The following sections contain licensing information for libraries that
  394. may be included with this product. We are thankful to all individuals
  395. that have created these. Standard licenses referenced herein are
  396. detailed in the Standard Licenses section.
  397. Assert
  398. Assert is distributed under a permissive open source license.
  399. Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
  400. The test program (test directory) for Assert is under BSD license:
  401. // Copyright 2008, Google Inc.
  402. // All rights reserved.
  403. //
  404. // Redistribution and use in source and binary forms, with or without
  405. // modification, are permitted provided that the following conditions are
  406. // met:
  407. //
  408. // * Redistributions of source code must retain the above copyright
  409. // notice, this list of conditions and the following disclaimer.
  410. // * Redistributions in binary form must reproduce the above
  411. // copyright notice, this list of conditions and the following disclaimer
  412. // in the documentation and/or other materials provided with the
  413. // distribution.
  414. // * Neither the name of Google Inc. nor the names of its
  415. // contributors may be used to endorse or promote products derived from
  416. // this software without specific prior written permission.
  417. //
  418. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  419. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  420. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  421. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  422. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  423. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  424. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  425. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  426. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  427. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  428. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  429. //
  430. ======================================================================
  431. ======================================================================
  432. Better Enums
  433. Better Enums
  434. Better Enums is distributed under the terms of the 2-clause BSD license.
  435. Copyright (c) 2012-2016, Anton Bachin
  436. All rights reserved.
  437. Redistribution and use in source and binary forms, with or without
  438. modification, are permitted provided that the following conditions
  439. are met:
  440. 1. Redistributions of source code must retain the above copyright
  441. notice, this list of conditions and the following disclaimer.
  442. 2. Redistributions in binary form must reproduce the above copyright
  443. notice, this list of conditions and the following disclaimer in the
  444. documentation and/or other materials provided with the distribution.
  445. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  446. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  447. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  448. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  449. COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  450. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  451. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  452. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  453. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  454. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  455. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  456. POSSIBILITY OF SUCH DAMAGE.
  457. Better Enums uses the mistune library as part of its documentation
  458. generator.
  459. http://mistune.readthedocs.org/en/latest/
  460. Copyright (c) 2014 - 2015, Hsiaoming Yang
  461. All rights reserved.
  462. Redistribution and use in source and binary forms, with or without
  463. modification, are permitted provided that the following conditions
  464. are met:
  465. * Redistributions of source code must retain the above copyright
  466. notice, this list of conditions and the following disclaimer.
  467. * Redistributions in binary form must reproduce the above copyright
  468. notice, this list of conditions and the following disclaimer in the
  469. documentation and/or other materials provided with the distribution.
  470. * Neither the name of the creator nor the names of its contributors
  471. may be used to endorse or promote products derived from this software
  472. without specific prior written permission.
  473. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  474. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  475. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  476. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  477. COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  478. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  479. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  480. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  481. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  482. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  483. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  484. POSSIBILITY OF SUCH DAMAGE.
  485. ======================================================================
  486. ======================================================================
  487. Boost Library
  488. Boost C++ Libraries
  489. Use of any of this software is governed by the terms of the license
  490. below:
  491. Boost Software License - Version 1.0 - August 17th, 2003
  492. Permission is hereby granted, free of charge, to any person or
  493. organization obtaining a copy of the software and accompanying
  494. documentation covered by this license (the "Software") to use,
  495. reproduce, display, distribute, execute, and transmit the Software,
  496. and to prepare derivative works of the Software, and to permit
  497. third-parties to whom the Software is furnished to do so, all
  498. subject to the following:
  499. The copyright notices in the Software and this entire statement,
  500. including the above license grant, this restriction and the
  501. following disclaimer, must be included in all copies of the
  502. Software, in whole or in part, and all derivative works of the
  503. Software, unless such copies or derivative works are solely in the
  504. form of machine-executable object code generated by a source
  505. language processor.
  506. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  507. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  508. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  509. NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE
  510. DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER
  511. LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
  512. OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  513. IN THE SOFTWARE.
  514. ======================================================================
  515. ======================================================================
  516. cURL (libcurl)
  517. cURL (libcurl)
  518. Use of any of this software is governed by the terms of the license below:
  519. COPYRIGHT AND PERMISSION NOTICE
  520. Copyright (c) 1996 - 2019, Daniel Stenberg, <daniel@haxx.se>, and many
  521. contributors, see the THANKS file.
  522. All rights reserved.
  523. Permission to use, copy, modify, and distribute this software for any purpose
  524. with or without fee is hereby granted, provided that the above copyright
  525. notice and this permission notice appear in all copies.
  526. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  527. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  528. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  529. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  530. DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  531. OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
  532. OR OTHER DEALINGS IN THE SOFTWARE.
  533. Except as contained in this notice, the name of a copyright holder shall not
  534. be used in advertising or otherwise to promote the sale, use or other
  535. dealings in this Software without prior written authorization of the copyright
  536. holder.
  537. ======================================================================
  538. ======================================================================
  539. Cyrus SASL
  540. Cyrus SASL
  541. * Copyright (c) 1994-2012 Carnegie Mellon University. All rights reserved.
  542. *
  543. * Redistribution and use in source and binary forms, with or without
  544. * modification, are permitted provided that the following conditions
  545. * are met:
  546. *
  547. * 1. Redistributions of source code must retain the above copyright
  548. * notice, this list of conditions and the following disclaimer.
  549. *
  550. * 2. Redistributions in binary form must reproduce the above copyright
  551. * notice, this list of conditions and the following disclaimer in
  552. * the documentation and/or other materials provided with the
  553. * distribution.
  554. *
  555. * 3. The name "Carnegie Mellon University" must not be used to
  556. * endorse or promote products derived from this software without
  557. * prior written permission. For permission or any legal
  558. * details, please contact
  559. * Office of Technology Transfer
  560. * Carnegie Mellon University
  561. * 5000 Forbes Avenue
  562. * Pittsburgh, PA 15213-3890
  563. * (412) 268-4387, fax: (412) 268-7395
  564. * tech-transfer@andrew.cmu.edu
  565. *
  566. * 4. Redistributions of any form whatsoever must retain the following
  567. * acknowledgment:
  568. * "This product includes software developed by Computing Services
  569. * at Carnegie Mellon University (http://www.cmu.edu/computing/)."
  570. *
  571. * CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
  572. * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  573. * AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
  574. * FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  575. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
  576. * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
  577. * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  578. ======================================================================
  579. ======================================================================
  580. dtoa.c
  581. dtoa.c
  582. The author of this software is David M. Gay.
  583. Copyright (c) 1991, 2000, 2001 by Lucent Technologies.
  584. Permission to use, copy, modify, and distribute this software for
  585. any purpose without fee is hereby granted, provided that this entire
  586. notice is included in all copies of any software which is or includes
  587. a copy or modification of this software and in all copies of the
  588. supporting documentation for such software.
  589. THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
  590. IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT
  591. MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
  592. MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
  593. PURPOSE.
  594. ======================================================================
  595. ======================================================================
  596. Editline Library (libedit)
  597. Editline Library (libedit)
  598. Some files are:
  599. Copyright (c) 1992, 1993
  600. The Regents of the University of California. All rights reserved.
  601. This code is derived from software contributed to
  602. Berkeley by Christos Zoulas of Cornell University.
  603. Redistribution and use in source and binary forms,
  604. with or without modification, are permitted provided
  605. that the following conditions are met:
  606. 1. Redistributions of source code must retain the
  607. above copyright notice, this list of conditions
  608. and the following disclaimer.
  609. 2. Redistributions in binary form must reproduce the
  610. above copyright notice, this list of conditions and
  611. the following disclaimer in the documentation and/or
  612. other materials provided with the distribution.
  613. 3. Neither the name of the University nor the names of
  614. its contributors may be used to endorse or promote
  615. products derived from this software without specific
  616. prior written permission.
  617. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS
  618. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  619. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  620. AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  621. EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
  622. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  623. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  624. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  625. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  626. AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  627. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  628. IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  629. OF THE POSSIBILITY OF SUCH DAMAGE.
  630. Some files are:
  631. Copyright (c) 2001 The NetBSD Foundation, Inc.
  632. All rights reserved.
  633. This code is derived from software contributed to The NetBSD Foundation
  634. by Anthony Mallet.
  635. Redistribution and use in source and binary forms,
  636. with or without modification, are permitted provided
  637. that the following conditions are met:
  638. 1. Redistributions of source code must retain the
  639. above copyright notice, this list of conditions
  640. and the following disclaimer.
  641. 2. Redistributions in binary form must reproduce the
  642. above copyright notice, this list of conditions and the
  643. following disclaimer in the documentation and/or
  644. other materials provided with the distribution.
  645. THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC.
  646. AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
  647. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  648. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  649. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  650. THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
  651. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  652. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  653. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  654. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  655. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  656. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  657. OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  658. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  659. DAMAGE.
  660. Some files are:
  661. Copyright (c) 1997 The NetBSD Foundation, Inc.
  662. All rights reserved.
  663. This code is derived from software contributed to The NetBSD Foundation
  664. by Jaromir Dolecek.
  665. Redistribution and use in source and binary forms,
  666. with or without modification, are permitted provided
  667. that the following conditions are met:
  668. 1. Redistributions of source code must retain the
  669. above copyright notice, this list of conditions
  670. and the following disclaimer.
  671. 2. Redistributions in binary form must reproduce
  672. the above copyright notice, this list of conditions
  673. and the following disclaimer in the documentation
  674. and/or other materials provided with the distribution.
  675. THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC.
  676. AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
  677. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  678. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  679. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  680. THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
  681. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  682. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  683. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  684. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  685. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  686. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  687. OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  688. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  689. DAMAGE.
  690. Some files are:
  691. Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  692. Permission to use, copy, modify, and distribute this
  693. software for any purpose with or without fee is hereby
  694. granted, provided that the above copyright notice and
  695. this permission notice appear in all copies.
  696. THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER
  697. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
  698. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  699. AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE
  700. FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  701. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  702. LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  703. OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  704. ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  705. PERFORMANCE OF THIS SOFTWARE.
  706. ======================================================================
  707. ======================================================================
  708. EPSG Geodetic Parameter Dataset
  709. This product includes the EPSG Geodetic Parameter Dataset.
  710. The EPSG Dataset is owned by the International Association of Oil
  711. and Gas Producers, incorporated in England as a company limited by
  712. guarantee (number 1832064) and is subject to the terms of use here:
  713. http://www.epsg.org/TermsOfUse.
  714. The user assumes the entire risk as to the accuracy and the use of
  715. this data. The data may be used, copied and distributed subject
  716. to the following conditions:
  717. 1. INFORMATION PROVIDED IN THIS DOCUMENT IS PROVIDED "AS IS" WITHOUT
  718. WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT
  719. NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR
  720. FITNESS FOR A PARTICULAR PURPOSE.
  721. 2. The data may be included in any commercial package provided that
  722. any commerciality is based on value added by the provider and not
  723. on a value ascribed to the EPSG dataset which is made available at
  724. no charge. The ownership of the EPSG dataset [OGP] must be acknowledged.
  725. 3. Subsets of information may be extracted from the dataset. Users
  726. are advised that coordinate reference system and coordinate
  727. transformation descriptions are incomplete unless all elements
  728. detailed as essential in OGP Surveying and Positioning Guidance
  729. Note 7-1 annex F are included.
  730. 4. Essential elements should preferably be reproduced as described
  731. in the dataset. Modification of parameter values is permitted as
  732. described in the table below to allow change to the content of the
  733. information provided that numeric equivalence is achieved. Numeric
  734. equivalence refers to the results of geodetic calculations in which
  735. the parameters are used, for example (i) conversion of ellipsoid
  736. defining parameters, or (ii) conversion of parameters between one
  737. and two standard parallel projection methods, or (iii) conversion
  738. of parameters between 7-parameter geocentric transformation methods.
  739. ======================================================================
  740. ======================================================================
  741. Expect.pm
  742. Expect.pm Perl module
  743. Expect.pm is licensed under the Perl license, which is essentially a dual
  744. license.
  745. Oracle may use, redistribute and/or modify this code under the terms of
  746. either:
  747. a) the GNU General Public License as published by the Free Software
  748. Foundation; either version 1, or (at your option) any later version, or
  749. b) the "Artistic License" which comes with the Expect/pr code.
  750. Oracle elects to use the GPLv2 for version of MySQL that are licensed under
  751. the GPL.
  752. Oracle elects to use the Artistic license for all other (commercial) versions
  753. of MySQL.
  754. A copy of the GPLv2 and the Artistic License (Perl) 1.0 must be included with
  755. any distribution:
  756. The GNU General Public License (GPL-2.0)
  757. Version 2, June 1991
  758. Copyright (C) 1989, 1991 Free Software Foundation, Inc.
  759. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  760. Everyone is permitted to copy and distribute verbatim copies
  761. of this license document, but changing it is not allowed.
  762. Preamble
  763. The licenses for most software are designed to take away your freedom to
  764. share and change it. By contrast, the GNU General Public License is intended
  765. to guarantee your freedom to share and change free software--to make sure the
  766. software is free for all its users. This General Public License applies to
  767. most of the Free Software Foundation's software and to any other program
  768. whose authors commit to using it. (Some other Free Software Foundation
  769. software is covered by the GNU Library General Public License instead.) You
  770. can apply it to your programs, too.
  771. When we speak of free software, we are referring to freedom, not price. Our
  772. General Public Licenses are designed to make sure that you have the freedom
  773. to distribute copies of free software (and charge for this service if you
  774. wish), that you receive source code or can get it if you want it, that you
  775. can change the software or use pieces of it in new free programs; and that
  776. you know you can do these things.
  777. To protect your rights, we need to make restrictions that forbid anyone to
  778. deny you these rights or to ask you to surrender the rights. These
  779. restrictions translate to certain responsibilities for you if you distribute
  780. copies of the software, or if you modify it.
  781. For example, if you distribute copies of such a program, whether gratis or
  782. for a fee, you must give the recipients all the rights that you have. You
  783. must make sure that they, too, receive or can get the source code. And you
  784. must show them these terms so they know their rights.
  785. We protect your rights with two steps: (1) copyright the software, and (2)
  786. offer you this license which gives you legal permission to copy, distribute
  787. and/or modify the software.
  788. Also, for each author's protection and ours, we want to make certain that
  789. everyone understands that there is no warranty for this free software. If the
  790. software is modified by someone else and passed on, we want its recipients to
  791. know that what they have is not the original, so that any problems introduced
  792. by others will not reflect on the original authors' reputations.
  793. Finally, any free program is threatened constantly by software patents. We
  794. wish to avoid the danger that redistributors of a free program will
  795. individually obtain patent licenses, in effect making the program
  796. proprietary. To prevent this, we have made it clear that any patent must be
  797. licensed for everyone's free use or not licensed at all.
  798. The precise terms and conditions for copying, distribution and modification
  799. follow.
  800. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  801. 0. This License applies to any program or other work which contains a notice
  802. placed by the copyright holder saying it may be distributed under the terms
  803. of this General Public License. The "Program", below, refers to any such
  804. program or work, and a "work based on the Program" means either the Program
  805. or any derivative work under copyright law: that is to say, a work containing
  806. the Program or a portion of it, either verbatim or with modifications and/or
  807. translated into another language. (Hereinafter, translation is included
  808. without limitation in the term "modification".) Each licensee is addressed as
  809. "you".
  810. Activities other than copying, distribution and modification are not covered
  811. by this License; they are outside its scope. The act of running the Program
  812. is not restricted, and the output from the Program is covered only if its
  813. contents constitute a work based on the Program (independent of having been
  814. made by running the Program). Whether that is true depends on what the
  815. Program does.
  816. 1. You may copy and distribute verbatim copies of the Program's source code
  817. as you receive it, in any medium, provided that you conspicuously and
  818. appropriately publish on each copy an appropriate copyright notice and
  819. disclaimer of warranty; keep intact all the notices that refer to this
  820. License and to the absence of any warranty; and give any other recipients of
  821. the Program a copy of this License along with the Program.
  822. You may charge a fee for the physical act of transferring a copy, and you may
  823. at your option offer warranty protection in exchange for a fee.
  824. 2. You may modify your copy or copies of the Program or any portion of it,
  825. thus forming a work based on the Program, and copy and distribute such
  826. modifications or work under the terms of Section 1 above, provided that you
  827. also meet all of these conditions:
  828. a) You must cause the modified files to carry prominent notices stating
  829. that you changed the files and the date of any change.
  830. b) You must cause any work that you distribute or publish, that in whole
  831. or in part contains or is derived from the Program or any part thereof, to be
  832. licensed as a whole at no charge to all third parties under the terms of this
  833. License.
  834. c) If the modified program normally reads commands interactively when
  835. run, you must cause it, when started running for such interactive use in the
  836. most ordinary way, to print or display an announcement including an
  837. appropriate copyright notice and a notice that there is no warranty (or else,
  838. saying that you provide a warranty) and that users may redistribute the
  839. program under these conditions, and telling the user how to view a copy of
  840. this License. (Exception: if the Program itself is interactive but does not
  841. normally print such an announcement, your work based on the Program is not
  842. required to print an announcement.)
  843. These requirements apply to the modified work as a whole. If identifiable
  844. sections of that work are not derived from the Program, and can be reasonably
  845. considered independent and separate works in themselves, then this License,
  846. and its terms, do not apply to those sections when you distribute them as
  847. separate works. But when you distribute the same sections as part of a whole
  848. which is a work based on the Program, the distribution of the whole must be
  849. on the terms of this License, whose permissions for other licensees extend to
  850. the entire whole, and thus to each and every part regardless of who wrote it.
  851. Thus, it is not the intent of this section to claim rights or contest your
  852. rights to work written entirely by you; rather, the intent is to exercise the
  853. right to control the distribution of derivative or collective works based on
  854. the Program.
  855. In addition, mere aggregation of another work not based on the Program with
  856. the Program (or with a work based on the Program) on a volume of a storage or
  857. distribution medium does not bring the other work under the scope of this
  858. License.
  859. 3. You may copy and distribute the Program (or a work based on it, under
  860. Section 2) in object code or executable form under the terms of Sections 1
  861. and 2 above provided that you also do one of the following:
  862. a) Accompany it with the complete corresponding machine-readable source
  863. code, which must be distributed under the terms of Sections 1 and 2 above on
  864. a medium customarily used for software interchange; or,
  865. b) Accompany it with a written offer, valid for at least three years, to
  866. give any third party, for a charge no more than your cost of physically
  867. performing source distribution, a complete machine-readable copy of the
  868. corresponding source code, to be distributed under the terms of Sections 1
  869. and 2 above on a medium customarily used for software interchange; or,
  870. c) Accompany it with the information you received as to the offer to
  871. distribute corresponding source code. (This alternative is allowed only for
  872. noncommercial distribution and only if you received the program in object
  873. code or executable form with such an offer, in accord with Subsection b
  874. above.)
  875. The source code for a work means the preferred form of the work for making
  876. modifications to it. For an executable work, complete source code means all
  877. the source code for all modules it contains, plus any associated interface
  878. definition files, plus the scripts used to control compilation and
  879. installation of the executable. However, as a special exception, the source
  880. code distributed need not include anything that is normally distributed (in
  881. either source or binary form) with the major components (compiler, kernel,
  882. and so on) of the operating system on which the executable runs, unless that
  883. component itself accompanies the executable.
  884. If distribution of executable or object code is made by offering access to
  885. copy from a designated place, then offering equivalent access to copy the
  886. source code from the same place counts as distribution of the source code,
  887. even though third parties are not compelled to copy the source along with the
  888. object code.
  889. 4. You may not copy, modify, sublicense, or distribute the Program except as
  890. expressly provided under this License. Any attempt otherwise to copy, modify,
  891. sublicense or distribute the Program is void, and will automatically
  892. terminate your rights under this License. However, parties who have received
  893. copies, or rights, from you under this License will not have their licenses
  894. terminated so long as such parties remain in full compliance.
  895. 5. You are not required to accept this License, since you have not signed it.
  896. However, nothing else grants you permission to modify or distribute the
  897. Program or its derivative works. These actions are prohibited by law if you
  898. do not accept this License. Therefore, by modifying or distributing the
  899. Program (or any work based on the Program), you indicate your acceptance of
  900. this License to do so, and all its terms and conditions for copying,
  901. distributing or modifying the Program or works based on it.
  902. 6. Each time you redistribute the Program (or any work based on the Program),
  903. the recipient automatically receives a license from the original licensor to
  904. copy, distribute or modify the Program subject to these terms and conditions.
  905. You may not impose any further restrictions on the recipients' exercise of
  906. the rights granted herein. You are not responsible for enforcing compliance
  907. by third parties to this License.
  908. 7. If, as a consequence of a court judgment or allegation of patent
  909. infringement or for any other reason (not limited to patent issues),
  910. conditions are imposed on you (whether by court order, agreement or
  911. otherwise) that contradict the conditions of this License, they do not excuse
  912. you from the conditions of this License. If you cannot distribute so as to
  913. satisfy simultaneously your obligations under this License and any other
  914. pertinent obligations, then as a consequence you may not distribute the
  915. Program at all. For example, if a patent license would not permit
  916. royalty-free redistribution of the Program by all those who receive copies
  917. directly or indirectly through you, then the only way you could satisfy both
  918. it and this License would be to refrain entirely from distribution of the
  919. Program.
  920. If any portion of this section is held invalid or unenforceable under any
  921. particular circumstance, the balance of the section is intended to apply and
  922. the section as a whole is intended to apply in other circumstances.
  923. It is not the purpose of this section to induce you to infringe any patents
  924. or other property right claims or to contest validity of any such claims;
  925. this section has the sole purpose of protecting the integrity of the free
  926. software distribution system, which is implemented by public license
  927. practices. Many people have made generous contributions to the wide range of
  928. software distributed through that system in reliance on consistent
  929. application of that system; it is up to the author/donor to decide if he or
  930. she is willing to distribute software through any other system and a licensee
  931. cannot impose that choice.
  932. This section is intended to make thoroughly clear what is believed to be a
  933. consequence of the rest of this License.
  934. 8. If the distribution and/or use of the Program is restricted in certain
  935. countries either by patents or by copyrighted interfaces, the original
  936. copyright holder who places the Program under this License may add an
  937. explicit geographical distribution limitation excluding those countries, so
  938. that distribution is permitted only in or among countries not thus excluded.
  939. In such case, this License incorporates the limitation as if written in the
  940. body of this License.
  941. 9. The Free Software Foundation may publish revised and/or new versions of
  942. the General Public License from time to time. Such new versions will be
  943. similar in spirit to the present version, but may differ in detail to address
  944. new problems or concerns.
  945. Each version is given a distinguishing version number. If the Program
  946. specifies a version number of this License which applies to it and "any later
  947. version", you have the option of following the terms and conditions either of
  948. that version or of any later version published by the Free Software
  949. Foundation. If the Program does not specify a version number of this License,
  950. you may choose any version ever published by the Free Software Foundation.
  951. 10. If you wish to incorporate parts of the Program into other free programs
  952. whose distribution conditions are different, write to the author to ask for
  953. permission. For software which is copyrighted by the Free Software
  954. Foundation, write to the Free Software Foundation; we sometimes make
  955. exceptions for this. Our decision will be guided by the two goals of
  956. preserving the free status of all derivatives of our free software and of
  957. promoting the sharing and reuse of software generally.
  958. NO WARRANTY
  959. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
  960. THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
  961. STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
  962. PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
  963. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  964. FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
  965. PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
  966. YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  967. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  968. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
  969. REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  970. INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
  971. OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO
  972. LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR
  973. THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  974. PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  975. POSSIBILITY OF SUCH DAMAGES.
  976. END OF TERMS AND CONDITIONS
  977. How to Apply These Terms to Your New Programs
  978. If you develop a new program, and you want it to be of the greatest possible
  979. use to the public, the best way to achieve this is to make it free software
  980. which everyone can redistribute and change under these terms.
  981. To do so, attach the following notices to the program. It is safest to attach
  982. them to the start of each source file to most effectively convey the
  983. exclusion of warranty; and each file should have at least the "copyright"
  984. line and a pointer to where the full notice is found.
  985. One line to give the program's name and a brief idea of what it does.
  986. Copyright (C) <year> <name of author>
  987. This program is free software; you can redistribute it and/or modify it
  988. under the terms of the GNU General Public License as published by the Free
  989. Software Foundation; either version 2 of the License, or (at your option) any
  990. later version.
  991. This program is distributed in the hope that it will be useful, but
  992. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  993. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  994. details.
  995. You should have received a copy of the GNU General Public License along
  996. with this program; if not, write to the Free Software Foundation, Inc., 59
  997. Temple Place, Suite 330, Boston, MA 02111-1307 USA
  998. Also add information on how to contact you by electronic and paper mail.
  999. If the program is interactive, make it output a short notice like this when
  1000. it starts in an interactive mode:
  1001. Gnomovision version 69, Copyright (C) year name of author Gnomovision
  1002. comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free
  1003. software, and you are welcome to redistribute it under certain conditions;
  1004. type `show c' for details.
  1005. The hypothetical commands `show w' and `show c' should show the appropriate
  1006. parts of the General Public License. Of course, the commands you use may be
  1007. called something other than `show w' and `show c'; they could even be
  1008. mouse-clicks or menu items--whatever suits your program.
  1009. You should also get your employer (if you work as a programmer) or your
  1010. school, if any, to sign a "copyright disclaimer" for the program, if
  1011. necessary. Here is a sample; alter the names:
  1012. Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  1013. `Gnomovision' (which makes passes at compilers) written by James Hacker.
  1014. signature of Ty Coon, 1 April 1989
  1015. Ty Coon, President of Vice
  1016. This General Public License does not permit incorporating your program into
  1017. proprietary programs. If your program is a subroutine library, you may
  1018. consider it more useful to permit linking proprietary applications with the
  1019. library. If this is what you want to do, use the GNU Library General Public
  1020. License instead of this License.
  1021. ________________________________________________________
  1022. The "Artistic License"
  1023. Preamble
  1024. The intent of this document is to state the conditions under which a
  1025. Package may be copied, such that the Copyright Holder maintains some
  1026. semblance of artistic control over the development of the package,
  1027. while giving the users of the package the right to use and distribute
  1028. the Package in a more-or-less customary fashion, plus the right to make
  1029. reasonable modifications.
  1030. Definitions:
  1031. "Package" refers to the collection of files distributed by the
  1032. Copyright Holder, and derivatives of that collection of files
  1033. created through textual modification.
  1034. "Standard Version" refers to such a Package if it has not been
  1035. modified, or has been modified in accordance with the wishes
  1036. of the Copyright Holder as specified below.
  1037. "Copyright Holder" is whoever is named in the copyright or
  1038. copyrights for the package.
  1039. "You" is you, if you're thinking about copying or distributing
  1040. this Package.
  1041. "Reasonable copying fee" is whatever you can justify on the
  1042. basis of media cost, duplication charges, time of people involved,
  1043. and so on. (You will not be required to justify it to the
  1044. Copyright Holder, but only to the computing community at large
  1045. as a market that must bear the fee.)
  1046. "Freely Available" means that no fee is charged for the item
  1047. itself, though there may be fees involved in handling the item.
  1048. It also means that recipients of the item may redistribute it
  1049. under the same conditions they received it.
  1050. 1. You may make and give away verbatim copies of the source form of the
  1051. Standard Version of this Package without restriction, provided that you
  1052. duplicate all of the original copyright notices and associated disclaimers.
  1053. 2. You may apply bug fixes, portability fixes and other modifications
  1054. derived from the Public Domain or from the Copyright Holder. A Package
  1055. modified in such a way shall still be considered the Standard Version.
  1056. 3. You may otherwise modify your copy of this Package in any way, provided
  1057. that you insert a prominent notice in each changed file stating how and
  1058. when you changed that file, and provided that you do at least ONE of the
  1059. following:
  1060. a) place your modifications in the Public Domain or otherwise make them
  1061. Freely Available, such as by posting said modifications to Usenet or
  1062. an equivalent medium, or placing the modifications on a major archive
  1063. site such as uunet.uu.net, or by allowing the Copyright Holder to include
  1064. your modifications in the Standard Version of the Package.
  1065. b) use the modified Package only within your corporation or organization.
  1066. c) rename any non-standard executables so the names do not conflict
  1067. with standard executables, which must also be provided, and provide
  1068. a separate manual page for each non-standard executable that clearly
  1069. documents how it differs from the Standard Version.
  1070. d) make other distribution arrangements with the Copyright Holder.
  1071. 4. You may distribute the programs of this Package in object code or
  1072. executable form, provided that you do at least ONE of the following:
  1073. a) distribute a Standard Version of the executables and library files,
  1074. together with instructions (in the manual page or equivalent) on where
  1075. to get the Standard Version.
  1076. b) accompany the distribution with the machine-readable source of
  1077. the Package with your modifications.
  1078. c) give non-standard executables non-standard names, and clearly
  1079. document the differences in manual pages (or equivalent), together
  1080. with instructions on where to get the Standard Version.
  1081. d) make other distribution arrangements with the Copyright Holder.
  1082. 5. You may charge a reasonable copying fee for any distribution of this
  1083. Package. You may charge any fee you choose for support of this
  1084. Package. You may not charge a fee for this Package itself. However,
  1085. you may distribute this Package in aggregate with other (possibly
  1086. commercial) programs as part of a larger (possibly commercial) software
  1087. distribution provided that you do not advertise this Package as a
  1088. product of your own. You may embed this Package's interpreter within
  1089. an executable of yours (by linking); this shall be construed as a mere
  1090. form of aggregation, provided that the complete Standard Version of the
  1091. interpreter is so embedded.
  1092. 6. The scripts and library files supplied as input to or produced as
  1093. output from the programs of this Package do not automatically fall
  1094. under the copyright of this Package, but belong to whoever generated
  1095. them, and may be sold commercially, and may be aggregated with this
  1096. Package. If such scripts or library files are aggregated with this
  1097. Package via the so-called "undump" or "unexec" methods of producing a
  1098. binary executable image, then distribution of such an image shall
  1099. neither be construed as a distribution of this Package nor shall it
  1100. fall under the restrictions of Paragraphs 3 and 4, provided that you do
  1101. not represent such an executable image as a Standard Version of this
  1102. Package.
  1103. 7. C subroutines (or comparably compiled subroutines in other
  1104. languages) supplied by you and linked into this Package in order to
  1105. emulate subroutines and variables of the language defined by this
  1106. Package shall not be considered part of this Package, but are the
  1107. equivalent of input as in Paragraph 6, provided these subroutines do
  1108. not change the language in any way that would cause it to fail the
  1109. regression tests for the language.
  1110. 8. Aggregation of this Package with a commercial distribution is always
  1111. permitted provided that the use of this Package is embedded; that is,
  1112. when no overt attempt is made to make this Package's interfaces visible
  1113. to the end user of the commercial distribution. Such use shall not be
  1114. construed as a distribution of this Package.
  1115. 9. The name of the Copyright Holder may not be used to endorse or promote
  1116. products derived from this software without specific prior written
  1117. permission.
  1118. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  1119. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  1120. WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  1121. The End
  1122. ======================================================================
  1123. ======================================================================
  1124. Facebook Fast Checksum Patch
  1125. Facebook Fast Checksum Patch
  1126. Copyright (C) 2009-2010 Facebook, Inc. All Rights Reserved.
  1127. Redistribution and use in source and binary forms, with or without
  1128. modification, are permitted provided that the following conditions are met:
  1129. 1. Redistributions of source code must retain the above copyright notice,
  1130. this list of conditions and the following disclaimer.
  1131. 2. Redistributions in binary form must reproduce the above copyright notice,
  1132. this list of conditions and the following disclaimer in the documentation
  1133. and/or other materials provided with the distribution.
  1134. THIS SOFTWARE IS PROVIDED BY FACEBOOK, INC. "AS IS" AND ANY EXPRESS OR
  1135. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  1136. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
  1137. EVENT SHALL FACEBOOK, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1138. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  1139. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  1140. OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  1141. WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  1142. OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  1143. ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1144. Also included:
  1145. crc32.c -- compute the CRC-32 of a buf stream
  1146. Copyright (C) 1995-2005 Mark Adler
  1147. This software is provided 'as-is', without any express or implied
  1148. warranty. In no event will the authors be held liable for any damages
  1149. arising from the use of this software.
  1150. Permission is granted to anyone to use this software for any purpose,
  1151. including commercial applications, and to alter it and redistribute it
  1152. freely, subject to the following restrictions:
  1153. 1. The origin of this software must not be misrepresented; you must not
  1154. claim that you wrote the original software. If you use this software
  1155. in a product, an acknowledgment in the product documentation would be
  1156. appreciated but is not required.
  1157. 2. Altered source versions must be plainly marked as such, and must not be
  1158. misrepresented as being the original software.
  1159. 3. This notice may not be removed or altered from any source distribution.
  1160. Jean-loup Gailly jloup@gzip.org
  1161. Mark Adler madler@alumni.caltech.edu
  1162. ======================================================================
  1163. ======================================================================
  1164. Facebook Patches
  1165. Copyright (c) 2012, Facebook, Inc.
  1166. All rights reserved.
  1167. Redistribution and use in source and binary forms, with or without
  1168. modification, are permitted provided that the following conditions are met:
  1169. * Redistributions of source code must retain the above copyright notice,
  1170. this list of conditions and the following disclaimer.
  1171. * Redistributions in binary form must reproduce the above copyright notice,
  1172. this list of conditions and the following disclaimer in the documentation
  1173. and/or other materials provided with the distribution.
  1174. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  1175. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1176. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1177. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  1178. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  1179. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  1180. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  1181. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  1182. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1183. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  1184. POSSIBILITY OF SUCH DAMAGE.
  1185. ======================================================================
  1186. ======================================================================
  1187. Fred Fish's Dbug Library
  1188. Fred Fish's Dbug Library
  1189. N O T I C E
  1190. Copyright Abandoned, 1987, Fred Fish
  1191. This previously copyrighted work has been placed into the public
  1192. domain by the author and may be freely used for any purpose,
  1193. private or commercial.
  1194. Because of the number of inquiries I was receiving about the use
  1195. of this product in commercially developed works I have decided to
  1196. simply make it public domain to further its unrestricted use. I
  1197. specifically would be most happy to see this material become a
  1198. part of the standard Unix distributions by AT&T and the Berkeley
  1199. Computer Science Research Group, and a standard part of the GNU
  1200. system from the Free Software Foundation.
  1201. I would appreciate it, as a courtesy, if this notice is left in
  1202. all copies and derivative works. Thank you.
  1203. The author makes no warranty of any kind with respect to this
  1204. product and explicitly disclaims any implied warranties of mer-
  1205. chantability or fitness for any particular purpose.
  1206. The dbug_analyze.c file is subject to the following notice:
  1207. Copyright June 1987, Binayak Banerjee
  1208. All rights reserved.
  1209. This program may be freely distributed under the same terms and
  1210. conditions as Fred Fish's Dbug package.
  1211. ======================================================================
  1212. ======================================================================
  1213. Google C++ Mocking Framework (Google Mock)
  1214. This Oracle Product includes or references Gmock (including gtest),
  1215. which is licensed to Oracle under the following terms:
  1216. Copyright 2008, Google Inc.
  1217. All rights reserved.
  1218. Redistribution and use in source and binary forms, with or without
  1219. modification, are permitted provided that the following conditions are met:
  1220. * Redistributions of source code must retain the above copyright notice, this
  1221. list of conditions and the following disclaimer.
  1222. * Redistributions in binary form must reproduce the above copyright notice,
  1223. this list of conditions and the following disclaimer in the documentation
  1224. and/or other materials provided with the distribution.
  1225. * Neither the name of Google Inc. nor the names of its contributors may be
  1226. used to endorse or promote products derived from this software without
  1227. specific prior written permission.
  1228. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  1229. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1230. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1231. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  1232. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  1233. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  1234. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  1235. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  1236. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1237. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  1238. POSSIBILITY OF SUCH DAMAGE.
  1239. ======================================================================
  1240. ======================================================================
  1241. Google Controlling Master Thread I/O Rate Patch
  1242. Google Controlling master thread I/O rate patch
  1243. Copyright (c) 2009, Google Inc.
  1244. All rights reserved.
  1245. Redistribution and use in source and binary forms, with or without
  1246. modification, are permitted provided that the following conditions
  1247. are met:
  1248. * Redistributions of source code must retain the above copyright
  1249. notice, this list of conditions and the following disclaimer.
  1250. * Redistributions in binary form must reproduce the above copyright
  1251. notice, this list of conditions and the following disclaimer in the
  1252. documentation and/or other materials provided with the distribution.
  1253. * Neither the name of the Google Inc. nor the names of its contributors
  1254. may be used to endorse or promote products derived from this software
  1255. without specific prior written permission.
  1256. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1257. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1258. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1259. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1260. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  1261. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  1262. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1263. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  1264. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  1265. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  1266. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  1267. POSSIBILITY OF SUCH DAMAGE.
  1268. ======================================================================
  1269. ======================================================================
  1270. Google Perftools (TCMalloc utility)
  1271. Google Perftools (TCMalloc utility)
  1272. Copyright (c) 1998-2006, Google Inc.
  1273. All rights reserved.
  1274. Redistribution and use in source and binary forms, with or
  1275. without modification, are permitted provided that the following
  1276. conditions are met:
  1277. * Redistributions of source code must retain the above
  1278. copyright notice, this list of conditions and the following
  1279. disclaimer.
  1280. * Redistributions in binary form must reproduce the above
  1281. copyright notice, this list of conditions and the following
  1282. disclaimer in the documentation and/or other materials provided
  1283. with the distribution.
  1284. * Neither the name of Google Inc. nor the names of its
  1285. contributors may be used to endorse or promote products
  1286. derived from this software without specific prior written
  1287. permission.
  1288. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1289. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1290. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1291. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1292. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1293. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1294. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1295. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1296. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1297. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1298. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1299. ======================================================================
  1300. ======================================================================
  1301. Google Protocol Buffers
  1302. Copyright 2008 Google Inc. All rights reserved.
  1303. Redistribution and use in source and binary forms, with or without
  1304. modification, are permitted provided that the following conditions are
  1305. met:
  1306. * Redistributions of source code must retain the above copyright
  1307. notice, this list of conditions and the following disclaimer.
  1308. * Redistributions in binary form must reproduce the above
  1309. copyright notice, this list of conditions and the following disclaimer
  1310. in the documentation and/or other materials provided with the
  1311. distribution.
  1312. * Neither the name of Google Inc. nor the names of its
  1313. contributors may be used to endorse or promote products derived from
  1314. this software without specific prior written permission.
  1315. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1316. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1317. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1318. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1319. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1320. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1321. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1322. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1323. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1324. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1325. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1326. Code generated by the Protocol Buffer compiler is owned by the owner
  1327. of the input file used when generating it. This code is not
  1328. standalone and requires a support library to be linked with it. This
  1329. support library is itself covered by the above license.
  1330. ======================================================================
  1331. ======================================================================
  1332. Google SMP Patch
  1333. Google SMP patch
  1334. Copyright (c) 2008, Google Inc.
  1335. All rights reserved.
  1336. Redistribution and use in source and binary forms, with or without
  1337. modification, are permitted provided that the following conditions
  1338. are met:
  1339. * Redistributions of source code must retain the above copyright
  1340. notice, this list of conditions and the following disclaimer.
  1341. * Redistributions in binary form must reproduce the above copyright
  1342. notice, this list of conditions and the following disclaimer in the
  1343. documentation and/or other materials provided with the distribution.
  1344. * Neither the name of the Google Inc. nor the names of its contributors
  1345. may be used to endorse or promote products derived from this software
  1346. without specific prior written permission.
  1347. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1348. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1349. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1350. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1351. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  1352. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  1353. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1354. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  1355. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  1356. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  1357. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  1358. POSSIBILITY OF SUCH DAMAGE.
  1359. ======================================================================
  1360. ======================================================================
  1361. ICU4C Unicode Libraries
  1362. COPYRIGHT AND PERMISSION NOTICE (ICU 58 and later)
  1363. Copyright (c) 1991-2019 Unicode, Inc. All rights reserved.
  1364. Distributed under the Terms of Use in https://www.unicode.org/copyright.html.
  1365. Permission is hereby granted, free of charge, to any person obtaining
  1366. a copy of the Unicode data files and any associated documentation
  1367. (the "Data Files") or Unicode software and any associated documentation
  1368. (the "Software") to deal in the Data Files or Software
  1369. without restriction, including without limitation the rights to use,
  1370. copy, modify, merge, publish, distribute, and/or sell copies of
  1371. the Data Files or Software, and to permit persons to whom the Data Files
  1372. or Software are furnished to do so, provided that either
  1373. (a) this copyright and permission notice appear with all copies
  1374. of the Data Files or Software, or
  1375. (b) this copyright and permission notice appear in associated
  1376. Documentation.
  1377. THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
  1378. ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  1379. WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1380. NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  1381. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
  1382. NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
  1383. DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  1384. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  1385. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  1386. PERFORMANCE OF THE DATA FILES OR SOFTWARE.
  1387. Except as contained in this notice, the name of a copyright holder
  1388. shall not be used in advertising or otherwise to promote the sale,
  1389. use or other dealings in these Data Files or Software without prior
  1390. written authorization of the copyright holder.
  1391. ---------------------
  1392. Third-Party Software Licenses
  1393. This section contains third-party software notices and/or additional
  1394. terms for licensed third-party software components included within ICU
  1395. libraries.
  1396. 1. ICU License - ICU 1.8.1 to ICU 57.1
  1397. COPYRIGHT AND PERMISSION NOTICE
  1398. Copyright (c) 1995-2016 International Business Machines Corporation and
  1399. others
  1400. All rights reserved.
  1401. Permission is hereby granted, free of charge, to any person obtaining
  1402. a copy of this software and associated documentation files (the
  1403. "Software"), to deal in the Software without restriction, including
  1404. without limitation the rights to use, copy, modify, merge, publish,
  1405. distribute, and/or sell copies of the Software, and to permit persons
  1406. to whom the Software is furnished to do so, provided that the above
  1407. copyright notice(s) and this permission notice appear in all copies of
  1408. the Software and that both the above copyright notice(s) and this
  1409. permission notice appear in supporting documentation.
  1410. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1411. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1412. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
  1413. OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  1414. HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
  1415. SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
  1416. RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
  1417. CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  1418. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  1419. Except as contained in this notice, the name of a copyright holder
  1420. shall not be used in advertising or otherwise to promote the sale, use
  1421. or other dealings in this Software without prior written authorization
  1422. of the copyright holder.
  1423. All trademarks and registered trademarks mentioned herein are the
  1424. property of their respective owners.
  1425. 2. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)
  1426. # The Google Chrome software developed by Google is licensed under
  1427. # the BSD license. Other software included in this distribution is
  1428. # provided under other licenses, as set forth below.
  1429. #
  1430. # The BSD License
  1431. # http://opensource.org/licenses/bsd-license.php
  1432. # Copyright (C) 2006-2008, Google Inc.
  1433. #
  1434. # All rights reserved.
  1435. #
  1436. # Redistribution and use in source and binary forms, with or without
  1437. # modification, are permitted provided that the following conditions are met:
  1438. #
  1439. # Redistributions of source code must retain the above copyright notice,
  1440. # this list of conditions and the following disclaimer.
  1441. # Redistributions in binary form must reproduce the above
  1442. # copyright notice, this list of conditions and the following
  1443. # disclaimer in the documentation and/or other materials provided with
  1444. # the distribution.
  1445. # Neither the name of Google Inc. nor the names of its
  1446. # contributors may be used to endorse or promote products derived from
  1447. # this software without specific prior written permission.
  1448. #
  1449. #
  1450. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  1451. # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  1452. # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  1453. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1454. # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  1455. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  1456. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  1457. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  1458. # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  1459. # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  1460. # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1461. # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1462. #
  1463. #
  1464. # The word list in cjdict.txt are generated by combining three word lists
  1465. # listed below with further processing for compound word breaking. The
  1466. # frequency is generated with an iterative training against Google web
  1467. # corpora.
  1468. #
  1469. # * Libtabe (Chinese)
  1470. # - https://sourceforge.net/project/?group_id=1519
  1471. # - Its license terms and conditions are shown below.
  1472. #
  1473. # * IPADIC (Japanese)
  1474. # - http://chasen.aist-nara.ac.jp/chasen/distribution.html
  1475. # - Its license terms and conditions are shown below.
  1476. #
  1477. # ---------COPYING.libtabe ---- BEGIN--------------------
  1478. #
  1479. # /*
  1480. # * Copyright (c) 1999 TaBE Project.
  1481. # * Copyright (c) 1999 Pai-Hsiang Hsiao.
  1482. # * All rights reserved.
  1483. # *
  1484. # * Redistribution and use in source and binary forms, with or without
  1485. # * modification, are permitted provided that the following conditions
  1486. # * are met:
  1487. # *
  1488. # * . Redistributions of source code must retain the above copyright
  1489. # * notice, this list of conditions and the following disclaimer.
  1490. # * . Redistributions in binary form must reproduce the above copyright
  1491. # * notice, this list of conditions and the following disclaimer in
  1492. # * the documentation and/or other materials provided with the
  1493. # * distribution.
  1494. # * . Neither the name of the TaBE Project nor the names of its
  1495. # * contributors may be used to endorse or promote products derived
  1496. # * from this software without specific prior written permission.
  1497. # *
  1498. # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1499. # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1500. # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1501. # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1502. # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  1503. # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1504. # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1505. # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1506. # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1507. # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1508. # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1509. # * OF THE POSSIBILITY OF SUCH DAMAGE.
  1510. # */
  1511. #
  1512. # /*
  1513. # * Copyright (c) 1999 Computer Systems and Communication Lab,
  1514. # * Institute of Information Science, Academia
  1515. # * Sinica. All rights reserved.
  1516. # *
  1517. # * Redistribution and use in source and binary forms, with or without
  1518. # * modification, are permitted provided that the following conditions
  1519. # * are met:
  1520. # *
  1521. # * . Redistributions of source code must retain the above copyright
  1522. # * notice, this list of conditions and the following disclaimer.
  1523. # * . Redistributions in binary form must reproduce the above copyright
  1524. # * notice, this list of conditions and the following disclaimer in
  1525. # * the documentation and/or other materials provided with the
  1526. # * distribution.
  1527. # * . Neither the name of the Computer Systems and Communication Lab
  1528. # * nor the names of its contributors may be used to endorse or
  1529. # * promote products derived from this software without specific
  1530. # * prior written permission.
  1531. # *
  1532. # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1533. # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1534. # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1535. # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1536. # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  1537. # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1538. # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1539. # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1540. # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1541. # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1542. # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1543. # * OF THE POSSIBILITY OF SUCH DAMAGE.
  1544. # */
  1545. #
  1546. # Copyright 1996 Chih-Hao Tsai @ Beckman Institute,
  1547. # University of Illinois
  1548. # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4
  1549. #
  1550. # ---------------COPYING.libtabe-----END--------------------------------
  1551. #
  1552. #
  1553. # ---------------COPYING.ipadic-----BEGIN-------------------------------
  1554. #
  1555. # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science
  1556. # and Technology. All Rights Reserved.
  1557. #
  1558. # Use, reproduction, and distribution of this software is permitted.
  1559. # Any copy of this software, whether in its original form or modified,
  1560. # must include both the above copyright notice and the following
  1561. # paragraphs.
  1562. #
  1563. # Nara Institute of Science and Technology (NAIST),
  1564. # the copyright holders, disclaims all warranties with regard to this
  1565. # software, including all implied warranties of merchantability and
  1566. # fitness, in no event shall NAIST be liable for
  1567. # any special, indirect or consequential damages or any damages
  1568. # whatsoever resulting from loss of use, data or profits, whether in an
  1569. # action of contract, negligence or other tortuous action, arising out
  1570. # of or in connection with the use or performance of this software.
  1571. #
  1572. # A large portion of the dictionary entries
  1573. # originate from ICOT Free Software. The following conditions for ICOT
  1574. # Free Software applies to the current dictionary as well.
  1575. #
  1576. # Each User may also freely distribute the Program, whether in its
  1577. # original form or modified, to any third party or parties, PROVIDED
  1578. # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear
  1579. # on, or be attached to, the Program, which is distributed substantially
  1580. # in the same form as set out herein and that such intended
  1581. # distribution, if actually made, will neither violate or otherwise
  1582. # contravene any of the laws and regulations of the countries having
  1583. # jurisdiction over the User or the intended distribution itself.
  1584. #
  1585. # NO WARRANTY
  1586. #
  1587. # The program was produced on an experimental basis in the course of the
  1588. # research and development conducted during the project and is provided
  1589. # to users as so produced on an experimental basis. Accordingly, the
  1590. # program is provided without any warranty whatsoever, whether express,
  1591. # implied, statutory or otherwise. The term "warranty" used herein
  1592. # includes, but is not limited to, any warranty of the quality,
  1593. # performance, merchantability and fitness for a particular purpose of
  1594. # the program and the nonexistence of any infringement or violation of
  1595. # any right of any third party.
  1596. #
  1597. # Each user of the program will agree and understand, and be deemed to
  1598. # have agreed and understood, that there is no warranty whatsoever for
  1599. # the program and, accordingly, the entire risk arising from or
  1600. # otherwise connected with the program is assumed by the user.
  1601. #
  1602. # Therefore, neither ICOT, the copyright holder, or any other
  1603. # organization that participated in or was otherwise related to the
  1604. # development of the program and their respective officials, directors,
  1605. # officers and other employees shall be held liable for any and all
  1606. # damages, including, without limitation, general, special, incidental
  1607. # and consequential damages, arising out of or otherwise in connection
  1608. # with the use or inability to use the program or any product, material
  1609. # or result produced or otherwise obtained by using the program,
  1610. # regardless of whether they have been advised of, or otherwise had
  1611. # knowledge of, the possibility of such damages at any time during the
  1612. # project or thereafter. Each user will be deemed to have agreed to the
  1613. # foregoing by his or her commencement of use of the program. The term
  1614. # "use" as used herein includes, but is not limited to, the use,
  1615. # modification, copying and distribution of the program and the
  1616. # production of secondary products from the program.
  1617. #
  1618. # In the case where the program, whether in its original form or
  1619. # modified, was distributed or delivered to or received by a user from
  1620. # any person, organization or entity other than ICOT, unless it makes or
  1621. # grants independently of ICOT any specific warranty to the user in
  1622. # writing, such person, organization or entity, will also be exempted
  1623. # from and not be held liable to the user for any such damages as noted
  1624. # above as far as the program is concerned.
  1625. #
  1626. # ---------------COPYING.ipadic-----END----------------------------------
  1627. 3. Lao Word Break Dictionary Data (laodict.txt)
  1628. # Copyright (c) 2013 International Business Machines Corporation
  1629. # and others. All Rights Reserved.
  1630. #
  1631. # Project: http://code.google.com/p/lao-dictionary/
  1632. # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt
  1633. # License:
  1634. # http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt
  1635. # (copied below)
  1636. #
  1637. # This file is derived from the above dictionary, with slight
  1638. # modifications.
  1639. # ----------------------------------------------------------------------
  1640. # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.
  1641. # All rights reserved.
  1642. #
  1643. # Redistribution and use in source and binary forms, with or without
  1644. # modification,
  1645. # are permitted provided that the following conditions are met:
  1646. #
  1647. #
  1648. # Redistributions of source code must retain the above copyright notice, this
  1649. # list of conditions and the following disclaimer. Redistributions in
  1650. # binary form must reproduce the above copyright notice, this list of
  1651. # conditions and the following disclaimer in the documentation and/or
  1652. # other materials provided with the distribution.
  1653. #
  1654. #
  1655. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1656. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1657. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1658. # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1659. # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  1660. # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1661. # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1662. # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1663. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1664. # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1665. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1666. # OF THE POSSIBILITY OF SUCH DAMAGE.
  1667. #
  1668. --------------------------------------------------------------------------
  1669. 4. Burmese Word Break Dictionary Data (burmesedict.txt)
  1670. # Copyright (c) 2014 International Business Machines Corporation
  1671. # and others. All Rights Reserved.
  1672. #
  1673. # This list is part of a project hosted at:
  1674. # github.com/kanyawtech/myanmar-karen-word-lists
  1675. #
  1676. #
  1677. --------------------------------------------------------------------------
  1678. # Copyright (c) 2013, LeRoy Benjamin Sharon
  1679. # All rights reserved.
  1680. #
  1681. # Redistribution and use in source and binary forms, with or without
  1682. # modification, are permitted provided that the following conditions
  1683. # are met: Redistributions of source code must retain the above
  1684. # copyright notice, this list of conditions and the following
  1685. # disclaimer. Redistributions in binary form must reproduce the
  1686. # above copyright notice, this list of conditions and the following
  1687. # disclaimer in the documentation and/or other materials provided
  1688. # with the distribution.
  1689. #
  1690. # Neither the name Myanmar Karen Word Lists, nor the names of its
  1691. # contributors may be used to endorse or promote products derived
  1692. # from this software without specific prior written permission.
  1693. #
  1694. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  1695. # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  1696. # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  1697. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1698. # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
  1699. # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  1700. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  1701. # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1702. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  1703. # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  1704. # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  1705. # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  1706. # SUCH DAMAGE.
  1707. #
  1708. --------------------------------------------------------------------------
  1709. 5. Time Zone Database
  1710. ICU uses the public domain data and code derived from Time Zone
  1711. Database for its time zone support. The ownership of the TZ database
  1712. is explained in BCP 175: Procedure for Maintaining the Time Zone
  1713. Database section 7.
  1714. # 7. Database Ownership
  1715. #
  1716. # The TZ database itself is not an IETF Contribution or an IETF
  1717. # document. Rather it is a pre-existing and regularly updated work
  1718. # that is in the public domain, and is intended to remain in the
  1719. # public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do
  1720. # not apply to the TZ Database or contributions that individuals make
  1721. # to it. Should any claims be made and substantiated against the TZ
  1722. # Database, the organization that is providing the IANA
  1723. # Considerations defined in this RFC, under the memorandum of
  1724. # understanding with the IETF, currently ICANN, may act in accordance
  1725. # with all competent court orders. No ownership claims will be made
  1726. # by ICANN or the IETF Trust on the database or the code. Any person
  1727. # making a contribution to the database or code waives all rights to
  1728. # future claims in that contribution or in the TZ Database.
  1729. 6. Google double-conversion
  1730. Copyright 2006-2011, the V8 project authors. All rights reserved.
  1731. Redistribution and use in source and binary forms, with or without
  1732. modification, are permitted provided that the following conditions are
  1733. met:
  1734. * Redistributions of source code must retain the above copyright
  1735. notice, this list of conditions and the following disclaimer.
  1736. * Redistributions in binary form must reproduce the above
  1737. copyright notice, this list of conditions and the following
  1738. disclaimer in the documentation and/or other materials provided
  1739. with the distribution.
  1740. * Neither the name of Google Inc. nor the names of its
  1741. contributors may be used to endorse or promote products derived
  1742. from this software without specific prior written permission.
  1743. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1744. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1745. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1746. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1747. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1748. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1749. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1750. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1751. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1752. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1753. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1754. ======================================================================
  1755. ======================================================================
  1756. jemalloc
  1757. jemalloc
  1758. Copyright (C) 2002-present Jason Evans <jasone@canonware.com>.
  1759. All rights reserved.
  1760. Copyright (C) 2007-2012 Mozilla Foundation. All rights reserved.
  1761. Copyright (C) 2009-present Facebook, Inc. All rights reserved.
  1762. Redistribution and use in source and binary forms, with or without
  1763. modification, are permitted provided that the following conditions are met:
  1764. 1. Redistributions of source code must retain the above copyright notice(s),
  1765. this list of conditions and the following disclaimer.
  1766. 2. Redistributions in binary form must reproduce the above copyright
  1767. notice(s),
  1768. this list of conditions and the following disclaimer in the documentation
  1769. and/or other materials provided with the distribution.
  1770. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
  1771. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  1772. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1773. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
  1774. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1775. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1776. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  1777. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  1778. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  1779. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  1780. SUCH DAMAGE.
  1781. ======================================================================
  1782. ======================================================================
  1783. Kerberos5
  1784. Kerberos5
  1785. Copyright (C) 1985-2019 by the Massachusetts Institute of Technology.
  1786. All rights reserved.
  1787. Redistribution and use in source and binary forms, with or without
  1788. modification, are permitted provided that the following conditions are
  1789. met:
  1790. * Redistributions of source code must retain the above copyright
  1791. notice, this list of conditions and the following disclaimer.
  1792. * Redistributions in binary form must reproduce the above copyright
  1793. notice, this list of conditions and the following disclaimer in the
  1794. documentation and/or other materials provided with the distribution.
  1795. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1796. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1797. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1798. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1799. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1800. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1801. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1802. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1803. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1804. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1805. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1806. Downloading of this software may constitute an export of cryptographic
  1807. software from the United States of America that is subject to the
  1808. United States Export Administration Regulations (EAR), 15 CFR 730-774.
  1809. Additional laws or regulations may apply. It is the responsibility of
  1810. the person or entity contemplating export to comply with all
  1811. applicable export laws and regulations, including obtaining any
  1812. required license from the U.S. government.
  1813. The U.S. government prohibits export of encryption source code to
  1814. certain countries and individuals, including, but not limited to, the
  1815. countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and
  1816. nationals of those countries.
  1817. Documentation components of this software distribution are licensed
  1818. under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
  1819. (http://creativecommons.org/licenses/by-sa/3.0/)
  1820. Individual source code files are copyright MIT, Cygnus Support,
  1821. Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems,
  1822. FundsXpress, and others.
  1823. Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira,
  1824. and Zephyr are trademarks of the Massachusetts Institute of Technology
  1825. (MIT). No commercial use of these trademarks may be made without
  1826. prior written permission of MIT.
  1827. "Commercial use" means use of a name in a product or other for-profit
  1828. manner. It does NOT prevent a commercial firm from referring to the
  1829. MIT trademarks in order to convey information (although in doing so,
  1830. recognition of their trademark status should be given).
  1831. ======================================================================
  1832. The following copyright and permission notice applies to the
  1833. OpenVision Kerberos Administration system located in "kadmin/create",
  1834. "kadmin/dbutil", "kadmin/passwd", "kadmin/server", "lib/kadm5", and
  1835. portions of "lib/rpc":
  1836. Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights
  1837. Reserved
  1838. WARNING: Retrieving the OpenVision Kerberos Administration system
  1839. source code, as described below, indicates your acceptance of the
  1840. following terms. If you do not agree to the following terms, do
  1841. not retrieve the OpenVision Kerberos administration system.
  1842. You may freely use and distribute the Source Code and Object Code
  1843. compiled from it, with or without modification, but this Source
  1844. Code is provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY,
  1845. INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR
  1846. FITNESS FOR A PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER
  1847. EXPRESS OR IMPLIED. IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY
  1848. FOR ANY LOST PROFITS, LOSS OF DATA OR COSTS OF PROCUREMENT OF
  1849. SUBSTITUTE GOODS OR SERVICES, OR FOR ANY SPECIAL, INDIRECT, OR
  1850. CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, INCLUDING,
  1851. WITHOUT LIMITATION, THOSE RESULTING FROM THE USE OF THE SOURCE
  1852. CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR ANY
  1853. OTHER REASON.
  1854. OpenVision retains all copyrights in the donated Source Code.
  1855. OpenVision also retains copyright to derivative works of the Source
  1856. Code, whether created by OpenVision or by a third party. The
  1857. OpenVision copyright notice must be preserved if derivative works
  1858. are made based on the donated Source Code.
  1859. OpenVision Technologies, Inc. has donated this Kerberos
  1860. Administration system to MIT for inclusion in the standard Kerberos
  1861. 5 distribution. This donation underscores our commitment to
  1862. continuing Kerberos technology development and our gratitude for
  1863. the valuable work which has been performed by MIT and the Kerberos
  1864. community.
  1865. ======================================================================
  1866. Portions contributed by Matt Crawford "crawdad@fnal.gov" were work
  1867. performed at Fermi National Accelerator Laboratory, which is
  1868. operated by Universities Research Association, Inc., under contract
  1869. DE-AC02-76CHO3000 with the U.S. Department of Energy.
  1870. ======================================================================
  1871. Portions of "src/lib/crypto" have the following copyright:
  1872. Copyright (C) 1998 by the FundsXpress, INC.
  1873. All rights reserved.
  1874. Export of this software from the United States of America may
  1875. require a specific license from the United States Government.
  1876. It is the responsibility of any person or organization
  1877. contemplating export to obtain such a license before exporting.
  1878. WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  1879. distribute this software and its documentation for any purpose and
  1880. without fee is hereby granted, provided that the above copyright
  1881. notice appear in all copies and that both that copyright notice and
  1882. this permission notice appear in supporting documentation, and that
  1883. the name of FundsXpress. not be used in advertising or publicity
  1884. pertaining to distribution of the software without specific,
  1885. written prior permission. FundsXpress makes no representations
  1886. about the suitability of this software for any purpose. It is
  1887. provided "as is" without express or implied warranty.
  1888. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  1889. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  1890. WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  1891. ======================================================================
  1892. The implementation of the AES encryption algorithm in
  1893. "src/lib/crypto/builtin/aes" has the following copyright:
  1894. Copyright (C) 2001, Dr Brian Gladman "brg@gladman.uk.net", Worcester, UK.
  1895. All rights reserved.
  1896. LICENSE TERMS
  1897. The free distribution and use of this software in both source and
  1898. binary form is allowed (with or without changes) provided that:
  1899. 1. distributions of this source code include the above copyright
  1900. notice, this list of conditions and the following disclaimer;
  1901. 2. distributions in binary form include the above copyright notice,
  1902. this list of conditions and the following disclaimer in the
  1903. documentation and/or other associated materials;
  1904. 3. the copyright holder's name is not used to endorse products
  1905. built using this software without specific written permission.
  1906. DISCLAIMER
  1907. This software is provided 'as is' with no explcit or implied
  1908. warranties in respect of any properties, including, but not limited
  1909. to, correctness and fitness for purpose.
  1910. ======================================================================
  1911. Portions contributed by Red Hat, including the pre-authentication
  1912. plug-in framework and the NSS crypto implementation, contain the
  1913. following copyright:
  1914. Copyright (C) 2006 Red Hat, Inc.
  1915. Portions copyright (C) 2006 Massachusetts Institute of Technology
  1916. All Rights Reserved.
  1917. Redistribution and use in source and binary forms, with or without
  1918. modification, are permitted provided that the following conditions
  1919. are met:
  1920. * Redistributions of source code must retain the above copyright
  1921. notice, this list of conditions and the following disclaimer.
  1922. * Redistributions in binary form must reproduce the above copyright
  1923. notice, this list of conditions and the following disclaimer in
  1924. the documentation and/or other materials provided with the
  1925. distribution.
  1926. * Neither the name of Red Hat, Inc., nor the names of its
  1927. contributors may be used to endorse or promote products derived
  1928. from this software without specific prior written permission.
  1929. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1930. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1931. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1932. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1933. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  1934. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1935. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1936. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1937. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1938. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1939. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1940. OF THE POSSIBILITY OF SUCH DAMAGE.
  1941. ======================================================================
  1942. The bundled verto source code is subject to the following license:
  1943. Copyright 2011 Red Hat, Inc.
  1944. Permission is hereby granted, free of charge, to any person
  1945. obtaining a copy of this software and associated documentation
  1946. files (the "Software"), to deal in the Software without
  1947. restriction, including without limitation the rights to use, copy,
  1948. modify, merge, publish, distribute, sublicense, and/or sell copies
  1949. of the Software, and to permit persons to whom the Software is
  1950. furnished to do so, subject to the following conditions:
  1951. The above copyright notice and this permission notice shall be
  1952. included in all copies or substantial portions of the Software.
  1953. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1954. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1955. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1956. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  1957. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  1958. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1959. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  1960. DEALINGS IN THE SOFTWARE.
  1961. ======================================================================
  1962. The MS-KKDCP client implementation has the following copyright:
  1963. Copyright 2013,2014 Red Hat, Inc.
  1964. Redistribution and use in source and binary forms, with or without
  1965. modification, are permitted provided that the following conditions
  1966. are met:
  1967. 1. Redistributions of source code must retain the above
  1968. copyright notice, this list of conditions and the following
  1969. disclaimer.
  1970. 2. Redistributions in binary form must reproduce the above
  1971. copyright notice, this list of conditions and the following
  1972. disclaimer in the documentation and/or other materials
  1973. provided with the distribution.
  1974. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1975. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1976. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  1977. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  1978. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  1979. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1980. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  1981. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1982. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1983. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1984. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1985. OF THE POSSIBILITY OF SUCH DAMAGE.
  1986. ======================================================================
  1987. The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in
  1988. "src/lib/gssapi", including the following files:
  1989. lib/gssapi/generic/gssapi_err_generic.et
  1990. lib/gssapi/mechglue/g_accept_sec_context.c
  1991. lib/gssapi/mechglue/g_acquire_cred.c
  1992. lib/gssapi/mechglue/g_canon_name.c
  1993. lib/gssapi/mechglue/g_compare_name.c
  1994. lib/gssapi/mechglue/g_context_time.c
  1995. lib/gssapi/mechglue/g_delete_sec_context.c
  1996. lib/gssapi/mechglue/g_dsp_name.c
  1997. lib/gssapi/mechglue/g_dsp_status.c
  1998. lib/gssapi/mechglue/g_dup_name.c
  1999. lib/gssapi/mechglue/g_exp_sec_context.c
  2000. lib/gssapi/mechglue/g_export_name.c
  2001. lib/gssapi/mechglue/g_glue.c
  2002. lib/gssapi/mechglue/g_imp_name.c
  2003. lib/gssapi/mechglue/g_imp_sec_context.c
  2004. lib/gssapi/mechglue/g_init_sec_context.c
  2005. lib/gssapi/mechglue/g_initialize.c
  2006. lib/gssapi/mechglue/g_inquire_context.c
  2007. lib/gssapi/mechglue/g_inquire_cred.c
  2008. lib/gssapi/mechglue/g_inquire_names.c
  2009. lib/gssapi/mechglue/g_process_context.c
  2010. lib/gssapi/mechglue/g_rel_buffer.c
  2011. lib/gssapi/mechglue/g_rel_cred.c
  2012. lib/gssapi/mechglue/g_rel_name.c
  2013. lib/gssapi/mechglue/g_rel_oid_set.c
  2014. lib/gssapi/mechglue/g_seal.c
  2015. lib/gssapi/mechglue/g_sign.c
  2016. lib/gssapi/mechglue/g_store_cred.c
  2017. lib/gssapi/mechglue/g_unseal.c
  2018. lib/gssapi/mechglue/g_userok.c
  2019. lib/gssapi/mechglue/g_utils.c
  2020. lib/gssapi/mechglue/g_verify.c
  2021. lib/gssapi/mechglue/gssd_pname_to_uid.c
  2022. lib/gssapi/mechglue/mglueP.h
  2023. lib/gssapi/mechglue/oid_ops.c
  2024. lib/gssapi/spnego/gssapiP_spnego.h
  2025. lib/gssapi/spnego/spnego_mech.c
  2026. and the initial implementation of incremental propagation, including
  2027. the following new or changed files:
  2028. include/iprop_hdr.h
  2029. kadmin/server/ipropd_svc.c
  2030. lib/kdb/iprop.x
  2031. lib/kdb/kdb_convert.c
  2032. lib/kdb/kdb_log.c
  2033. lib/kdb/kdb_log.h
  2034. lib/krb5/error_tables/kdb5_err.et
  2035. slave/kpropd_rpc.c
  2036. slave/kproplog.c
  2037. are subject to the following license:
  2038. Copyright (C) 2004 Sun Microsystems, Inc.
  2039. Permission is hereby granted, free of charge, to any person
  2040. obtaining a copy of this software and associated documentation
  2041. files (the "Software"), to deal in the Software without
  2042. restriction, including without limitation the rights to use, copy,
  2043. modify, merge, publish, distribute, sublicense, and/or sell copies
  2044. of the Software, and to permit persons to whom the Software is
  2045. furnished to do so, subject to the following conditions:
  2046. The above copyright notice and this permission notice shall be
  2047. included in all copies or substantial portions of the Software.
  2048. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2049. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  2050. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2051. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  2052. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  2053. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  2054. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2055. SOFTWARE.
  2056. ======================================================================
  2057. Kerberos V5 includes documentation and software developed at the
  2058. University of California at Berkeley, which includes this copyright
  2059. notice:
  2060. Copyright (C) 1983 Regents of the University of California.
  2061. All rights reserved.
  2062. Redistribution and use in source and binary forms, with or without
  2063. modification, are permitted provided that the following conditions
  2064. are met:
  2065. 1. Redistributions of source code must retain the above copyright
  2066. notice, this list of conditions and the following disclaimer.
  2067. 2. Redistributions in binary form must reproduce the above
  2068. copyright notice, this list of conditions and the following
  2069. disclaimer in the documentation and/or other materials provided
  2070. with the distribution.
  2071. 3. Neither the name of the University nor the names of its
  2072. contributors may be used to endorse or promote products derived
  2073. from this software without specific prior written permission.
  2074. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS"
  2075. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  2076. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  2077. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS
  2078. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2079. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2080. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  2081. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  2082. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  2083. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  2084. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  2085. SUCH DAMAGE.
  2086. ======================================================================
  2087. Portions contributed by Novell, Inc., including the LDAP database
  2088. backend, are subject to the following license:
  2089. Copyright (C) 2004-2005, Novell, Inc.
  2090. All rights reserved.
  2091. Redistribution and use in source and binary forms, with or without
  2092. modification, are permitted provided that the following conditions
  2093. are met:
  2094. * Redistributions of source code must retain the above copyright
  2095. notice, this list of conditions and the following disclaimer.
  2096. * Redistributions in binary form must reproduce the above copyright
  2097. notice, this list of conditions and the following disclaimer in
  2098. the documentation and/or other materials provided with the
  2099. distribution.
  2100. * The copyright holder's name is not used to endorse or promote
  2101. products derived from this software without specific prior
  2102. written permission.
  2103. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2104. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2105. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  2106. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  2107. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  2108. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2109. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  2110. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2111. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2112. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2113. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  2114. OF THE POSSIBILITY OF SUCH DAMAGE.
  2115. ======================================================================
  2116. Portions funded by Sandia National Laboratory and developed by the
  2117. University of Michigan's Center for Information Technology
  2118. Integration, including the PKINIT implementation, are subject to the
  2119. following license:
  2120. COPYRIGHT (C) 2006-2007
  2121. THE REGENTS OF THE UNIVERSITY OF MICHIGAN
  2122. ALL RIGHTS RESERVED
  2123. Permission is granted to use, copy, create derivative works and
  2124. redistribute this software and such derivative works for any
  2125. purpose, so long as the name of The University of Michigan is not
  2126. used in any advertising or publicity pertaining to the use of
  2127. distribution of this software without specific, written prior
  2128. authorization. If the above copyright notice or any other
  2129. identification of the University of Michigan is included in any
  2130. copy of any portion of this software, then the disclaimer below
  2131. must also be included.
  2132. THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE
  2133. UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND
  2134. WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER
  2135. EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
  2136. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  2137. THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR
  2138. ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR
  2139. CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR
  2140. IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR
  2141. IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  2142. ======================================================================
  2143. The pkcs11.h file included in the PKINIT code has the following
  2144. license:
  2145. Copyright 2006 g10 Code GmbH
  2146. Copyright 2006 Andreas Jellinghaus
  2147. This file is free software; as a special exception the author gives
  2148. unlimited permission to copy and/or distribute it, with or without
  2149. modifications, as long as this notice is preserved.
  2150. This file is distributed in the hope that it will be useful, but
  2151. WITHOUT ANY WARRANTY, to the extent permitted by law; without even
  2152. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  2153. PURPOSE.
  2154. ======================================================================
  2155. Portions contributed by Apple Inc. are subject to the following
  2156. license:
  2157. Copyright 2004-2008 Apple Inc. All Rights Reserved.
  2158. Export of this software from the United States of America may
  2159. require a specific license from the United States Government.
  2160. It is the responsibility of any person or organization
  2161. contemplating export to obtain such a license before exporting.
  2162. WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  2163. distribute this software and its documentation for any purpose and
  2164. without fee is hereby granted, provided that the above copyright
  2165. notice appear in all copies and that both that copyright notice and
  2166. this permission notice appear in supporting documentation, and that
  2167. the name of Apple Inc. not be used in advertising or publicity
  2168. pertaining to distribution of the software without specific,
  2169. written prior permission. Apple Inc. makes no representations
  2170. about the suitability of this software for any purpose. It is
  2171. provided "as is" without express or implied warranty.
  2172. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  2173. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  2174. WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  2175. ======================================================================
  2176. The implementations of UTF-8 string handling in src/util/support and
  2177. src/lib/krb5/unicode are subject to the following copyright and
  2178. permission notice:
  2179. The OpenLDAP Public License
  2180. Version 2.8, 17 August 2003
  2181. Redistribution and use of this software and associated
  2182. documentation ("Software"), with or without modification, are
  2183. permitted provided that the following conditions are met:
  2184. 1. Redistributions in source form must retain copyright statements
  2185. and notices,
  2186. 2. Redistributions in binary form must reproduce applicable
  2187. copyright statements and notices, this list of conditions, and
  2188. the following disclaimer in the documentation and/or other
  2189. materials provided with the distribution, and
  2190. 3. Redistributions must contain a verbatim copy of this document.
  2191. The OpenLDAP Foundation may revise this license from time to time.
  2192. Each revision is distinguished by a version number. You may use
  2193. this Software under terms of this license revision or under the
  2194. terms of any subsequent revision of the license.
  2195. THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
  2196. CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  2197. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  2198. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2199. DISCLAIMED. IN NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS
  2200. CONTRIBUTORS, OR THE AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE
  2201. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  2202. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  2203. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  2204. BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  2205. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2206. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  2207. USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  2208. DAMAGE.
  2209. The names of the authors and copyright holders must not be used in
  2210. advertising or otherwise to promote the sale, use or other dealing
  2211. in this Software without specific, written prior permission. Title
  2212. to copyright in this Software shall at all times remain with
  2213. copyright holders.
  2214. OpenLDAP is a registered trademark of the OpenLDAP Foundation.
  2215. Copyright 1999-2003 The OpenLDAP Foundation, Redwood City,
  2216. California, USA. All Rights Reserved. Permission to copy and
  2217. distribute verbatim copies of this document is granted.
  2218. Marked test programs in src/lib/krb5/krb have the following copyright:
  2219. Copyright (C) 2006 Kungliga Tekniska Högskolan
  2220. (Royal Institute of Technology, Stockholm, Sweden).
  2221. All rights reserved.
  2222. Redistribution and use in source and binary forms, with or without
  2223. modification, are permitted provided that the following conditions
  2224. are met:
  2225. 1. Redistributions of source code must retain the above copyright
  2226. notice, this list of conditions and the following disclaimer.
  2227. 2. Redistributions in binary form must reproduce the above
  2228. copyright notice, this list of conditions and the following
  2229. disclaimer in the documentation and/or other materials provided
  2230. with the distribution.
  2231. 3. Neither the name of KTH nor the names of its contributors may be
  2232. used to endorse or promote products derived from this software
  2233. without specific prior written permission.
  2234. THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND
  2235. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  2236. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  2237. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS
  2238. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2239. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2240. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  2241. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  2242. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  2243. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  2244. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  2245. SUCH DAMAGE.
  2246. ======================================================================
  2247. The KCM Mach RPC definition file used on macOS has the following
  2248. copyright:
  2249. Copyright (C) 2009 Kungliga Tekniska Högskolan
  2250. (Royal Institute of Technology, Stockholm, Sweden).
  2251. All rights reserved.
  2252. Portions Copyright (C) 2009 Apple Inc. All rights reserved.
  2253. Redistribution and use in source and binary forms, with or without
  2254. modification, are permitted provided that the following conditions
  2255. are met:
  2256. 1. Redistributions of source code must retain the above
  2257. copyright notice, this list of conditions and the following
  2258. disclaimer.
  2259. 2. Redistributions in binary form must reproduce the above
  2260. copyright notice, this list of conditions and the following
  2261. disclaimer in the documentation and/or other materials provided
  2262. with the distribution.
  2263. 3. Neither the name of the Institute nor the names of its
  2264. contributors may be used to endorse or promote products derived
  2265. from this software without specific prior written permission.
  2266. THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS"
  2267. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  2268. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  2269. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE
  2270. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2271. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2272. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  2273. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  2274. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  2275. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  2276. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  2277. SUCH DAMAGE.
  2278. ======================================================================
  2279. Portions of the RPC implementation in src/lib/rpc and
  2280. src/include/gssrpc have the following copyright and permission notice:
  2281. Copyright (C) 2010, Oracle America, Inc.
  2282. All rights reserved.
  2283. Redistribution and use in source and binary forms, with or without
  2284. modification, are permitted provided that the following conditions
  2285. are met:
  2286. 1. Redistributions of source code must retain the above copyright
  2287. notice, this list of conditions and the following disclaimer.
  2288. 2. Redistributions in binary form must reproduce the above
  2289. copyright notice, this list of conditions and the following
  2290. disclaimer in the documentation and/or other materials provided
  2291. with the distribution.
  2292. 3. Neither the name of the "Oracle America, Inc." nor the names of
  2293. its contributors may be used to endorse or promote products
  2294. derived from this software without specific prior written
  2295. permission.
  2296. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2297. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2298. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  2299. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  2300. COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  2301. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2302. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  2303. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2304. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2305. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2306. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  2307. OF THE POSSIBILITY OF SUCH DAMAGE.
  2308. ======================================================================
  2309. Copyright (C) 2006,2007,2009 NTT (Nippon Telegraph and Telephone
  2310. Corporation). All rights reserved.
  2311. Redistribution and use in source and binary forms, with or without
  2312. modification, are permitted provided that the following conditions
  2313. are met:
  2314. 1. Redistributions of source code must retain the above copyright
  2315. notice, this list of conditions and the following disclaimer as
  2316. the first lines of this file unmodified.
  2317. 2. Redistributions in binary form must reproduce the above
  2318. copyright notice, this list of conditions and the following
  2319. disclaimer in the documentation and/or other materials provided
  2320. with the distribution.
  2321. THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR IMPLIED
  2322. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  2323. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2324. DISCLAIMED. IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT,
  2325. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2326. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  2327. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2328. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2329. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2330. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  2331. OF THE POSSIBILITY OF SUCH DAMAGE.
  2332. ======================================================================
  2333. Copyright 2000 by Carnegie Mellon University
  2334. All Rights Reserved
  2335. Permission to use, copy, modify, and distribute this software and
  2336. its documentation for any purpose and without fee is hereby
  2337. granted, provided that the above copyright notice appear in all
  2338. copies and that both that copyright notice and this permission
  2339. notice appear in supporting documentation, and that the name of
  2340. Carnegie Mellon University not be used in advertising or publicity
  2341. pertaining to distribution of the software without specific,
  2342. written prior permission.
  2343. CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
  2344. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  2345. AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
  2346. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  2347. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
  2348. AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
  2349. OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  2350. SOFTWARE.
  2351. ======================================================================
  2352. Copyright (C) 2002 Naval Research Laboratory (NRL/CCS)
  2353. Permission to use, copy, modify and distribute this software and
  2354. its documentation is hereby granted, provided that both the
  2355. copyright notice and this permission notice appear in all copies of
  2356. the software, derivative works or modified versions, and any
  2357. portions thereof.
  2358. NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND
  2359. DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER
  2360. RESULTING FROM THE USE OF THIS SOFTWARE.
  2361. ======================================================================
  2362. Portions extracted from Internet RFCs have the following copyright
  2363. notice:
  2364. Copyright (C) The Internet Society (2006).
  2365. This document is subject to the rights, licenses and restrictions
  2366. contained in BCP 78, and except as set forth therein, the authors
  2367. retain all their rights.
  2368. This document and the information contained herein are provided on
  2369. an "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE
  2370. REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND
  2371. THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES,
  2372. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT
  2373. THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR
  2374. ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A
  2375. PARTICULAR PURPOSE.
  2376. ======================================================================
  2377. Copyright (C) 1991, 1992, 1994 by Cygnus Support.
  2378. Permission to use, copy, modify, and distribute this software and
  2379. its documentation for any purpose and without fee is hereby
  2380. granted, provided that the above copyright notice appear in all
  2381. copies and that both that copyright notice and this permission
  2382. notice appear in supporting documentation. Cygnus Support makes no
  2383. representations about the suitability of this software for any
  2384. purpose. It is provided "as is" without express or implied
  2385. warranty.
  2386. ======================================================================
  2387. Copyright (C) 2006 Secure Endpoints Inc.
  2388. Permission is hereby granted, free of charge, to any person
  2389. obtaining a copy of this software and associated documentation
  2390. files (the "Software"), to deal in the Software without
  2391. restriction, including without limitation the rights to use, copy,
  2392. modify, merge, publish, distribute, sublicense, and/or sell copies
  2393. of the Software, and to permit persons to whom the Software is
  2394. furnished to do so, subject to the following conditions:
  2395. The above copyright notice and this permission notice shall be
  2396. included in all copies or substantial portions of the Software.
  2397. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2398. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  2399. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2400. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  2401. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  2402. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  2403. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2404. SOFTWARE.
  2405. ======================================================================
  2406. Portions of the implementation of the Fortuna-like PRNG are subject to
  2407. the following notice:
  2408. Copyright (C) 2005 Marko Kreen
  2409. All rights reserved.
  2410. Redistribution and use in source and binary forms, with or without
  2411. modification, are permitted provided that the following conditions
  2412. are met:
  2413. 1. Redistributions of source code must retain the above copyright
  2414. notice, this list of conditions and the following disclaimer.
  2415. 2. Redistributions in binary form must reproduce the above
  2416. copyright notice, this list of conditions and the following
  2417. disclaimer in the documentation and/or other materials provided
  2418. with the distribution.
  2419. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"
  2420. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  2421. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  2422. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
  2423. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2424. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2425. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  2426. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  2427. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  2428. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  2429. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  2430. SUCH DAMAGE.
  2431. Copyright (C) 1994 by the University of Southern California
  2432. EXPORT OF THIS SOFTWARE from the United States of America may
  2433. require a specific license from the United States Government. It
  2434. is the responsibility of any person or organization
  2435. contemplating export to obtain such a license before exporting.
  2436. WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute
  2437. this software and its documentation in source and binary forms is
  2438. hereby granted, provided that any documentation or other materials
  2439. related to such distribution or use acknowledge that the software
  2440. was developed by the University of Southern California.
  2441. DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The
  2442. University of Southern California MAKES NO REPRESENTATIONS OR
  2443. WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not
  2444. limitation, the University of Southern California MAKES NO
  2445. REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY
  2446. PARTICULAR PURPOSE. The University of Southern California shall not
  2447. be held liable for any liability nor for any direct, indirect, or
  2448. consequential damages with respect to any claim by the user or
  2449. distributor of the ksu software.
  2450. ======================================================================
  2451. Copyright (C) 1995
  2452. The President and Fellows of Harvard University
  2453. This code is derived from software contributed to Harvard by Jeremy
  2454. Rassen.
  2455. Redistribution and use in source and binary forms, with or without
  2456. modification, are permitted provided that the following conditions
  2457. are met:
  2458. 1. Redistributions of source code must retain the above copyright
  2459. notice, this list of conditions and the following disclaimer.
  2460. 2. Redistributions in binary form must reproduce the above
  2461. copyright notice, this list of conditions and the following
  2462. disclaimer in the documentation and/or other materials provided
  2463. with the distribution.
  2464. 3. All advertising materials mentioning features or use of this
  2465. software must display the following acknowledgement:
  2466. This product includes software developed by the University of
  2467. California, Berkeley and its contributors.
  2468. 4. Neither the name of the University nor the names of its
  2469. contributors may be used to endorse or promote products derived
  2470. from this software without specific prior written permission.
  2471. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS"
  2472. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  2473. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  2474. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS
  2475. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2476. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2477. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  2478. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  2479. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  2480. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  2481. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  2482. SUCH DAMAGE.
  2483. ======================================================================
  2484. Copyright (C) 2008 by the Massachusetts Institute of Technology.
  2485. Copyright 1995 by Richard P. Basch. All Rights Reserved.
  2486. Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved.
  2487. Export of this software from the United States of America may
  2488. require a specific license from the United States Government. It
  2489. is the responsibility of any person or organization
  2490. contemplating export to obtain such a license before exporting.
  2491. WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  2492. distribute this software and its documentation for any purpose and
  2493. without fee is hereby granted, provided that the above copyright
  2494. notice appear in all copies and that both that copyright notice and
  2495. this permission notice appear in supporting documentation, and that
  2496. the name of Richard P. Basch, Lehman Brothers and M.I.T. not be
  2497. used in advertising or publicity pertaining to distribution of the
  2498. software without specific, written prior permission. Richard P.
  2499. Basch, Lehman Brothers and M.I.T. make no representations about the
  2500. suitability of this software for any purpose. It is provided "as
  2501. is" without express or implied warranty.
  2502. ======================================================================
  2503. The following notice applies to "src/lib/krb5/krb/strptime.c" and
  2504. "src/include/k5-queue.h".
  2505. Copyright (C) 1997, 1998 The NetBSD Foundation, Inc.
  2506. All rights reserved.
  2507. This code was contributed to The NetBSD Foundation by Klaus Klein.
  2508. Redistribution and use in source and binary forms, with or without
  2509. modification, are permitted provided that the following conditions
  2510. are met:
  2511. 1. Redistributions of source code must retain the above copyright
  2512. notice, this list of conditions and the following disclaimer.
  2513. 2. Redistributions in binary form must reproduce the above
  2514. copyright notice, this list of conditions and the following
  2515. disclaimer in the documentation and/or other materials provided
  2516. with the distribution.
  2517. 3. All advertising materials mentioning features or use of this
  2518. software must display the following acknowledgement:
  2519. This product includes software developed by the NetBSD
  2520. Foundation, Inc. and its contributors.
  2521. 4. Neither the name of The NetBSD Foundation nor the names of its
  2522. contributors may be used to endorse or promote products derived
  2523. from this software without specific prior written permission.
  2524. THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
  2525. CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  2526. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  2527. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2528. DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE
  2529. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  2530. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  2531. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  2532. BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  2533. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2534. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  2535. USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  2536. DAMAGE.
  2537. ======================================================================
  2538. The following notice applies to Unicode library files in
  2539. "src/lib/krb5/unicode":
  2540. Copyright 1997, 1998, 1999 Computing Research Labs,
  2541. New Mexico State University
  2542. Permission is hereby granted, free of charge, to any person
  2543. obtaining a copy of this software and associated documentation
  2544. files (the "Software"), to deal in the Software without
  2545. restriction, including without limitation the rights to use, copy,
  2546. modify, merge, publish, distribute, sublicense, and/or sell copies
  2547. of the Software, and to permit persons to whom the Software is
  2548. furnished to do so, subject to the following conditions:
  2549. The above copyright notice and this permission notice shall be
  2550. included in all copies or substantial portions of the Software.
  2551. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2552. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  2553. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2554. NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB OR
  2555. NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR
  2556. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  2557. OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
  2558. OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  2559. ======================================================================
  2560. The following notice applies to "src/util/support/strlcpy.c":
  2561. Copyright (C) 1998 Todd C. Miller "Todd.Miller@courtesan.com"
  2562. Permission to use, copy, modify, and distribute this software for
  2563. any purpose with or without fee is hereby granted, provided that
  2564. the above copyright notice and this permission notice appear in all
  2565. copies.
  2566. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  2567. WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  2568. WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  2569. AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
  2570. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  2571. OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  2572. NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  2573. CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  2574. ======================================================================
  2575. The following notice applies to "src/util/profile/argv_parse.c" and
  2576. "src/util/profile/argv_parse.h":
  2577. Copyright 1999 by Theodore Ts'o.
  2578. Permission to use, copy, modify, and distribute this software for
  2579. any purpose with or without fee is hereby granted, provided that
  2580. the above copyright notice and this permission notice appear in all
  2581. copies. THE SOFTWARE IS PROVIDED "AS IS" AND THEODORE TS'O (THE
  2582. AUTHOR) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  2583. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
  2584. NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
  2585. INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  2586. RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  2587. OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
  2588. IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. (Isn't
  2589. it sick that the U.S. culture of lawsuit-happy lawyers requires
  2590. this kind of disclaimer?)
  2591. ======================================================================
  2592. The following notice applies to SWIG-generated code in
  2593. "src/util/profile/profile_tcl.c":
  2594. Copyright (C) 1999-2000, The University of Chicago
  2595. This file may be freely redistributed without license or fee
  2596. provided this copyright message remains intact.
  2597. ======================================================================
  2598. The following notice applies to portiions of "src/lib/rpc" and
  2599. "src/include/gssrpc":
  2600. Copyright (C) 2000 The Regents of the University of Michigan. All
  2601. rights reserved.
  2602. Copyright (C) 2000 Dug Song "dugsong@UMICH.EDU". All rights
  2603. reserved, all wrongs reversed.
  2604. Redistribution and use in source and binary forms, with or without
  2605. modification, are permitted provided that the following conditions
  2606. are met:
  2607. 1. Redistributions of source code must retain the above copyright
  2608. notice, this list of conditions and the following disclaimer.
  2609. 2. Redistributions in binary form must reproduce the above
  2610. copyright notice, this list of conditions and the following
  2611. disclaimer in the documentation and/or other materials provided
  2612. with the distribution.
  2613. 3. Neither the name of the University nor the names of its
  2614. contributors may be used to endorse or promote products derived
  2615. from this software without specific prior written permission.
  2616. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  2617. WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  2618. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2619. DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  2620. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  2621. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  2622. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  2623. BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  2624. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2625. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  2626. USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  2627. DAMAGE.
  2628. Implementations of the MD4 algorithm are subject to the following
  2629. notice:
  2630. Copyright (C) 1990, RSA Data Security, Inc. All rights reserved.
  2631. License to copy and use this software is granted provided that it
  2632. is identified as the "RSA Data Security, Inc. MD4 Message Digest
  2633. Algorithm" in all material mentioning or referencing this software
  2634. or this function.
  2635. License is also granted to make and use derivative works provided
  2636. that such works are identified as "derived from the RSA Data
  2637. Security, Inc. MD4 Message Digest Algorithm" in all material
  2638. mentioning or referencing the derived work.
  2639. RSA Data Security, Inc. makes no representations concerning either
  2640. the merchantability of this software or the suitability of this
  2641. software for any particular purpose. It is provided "as is"
  2642. without express or implied warranty of any kind.
  2643. These notices must be retained in any copies of any part of this
  2644. documentation and/or software.
  2645. ======================================================================
  2646. Implementations of the MD5 algorithm are subject to the following
  2647. notice:
  2648. Copyright (C) 1990, RSA Data Security, Inc. All rights reserved.
  2649. License to copy and use this software is granted provided that it
  2650. is identified as the "RSA Data Security, Inc. MD5 Message- Digest
  2651. Algorithm" in all material mentioning or referencing this software
  2652. or this function.
  2653. License is also granted to make and use derivative works provided
  2654. that such works are identified as "derived from the RSA Data
  2655. Security, Inc. MD5 Message-Digest Algorithm" in all material
  2656. mentioning or referencing the derived work.
  2657. RSA Data Security, Inc. makes no representations concerning either
  2658. the merchantability of this software or the suitability of this
  2659. software for any particular purpose. It is provided "as is"
  2660. without express or implied warranty of any kind.
  2661. These notices must be retained in any copies of any part of this
  2662. documentation and/or software.
  2663. ======================================================================
  2664. The following notice applies to
  2665. "src/lib/crypto/crypto_tests/t_mddriver.c":
  2666. Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
  2667. rights reserved.
  2668. RSA Data Security, Inc. makes no representations concerning either
  2669. the merchantability of this software or the suitability of this
  2670. software for any particular purpose. It is provided "as is" without
  2671. express or implied warranty of any kind.
  2672. These notices must be retained in any copies of any part of this
  2673. documentation and/or software.
  2674. ======================================================================
  2675. Portions of "src/lib/krb5" are subject to the following notice:
  2676. Copyright (C) 1994 CyberSAFE Corporation.
  2677. Copyright 1990,1991,2007,2008 by the Massachusetts Institute of
  2678. Technology.
  2679. All Rights Reserved.
  2680. Export of this software from the United States of America may
  2681. require a specific license from the United States Government. It
  2682. is the responsibility of any person or organization
  2683. contemplating export to obtain such a license before exporting.
  2684. WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  2685. distribute this software and its documentation for any purpose and
  2686. without fee is hereby granted, provided that the above copyright
  2687. notice appear in all copies and that both that copyright notice and
  2688. this permission notice appear in supporting documentation, and that
  2689. the name of M.I.T. not be used in advertising or publicity
  2690. pertaining to distribution of the software without specific,
  2691. written prior permission. Furthermore if you modify this software
  2692. you must label your software as modified software and not
  2693. distribute it in such a fashion that it might be confused with the
  2694. original M.I.T. software. Neither M.I.T., the Open Computing
  2695. Security Group, nor CyberSAFE Corporation make any representations
  2696. about the suitability of this software for any purpose. It is
  2697. provided "as is" without express or implied warranty.
  2698. ======================================================================
  2699. Portions contributed by PADL Software are subject to the following
  2700. license:
  2701. Copyright (c) 2011, PADL Software Pty Ltd. All rights reserved.
  2702. Redistribution and use in source and binary forms, with or without
  2703. modification, are permitted provided that the following conditions
  2704. are met:
  2705. 1. Redistributions of source code must retain the above copyright
  2706. notice, this list of conditions and the following disclaimer.
  2707. 2. Redistributions in binary form must reproduce the above
  2708. copyright notice, this list of conditions and the following
  2709. disclaimer in the documentation and/or other materials provided
  2710. with the distribution.
  2711. 3. Neither the name of PADL Software nor the names of its
  2712. contributors may be used to endorse or promote products derived
  2713. from this software without specific prior written permission.
  2714. THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS"
  2715. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  2716. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  2717. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE
  2718. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2719. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2720. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  2721. USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  2722. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  2723. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  2724. OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  2725. SUCH DAMAGE.
  2726. ======================================================================
  2727. The bundled libev source code is subject to the following license:
  2728. All files in libev are Copyright (C)2007,2008,2009 Marc Alexander
  2729. Lehmann.
  2730. Redistribution and use in source and binary forms, with or without
  2731. modification, are permitted provided that the following conditions
  2732. are met:
  2733. * Redistributions of source code must retain the above copyright
  2734. notice, this list of conditions and the following disclaimer.
  2735. * Redistributions in binary form must reproduce the above copyright
  2736. notice, this list of conditions and the following disclaimer in
  2737. the documentation and/or other materials provided with the
  2738. distribution.
  2739. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2740. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2741. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  2742. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  2743. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  2744. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2745. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  2746. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2747. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2748. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2749. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  2750. OF THE POSSIBILITY OF SUCH DAMAGE.
  2751. Alternatively, the contents of this package may be used under the
  2752. terms of the GNU General Public License ("GPL") version 2 or any
  2753. later version, in which case the provisions of the GPL are
  2754. applicable instead of the above. If you wish to allow the use of
  2755. your version of this package only under the terms of the GPL and
  2756. not to allow others to use your version of this file under the BSD
  2757. license, indicate your decision by deleting the provisions above
  2758. and replace them with the notice and other provisions required by
  2759. the GPL in this and the other files of this package. If you do not
  2760. delete the provisions above, a recipient may use your version of
  2761. this file under either the BSD or the GPL.
  2762. ======================================================================
  2763. Files copied from the Intel AESNI Sample Library are subject to the
  2764. following license:
  2765. Copyright (C) 2010, Intel Corporation
  2766. All rights reserved.
  2767. Redistribution and use in source and binary forms, with or without
  2768. modification, are permitted provided that the following conditions
  2769. are met:
  2770. * Redistributions of source code must retain the above copyright
  2771. notice, this list of conditions and the following disclaimer.
  2772. * Redistributions in binary form must reproduce the above
  2773. copyright notice, this list of conditions and the following
  2774. disclaimer in the documentation and/or other materials
  2775. provided with the distribution.
  2776. * Neither the name of Intel Corporation nor the names of its
  2777. contributors may be used to endorse or promote products
  2778. derived from this software without specific prior written
  2779. permission.
  2780. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2781. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2782. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  2783. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  2784. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  2785. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2786. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  2787. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2788. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2789. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2790. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  2791. OF THE POSSIBILITY OF SUCH DAMAGE.
  2792. ======================================================================
  2793. The following notice applies to
  2794. "src/ccapi/common/win/OldCC/autolock.hxx":
  2795. Copyright (C) 1998 by Danilo Almeida. All rights reserved.
  2796. Redistribution and use in source and binary forms, with or without
  2797. modification, are permitted provided that the following conditions
  2798. are met:
  2799. * Redistributions of source code must retain the above copyright
  2800. notice, this list of conditions and the following disclaimer.
  2801. * Redistributions in binary form must reproduce the above
  2802. copyright notice, this list of conditions and the following
  2803. disclaimer in the documentation and/or other materials provided
  2804. with the distribution.
  2805. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2806. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2807. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  2808. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  2809. COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  2810. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2811. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  2812. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2813. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  2814. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  2815. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  2816. OF THE POSSIBILITY OF SUCH DAMAGE.
  2817. ======================================================================
  2818. ======================================================================
  2819. Libaio
  2820. libaio
  2821. You may be receiving a copy of the Libaio library with this MySQL
  2822. product. The terms of the Oracle license do NOT apply to the Libaio
  2823. library; it is licensed under the following license, separately from
  2824. the Oracle programs you receive. If you do not wish to install this
  2825. program, you may delete its files.
  2826. This component is licensed under GNU Lesser General Public License
  2827. Version 2.1, February 1999. See the 'Standard Licenses' section for
  2828. license text.
  2829. ======================================================================
  2830. ======================================================================
  2831. libevent
  2832. Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
  2833. Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
  2834. Redistribution and use in source and binary forms, with or without
  2835. modification, are permitted provided that the following conditions
  2836. are met:
  2837. 1. Redistributions of source code must retain the above copyright
  2838. notice, this list of conditions and the following disclaimer.
  2839. 2. Redistributions in binary form must reproduce the above copyright
  2840. notice, this list of conditions and the following disclaimer in the
  2841. documentation and/or other materials provided with the distribution.
  2842. 3. The name of the author may not be used to endorse or promote products
  2843. derived from this software without specific prior written permission.
  2844. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  2845. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  2846. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  2847. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  2848. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  2849. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  2850. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  2851. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2852. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  2853. THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2854. ==============================
  2855. Portions of Libevent are based on works by others, also made available by
  2856. them under the three-clause BSD license above. The copyright notices are
  2857. available in the corresponding source files; the license is as above. Here's
  2858. a list:
  2859. log.c:
  2860. Copyright (c) 2000 Dug Song <dugsong@monkey.org>
  2861. Copyright (c) 1993 The Regents of the University of California.
  2862. strlcpy.c:
  2863. Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  2864. win32select.c:
  2865. Copyright (c) 2003 Michael A. Davis <mike@datanerds.net>
  2866. evport.c:
  2867. Copyright (c) 2007 Sun Microsystems
  2868. ht-internal.h:
  2869. Copyright (c) 2002 Christopher Clark
  2870. minheap-internal.h:
  2871. Copyright (c) 2006 Maxim Yegorushkin <maxim.yegorushkin@gmail.com>
  2872. ==============================
  2873. The arc4module is available under the following, sometimes called the
  2874. "OpenBSD" license:
  2875. Copyright (c) 1996, David Mazieres <dm@uun.org>
  2876. Copyright (c) 2008, Damien Miller <djm@openbsd.org>
  2877. Permission to use, copy, modify, and distribute this software for any
  2878. purpose with or without fee is hereby granted, provided that the above
  2879. copyright notice and this permission notice appear in all copies.
  2880. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  2881. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  2882. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  2883. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  2884. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  2885. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  2886. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  2887. ==============================
  2888. The Windows timer code is based on code from libutp, which is
  2889. distributed under this license, sometimes called the "MIT" license.
  2890. Copyright (c) 2010 BitTorrent, Inc.
  2891. Permission is hereby granted, free of charge, to any person obtaining a copy
  2892. of this software and associated documentation files (the "Software"), to deal
  2893. in the Software without restriction, including without limitation the rights
  2894. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2895. copies of the Software, and to permit persons to whom the Software is
  2896. furnished to do so, subject to the following conditions:
  2897. The above copyright notice and this permission notice shall be included in
  2898. all copies or substantial portions of the Software.
  2899. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2900. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2901. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2902. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2903. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2904. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2905. THE SOFTWARE.
  2906. ======================================================================
  2907. ======================================================================
  2908. libunwind
  2909. libunwind
  2910. Copyright (c) 2002 Hewlett-Packard Co.
  2911. Permission is hereby granted, free of charge, to any person obtaining
  2912. a copy of this software and associated documentation files (the
  2913. "Software"), to deal in the Software without restriction, including
  2914. without limitation the rights to use, copy, modify, merge, publish,
  2915. distribute, sublicense, and/or sell copies of the Software, and to
  2916. permit persons to whom the Software is furnished to do so, subject to
  2917. the following conditions:
  2918. The above copyright notice and this permission notice shall be
  2919. included in all copies or substantial portions of the Software.
  2920. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2921. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  2922. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2923. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  2924. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  2925. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  2926. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  2927. ======================================================================
  2928. ======================================================================
  2929. Linux-PAM
  2930. Unless otherwise *explicitly* stated the following text describes the licensed
  2931. conditions under which the contents of this Linux-PAM release may be
  2932. distributed:
  2933. -------------------------------------------------------------------------
  2934. Redistribution and use in source and binary forms of Linux-PAM, with or without
  2935. modification, are permitted provided that the following conditions are met:
  2936. 1. Redistributions of source code must retain any existing copyright notice, and
  2937. this entire permission notice in its entirety, including the disclaimer of
  2938. warranties.
  2939. 2. Redistributions in binary form must reproduce all prior and current copyright
  2940. notices, this list of conditions, and the following disclaimer in the
  2941. documentation and/or other materials provided with the distribution.
  2942. 3. The name of any author may not be used to endorse or promote products derived
  2943. from this software without their specific prior written permission.
  2944. ALTERNATIVELY, this product may be distributed under the terms of the GNU
  2945. General Public License, in which case the provisions of the GNU GPL are required
  2946. INSTEAD OF the above restrictions. (This clause is necessary due to a potential
  2947. conflict between the GNU GPL and the restrictions contained in a BSD-style
  2948. copyright.)
  2949. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  2950. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  2951. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S)
  2952. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  2953. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  2954. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  2955. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  2956. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  2957. THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2958. -------------------------------------------------------------------------
  2959. Oracle elects the BSD-style license
  2960. ======================================================================
  2961. ======================================================================
  2962. LZ4
  2963. LZ4 Library
  2964. Copyright (c) 2011-2016, Yann Collet
  2965. All rights reserved.
  2966. Redistribution and use in source and binary forms, with or without
  2967. modification, are permitted provided that the following conditions are met:
  2968. * Redistributions of source code must retain the above copyright notice,
  2969. this list of conditions and the following disclaimer.
  2970. * Redistributions in binary form must reproduce the above copyright notice,
  2971. this list of conditions and the following disclaimer in the documentation
  2972. and/or other materials provided with the distribution.
  2973. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  2974. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  2975. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2976. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  2977. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2978. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  2979. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  2980. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2981. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  2982. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2983. ======================================================================
  2984. ======================================================================
  2985. MeCab
  2986. Copyright (c) 2001-2008, Taku Kudo
  2987. Copyright (c) 2004-2008, Nippon Telegraph and Telephone Corporation
  2988. All rights reserved.
  2989. Redistribution and use in source and binary forms, with or without
  2990. modification, are permitted provided that the following conditions
  2991. are met:
  2992. * Redistributions of source code must retain the above
  2993. copyright notice, this list of conditions and the
  2994. following disclaimer.
  2995. * Redistributions in binary form must reproduce the above
  2996. copyright notice, this list of conditions and the
  2997. following disclaimer in the documentation and/or other
  2998. materials provided with the distribution.
  2999. * Neither the name of the Nippon Telegraph and Telegraph Corporation
  3000. nor the names of its contributors may be used to endorse or
  3001. promote products derived from this software without specific
  3002. prior written permission.
  3003. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  3004. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  3005. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  3006. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  3007. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  3008. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  3009. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  3010. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  3011. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  3012. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  3013. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  3014. POSSIBILITY OF SUCH DAMAGE.
  3015. ======================================================================
  3016. ======================================================================
  3017. MeCab Dictionary
  3018. Copyright 2000, 2001, 2002, 2003 Nara Institute of Science and Technology.
  3019. All Rights Reserved.
  3020. Use, reproduction, and distribution of this software is permitted. Any copy
  3021. of this software, whether in its original form or modified, must include both
  3022. the above copyright notice and the following paragraphs.
  3023. Nara Institute of Science and Technology (NAIST), the copyright holders,
  3024. disclaims all warranties with regard to this software, including all implied
  3025. warranties of merchantability and fitness, in no event shall NAIST be liable
  3026. for any special, indirect or consequential damages or any damages whatsoever
  3027. resulting from loss of use, data or profits, whether in an action of
  3028. contract, negligence or other tortuous action, arising out of or in
  3029. connection with the use or performance of this software.
  3030. A large portion of the dictionary entries originate from ICOT Free Software.
  3031. The following conditions for ICOT Free Software applies to the current
  3032. dictionary as well.
  3033. Each User may also freely distribute the Program, whether in its original
  3034. form or modified, to any third party or parties, PROVIDED that the provisions
  3035. of Section 3 ("NO WARRANTY") will ALWAYS appear on, or be attached to, the
  3036. Program, which is distributed substantially in the same form as set out
  3037. herein and that such intended distribution, if actually made, will neither
  3038. violate or otherwise contravene any of the laws and regulations of the
  3039. countries having jurisdiction over the User or the intended distribution
  3040. itself.
  3041. NO WARRANTY
  3042. The program was produced on an experimental basis in the course of the
  3043. research and development conducted during the project and is provided to
  3044. users as so produced on an experimental basis. Accordingly, the program is
  3045. provided without any warranty whatsoever, whether express, implied, statutory
  3046. or otherwise. The term "warranty" used herein
  3047. includes, but is not limited to, any warranty of the quality, performance,
  3048. merchantability and fitness for a particular purpose of the program and the
  3049. nonexistence of any infringement or violation of any right of any third
  3050. party.
  3051. Each user of the program will agree and understand, and be deemed to have
  3052. agreed and understood, that there is no warranty whatsoever for the program
  3053. and, accordingly, the entire risk arising from or otherwise connected with
  3054. the program is assumed by the user.
  3055. Therefore, neither ICOT, the copyright holder, or any other organization that
  3056. participated in or was otherwise related to the development of the program
  3057. and their respective officials, directors, officers and other employees shall
  3058. be held liable for any and all damages, including, without limitation,
  3059. general, special, incidental and consequential damages, arising out of or
  3060. otherwise in connection with the use or inability to use the program or any
  3061. product, material or result produced or otherwise obtained by using the
  3062. program, regardless of whether they have been advised of, or otherwise had
  3063. knowledge of, the possibility of such damages at any time during the project
  3064. or thereafter. Each user will be deemed to have agreed to the foregoing by
  3065. his or her commencement of use of the program. The term "use" as used herein
  3066. includes, but is not limited to, the use, modification, copying and
  3067. distribution of the program and the production of secondary products from the
  3068. program.
  3069. In the case where the program, whether in its original form or modified, was
  3070. distributed or delivered to or received by a user from any person,
  3071. organization or entity other than ICOT, unless it makes or grants
  3072. independently of ICOT any specific warranty to the user in writing, such
  3073. person, organization or entity, will also be exempted from and not be held
  3074. liable to the user for any such damages as noted above as far as the program
  3075. is concerned.
  3076. ======================================================================
  3077. ======================================================================
  3078. memcached
  3079. memcached
  3080. Copyright (c) 2003, Danga Interactive, Inc.
  3081. All rights reserved.
  3082. Redistribution and use in source and binary forms, with or without
  3083. modification, are permitted provided that the following conditions
  3084. are met:
  3085. * Redistributions of source code must retain the above copyright
  3086. notice, this list of conditions and the following disclaimer.
  3087. * Redistributions in binary form must reproduce the above
  3088. copyright notice, this list of conditions and the following disclaimer
  3089. in the documentation and/or other materials provided with the
  3090. distribution.
  3091. * Neither the name of the Danga Interactive nor the names of its
  3092. contributors may be used to endorse or promote products derived from
  3093. this software without specific prior written permission.
  3094. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  3095. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  3096. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  3097. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  3098. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  3099. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  3100. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  3101. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  3102. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  3103. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  3104. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3105. ======================================================================
  3106. ======================================================================
  3107. Memcached.pm
  3108. Memcached.pm
  3109. Memcached.pm is licensed under the Perl license.
  3110. Oracle may use, redistribute and/or modify this code under the terms of
  3111. either:
  3112. a) the GNU General Public License as published by the Free Software
  3113. Foundation; either version 1, or (at your option) any later version, or
  3114. b) the "Artistic License" which comes with the Expect/pr code.
  3115. Oracle elects to use the GPLv2 for version of MySQL that are licensed under
  3116. the GPL.
  3117. Oracle elects to use the Artistic license for all other (commercial) versions
  3118. of MySQL.
  3119. A copy of the GPLv2 and the Artistic License (Perl) 1.0 must be included with
  3120. any distribution.
  3121. This component is licensed under the GNU GPL license, version 2.0.
  3122. This component is licensed under Artistic License (Perl) 1.0
  3123. ======================================================================
  3124. ======================================================================
  3125. nt_servc (Windows NT Service class library)
  3126. nt_servc (Windows NT Service class library)
  3127. Windows NT Service class library
  3128. Copyright Abandoned 1998 Irena Pancirov - Irnet Snc
  3129. This file is public domain and comes with NO WARRANTY of any kind
  3130. ======================================================================
  3131. ======================================================================
  3132. NUMA
  3133. You are receiving a copy of libnuma as part of MySQL in object code form.
  3134. The terms of the Oracle license do NOT apply to libnuma; the libnuma source
  3135. code is licensed under the LGPLv2.1 license.
  3136. This component is licensed under GNU Lesser General Public License
  3137. Version 2.1, February 1999. See the 'Standard Licenses' section for
  3138. license text.
  3139. ======================================================================
  3140. ======================================================================
  3141. OpenPAM
  3142. OpenPAM
  3143. Copyright (c) 2002-2003 Networks Associates Technology, Inc.
  3144. Copyright (c) 2004-2007 Dag-Erling Smørgrav
  3145. All rights reserved.
  3146. This software was developed for the FreeBSD Project by
  3147. ThinkSec AS and Network Associates Laboratories, the
  3148. Security Research Division of Network Associates, Inc.
  3149. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"),
  3150. as part of the DARPA CHATS research program.
  3151. Redistribution and use in source and binary forms,
  3152. with or without modification, are permitted provided
  3153. that the following conditions are met:
  3154. 1. Redistributions of source code must retain the above
  3155. copyright notice, this list of conditions and the
  3156. following disclaimer.
  3157. 2. Redistributions in binary form must reproduce the
  3158. above copyright notice, this list of conditions and
  3159. the following disclaimer in the documentation and/or
  3160. other materials provided with the distribution.
  3161. 3. The name of the author may not be used to endorse or
  3162. promote products derived from this software without
  3163. specific prior written permission.
  3164. THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS
  3165. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  3166. BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  3167. AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  3168. NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  3169. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  3170. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  3171. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  3172. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  3173. AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  3174. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  3175. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  3176. IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3177. ======================================================================
  3178. ======================================================================
  3179. OpenSSL License
  3180. You are receiving a copy of OpenSSL as part of this product in object
  3181. code form. The terms of the Oracle license do NOT apply to OpenSSL.
  3182. OpenSSL is licensed under a double license, of the OpenSSL License and
  3183. the original SSLeay license, separate from the Oracle product. If you
  3184. do not wish to install this library, you may remove it, but the Oracle
  3185. program might not operate properly or at all without it.
  3186. LICENSE ISSUES
  3187. ==============
  3188. The OpenSSL toolkit stays under a double license, i.e. both the conditions of
  3189. the OpenSSL License and the original SSLeay license apply to the toolkit.
  3190. See below for the actual license texts.
  3191. OpenSSL License
  3192. ---------------
  3193. /* ====================================================================
  3194. * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved.
  3195. *
  3196. * Redistribution and use in source and binary forms, with or without
  3197. * modification, are permitted provided that the following conditions
  3198. * are met:
  3199. *
  3200. * 1. Redistributions of source code must retain the above copyright
  3201. * notice, this list of conditions and the following disclaimer.
  3202. *
  3203. * 2. Redistributions in binary form must reproduce the above copyright
  3204. * notice, this list of conditions and the following disclaimer in
  3205. * the documentation and/or other materials provided with the
  3206. * distribution.
  3207. *
  3208. * 3. All advertising materials mentioning features or use of this
  3209. * software must display the following acknowledgment:
  3210. * "This product includes software developed by the OpenSSL Project
  3211. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  3212. *
  3213. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  3214. * endorse or promote products derived from this software without
  3215. * prior written permission. For written permission, please contact
  3216. * openssl-core@openssl.org.
  3217. *
  3218. * 5. Products derived from this software may not be called "OpenSSL"
  3219. * nor may "OpenSSL" appear in their names without prior written
  3220. * permission of the OpenSSL Project.
  3221. *
  3222. * 6. Redistributions of any form whatsoever must retain the following
  3223. * acknowledgment:
  3224. * "This product includes software developed by the OpenSSL Project
  3225. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  3226. *
  3227. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  3228. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3229. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  3230. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  3231. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  3232. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  3233. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  3234. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  3235. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  3236. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  3237. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  3238. * OF THE POSSIBILITY OF SUCH DAMAGE.
  3239. * ====================================================================
  3240. *
  3241. * This product includes cryptographic software written by Eric Young
  3242. * (eay@cryptsoft.com). This product includes software written by Tim
  3243. * Hudson (tjh@cryptsoft.com).
  3244. *
  3245. */
  3246. Original SSLeay License
  3247. -----------------------
  3248. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  3249. * All rights reserved.
  3250. *
  3251. * This package is an SSL implementation written
  3252. * by Eric Young (eay@cryptsoft.com).
  3253. * The implementation was written so as to conform with Netscapes SSL.
  3254. *
  3255. * This library is free for commercial and non-commercial use as long as
  3256. * the following conditions are aheared to. The following conditions
  3257. * apply to all code found in this distribution, be it the RC4, RSA,
  3258. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  3259. * included with this distribution is covered by the same copyright terms
  3260. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  3261. *
  3262. * Copyright remains Eric Young's, and as such any Copyright notices in
  3263. * the code are not to be removed.
  3264. * If this package is used in a product, Eric Young should be given attribution
  3265. * as the author of the parts of the library used.
  3266. * This can be in the form of a textual message at program startup or
  3267. * in documentation (online or textual) provided with the package.
  3268. *
  3269. * Redistribution and use in source and binary forms, with or without
  3270. * modification, are permitted provided that the following conditions
  3271. * are met:
  3272. * 1. Redistributions of source code must retain the copyright
  3273. * notice, this list of conditions and the following disclaimer.
  3274. * 2. Redistributions in binary form must reproduce the above copyright
  3275. * notice, this list of conditions and the following disclaimer in the
  3276. * documentation and/or other materials provided with the distribution.
  3277. * 3. All advertising materials mentioning features or use of this software
  3278. * must display the following acknowledgement:
  3279. * "This product includes cryptographic software written by
  3280. * Eric Young (eay@cryptsoft.com)"
  3281. * The word 'cryptographic' can be left out if the rouines from the library
  3282. * being used are not cryptographic related :-).
  3283. * 4. If you include any Windows specific code (or a derivative thereof) from
  3284. * the apps directory (application code) you must include an acknowledgement:
  3285. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  3286. *
  3287. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  3288. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3289. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  3290. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  3291. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  3292. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  3293. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  3294. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  3295. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  3296. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  3297. * SUCH DAMAGE.
  3298. *
  3299. * The licence and distribution terms for any publically available version or
  3300. * derivative of this code cannot be changed. i.e. this code cannot simply be
  3301. * copied and put under another distribution licence
  3302. * [including the GNU Public Licence.]
  3303. */
  3304. ======================================================================
  3305. ======================================================================
  3306. Percona Multiple I/O Threads Patch
  3307. Percona Multiple I/O threads patch
  3308. Copyright (c) 2008, 2009 Percona Inc
  3309. All rights reserved.
  3310. Redistribution and use of this software in source and binary forms,
  3311. with or without modification, are permitted provided that the
  3312. following conditions are met:
  3313. * Redistributions of source code must retain the above copyright
  3314. notice, this list of conditions and the following disclaimer.
  3315. * Redistributions in binary form must reproduce the above copyright
  3316. notice, this list of conditions and the following disclaimer in the
  3317. documentation and/or other materials provided with the distribution.
  3318. * Neither the name of Percona Inc. nor the names of its contributors
  3319. may be used to endorse or promote products derived from this software
  3320. without specific prior written permission of Percona Inc.
  3321. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  3322. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  3323. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  3324. FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  3325. COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  3326. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  3327. BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  3328. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  3329. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  3330. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  3331. ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  3332. POSSIBILITY OF SUCH DAMAGE.
  3333. ======================================================================
  3334. ======================================================================
  3335. RapidJSON v1.1.0
  3336. Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All
  3337. rights reserved.
  3338. If you have downloaded a copy of the RapidJSON binary from Tencent, please
  3339. note that the RapidJSON binary is licensed under the MIT License.
  3340. If you have downloaded a copy of the RapidJSON source code from Tencent,
  3341. please note that RapidJSON source code is licensed under the MIT License,
  3342. except for the third-party components listed below which are subject to
  3343. different license terms. Your integration of RapidJSON into your own
  3344. projects may require compliance with the MIT License, as well as the other
  3345. licenses applicable to the third-party components included within RapidJSON.
  3346. To avoid the problematic JSON license in your own projects, it's sufficient
  3347. to exclude the bin/jsonchecker/ directory, as it's the only code under the
  3348. JSON license.
  3349. A copy of the MIT License is included in this file.
  3350. Other dependencies and licenses:
  3351. Open Source Software Licensed Under the BSD License:
  3352. --------------------------------------------------------------------
  3353. The msinttypes r29
  3354. Copyright (c) 2006-2013 Alexander Chemeris
  3355. All rights reserved.
  3356. Redistribution and use in source and binary forms, with or without
  3357. modification, are permitted provided that the following conditions are met:
  3358. * Redistributions of source code must retain the above copyright notice, this
  3359. list of conditions and the following disclaimer.
  3360. * Redistributions in binary form must reproduce the above copyright notice,
  3361. this list of conditions and the following disclaimer in the documentation
  3362. and/or other materials provided with the distribution.
  3363. * Neither the name of copyright holder nor the names of its contributors may
  3364. be used to endorse or promote products derived from this software without
  3365. specific prior written permission.
  3366. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
  3367. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  3368. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  3369. DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
  3370. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  3371. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  3372. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  3373. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  3374. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  3375. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3376. Open Source Software Licensed Under the JSON License:
  3377. --------------------------------------------------------------------
  3378. json.org
  3379. Copyright (c) 2002 JSON.org
  3380. All Rights Reserved.
  3381. JSON_checker
  3382. Copyright (c) 2002 JSON.org
  3383. All Rights Reserved.
  3384. Terms of the JSON License:
  3385. ---------------------------------------------------
  3386. Permission is hereby granted, free of charge, to any person obtaining a copy
  3387. of this software and associated documentation files (the "Software"), to deal
  3388. in the Software without restriction, including without limitation the rights
  3389. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3390. copies of the Software, and to permit persons to whom the Software is
  3391. furnished to do so, subject to the following conditions:
  3392. The above copyright notice and this permission notice shall be included in
  3393. all copies or substantial portions of the Software.
  3394. The Software shall be used for Good, not Evil.
  3395. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3396. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3397. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3398. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3399. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3400. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  3401. SOFTWARE.
  3402. Terms of the MIT License:
  3403. --------------------------------------------------------------------
  3404. Permission is hereby granted, free of charge, to any person obtaining a copy
  3405. of this software and associated documentation files (the "Software"), to deal
  3406. in the Software without restriction, including without limitation the rights
  3407. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  3408. copies of the Software, and to permit persons to whom the Software is
  3409. furnished to do so, subject to the following conditions:
  3410. The above copyright notice and this permission notice shall be included in
  3411. all copies or substantial portions of the Software.
  3412. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3413. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3414. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  3415. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3416. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  3417. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  3418. SOFTWARE.
  3419. ======================================================================
  3420. ======================================================================
  3421. Richard A. O'Keefe String Library
  3422. Richard A. O'Keefe String Library
  3423. The Richard O'Keefe String Library is subject to the following notice:
  3424. These files are in the public domain. This includes getopt.c, which
  3425. is the work of Henry Spencer, University of Toronto Zoology, who
  3426. says of it "None of this software is derived from Bell software. I
  3427. had no access to the source for Bell's versions at the time I wrote
  3428. it. This software is hereby explicitly placed in the public domain.
  3429. It may be used for any purpose on any machine by anyone." I would
  3430. greatly prefer it if *my* material received no military use.
  3431. The t_ctype.h file is subject to the following notice:
  3432. Copyright (C) 1998, 1999 by Pruet Boonma, all rights reserved.
  3433. Copyright (C) 1998 by Theppitak Karoonboonyanan, all rights reserved.
  3434. Permission to use, copy, modify, distribute and sell this software and its
  3435. documentation for any purpose is hereby granted without fee, provided that the
  3436. above copyright notice appear in all copies.
  3437. Smaphan Raruenrom and Pruet Boonma makes no representations about
  3438. the suitability of this software for any purpose. It is provided
  3439. "as is" without express or implied warranty.
  3440. ======================================================================
  3441. ======================================================================
  3442. Robin Hood Hash
  3443. MIT License
  3444. Copyright (c) 2018-2019 Martin Ankerl
  3445. Permission is hereby granted, free of charge, to any person obtaining a
  3446. copy of this software and associated documentation files (the "Software"),
  3447. to deal in the Software without restriction, including without limitation
  3448. the rights to use, copy, modify, merge, publish, distribute, sublicense,
  3449. and/or sell copies of the Software, and to permit persons to whom the
  3450. Software is furnished to do so, subject to the following conditions:
  3451. The above copyright notice and this permission notice shall be included in
  3452. all copies or substantial portions of the Software.
  3453. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3454. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3455. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  3456. THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  3457. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  3458. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  3459. DEALINGS IN THE SOFTWARE.
  3460. ======================================================================
  3461. ======================================================================
  3462. Time Zone Information
  3463. Unless specified below, all files in the tz code and data (including this
  3464. LICENSE file) are in the public domain. If the files date.c,
  3465. newstrftime.3, and strftime.c are present, they contain material derived
  3466. from BSD and use the BSD 3-clause license. tzdata:
  3467. # This file is in the public domain, so clarified as of
  3468. # 2009-05-17 by Arthur David Olson.
  3469. /* Copyright 1985, 1987, 1988 The Regents of the University of California.
  3470. All rights reserved.
  3471. Redistribution and use in source and binary forms, with or without
  3472. modification, are permitted provided that the following conditions
  3473. are met:
  3474. 1. Redistributions of source code must retain the above copyright
  3475. notice, this list of conditions and the following disclaimer.
  3476. 2. Redistributions in binary form must reproduce the above copyright
  3477. notice, this list of conditions and the following disclaimer in the
  3478. documentation and/or other materials provided with the distribution.
  3479. 3. Neither the name of the University nor the names of its contributors
  3480. may be used to endorse or promote products derived from this software
  3481. without specific prior written permission.
  3482. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND
  3483. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3484. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  3485. ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  3486. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  3487. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  3488. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  3489. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  3490. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  3491. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  3492. SUCH DAMAGE. */
  3493. ======================================================================
  3494. ======================================================================
  3495. Unicode Data Files, V5.2.0
  3496. Unicode Data Files, V5.2.0
  3497. # unidata-5.2.0.txt
  3498. # Date: 2009-09-22, 16:23:42 PDT [KW]
  3499. #
  3500. # This file defines the Default Unicode Collation Element Table
  3501. # (DUCET) for the Unicode Collation Algorithm
  3502. #
  3503. # Copyright (c) 2001-2009 Unicode, Inc.
  3504. # For terms of use, see http://www.unicode.org/terms_of_use.html
  3505. #
  3506. # See UTS #10, Unicode Collation Algorithm, for more information.
  3507. #
  3508. # Diagnostic weight ranges
  3509. # Primary weight range: 0200..3ACA (14539)
  3510. # Secondary weight range: 0020..0192 (371)
  3511. # Variant secondaries: 0159..015E (6)
  3512. # Digit secondaries: 015F..0192 (52)
  3513. # Tertiary weight range: 0002..001F (30)
  3514. #
  3515. @version 5.2.0
  3516. === http://www.unicode.org/terms_of_use.html
  3517. For the general privacy policy governing access to this site, see the
  3518. Unicode Privacy Policy.
  3519. Unicode Copyright
  3520. Copyright (c) 1991-2020 Unicode, Inc. All rights reserved.
  3521. Definitions
  3522. Unicode Data Files ("DATA FILES") include all data files under the
  3523. directories:
  3524. https://www.unicode.org/Public/
  3525. https://www.unicode.org/reports/
  3526. https://www.unicode.org/ivd/data/
  3527. Unicode Data Files do not include PDF online code charts under the directory:
  3528. https://www.unicode.org/Public/
  3529. Unicode Software ("SOFTWARE") includes any source code published in the
  3530. Unicode Standard
  3531. or any source code or compiled code under the directories:
  3532. https://www.unicode.org/Public/PROGRAMS/
  3533. https://www.unicode.org/Public/cldr/
  3534. http://site.icu-project.org/download/
  3535. Terms of Use
  3536. Certain documents and files on this website contain a legend indicating that
  3537. "Modification is permitted." Any person is hereby authorized, without fee, to
  3538. modify such documents and files to create derivative works conforming to the
  3539. Unicode(R) Standard, subject to Terms and Conditions herein.
  3540. Any person is hereby authorized, without fee, to view, use, reproduce, and
  3541. distribute all documents and files, subject to the Terms and Conditions
  3542. herein.
  3543. Further specifications of rights and restrictions pertaining to the use of
  3544. the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files
  3545. and Software License.
  3546. Each version of the Unicode Standard has further specifications of rights and
  3547. restrictions of use. For the book editions (Unicode 5.0 and earlier), these
  3548. are found on the back of the title page.
  3549. The Unicode PDF online code charts carry specific restrictions. Those
  3550. restrictions are incorporated as the first page of each PDF code chart.
  3551. All other files, including online documentation of the core specification for
  3552. Unicode 6.0 and later, are covered under these general Terms of Use.
  3553. No license is granted to "mirror" the Unicode website where a fee is charged
  3554. for access to the "mirror" site.
  3555. Modification is not permitted with respect to this document. All copies of
  3556. this document must be verbatim.
  3557. Restricted Rights Legend
  3558. Any technical data or software which is licensed to the United States of
  3559. America, its agencies and/or instrumentalities under this Agreement is
  3560. commercial technical data or commercial computer software developed
  3561. exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014
  3562. (June 1995), as applicable. For technical data, use, duplication, or
  3563. disclosure by the Government is subject to restrictions as set forth in DFARS
  3564. 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this
  3565. Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as
  3566. applicable, use, duplication or disclosure by the Government is subject to
  3567. the restrictions set forth in this Agreement.
  3568. Warranties and Disclaimers
  3569. This publication and/or website may include technical or typographical errors
  3570. or other inaccuracies. Changes are periodically added to the information
  3571. herein; these changes will be incorporated in new editions of the publication
  3572. and/or website. Unicode, Inc. may make improvements and/or changes in the
  3573. product(s) and/or program(s) described in this publication and/or website at
  3574. any time.
  3575. If this file has been purchased on magnetic or optical media from Unicode,
  3576. Inc. the sole and exclusive remedy for any claim will be exchange of the
  3577. defective media within ninety (90) days of original purchase.
  3578. EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS
  3579. PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR
  3580. STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY,
  3581. FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS
  3582. LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS
  3583. PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR
  3584. LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE.
  3585. Waiver of Damages
  3586. In no event shall Unicode, Inc. or its licensors be liable for any special,
  3587. incidental, indirect or consequential damages of any kind, or any damages
  3588. whatsoever, whether or not Unicode, Inc. was advised of the possibility of
  3589. the damage, including, without limitation, those resulting from the
  3590. following: loss of use, data or profits, in connection with the use,
  3591. modification or distribution of this information or its derivatives.
  3592. Trademarks & Logos
  3593. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc.
  3594. ¿The Unicode Consortium¿ and ¿Unicode, Inc.¿ are trade names of Unicode, Inc.
  3595. Use of the information and materials found on this website indicates your
  3596. acknowledgement of Unicode, Inc.¿s exclusive worldwide rights in the Unicode
  3597. Word Mark, the Unicode Logo, and the Unicode trade names.
  3598. The Unicode Consortium Name and Trademark Usage Policy (¿Trademark Policy¿)
  3599. are incorporated herein by reference and you agree to abide by the provisions
  3600. of the Trademark Policy, which may be changed from time to time in the sole
  3601. discretion of Unicode, Inc.
  3602. All third party trademarks referenced herein are the property of their
  3603. respective owners.
  3604. Miscellaneous
  3605. Jurisdiction and Venue. This website is operated from a location in the State
  3606. of California, United States of America. Unicode, Inc. makes no
  3607. representation that the materials are appropriate for use in other locations.
  3608. If you access this website from other locations, you are responsible for
  3609. compliance with local laws. This Agreement, all use of this website and any
  3610. claims and damages resulting from use of this website are governed solely by
  3611. the laws of the State of California without regard to any principles which
  3612. would apply the laws of a different jurisdiction. The user agrees that any
  3613. disputes regarding this website shall be resolved solely in the courts
  3614. located in Santa Clara County, California. The user agrees said courts have
  3615. personal jurisdiction and agree to waive any right to transfer the dispute to
  3616. any other forum.
  3617. Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify
  3618. this Agreement at any time by posting it to this website. The user may not
  3619. assign any part of this Agreement without Unicode, Inc.¿s prior written
  3620. consent.
  3621. Taxes. The user agrees to pay any taxes arising from access to this website
  3622. or use of the information herein, except for those based on Unicode¿s net
  3623. income.
  3624. Severability. If any provision of this Agreement is declared invalid or
  3625. unenforceable, the remaining provisions of this Agreement shall remain in
  3626. effect.
  3627. Entire Agreement. This Agreement constitutes the entire agreement between the
  3628. parties.
  3629. ======================================================================
  3630. ======================================================================
  3631. Unicode Data Files, V9.0
  3632. Unicode Data Files, V9.0
  3633. UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
  3634. Unicode Data Files include all data files under the directories
  3635. http://www.unicode.org/Public/, http://www.unicode.org/reports/,
  3636. http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/,
  3637. and http://www.unicode.org/utility/trac/browser/.
  3638. Unicode Data Files do not include PDF online code charts under the
  3639. directory http://www.unicode.org/Public/.
  3640. Software includes any source code published in the Unicode Standard
  3641. or under the directories http://www.unicode.org/Public/,
  3642. http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/,
  3643. http://source.icu-project.org/repos/icu/, and
  3644. http://www.unicode.org/utility/trac/browser/.
  3645. NOTICE TO USER: Carefully read the following legal agreement.
  3646. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S
  3647. DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"),
  3648. YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
  3649. TERMS AND CONDITIONS OF THIS AGREEMENT.
  3650. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE
  3651. THE DATA FILES OR SOFTWARE.
  3652. COPYRIGHT AND PERMISSION NOTICE
  3653. Copyright (c) 1991-2016 Unicode, Inc. All rights reserved.
  3654. Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
  3655. Permission is hereby granted, free of charge, to any person obtaining a copy
  3656. of the Unicode data files and any associated documentation (the "Data Files")
  3657. or Unicode software and any associated documentation (the "Software") to deal
  3658. in the Data Files or Software without restriction, including without
  3659. limitation the rights to use, copy, modify, merge, publish, distribute,
  3660. and/or sell copies of the Data Files or Software, and to permit persons to
  3661. whom the Data Files or Software are furnished to do so, provided that either
  3662. (a) this copyright and permission notice appear with all copies of the Data
  3663. Files or Software, or (b) this copyright and permission notice appear in
  3664. associated Documentation.
  3665. THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  3666. KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  3667. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
  3668. THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
  3669. INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
  3670. CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  3671. DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  3672. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  3673. OF THE DATA FILES OR SOFTWARE.
  3674. Except as contained in this notice, the name of a copyright holder shall not
  3675. be used in advertising or otherwise to promote the sale, use or other
  3676. dealings in these Data Files or Software without prior written authorization
  3677. of the copyright holder.
  3678. =========================================================================
  3679. ICU-LICENSE
  3680. -----------
  3681. ICU License - ICU 1.8.1 and later
  3682. COPYRIGHT AND PERMISSION NOTICE
  3683. Copyright (c) 1995-2016 International Business Machines Corporation and
  3684. others
  3685. All rights reserved.
  3686. Permission is hereby granted, free of charge, to any person obtaining a copy
  3687. of this software and associated documentation files (the "Software"), to deal
  3688. in the Software without restriction, including without limitation the rights
  3689. to use, copy, modify, merge, publish, distribute, and/or sell copies of the
  3690. Software, and to permit persons to whom the Software is furnished to do so,
  3691. provided that the above copyright notice(s) and this permission notice appear
  3692. in all copies of the Software and that both the above copyright notice(s) and
  3693. this permission notice appear in supporting documentation.
  3694. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  3695. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  3696. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  3697. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE
  3698. LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR
  3699. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  3700. IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  3701. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  3702. Except as contained in this notice, the name of a copyright holder shall not
  3703. be used in advertising or otherwise to promote the sale, use or other
  3704. dealings in this Software without prior written authorization of the
  3705. copyright holder.
  3706. All trademarks and registered trademarks mentioned herein are the property of
  3707. their respective owners.
  3708. ======================================================================
  3709. ======================================================================
  3710. zlib
  3711. zlib
  3712. Oracle gratefully acknowledges the contributions of Jean-loup Gailly
  3713. and Mark Adler in creating the zlib general purpose compression library
  3714. which is used in this product.
  3715. (C) 1995-2017 Jean-loup Gailly and Mark Adler
  3716. This software is provided 'as-is', without any express or implied
  3717. warranty. In no event will the authors be held liable for any damages
  3718. arising from the use of this software.
  3719. Permission is granted to anyone to use this software for any purpose,
  3720. including commercial applications, and to alter it and redistribute it
  3721. freely, subject to the following restrictions:
  3722. 1. The origin of this software must not be misrepresented; you must not
  3723. claim that you wrote the original software. If you use this software
  3724. in a product, an acknowledgment in the product documentation would be
  3725. appreciated but is not required.
  3726. 2. Altered source versions must be plainly marked as such, and must not be
  3727. misrepresented as being the original software.
  3728. 3. This notice may not be removed or altered from any source distribution.
  3729. Jean-loup Gailly Mark Adler
  3730. jloup@gzip.org madler@alumni.caltech.edu
  3731. If you use the zlib library in a product, we would appreciate *not* receiving
  3732. lengthy legal documents to sign. The sources are provided for free but without
  3733. warranty of any kind. The library has been entirely written by Jean-loup
  3734. Gailly and Mark Adler; it does not include third-party code.
  3735. If you redistribute modified sources, we would appreciate that you include in
  3736. the file ChangeLog history information documenting your changes. Please read
  3737. the FAQ for more information on the distribution of modified source versions.
  3738. ======================================================================
  3739. ======================================================================
  3740. ZSTD
  3741. Zstandard
  3742. Zstandard is dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING).
  3743. /*
  3744. * This source code is licensed under both the BSD-style license (found in
  3745. * the LICENSE file in the root directory of this source tree) and the GPLv2
  3746. * (found in the COPYING file in the root directory of this source tree).
  3747. * You may select, at your option, one of the above-listed licenses.
  3748. */
  3749. Oracle elects the BSD license
  3750. LICENSE:
  3751. Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
  3752. Copyright (C) 2012-2016, Yann Collet.
  3753. Copyright (c) 2003-2008 Yuta Mori All Rights Reserved.
  3754. Copyright (c) 2016 Tino Reichardt
  3755. Copyright (c) 2016-present, Przemyslaw Skibinski, Yann Collet, Facebook, Inc.
  3756. Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
  3757. Copyright (c) 2018-present, Facebook, Inc.
  3758. Redistribution and use in source and binary forms, with or without
  3759. modification, are permitted provided that the following conditions are
  3760. met:
  3761. * Redistributions of source code must retain the above copyright notice,
  3762. this list of conditions and the following disclaimer.
  3763. * Redistributions in binary form must reproduce the above copyright notice,
  3764. this list of conditions and the following disclaimer in the documentation
  3765. and/or other materials provided with the distribution.
  3766. * Neither the name Facebook nor the names of its contributors may be used to
  3767. endorse or promote products derived from this software without specific
  3768. prior written permission.
  3769. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  3770. IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  3771. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  3772. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  3773. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  3774. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  3775. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  3776. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  3777. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  3778. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  3779. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  3780. The following is from the COPYING file and is included for completeness:
  3781. -------------------------------
  3782. GNU GENERAL PUBLIC LICENSE
  3783. Version 2, June 1991
  3784. Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
  3785. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  3786. Everyone is permitted to copy and distribute verbatim copies
  3787. of this license document, but changing it is not allowed.
  3788. Preamble
  3789. The licenses for most software are designed to take away your
  3790. freedom to share and change it. By contrast, the GNU General Public
  3791. License is intended to guarantee your freedom to share and change free
  3792. software--to make sure the software is free for all its users. This
  3793. General Public License applies to most of the Free Software
  3794. Foundation's software and to any other program whose authors commit to
  3795. using it. (Some other Free Software Foundation software is covered by
  3796. the GNU Lesser General Public License instead.) You can apply it to
  3797. your programs, too.
  3798. When we speak of free software, we are referring to freedom, not
  3799. price. Our General Public Licenses are designed to make sure that you
  3800. have the freedom to distribute copies of free software (and charge for
  3801. this service if you wish), that you receive source code or can get it
  3802. if you want it, that you can change the software or use pieces of it
  3803. in new free programs; and that you know you can do these things.
  3804. To protect your rights, we need to make restrictions that forbid
  3805. anyone to deny you these rights or to ask you to surrender the rights.
  3806. These restrictions translate to certain responsibilities for you if you
  3807. distribute copies of the software, or if you modify it.
  3808. For example, if you distribute copies of such a program, whether
  3809. gratis or for a fee, you must give the recipients all the rights that
  3810. you have. You must make sure that they, too, receive or can get the
  3811. source code. And you must show them these terms so they know their
  3812. rights.
  3813. We protect your rights with two steps: (1) copyright the software, and
  3814. (2) offer you this license which gives you legal permission to copy,
  3815. distribute and/or modify the software.
  3816. Also, for each author's protection and ours, we want to make certain
  3817. that everyone understands that there is no warranty for this free
  3818. software. If the software is modified by someone else and passed on, we
  3819. want its recipients to know that what they have is not the original, so
  3820. that any problems introduced by others will not reflect on the original
  3821. authors' reputations.
  3822. Finally, any free program is threatened constantly by software
  3823. patents. We wish to avoid the danger that redistributors of a free
  3824. program will individually obtain patent licenses, in effect making the
  3825. program proprietary. To prevent this, we have made it clear that any
  3826. patent must be licensed for everyone's free use or not licensed at all.
  3827. The precise terms and conditions for copying, distribution and
  3828. modification follow.
  3829. GNU GENERAL PUBLIC LICENSE
  3830. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  3831. 0. This License applies to any program or other work which contains
  3832. a notice placed by the copyright holder saying it may be distributed
  3833. under the terms of this General Public License. The "Program", below,
  3834. refers to any such program or work, and a "work based on the Program"
  3835. means either the Program or any derivative work under copyright law:
  3836. that is to say, a work containing the Program or a portion of it,
  3837. either verbatim or with modifications and/or translated into another
  3838. language. (Hereinafter, translation is included without limitation in
  3839. the term "modification".) Each licensee is addressed as "you".
  3840. Activities other than copying, distribution and modification are not
  3841. covered by this License; they are outside its scope. The act of
  3842. running the Program is not restricted, and the output from the Program
  3843. is covered only if its contents constitute a work based on the
  3844. Program (independent of having been made by running the Program).
  3845. Whether that is true depends on what the Program does.
  3846. 1. You may copy and distribute verbatim copies of the Program's
  3847. source code as you receive it, in any medium, provided that you
  3848. conspicuously and appropriately publish on each copy an appropriate
  3849. copyright notice and disclaimer of warranty; keep intact all the
  3850. notices that refer to this License and to the absence of any warranty;
  3851. and give any other recipients of the Program a copy of this License
  3852. along with the Program.
  3853. You may charge a fee for the physical act of transferring a copy, and
  3854. you may at your option offer warranty protection in exchange for a fee.
  3855. 2. You may modify your copy or copies of the Program or any portion
  3856. of it, thus forming a work based on the Program, and copy and
  3857. distribute such modifications or work under the terms of Section 1
  3858. above, provided that you also meet all of these conditions:
  3859. a) You must cause the modified files to carry prominent notices
  3860. stating that you changed the files and the date of any change.
  3861. b) You must cause any work that you distribute or publish, that in
  3862. whole or in part contains or is derived from the Program or any
  3863. part thereof, to be licensed as a whole at no charge to all third
  3864. parties under the terms of this License.
  3865. c) If the modified program normally reads commands interactively
  3866. when run, you must cause it, when started running for such
  3867. interactive use in the most ordinary way, to print or display an
  3868. announcement including an appropriate copyright notice and a
  3869. notice that there is no warranty (or else, saying that you provide
  3870. a warranty) and that users may redistribute the program under
  3871. these conditions, and telling the user how to view a copy of this
  3872. License. (Exception: if the Program itself is interactive but
  3873. does not normally print such an announcement, your work based on
  3874. the Program is not required to print an announcement.)
  3875. These requirements apply to the modified work as a whole. If
  3876. identifiable sections of that work are not derived from the Program,
  3877. and can be reasonably considered independent and separate works in
  3878. themselves, then this License, and its terms, do not apply to those
  3879. sections when you distribute them as separate works. But when you
  3880. distribute the same sections as part of a whole which is a work based
  3881. on the Program, the distribution of the whole must be on the terms of
  3882. this License, whose permissions for other licensees extend to the
  3883. entire whole, and thus to each and every part regardless of who wrote it.
  3884. Thus, it is not the intent of this section to claim rights or contest
  3885. your rights to work written entirely by you; rather, the intent is to
  3886. exercise the right to control the distribution of derivative or
  3887. collective works based on the Program.
  3888. In addition, mere aggregation of another work not based on the Program
  3889. with the Program (or with a work based on the Program) on a volume of
  3890. a storage or distribution medium does not bring the other work under
  3891. the scope of this License.
  3892. 3. You may copy and distribute the Program (or a work based on it,
  3893. under Section 2) in object code or executable form under the terms of
  3894. Sections 1 and 2 above provided that you also do one of the following:
  3895. a) Accompany it with the complete corresponding machine-readable
  3896. source code, which must be distributed under the terms of Sections
  3897. 1 and 2 above on a medium customarily used for software interchange; or,
  3898. b) Accompany it with a written offer, valid for at least three
  3899. years, to give any third party, for a charge no more than your
  3900. cost of physically performing source distribution, a complete
  3901. machine-readable copy of the corresponding source code, to be
  3902. distributed under the terms of Sections 1 and 2 above on a medium
  3903. customarily used for software interchange; or,
  3904. c) Accompany it with the information you received as to the offer
  3905. to distribute corresponding source code. (This alternative is
  3906. allowed only for noncommercial distribution and only if you
  3907. received the program in object code or executable form with such
  3908. an offer, in accord with Subsection b above.)
  3909. The source code for a work means the preferred form of the work for
  3910. making modifications to it. For an executable work, complete source
  3911. code means all the source code for all modules it contains, plus any
  3912. associated interface definition files, plus the scripts used to
  3913. control compilation and installation of the executable. However, as a
  3914. special exception, the source code distributed need not include
  3915. anything that is normally distributed (in either source or binary
  3916. form) with the major components (compiler, kernel, and so on) of the
  3917. operating system on which the executable runs, unless that component
  3918. itself accompanies the executable.
  3919. If distribution of executable or object code is made by offering
  3920. access to copy from a designated place, then offering equivalent
  3921. access to copy the source code from the same place counts as
  3922. distribution of the source code, even though third parties are not
  3923. compelled to copy the source along with the object code.
  3924. 4. You may not copy, modify, sublicense, or distribute the Program
  3925. except as expressly provided under this License. Any attempt
  3926. otherwise to copy, modify, sublicense or distribute the Program is
  3927. void, and will automatically terminate your rights under this License.
  3928. However, parties who have received copies, or rights, from you under
  3929. this License will not have their licenses terminated so long as such
  3930. parties remain in full compliance.
  3931. 5. You are not required to accept this License, since you have not
  3932. signed it. However, nothing else grants you permission to modify or
  3933. distribute the Program or its derivative works. These actions are
  3934. prohibited by law if you do not accept this License. Therefore, by
  3935. modifying or distributing the Program (or any work based on the
  3936. Program), you indicate your acceptance of this License to do so, and
  3937. all its terms and conditions for copying, distributing or modifying
  3938. the Program or works based on it.
  3939. 6. Each time you redistribute the Program (or any work based on the
  3940. Program), the recipient automatically receives a license from the
  3941. original licensor to copy, distribute or modify the Program subject to
  3942. these terms and conditions. You may not impose any further
  3943. restrictions on the recipients' exercise of the rights granted herein.
  3944. You are not responsible for enforcing compliance by third parties to
  3945. this License.
  3946. 7. If, as a consequence of a court judgment or allegation of patent
  3947. infringement or for any other reason (not limited to patent issues),
  3948. conditions are imposed on you (whether by court order, agreement or
  3949. otherwise) that contradict the conditions of this License, they do not
  3950. excuse you from the conditions of this License. If you cannot
  3951. distribute so as to satisfy simultaneously your obligations under this
  3952. License and any other pertinent obligations, then as a consequence you
  3953. may not distribute the Program at all. For example, if a patent
  3954. license would not permit royalty-free redistribution of the Program by
  3955. all those who receive copies directly or indirectly through you, then
  3956. the only way you could satisfy both it and this License would be to
  3957. refrain entirely from distribution of the Program.
  3958. If any portion of this section is held invalid or unenforceable under
  3959. any particular circumstance, the balance of the section is intended to
  3960. apply and the section as a whole is intended to apply in other
  3961. circumstances.
  3962. It is not the purpose of this section to induce you to infringe any
  3963. patents or other property right claims or to contest validity of any
  3964. such claims; this section has the sole purpose of protecting the
  3965. integrity of the free software distribution system, which is
  3966. implemented by public license practices. Many people have made
  3967. generous contributions to the wide range of software distributed
  3968. through that system in reliance on consistent application of that
  3969. system; it is up to the author/donor to decide if he or she is willing
  3970. to distribute software through any other system and a licensee cannot
  3971. impose that choice.
  3972. This section is intended to make thoroughly clear what is believed to
  3973. be a consequence of the rest of this License.
  3974. 8. If the distribution and/or use of the Program is restricted in
  3975. certain countries either by patents or by copyrighted interfaces, the
  3976. original copyright holder who places the Program under this License
  3977. may add an explicit geographical distribution limitation excluding
  3978. those countries, so that distribution is permitted only in or among
  3979. countries not thus excluded. In such case, this License incorporates
  3980. the limitation as if written in the body of this License.
  3981. 9. The Free Software Foundation may publish revised and/or new versions
  3982. of the General Public License from time to time. Such new versions will
  3983. be similar in spirit to the present version, but may differ in detail to
  3984. address new problems or concerns.
  3985. Each version is given a distinguishing version number. If the Program
  3986. specifies a version number of this License which applies to it and "any
  3987. later version", you have the option of following the terms and conditions
  3988. either of that version or of any later version published by the Free
  3989. Software Foundation. If the Program does not specify a version number of
  3990. this License, you may choose any version ever published by the Free Software
  3991. Foundation.
  3992. 10. If you wish to incorporate parts of the Program into other free
  3993. programs whose distribution conditions are different, write to the author
  3994. to ask for permission. For software which is copyrighted by the Free
  3995. Software Foundation, write to the Free Software Foundation; we sometimes
  3996. make exceptions for this. Our decision will be guided by the two goals
  3997. of preserving the free status of all derivatives of our free software and
  3998. of promoting the sharing and reuse of software generally.
  3999. NO WARRANTY
  4000. 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
  4001. FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
  4002. OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
  4003. PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
  4004. OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  4005. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
  4006. TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
  4007. PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
  4008. REPAIR OR CORRECTION.
  4009. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  4010. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
  4011. REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
  4012. INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
  4013. OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
  4014. TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
  4015. YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
  4016. PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
  4017. POSSIBILITY OF SUCH DAMAGES.
  4018. END OF TERMS AND CONDITIONS
  4019. How to Apply These Terms to Your New Programs
  4020. If you develop a new program, and you want it to be of the greatest
  4021. possible use to the public, the best way to achieve this is to make it
  4022. free software which everyone can redistribute and change under these terms.
  4023. To do so, attach the following notices to the program. It is safest
  4024. to attach them to the start of each source file to most effectively
  4025. convey the exclusion of warranty; and each file should have at least
  4026. the "copyright" line and a pointer to where the full notice is found.
  4027. <one line to give the program's name and a brief idea of what it does.>
  4028. Copyright (C) <year> <name of author>
  4029. This program is free software; you can redistribute it and/or modify
  4030. it under the terms of the GNU General Public License as published by
  4031. the Free Software Foundation; either version 2 of the License, or
  4032. (at your option) any later version.
  4033. This program is distributed in the hope that it will be useful,
  4034. but WITHOUT ANY WARRANTY; without even the implied warranty of
  4035. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  4036. GNU General Public License for more details.
  4037. You should have received a copy of the GNU General Public License along
  4038. with this program; if not, write to the Free Software Foundation, Inc.,
  4039. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  4040. Also add information on how to contact you by electronic and paper mail.
  4041. If the program is interactive, make it output a short notice like this
  4042. when it starts in an interactive mode:
  4043. Gnomovision version 69, Copyright (C) year name of author
  4044. Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  4045. This is free software, and you are welcome to redistribute it
  4046. under certain conditions; type `show c' for details.
  4047. The hypothetical commands `show w' and `show c' should show the appropriate
  4048. parts of the General Public License. Of course, the commands you use may
  4049. be called something other than `show w' and `show c'; they could even be
  4050. mouse-clicks or menu items--whatever suits your program.
  4051. You should also get your employer (if you work as a programmer) or your
  4052. school, if any, to sign a "copyright disclaimer" for the program, if
  4053. necessary. Here is a sample; alter the names:
  4054. Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  4055. `Gnomovision' (which makes passes at compilers) written by James Hacker.
  4056. <signature of Ty Coon>, 1 April 1989
  4057. Ty Coon, President of Vice
  4058. This General Public License does not permit incorporating your program into
  4059. proprietary programs. If your program is a subroutine library, you may
  4060. consider it more useful to permit linking proprietary applications with the
  4061. library. If this is what you want to do, use the GNU Lesser General
  4062. Public License instead of this License.
  4063. ======================================================================
  4064. ======================================================================
  4065. Standard Licenses
  4066. GNU Lesser General Public License Version 2.1, February 1999
  4067. The following applies to all products licensed under the
  4068. GNU Lesser General Public License, Version 2.1: You may
  4069. not use the identified files except in compliance with
  4070. the GNU Lesser General Public License, Version 2.1 (the
  4071. "License"). You may obtain a copy of the License at
  4072. http://www.gnu.org/licenses/lgpl-2.1.html. A copy of the
  4073. license is also reproduced below. Unless required by
  4074. applicable law or agreed to in writing, software distributed
  4075. under the License is distributed on an "AS IS" BASIS,
  4076. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  4077. or implied. See the License for the specific language governing
  4078. permissions and limitations under the License.
  4079. GNU LESSER GENERAL PUBLIC LICENSE
  4080. Version 2.1, February 1999
  4081. Copyright (C) 1991, 1999 Free Software Foundation, Inc.
  4082. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  4083. Everyone is permitted to copy and distribute verbatim copies
  4084. of this license document, but changing it is not allowed.
  4085. [This is the first released version of the Lesser GPL. It also counts
  4086. as the successor of the GNU Library Public License, version 2, hence
  4087. the version number 2.1.]
  4088. Preamble
  4089. The licenses for most software are designed to take away your
  4090. freedom to share and change it. By contrast, the GNU General Public
  4091. Licenses are intended to guarantee your freedom to share and change
  4092. free software--to make sure the software is free for all its users.
  4093. This license, the Lesser General Public License, applies to some
  4094. specially designated software packages--typically libraries--of the
  4095. Free Software Foundation and other authors who decide to use it. You
  4096. can use it too, but we suggest you first think carefully about whether
  4097. this license or the ordinary General Public License is the better
  4098. strategy to use in any particular case, based on the explanations below.
  4099. When we speak of free software, we are referring to freedom of use,
  4100. not price. Our General Public Licenses are designed to make sure that
  4101. you have the freedom to distribute copies of free software (and charge
  4102. for this service if you wish); that you receive source code or can get
  4103. it if you want it; that you can change the software and use pieces of
  4104. it in new free programs; and that you are informed that you can do
  4105. these things.
  4106. To protect your rights, we need to make restrictions that forbid
  4107. distributors to deny you these rights or to ask you to surrender these
  4108. rights. These restrictions translate to certain responsibilities for
  4109. you if you distribute copies of the library or if you modify it.
  4110. For example, if you distribute copies of the library, whether gratis
  4111. or for a fee, you must give the recipients all the rights that we gave
  4112. you. You must make sure that they, too, receive or can get the source
  4113. code. If you link other code with the library, you must provide
  4114. complete object files to the recipients, so that they can relink them
  4115. with the library after making changes to the library and recompiling
  4116. it. And you must show them these terms so they know their rights.
  4117. We protect your rights with a two-step method: (1) we copyright the
  4118. library, and (2) we offer you this license, which gives you legal
  4119. permission to copy, distribute and/or modify the library.
  4120. To protect each distributor, we want to make it very clear that
  4121. there is no warranty for the free library. Also, if the library is
  4122. modified by someone else and passed on, the recipients should know
  4123. that what they have is not the original version, so that the original
  4124. author's reputation will not be affected by problems that might be
  4125. introduced by others.
  4126. Finally, software patents pose a constant threat to the existence of
  4127. any free program. We wish to make sure that a company cannot
  4128. effectively restrict the users of a free program by obtaining a
  4129. restrictive license from a patent holder. Therefore, we insist that
  4130. any patent license obtained for a version of the library must be
  4131. consistent with the full freedom of use specified in this license.
  4132. Most GNU software, including some libraries, is covered by the
  4133. ordinary GNU General Public License. This license, the GNU Lesser
  4134. General Public License, applies to certain designated libraries, and
  4135. is quite different from the ordinary General Public License. We use
  4136. this license for certain libraries in order to permit linking those
  4137. libraries into non-free programs.
  4138. When a program is linked with a library, whether statically or using
  4139. a shared library, the combination of the two is legally speaking a
  4140. combined work, a derivative of the original library. The ordinary
  4141. General Public License therefore permits such linking only if the
  4142. entire combination fits its criteria of freedom. The Lesser General
  4143. Public License permits more lax criteria for linking other code with
  4144. the library.
  4145. We call this license the "Lesser" General Public License because it
  4146. does Less to protect the user's freedom than the ordinary General
  4147. Public License. It also provides other free software developers Less
  4148. of an advantage over competing non-free programs. These disadvantages
  4149. are the reason we use the ordinary General Public License for many
  4150. libraries. However, the Lesser license provides advantages in certain
  4151. special circumstances.
  4152. For example, on rare occasions, there may be a special need to
  4153. encourage the widest possible use of a certain library, so that it
  4154. becomes a de-facto standard. To achieve this, non-free programs
  4155. must be allowed to use the library. A more frequent case is that
  4156. a free library does the same job as widely used non-free libraries.
  4157. In this case, there is little to gain by limiting the free library
  4158. to free software only, so we use the Lesser General Public License.
  4159. In other cases, permission to use a particular library in non-free
  4160. programs enables a greater number of people to use a large body of
  4161. free software. For example, permission to use the GNU C Library in
  4162. non-free programs enables many more people to use the whole GNU
  4163. operating system, as well as its variant, the GNU/Linux operating
  4164. system.
  4165. Although the Lesser General Public License is Less protective of the
  4166. users' freedom, it does ensure that the user of a program that is
  4167. linked with the Library has the freedom and the wherewithal to run
  4168. that program using a modified version of the Library.
  4169. The precise terms and conditions for copying, distribution and
  4170. modification follow. Pay close attention to the difference between a
  4171. "work based on the library" and a "work that uses the library". The
  4172. former contains code derived from the library, whereas the latter must
  4173. be combined with the library in order to run.
  4174. GNU LESSER GENERAL PUBLIC LICENSE
  4175. TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  4176. 0. This License Agreement applies to any software library or other
  4177. program which contains a notice placed by the copyright holder or
  4178. other authorized party saying it may be distributed under the terms of
  4179. this Lesser General Public License (also called "this License").
  4180. Each licensee is addressed as "you".
  4181. A "library" means a collection of software functions and/or data
  4182. prepared so as to be conveniently linked with application programs
  4183. (which use some of those functions and data) to form executables.
  4184. The "Library", below, refers to any such software library or work
  4185. which has been distributed under these terms. A "work based on the
  4186. Library" means either the Library or any derivative work under
  4187. copyright law: that is to say, a work containing the Library or a
  4188. portion of it, either verbatim or with modifications and/or translated
  4189. straightforwardly into another language. (Hereinafter, translation is
  4190. included without limitation in the term "modification".)
  4191. "Source code" for a work means the preferred form of the work for
  4192. making modifications to it. For a library, complete source code means
  4193. all the source code for all modules it contains, plus any associated
  4194. interface definition files, plus the scripts used to control
  4195. compilation and installation of the library.
  4196. Activities other than copying, distribution and modification are not
  4197. covered by this License; they are outside its scope. The act of
  4198. running a program using the Library is not restricted, and output from
  4199. such a program is covered only if its contents constitute a work based
  4200. on the Library (independent of the use of the Library in a tool for
  4201. writing it). Whether that is true depends on what the Library does
  4202. and what the program that uses the Library does.
  4203. 1. You may copy and distribute verbatim copies of the Library's
  4204. complete source code as you receive it, in any medium, provided that
  4205. you conspicuously and appropriately publish on each copy an
  4206. appropriate copyright notice and disclaimer of warranty; keep intact
  4207. all the notices that refer to this License and to the absence of any
  4208. warranty; and distribute a copy of this License along with the
  4209. Library.
  4210. You may charge a fee for the physical act of transferring a copy,
  4211. and you may at your option offer warranty protection in exchange for a
  4212. fee.
  4213. 2. You may modify your copy or copies of the Library or any portion
  4214. of it, thus forming a work based on the Library, and copy and
  4215. distribute such modifications or work under the terms of Section 1
  4216. above, provided that you also meet all of these conditions:
  4217. a) The modified work must itself be a software library.
  4218. b) You must cause the files modified to carry prominent notices
  4219. stating that you changed the files and the date of any change.
  4220. c) You must cause the whole of the work to be licensed at no
  4221. charge to all third parties under the terms of this License.
  4222. d) If a facility in the modified Library refers to a function or a
  4223. table of data to be supplied by an application program that uses
  4224. the facility, other than as an argument passed when the facility
  4225. is invoked, then you must make a good faith effort to ensure that,
  4226. in the event an application does not supply such function or
  4227. table, the facility still operates, and performs whatever part of
  4228. its purpose remains meaningful.
  4229. (For example, a function in a library to compute square roots has
  4230. a purpose that is entirely well-defined independent of the
  4231. application. Therefore, Subsection 2d requires that any
  4232. application-supplied function or table used by this function must
  4233. be optional: if the application does not supply it, the square
  4234. root function must still compute square roots.)
  4235. These requirements apply to the modified work as a whole. If
  4236. identifiable sections of that work are not derived from the Library,
  4237. and can be reasonably considered independent and separate works in
  4238. themselves, then this License, and its terms, do not apply to those
  4239. sections when you distribute them as separate works. But when you
  4240. distribute the same sections as part of a whole which is a work based
  4241. on the Library, the distribution of the whole must be on the terms of
  4242. this License, whose permissions for other licensees extend to the
  4243. entire whole, and thus to each and every part regardless of who wrote
  4244. it.
  4245. Thus, it is not the intent of this section to claim rights or contest
  4246. your rights to work written entirely by you; rather, the intent is to
  4247. exercise the right to control the distribution of derivative or
  4248. collective works based on the Library.
  4249. In addition, mere aggregation of another work not based on the Library
  4250. with the Library (or with a work based on the Library) on a volume of
  4251. a storage or distribution medium does not bring the other work under
  4252. the scope of this License.
  4253. 3. You may opt to apply the terms of the ordinary GNU General Public
  4254. License instead of this License to a given copy of the Library. To do
  4255. this, you must alter all the notices that refer to this License, so
  4256. that they refer to the ordinary GNU General Public License, version 2,
  4257. instead of to this License. (If a newer version than version 2 of the
  4258. ordinary GNU General Public License has appeared, then you can specify
  4259. that version instead if you wish.) Do not make any other change in
  4260. these notices.
  4261. Once this change is made in a given copy, it is irreversible for
  4262. that copy, so the ordinary GNU General Public License applies to all
  4263. subsequent copies and derivative works made from that copy.
  4264. This option is useful when you wish to copy part of the code of
  4265. the Library into a program that is not a library.
  4266. 4. You may copy and distribute the Library (or a portion or
  4267. derivative of it, under Section 2) in object code or executable form
  4268. under the terms of Sections 1 and 2 above provided that you accompany
  4269. it with the complete corresponding machine-readable source code, which
  4270. must be distributed under the terms of Sections 1 and 2 above on a
  4271. medium customarily used for software interchange.
  4272. If distribution of object code is made by offering access to copy
  4273. from a designated place, then offering equivalent access to copy the
  4274. source code from the same place satisfies the requirement to
  4275. distribute the source code, even though third parties are not
  4276. compelled to copy the source along with the object code.
  4277. 5. A program that contains no derivative of any portion of the
  4278. Library, but is designed to work with the Library by being compiled or
  4279. linked with it, is called a "work that uses the Library". Such a
  4280. work, in isolation, is not a derivative work of the Library, and
  4281. therefore falls outside the scope of this License.
  4282. However, linking a "work that uses the Library" with the Library
  4283. creates an executable that is a derivative of the Library (because it
  4284. contains portions of the Library), rather than a "work that uses the
  4285. library". The executable is therefore covered by this License.
  4286. Section 6 states terms for distribution of such executables.
  4287. When a "work that uses the Library" uses material from a header file
  4288. that is part of the Library, the object code for the work may be a
  4289. derivative work of the Library even though the source code is not.
  4290. Whether this is true is especially significant if the work can be
  4291. linked without the Library, or if the work is itself a library. The
  4292. threshold for this to be true is not precisely defined by law.
  4293. If such an object file uses only numerical parameters, data
  4294. structure layouts and accessors, and small macros and small inline
  4295. functions (ten lines or less in length), then the use of the object
  4296. file is unrestricted, regardless of whether it is legally a derivative
  4297. work. (Executables containing this object code plus portions of the
  4298. Library will still fall under Section 6.)
  4299. Otherwise, if the work is a derivative of the Library, you may
  4300. distribute the object code for the work under the terms of Section 6.
  4301. Any executables containing that work also fall under Section 6,
  4302. whether or not they are linked directly with the Library itself.
  4303. 6. As an exception to the Sections above, you may also combine or
  4304. link a "work that uses the Library" with the Library to produce a
  4305. work containing portions of the Library, and distribute that work
  4306. under terms of your choice, provided that the terms permit
  4307. modification of the work for the customer's own use and reverse
  4308. engineering for debugging such modifications.
  4309. You must give prominent notice with each copy of the work that the
  4310. Library is used in it and that the Library and its use are covered by
  4311. this License. You must supply a copy of this License. If the work
  4312. during execution displays copyright notices, you must include the
  4313. copyright notice for the Library among them, as well as a reference
  4314. directing the user to the copy of this License. Also, you must do one
  4315. of these things:
  4316. a) Accompany the work with the complete corresponding
  4317. machine-readable source code for the Library including whatever
  4318. changes were used in the work (which must be distributed under
  4319. Sections 1 and 2 above); and, if the work is an executable linked
  4320. with the Library, with the complete machine-readable "work that
  4321. uses the Library", as object code and/or source code, so that the
  4322. user can modify the Library and then relink to produce a modified
  4323. executable containing the modified Library. (It is understood
  4324. that the user who changes the contents of definitions files in the
  4325. Library will not necessarily be able to recompile the application
  4326. to use the modified definitions.)
  4327. b) Use a suitable shared library mechanism for linking with the
  4328. Library. A suitable mechanism is one that (1) uses at run time a
  4329. copy of the library already present on the user's computer system,
  4330. rather than copying library functions into the executable, and (2)
  4331. will operate properly with a modified version of the library, if
  4332. the user installs one, as long as the modified version is
  4333. interface-compatible with the version that the work was made with.
  4334. c) Accompany the work with a written offer, valid for at
  4335. least three years, to give the same user the materials
  4336. specified in Subsection 6a, above, for a charge no more
  4337. than the cost of performing this distribution.
  4338. d) If distribution of the work is made by offering access to copy
  4339. from a designated place, offer equivalent access to copy the above
  4340. specified materials from the same place.
  4341. e) Verify that the user has already received a copy of these
  4342. materials or that you have already sent this user a copy.
  4343. For an executable, the required form of the "work that uses the
  4344. Library" must include any data and utility programs needed for
  4345. reproducing the executable from it. However, as a special exception,
  4346. the materials to be distributed need not include anything that is
  4347. normally distributed (in either source or binary form) with the major
  4348. components (compiler, kernel, and so on) of the operating system on
  4349. which the executable runs, unless that component itself accompanies
  4350. the executable.
  4351. It may happen that this requirement contradicts the license
  4352. restrictions of other proprietary libraries that do not normally
  4353. accompany the operating system. Such a contradiction means you cannot
  4354. use both them and the Library together in an executable that you
  4355. distribute.
  4356. 7. You may place library facilities that are a work based on the
  4357. Library side-by-side in a single library together with other library
  4358. facilities not covered by this License, and distribute such a combined
  4359. library, provided that the separate distribution of the work based on
  4360. the Library and of the other library facilities is otherwise
  4361. permitted, and provided that you do these two things:
  4362. a) Accompany the combined library with a copy of the same work
  4363. based on the Library, uncombined with any other library
  4364. facilities. This must be distributed under the terms of the
  4365. Sections above.
  4366. b) Give prominent notice with the combined library of the fact
  4367. that part of it is a work based on the Library, and explaining
  4368. where to find the accompanying uncombined form of the same work.
  4369. 8. You may not copy, modify, sublicense, link with, or distribute
  4370. the Library except as expressly provided under this License. Any
  4371. attempt otherwise to copy, modify, sublicense, link with, or
  4372. distribute the Library is void, and will automatically terminate your
  4373. rights under this License. However, parties who have received copies,
  4374. or rights, from you under this License will not have their licenses
  4375. terminated so long as such parties remain in full compliance.
  4376. 9. You are not required to accept this License, since you have not
  4377. signed it. However, nothing else grants you permission to modify or
  4378. distribute the Library or its derivative works. These actions are
  4379. prohibited by law if you do not accept this License. Therefore, by
  4380. modifying or distributing the Library (or any work based on the
  4381. Library), you indicate your acceptance of this License to do so, and
  4382. all its terms and conditions for copying, distributing or modifying
  4383. the Library or works based on it.
  4384. 10. Each time you redistribute the Library (or any work based on the
  4385. Library), the recipient automatically receives a license from the
  4386. original licensor to copy, distribute, link with or modify the Library
  4387. subject to these terms and conditions. You may not impose any further
  4388. restrictions on the recipients' exercise of the rights granted herein.
  4389. You are not responsible for enforcing compliance by third parties with
  4390. this License.
  4391. 11. If, as a consequence of a court judgment or allegation of patent
  4392. infringement or for any other reason (not limited to patent issues),
  4393. conditions are imposed on you (whether by court order, agreement or
  4394. otherwise) that contradict the conditions of this License, they do not
  4395. excuse you from the conditions of this License. If you cannot
  4396. distribute so as to satisfy simultaneously your obligations under this
  4397. License and any other pertinent obligations, then as a consequence you
  4398. may not distribute the Library at all. For example, if a patent
  4399. license would not permit royalty-free redistribution of the Library by
  4400. all those who receive copies directly or indirectly through you, then
  4401. the only way you could satisfy both it and this License would be to
  4402. refrain entirely from distribution of the Library.
  4403. If any portion of this section is held invalid or unenforceable under
  4404. any particular circumstance, the balance of the section is intended
  4405. to apply, and the section as a whole is intended to apply in other
  4406. circumstances.
  4407. It is not the purpose of this section to induce you to infringe any
  4408. patents or other property right claims or to contest validity of any
  4409. such claims; this section has the sole purpose of protecting the
  4410. integrity of the free software distribution system which is
  4411. implemented by public license practices. Many people have made
  4412. generous contributions to the wide range of software distributed
  4413. through that system in reliance on consistent application of that
  4414. system; it is up to the author/donor to decide if he or she is willing
  4415. to distribute software through any other system and a licensee cannot
  4416. impose that choice.
  4417. This section is intended to make thoroughly clear what is believed to
  4418. be a consequence of the rest of this License.
  4419. 12. If the distribution and/or use of the Library is restricted in
  4420. certain countries either by patents or by copyrighted interfaces, the
  4421. original copyright holder who places the Library under this License
  4422. may add an explicit geographical distribution limitation excluding
  4423. those countries, so that distribution is permitted only in or among
  4424. countries not thus excluded. In such case, this License incorporates
  4425. the limitation as if written in the body of this License.
  4426. 13. The Free Software Foundation may publish revised and/or new
  4427. versions of the Lesser General Public License from time to time.
  4428. Such new versions will be similar in spirit to the present version,
  4429. but may differ in detail to address new problems or concerns.
  4430. Each version is given a distinguishing version number. If the Library
  4431. specifies a version number of this License which applies to it and
  4432. "any later version", you have the option of following the terms and
  4433. conditions either of that version or of any later version published by
  4434. the Free Software Foundation. If the Library does not specify a
  4435. license version number, you may choose any version ever published by
  4436. the Free Software Foundation.
  4437. 14. If you wish to incorporate parts of the Library into other free
  4438. programs whose distribution conditions are incompatible with these,
  4439. write to the author to ask for permission. For software which is
  4440. copyrighted by the Free Software Foundation, write to the Free
  4441. Software Foundation; we sometimes make exceptions for this. Our
  4442. decision will be guided by the two goals of preserving the free status
  4443. of all derivatives of our free software and of promoting the sharing
  4444. and reuse of software generally.
  4445. NO WARRANTY
  4446. 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  4447. WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  4448. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  4449. OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  4450. KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  4451. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  4452. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  4453. LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  4454. THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  4455. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  4456. WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  4457. AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  4458. FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  4459. CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  4460. LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  4461. RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  4462. FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  4463. SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  4464. DAMAGES.
  4465. END OF TERMS AND CONDITIONS
  4466. How to Apply These Terms to Your New Libraries
  4467. If you develop a new library, and you want it to be of the greatest
  4468. possible use to the public, we recommend making it free software that
  4469. everyone can redistribute and change. You can do so by permitting
  4470. redistribution under these terms (or, alternatively, under the terms
  4471. of the ordinary General Public License).
  4472. To apply these terms, attach the following notices to the library.
  4473. It is safest to attach them to the start of each source file to most
  4474. effectively convey the exclusion of warranty; and each file should
  4475. have at least the "copyright" line and a pointer to where the full
  4476. notice is found.
  4477. <one line to give the library's name and a brief idea of what it does.>
  4478. Copyright (C) <year> <name of author>
  4479. This library is free software; you can redistribute it and/or
  4480. modify it under the terms of the GNU Lesser General Public
  4481. License as published by the Free Software Foundation; either
  4482. version 2.1 of the License, or (at your option) any later version.
  4483. This library is distributed in the hope that it will be useful,
  4484. but WITHOUT ANY WARRANTY; without even the implied warranty of
  4485. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  4486. Lesser General Public License for more details.
  4487. You should have received a copy of the GNU Lesser General Public
  4488. License along with this library; if not, write to the Free Software
  4489. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  4490. 02110-1301 USA
  4491. Also add information on how to contact you by electronic and paper mail.
  4492. You should also get your employer (if you work as a programmer) or your
  4493. school, if any, to sign a "copyright disclaimer" for the library, if
  4494. necessary. Here is a sample; alter the names:
  4495. Yoyodyne, Inc., hereby disclaims all copyright interest in the
  4496. library `Frob' (a library for tweaking knobs) written by James
  4497. Random Hacker.
  4498. <signature of Ty Coon>, 1 April 1990
  4499. Ty Coon, President of Vice
  4500. That's all there is to it!
  4501. ======================================================================
  4502. ======================================================================
  4503. Artistic License (Perl) 1.0
  4504. The "Artistic License"
  4505. Preamble
  4506. The intent of this document is to state the conditions under which a
  4507. Package may be copied, such that the Copyright Holder maintains some
  4508. semblance of artistic control over the development of the package,
  4509. while giving the users of the package the right to use and distribute
  4510. the Package in a more-or-less customary fashion, plus the right to make
  4511. reasonable modifications.
  4512. Definitions:
  4513. "Package" refers to the collection of files distributed by the
  4514. Copyright Holder, and derivatives of that collection of files
  4515. created through textual modification.
  4516. "Standard Version" refers to such a Package if it has not been
  4517. modified, or has been modified in accordance with the wishes
  4518. of the Copyright Holder as specified below.
  4519. "Copyright Holder" is whoever is named in the copyright or
  4520. copyrights for the package.
  4521. "You" is you, if you're thinking about copying or distributing
  4522. this Package.
  4523. "Reasonable copying fee" is whatever you can justify on the
  4524. basis of media cost, duplication charges, time of people involved,
  4525. and so on. (You will not be required to justify it to the
  4526. Copyright Holder, but only to the computing community at large
  4527. as a market that must bear the fee.)
  4528. "Freely Available" means that no fee is charged for the item
  4529. itself, though there may be fees involved in handling the item.
  4530. It also means that recipients of the item may redistribute it
  4531. under the same conditions they received it.
  4532. 1. You may make and give away verbatim copies of the source form of the
  4533. Standard Version of this Package without restriction, provided that you
  4534. duplicate all of the original copyright notices and associated disclaimers.
  4535. 2. You may apply bug fixes, portability fixes and other modifications
  4536. derived from the Public Domain or from the Copyright Holder. A Package
  4537. modified in such a way shall still be considered the Standard Version.
  4538. 3. You may otherwise modify your copy of this Package in any way, provided
  4539. that you insert a prominent notice in each changed file stating how and
  4540. when you changed that file, and provided that you do at least ONE of the
  4541. following:
  4542. a) place your modifications in the Public Domain or otherwise make them
  4543. Freely Available, such as by posting said modifications to Usenet or
  4544. an equivalent medium, or placing the modifications on a major archive
  4545. site such as uunet.uu.net, or by allowing the Copyright Holder to include
  4546. your modifications in the Standard Version of the Package.
  4547. b) use the modified Package only within your corporation or organization.
  4548. c) rename any non-standard executables so the names do not conflict
  4549. with standard executables, which must also be provided, and provide
  4550. a separate manual page for each non-standard executable that clearly
  4551. documents how it differs from the Standard Version.
  4552. d) make other distribution arrangements with the Copyright Holder.
  4553. 4. You may distribute the programs of this Package in object code or
  4554. executable form, provided that you do at least ONE of the following:
  4555. a) distribute a Standard Version of the executables and library files,
  4556. together with instructions (in the manual page or equivalent) on where
  4557. to get the Standard Version.
  4558. b) accompany the distribution with the machine-readable source of
  4559. the Package with your modifications.
  4560. c) give non-standard executables non-standard names, and clearly
  4561. document the differences in manual pages (or equivalent), together
  4562. with instructions on where to get the Standard Version.
  4563. d) make other distribution arrangements with the Copyright Holder.
  4564. 5. You may charge a reasonable copying fee for any distribution of this
  4565. Package. You may charge any fee you choose for support of this
  4566. Package. You may not charge a fee for this Package itself. However,
  4567. you may distribute this Package in aggregate with other (possibly
  4568. commercial) programs as part of a larger (possibly commercial) software
  4569. distribution provided that you do not advertise this Package as a
  4570. product of your own. You may embed this Package's interpreter within
  4571. an executable of yours (by linking); this shall be construed as a mere
  4572. form of aggregation, provided that the complete Standard Version of the
  4573. interpreter is so embedded.
  4574. 6. The scripts and library files supplied as input to or produced as
  4575. output from the programs of this Package do not automatically fall
  4576. under the copyright of this Package, but belong to whoever generated
  4577. them, and may be sold commercially, and may be aggregated with this
  4578. Package. If such scripts or library files are aggregated with this
  4579. Package via the so-called "undump" or "unexec" methods of producing a
  4580. binary executable image, then distribution of such an image shall
  4581. neither be construed as a distribution of this Package nor shall it
  4582. fall under the restrictions of Paragraphs 3 and 4, provided that you do
  4583. not represent such an executable image as a Standard Version of this
  4584. Package.
  4585. 7. C subroutines (or comparably compiled subroutines in other
  4586. languages) supplied by you and linked into this Package in order to
  4587. emulate subroutines and variables of the language defined by this
  4588. Package shall not be considered part of this Package, but are the
  4589. equivalent of input as in Paragraph 6, provided these subroutines do
  4590. not change the language in any way that would cause it to fail the
  4591. regression tests for the language.
  4592. 8. Aggregation of this Package with a commercial distribution is always
  4593. permitted provided that the use of this Package is embedded; that is,
  4594. when no overt attempt is made to make this Package's interfaces visible
  4595. to the end user of the commercial distribution. Such use shall not be
  4596. construed as a distribution of this Package.
  4597. 9. The name of the Copyright Holder may not be used to endorse or promote
  4598. products derived from this software without specific prior written
  4599. permission.
  4600. 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
  4601. IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  4602. WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  4603. The End
  4604. ======================================================================
  4605. ======================================================================
  4606. Written Offer for Source Code
  4607. For any software that you receive from Oracle in binary form which is
  4608. licensed under an open source license that gives you the right to
  4609. receive the source code for that binary, you can obtain a copy of the
  4610. applicable source code by visiting
  4611. http://www.oracle.com/goto/opensourcecode. If the source code for the
  4612. binary was not provided to you with the binary, you can also receive a
  4613. copy of the source code on physical media by submitting a written
  4614. request to the address listed below or by sending an email to Oracle
  4615. using the following link:
  4616. http://www.oracle.com/goto/opensourcecode/request.
  4617. Oracle America, Inc.
  4618. Attn: Senior Vice President
  4619. Development and Engineering Legal
  4620. 500 Oracle Parkway, 10th Floor
  4621. Redwood Shores, CA 94065
  4622. Your request should include:
  4623. * The name of the binary for which you are requesting the source code
  4624. * The name and version number of the Oracle product containing the
  4625. binary
  4626. * The date you received the Oracle product
  4627. * Your name
  4628. * Your company name (if applicable)
  4629. * Your return mailing address and email, and
  4630. * A telephone number in the event we need to reach you.
  4631. We may charge you a fee to cover the cost of physical media and
  4632. processing.
  4633. Your request must be sent
  4634. a. within three (3) years of the date you received the Oracle product
  4635. that included the binary that is the subject of your request, or
  4636. b. in the case of code licensed under the GPL v3 for as long as Oracle
  4637. offers spare parts or customer support for that product model.