Pods-jiaPei-acknowledgements.plist 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>PreferenceSpecifiers</key>
  6. <array>
  7. <dict>
  8. <key>FooterText</key>
  9. <string>This application makes use of the following third party libraries:</string>
  10. <key>Title</key>
  11. <string>Acknowledgements</string>
  12. <key>Type</key>
  13. <string>PSGroupSpecifier</string>
  14. </dict>
  15. <dict>
  16. <key>FooterText</key>
  17. <string>MIT License
  18. Copyright (c) 2022 ADSuyi_Kit
  19. Permission is hereby granted, free of charge, to any person obtaining a copy
  20. of this software and associated documentation files (the "Software"), to deal
  21. in the Software without restriction, including without limitation the rights
  22. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  23. copies of the Software, and to permit persons to whom the Software is
  24. furnished to do so, subject to the following conditions:
  25. The above copyright notice and this permission notice shall be included in all
  26. copies or substantial portions of the Software.
  27. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  28. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  29. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  30. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  31. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  32. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  33. SOFTWARE.
  34. </string>
  35. <key>License</key>
  36. <string>MIT</string>
  37. <key>Title</key>
  38. <string>ADSuyiKit</string>
  39. <key>Type</key>
  40. <string>PSGroupSpecifier</string>
  41. </dict>
  42. <dict>
  43. <key>FooterText</key>
  44. <string>MIT License
  45. Copyright (c) 2022 ADSuyi_Kit
  46. Permission is hereby granted, free of charge, to any person obtaining a copy
  47. of this software and associated documentation files (the "Software"), to deal
  48. in the Software without restriction, including without limitation the rights
  49. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  50. copies of the Software, and to permit persons to whom the Software is
  51. furnished to do so, subject to the following conditions:
  52. The above copyright notice and this permission notice shall be included in all
  53. copies or substantial portions of the Software.
  54. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  55. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  56. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  57. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  58. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  59. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  60. SOFTWARE.
  61. </string>
  62. <key>License</key>
  63. <string>MIT</string>
  64. <key>Title</key>
  65. <string>ADSuyiLocationManager</string>
  66. <key>Type</key>
  67. <string>PSGroupSpecifier</string>
  68. </dict>
  69. <dict>
  70. <key>FooterText</key>
  71. <string>MIT License
  72. Copyright (c) 2022 ADSuyi_Kit
  73. Permission is hereby granted, free of charge, to any person obtaining a copy
  74. of this software and associated documentation files (the "Software"), to deal
  75. in the Software without restriction, including without limitation the rights
  76. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  77. copies of the Software, and to permit persons to whom the Software is
  78. furnished to do so, subject to the following conditions:
  79. The above copyright notice and this permission notice shall be included in all
  80. copies or substantial portions of the Software.
  81. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  82. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  83. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  84. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  85. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  86. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  87. SOFTWARE.
  88. </string>
  89. <key>License</key>
  90. <string>MIT</string>
  91. <key>Title</key>
  92. <string>ADSuyiSDK</string>
  93. <key>Type</key>
  94. <string>PSGroupSpecifier</string>
  95. </dict>
  96. <dict>
  97. <key>FooterText</key>
  98. <string>Copyright (c) 2011-2020 Alamofire Software Foundation (http://alamofire.org/)
  99. Permission is hereby granted, free of charge, to any person obtaining a copy
  100. of this software and associated documentation files (the "Software"), to deal
  101. in the Software without restriction, including without limitation the rights
  102. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  103. copies of the Software, and to permit persons to whom the Software is
  104. furnished to do so, subject to the following conditions:
  105. The above copyright notice and this permission notice shall be included in
  106. all copies or substantial portions of the Software.
  107. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  108. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  109. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  110. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  111. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  112. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  113. THE SOFTWARE.
  114. </string>
  115. <key>License</key>
  116. <string>MIT</string>
  117. <key>Title</key>
  118. <string>AFNetworking</string>
  119. <key>Type</key>
  120. <string>PSGroupSpecifier</string>
  121. </dict>
  122. <dict>
  123. <key>FooterText</key>
  124. <string>MIT License
  125. Copyright (c) 2018 Bytedance Inc.
  126. Permission is hereby granted, free of charge, to any person obtaining a copy
  127. of this software and associated documentation files (the "Software"), to deal
  128. in the Software without restriction, including without limitation the rights
  129. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  130. copies of the Software, and to permit persons to whom the Software is
  131. furnished to do so, subject to the following conditions:
  132. The above copyright notice and this permission notice shall be included in all
  133. copies or substantial portions of the Software.
  134. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  135. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  136. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  137. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  138. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  139. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  140. SOFTWARE.
  141. </string>
  142. <key>License</key>
  143. <string>MIT</string>
  144. <key>Title</key>
  145. <string>Ads-CN</string>
  146. <key>Type</key>
  147. <string>PSGroupSpecifier</string>
  148. </dict>
  149. <dict>
  150. <key>FooterText</key>
  151. <string>MIT License
  152. Copyright (c) 2018 Antfin
  153. Permission is hereby granted, free of charge, to any person obtaining a copy
  154. of this software and associated documentation files (the "Software"), to deal
  155. in the Software without restriction, including without limitation the rights
  156. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  157. copies of the Software, and to permit persons to whom the Software is
  158. furnished to do so, subject to the following conditions:
  159. The above copyright notice and this permission notice shall be included in all
  160. copies or substantial portions of the Software.
  161. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  162. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  163. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  164. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  165. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  166. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  167. SOFTWARE.
  168. </string>
  169. <key>License</key>
  170. <string>MIT</string>
  171. <key>Title</key>
  172. <string>AlipaySDK-iOS</string>
  173. <key>Type</key>
  174. <string>PSGroupSpecifier</string>
  175. </dict>
  176. <dict>
  177. <key>FooterText</key>
  178. <string>Copyright (c) 2020 BaiduLBS</string>
  179. <key>License</key>
  180. <string>Copyright</string>
  181. <key>Title</key>
  182. <string>BMKLocationKit</string>
  183. <key>Type</key>
  184. <string>PSGroupSpecifier</string>
  185. </dict>
  186. <dict>
  187. <key>FooterText</key>
  188. <string>Copyright (c) 2015 BaiduLBS</string>
  189. <key>License</key>
  190. <string>Copyright</string>
  191. <key>Title</key>
  192. <string>BaiduMapKit</string>
  193. <key>Type</key>
  194. <string>PSGroupSpecifier</string>
  195. </dict>
  196. <dict>
  197. <key>FooterText</key>
  198. <string>Copyright (C) 2017 Tencent Bugly, Inc. All rights reserved.
  199. </string>
  200. <key>License</key>
  201. <string>Copyright</string>
  202. <key>Title</key>
  203. <string>Bugly</string>
  204. <key>Type</key>
  205. <string>PSGroupSpecifier</string>
  206. </dict>
  207. <dict>
  208. <key>FooterText</key>
  209. <string>MIT License
  210. Copyright (c) 2019 974794055
  211. Permission is hereby granted, free of charge, to any person obtaining a copy
  212. of this software and associated documentation files (the "Software"), to deal
  213. in the Software without restriction, including without limitation the rights
  214. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  215. copies of the Software, and to permit persons to whom the Software is
  216. furnished to do so, subject to the following conditions:
  217. The above copyright notice and this permission notice shall be included in all
  218. copies or substantial portions of the Software.
  219. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  220. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  221. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  222. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  223. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  224. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  225. SOFTWARE.
  226. </string>
  227. <key>License</key>
  228. <string>MIT</string>
  229. <key>Title</key>
  230. <string>CGXVerticalMenuView-OC</string>
  231. <key>Type</key>
  232. <string>PSGroupSpecifier</string>
  233. </dict>
  234. <dict>
  235. <key>FooterText</key>
  236. <string>Copyright (c) 2022 华资融创 &lt;10675175+huazi-rongchuang@user.noreply.gitee.com&gt;
  237. Permission is hereby granted, free of charge, to any person obtaining a copy
  238. of this software and associated documentation files (the "Software"), to deal
  239. in the Software without restriction, including without limitation the rights
  240. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  241. copies of the Software, and to permit persons to whom the Software is
  242. furnished to do so, subject to the following conditions:
  243. The above copyright notice and this permission notice shall be included in
  244. all copies or substantial portions of the Software.
  245. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  246. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  247. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  248. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  249. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  250. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  251. THE SOFTWARE.
  252. </string>
  253. <key>License</key>
  254. <string>MIT</string>
  255. <key>Title</key>
  256. <string>CXHAdSDK-Adapter</string>
  257. <key>Type</key>
  258. <string>PSGroupSpecifier</string>
  259. </dict>
  260. <dict>
  261. <key>FooterText</key>
  262. <string>Copyright (c) 2022 华资融创 &lt;10675175+huazi-rongchuang@user.noreply.gitee.com&gt;
  263. Permission is hereby granted, free of charge, to any person obtaining a copy
  264. of this software and associated documentation files (the "Software"), to deal
  265. in the Software without restriction, including without limitation the rights
  266. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  267. copies of the Software, and to permit persons to whom the Software is
  268. furnished to do so, subject to the following conditions:
  269. The above copyright notice and this permission notice shall be included in
  270. all copies or substantial portions of the Software.
  271. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  272. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  273. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  274. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  275. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  276. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  277. THE SOFTWARE.
  278. </string>
  279. <key>License</key>
  280. <string>MIT</string>
  281. <key>Title</key>
  282. <string>CXHAdSDK-Kit</string>
  283. <key>Type</key>
  284. <string>PSGroupSpecifier</string>
  285. </dict>
  286. <dict>
  287. <key>FooterText</key>
  288. <string>Copyright (c) 2022 华资融创 &lt;10675175+huazi-rongchuang@user.noreply.gitee.com&gt;
  289. Permission is hereby granted, free of charge, to any person obtaining a copy
  290. of this software and associated documentation files (the "Software"), to deal
  291. in the Software without restriction, including without limitation the rights
  292. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  293. copies of the Software, and to permit persons to whom the Software is
  294. furnished to do so, subject to the following conditions:
  295. The above copyright notice and this permission notice shall be included in
  296. all copies or substantial portions of the Software.
  297. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  298. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  299. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  300. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  301. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  302. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  303. THE SOFTWARE.
  304. </string>
  305. <key>License</key>
  306. <string>MIT</string>
  307. <key>Title</key>
  308. <string>CXHAdSDK</string>
  309. <key>Type</key>
  310. <string>PSGroupSpecifier</string>
  311. </dict>
  312. <dict>
  313. <key>FooterText</key>
  314. <string>Public Domain License
  315. The CocoaAsyncSocket project is in the public domain.
  316. The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003.
  317. Updated and maintained by Deusty LLC and the Apple development community.
  318. </string>
  319. <key>License</key>
  320. <string>public domain</string>
  321. <key>Title</key>
  322. <string>CocoaAsyncSocket</string>
  323. <key>Type</key>
  324. <string>PSGroupSpecifier</string>
  325. </dict>
  326. <dict>
  327. <key>FooterText</key>
  328. <string>The MIT License (MIT)
  329. Copyright (c) 2013 Kelp https://github.com/kelp404
  330. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  331. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  332. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  333. </string>
  334. <key>License</key>
  335. <string>MIT</string>
  336. <key>Title</key>
  337. <string>CocoaSecurity</string>
  338. <key>Type</key>
  339. <string>PSGroupSpecifier</string>
  340. </dict>
  341. <dict>
  342. <key>FooterText</key>
  343. <string># License
  344. ## MIT License
  345. Copyright (c) 2013 Daniel Amitay (http://danielamitay.com)
  346. Permission is hereby granted, free of charge, to any person obtaining a copy
  347. of this software and associated documentation files (the "Software"), to deal
  348. in the Software without restriction, including without limitation the rights
  349. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  350. copies of the Software, and to permit persons to whom the Software is
  351. furnished to do so, subject to the following conditions:
  352. The above copyright notice and this permission notice shall be included in
  353. all copies or substantial portions of the Software.
  354. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  355. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  356. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  357. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  358. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  359. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  360. THE SOFTWARE.</string>
  361. <key>License</key>
  362. <string>MIT</string>
  363. <key>Title</key>
  364. <string>DACircularProgress</string>
  365. <key>Type</key>
  366. <string>PSGroupSpecifier</string>
  367. </dict>
  368. <dict>
  369. <key>FooterText</key>
  370. <string>Copyright (c) 2013-2016, Douban Inc. &lt;http://www.douban.com/&gt;
  371. All rights reserved.
  372. Redistribution and use in source and binary forms, with or without
  373. modification, are permitted provided that the following conditions are
  374. met:
  375. * Redistributions of source code must retain the above copyright
  376. notice, this list of conditions and the following disclaimer.
  377. * Redistributions in binary form must reproduce the above
  378. copyright notice, this list of conditions and the following disclaimer
  379. in the documentation and/or other materials provided with the
  380. distribution.
  381. * Neither the name of the Douban Inc. nor the names of its
  382. contributors may be used to endorse or promote products derived from
  383. this software without specific prior written permission.
  384. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  385. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  386. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  387. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  388. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  389. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  390. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  391. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  392. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  393. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  394. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  395. </string>
  396. <key>License</key>
  397. <string>BSD</string>
  398. <key>Title</key>
  399. <string>DOUAudioStreamer</string>
  400. <key>Type</key>
  401. <string>PSGroupSpecifier</string>
  402. </dict>
  403. <dict>
  404. <key>FooterText</key>
  405. <string>License
  406. For FBRetainCycleDetector software
  407. Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
  408. Redistribution and use in source and binary forms, with or without modification,
  409. are permitted provided that the following conditions are met:
  410. * Redistributions of source code must retain the above copyright notice, this
  411. list of conditions and the following disclaimer.
  412. * Redistributions in binary form must reproduce the above copyright notice,
  413. this list of conditions and the following disclaimer in the documentation
  414. and/or other materials provided with the distribution.
  415. * Neither the name Facebook nor the names of its contributors may be used to
  416. endorse or promote products derived from this software without specific
  417. prior written permission.
  418. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  419. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  420. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  421. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  422. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  423. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  424. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  425. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  426. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  427. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  428. </string>
  429. <key>License</key>
  430. <string>BSD</string>
  431. <key>Title</key>
  432. <string>FBRetainCycleDetector</string>
  433. <key>Type</key>
  434. <string>PSGroupSpecifier</string>
  435. </dict>
  436. <dict>
  437. <key>FooterText</key>
  438. <string>The MIT License (MIT)
  439. Copyright (c) 2016 Fabio Caccamo - fabio.caccamo@gmail.com
  440. Permission is hereby granted, free of charge, to any person obtaining a copy
  441. of this software and associated documentation files (the "Software"), to deal
  442. in the Software without restriction, including without limitation the rights
  443. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  444. copies of the Software, and to permit persons to whom the Software is
  445. furnished to do so, subject to the following conditions:
  446. The above copyright notice and this permission notice shall be included in
  447. all copies or substantial portions of the Software.
  448. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  449. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  450. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  451. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  452. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  453. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  454. THE SOFTWARE.
  455. </string>
  456. <key>License</key>
  457. <string>MIT</string>
  458. <key>Title</key>
  459. <string>FCUUID</string>
  460. <key>Type</key>
  461. <string>PSGroupSpecifier</string>
  462. </dict>
  463. <dict>
  464. <key>FooterText</key>
  465. <string>The MIT License (MIT)
  466. Copyright (c) 2015
  467. Permission is hereby granted, free of charge, to any person obtaining a copy
  468. of this software and associated documentation files (the "Software"), to deal
  469. in the Software without restriction, including without limitation the rights
  470. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  471. copies of the Software, and to permit persons to whom the Software is
  472. furnished to do so, subject to the following conditions:
  473. The above copyright notice and this permission notice shall be included in all
  474. copies or substantial portions of the Software.
  475. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  476. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  477. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  478. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  479. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  480. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  481. SOFTWARE.
  482. </string>
  483. <key>License</key>
  484. <string>MIT</string>
  485. <key>Title</key>
  486. <string>FDFullscreenPopGesture</string>
  487. <key>Type</key>
  488. <string>PSGroupSpecifier</string>
  489. </dict>
  490. <dict>
  491. <key>FooterText</key>
  492. <string>The MIT License (MIT)
  493. Copyright (c) 2014-2016 Flipboard
  494. Permission is hereby granted, free of charge, to any person obtaining a copy
  495. of this software and associated documentation files (the "Software"), to deal
  496. in the Software without restriction, including without limitation the rights
  497. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  498. copies of the Software, and to permit persons to whom the Software is
  499. furnished to do so, subject to the following conditions:
  500. The above copyright notice and this permission notice shall be included in all
  501. copies or substantial portions of the Software.
  502. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  503. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  504. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  505. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  506. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  507. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  508. SOFTWARE.
  509. </string>
  510. <key>License</key>
  511. <string>MIT</string>
  512. <key>Title</key>
  513. <string>FLAnimatedImage</string>
  514. <key>Type</key>
  515. <string>PSGroupSpecifier</string>
  516. </dict>
  517. <dict>
  518. <key>FooterText</key>
  519. <string>If you are using FMDB in your project, I'd love to hear about it. Let Gus know
  520. by sending an email to gus@flyingmeat.com.
  521. And if you happen to come across either Gus Mueller or Rob Ryan in a bar, you
  522. might consider purchasing a drink of their choosing if FMDB has been useful to
  523. you.
  524. Finally, and shortly, this is the MIT License.
  525. Copyright (c) 2008-2014 Flying Meat Inc.
  526. Permission is hereby granted, free of charge, to any person obtaining a copy
  527. of this software and associated documentation files (the "Software"), to deal
  528. in the Software without restriction, including without limitation the rights
  529. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  530. copies of the Software, and to permit persons to whom the Software is
  531. furnished to do so, subject to the following conditions:
  532. The above copyright notice and this permission notice shall be included in
  533. all copies or substantial portions of the Software.
  534. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  535. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  536. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  537. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  538. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  539. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  540. THE SOFTWARE.</string>
  541. <key>License</key>
  542. <string>MIT</string>
  543. <key>Title</key>
  544. <string>FMDB</string>
  545. <key>Type</key>
  546. <string>PSGroupSpecifier</string>
  547. </dict>
  548. <dict>
  549. <key>FooterText</key>
  550. <string>Copyright 2017 Tencent Inc. All Rights Reserved.</string>
  551. <key>License</key>
  552. <string>Copyright</string>
  553. <key>Title</key>
  554. <string>GDTMobSDK</string>
  555. <key>Type</key>
  556. <string>PSGroupSpecifier</string>
  557. </dict>
  558. <dict>
  559. <key>FooterText</key>
  560. <string>MIT License
  561. Copyright (c) 2017 高坤
  562. Permission is hereby granted, free of charge, to any person obtaining a copy
  563. of this software and associated documentation files (the "Software"), to deal
  564. in the Software without restriction, including without limitation the rights
  565. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  566. copies of the Software, and to permit persons to whom the Software is
  567. furnished to do so, subject to the following conditions:
  568. The above copyright notice and this permission notice shall be included in all
  569. copies or substantial portions of the Software.
  570. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  571. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  572. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  573. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  574. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  575. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  576. SOFTWARE.
  577. </string>
  578. <key>License</key>
  579. <string>MIT</string>
  580. <key>Title</key>
  581. <string>GKPhotoBrowser</string>
  582. <key>Type</key>
  583. <string>PSGroupSpecifier</string>
  584. </dict>
  585. <dict>
  586. <key>FooterText</key>
  587. <string>Copyright (c) 2020 1094887059@qq.com &lt;1094887059@qq.com&gt;
  588. Permission is hereby granted, free of charge, to any person obtaining a copy
  589. of this software and associated documentation files (the "Software"), to deal
  590. in the Software without restriction, including without limitation the rights
  591. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  592. copies of the Software, and to permit persons to whom the Software is
  593. furnished to do so, subject to the following conditions:
  594. The above copyright notice and this permission notice shall be included in
  595. all copies or substantial portions of the Software.
  596. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  597. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  598. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  599. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  600. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  601. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  602. THE SOFTWARE.
  603. </string>
  604. <key>License</key>
  605. <string>MIT</string>
  606. <key>Title</key>
  607. <string>GKSliderView</string>
  608. <key>Type</key>
  609. <string>PSGroupSpecifier</string>
  610. </dict>
  611. <dict>
  612. <key>FooterText</key>
  613. <string>MIT License
  614. Copyright (c) 2020 个推实验室
  615. Permission is hereby granted, free of charge, to any person obtaining a copy
  616. of this software and associated documentation files (the "Software"), to deal
  617. in the Software without restriction, including without limitation the rights
  618. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  619. copies of the Software, and to permit persons to whom the Software is
  620. furnished to do so, subject to the following conditions:
  621. The above copyright notice and this permission notice shall be included in all
  622. copies or substantial portions of the Software.
  623. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  624. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  625. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  626. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  627. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  628. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  629. SOFTWARE.
  630. </string>
  631. <key>License</key>
  632. <string>MIT</string>
  633. <key>Title</key>
  634. <string>GTCommonSDK</string>
  635. <key>Type</key>
  636. <string>PSGroupSpecifier</string>
  637. </dict>
  638. <dict>
  639. <key>FooterText</key>
  640. <string>The MIT License (MIT)
  641. Copyright (c) 2015 个推实验室
  642. Permission is hereby granted, free of charge, to any person obtaining a copy
  643. of this software and associated documentation files (the "Software"), to deal
  644. in the Software without restriction, including without limitation the rights
  645. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  646. copies of the Software, and to permit persons to whom the Software is
  647. furnished to do so, subject to the following conditions:
  648. The above copyright notice and this permission notice shall be included in all
  649. copies or substantial portions of the Software.
  650. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  651. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  652. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  653. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  654. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  655. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  656. SOFTWARE.
  657. </string>
  658. <key>License</key>
  659. <string>MIT</string>
  660. <key>Title</key>
  661. <string>GTSDK</string>
  662. <key>Type</key>
  663. <string>PSGroupSpecifier</string>
  664. </dict>
  665. <dict>
  666. <key>FooterText</key>
  667. <string>MIT License
  668. Copyright (c) 2019 Heath Wang
  669. Permission is hereby granted, free of charge, to any person obtaining a copy
  670. of this software and associated documentation files (the "Software"), to deal
  671. in the Software without restriction, including without limitation the rights
  672. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  673. copies of the Software, and to permit persons to whom the Software is
  674. furnished to do so, subject to the following conditions:
  675. The above copyright notice and this permission notice shall be included in all
  676. copies or substantial portions of the Software.
  677. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  678. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  679. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  680. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  681. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  682. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  683. SOFTWARE.
  684. </string>
  685. <key>License</key>
  686. <string>MIT</string>
  687. <key>Title</key>
  688. <string>HWPanModal</string>
  689. <key>Type</key>
  690. <string>PSGroupSpecifier</string>
  691. </dict>
  692. <dict>
  693. <key>FooterText</key>
  694. <string>The MIT License (MIT)
  695. Copyright (c) 2011-2019 qiniu.com
  696. Permission is hereby granted, free of charge, to any person obtaining a copy
  697. of this software and associated documentation files (the "Software"), to deal
  698. in the Software without restriction, including without limitation the rights
  699. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  700. copies of the Software, and to permit persons to whom the Software is
  701. furnished to do so, subject to the following conditions:
  702. The above copyright notice and this permission notice shall be included in
  703. all copies or substantial portions of the Software.
  704. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  705. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  706. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  707. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  708. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  709. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  710. THE SOFTWARE.
  711. </string>
  712. <key>License</key>
  713. <string>MIT</string>
  714. <key>Title</key>
  715. <string>HappyDNS</string>
  716. <key>Type</key>
  717. <string>PSGroupSpecifier</string>
  718. </dict>
  719. <dict>
  720. <key>FooterText</key>
  721. <string>The MIT License (MIT)
  722. Copyright (c) 2015 Ideais Mobile
  723. Permission is hereby granted, free of charge, to any person obtaining a copy
  724. of this software and associated documentation files (the "Software"), to deal
  725. in the Software without restriction, including without limitation the rights
  726. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  727. copies of the Software, and to permit persons to whom the Software is
  728. furnished to do so, subject to the following conditions:
  729. The above copyright notice and this permission notice shall be included in
  730. all copies or substantial portions of the Software.
  731. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  732. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  733. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  734. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  735. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  736. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  737. THE SOFTWARE.</string>
  738. <key>License</key>
  739. <string>MIT</string>
  740. <key>Title</key>
  741. <string>IDMPhotoBrowser</string>
  742. <key>Type</key>
  743. <string>PSGroupSpecifier</string>
  744. </dict>
  745. <dict>
  746. <key>FooterText</key>
  747. <string>Copyright (c) 2018 任子丰 &lt;459643690@qq.com&gt;
  748. Permission is hereby granted, free of charge, to any person obtaining a copy
  749. of this software and associated documentation files (the "Software"), to deal
  750. in the Software without restriction, including without limitation the rights
  751. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  752. copies of the Software, and to permit persons to whom the Software is
  753. furnished to do so, subject to the following conditions:
  754. The above copyright notice and this permission notice shall be included in
  755. all copies or substantial portions of the Software.
  756. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  757. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  758. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  759. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  760. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  761. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  762. THE SOFTWARE.
  763. </string>
  764. <key>License</key>
  765. <string>MIT</string>
  766. <key>Title</key>
  767. <string>IJKMediaFramework</string>
  768. <key>Type</key>
  769. <string>PSGroupSpecifier</string>
  770. </dict>
  771. <dict>
  772. <key>FooterText</key>
  773. <string>MIT License
  774. Copyright (c) 2013-2017 Iftekhar Qurashi
  775. Permission is hereby granted, free of charge, to any person obtaining a copy
  776. of this software and associated documentation files (the "Software"), to deal
  777. in the Software without restriction, including without limitation the rights
  778. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  779. copies of the Software, and to permit persons to whom the Software is
  780. furnished to do so, subject to the following conditions:
  781. The above copyright notice and this permission notice shall be included in all
  782. copies or substantial portions of the Software.
  783. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  784. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  785. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  786. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  787. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  788. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  789. SOFTWARE.
  790. </string>
  791. <key>License</key>
  792. <string>MIT</string>
  793. <key>Title</key>
  794. <string>IQKeyboardManager</string>
  795. <key>Type</key>
  796. <string>PSGroupSpecifier</string>
  797. </dict>
  798. <dict>
  799. <key>FooterText</key>
  800. <string>Copyright (c) 2012-2016 Marin Todorov and JSONModel contributors
  801. Permission is hereby granted, free of charge, to any person obtaining a copy of
  802. this software and associated documentation files (the "Software"), to deal in
  803. the Software without restriction, including without limitation the rights to
  804. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  805. the Software, and to permit persons to whom the Software is furnished to do so,
  806. subject to the following conditions:
  807. The above copyright notice and this permission notice shall be included in all
  808. copies or substantial portions of the Software.
  809. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  810. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  811. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  812. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  813. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  814. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  815. </string>
  816. <key>License</key>
  817. <string>MIT</string>
  818. <key>Title</key>
  819. <string>JSONModel</string>
  820. <key>Type</key>
  821. <string>PSGroupSpecifier</string>
  822. </dict>
  823. <dict>
  824. <key>FooterText</key>
  825. <string>MIT License
  826. Copyright (c) 2018 暴走的鑫鑫
  827. Permission is hereby granted, free of charge, to any person obtaining a copy
  828. of this software and associated documentation files (the "Software"), to deal
  829. in the Software without restriction, including without limitation the rights
  830. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  831. copies of the Software, and to permit persons to whom the Software is
  832. furnished to do so, subject to the following conditions:
  833. The above copyright notice and this permission notice shall be included in all
  834. copies or substantial portions of the Software.
  835. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  836. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  837. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  838. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  839. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  840. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  841. SOFTWARE.
  842. </string>
  843. <key>License</key>
  844. <string>MIT</string>
  845. <key>Title</key>
  846. <string>JXCategoryView</string>
  847. <key>Type</key>
  848. <string>PSGroupSpecifier</string>
  849. </dict>
  850. <dict>
  851. <key>FooterText</key>
  852. <string>MIT License
  853. Copyright (c) 2018 暴走的鑫鑫
  854. Permission is hereby granted, free of charge, to any person obtaining a copy
  855. of this software and associated documentation files (the "Software"), to deal
  856. in the Software without restriction, including without limitation the rights
  857. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  858. copies of the Software, and to permit persons to whom the Software is
  859. furnished to do so, subject to the following conditions:
  860. The above copyright notice and this permission notice shall be included in all
  861. copies or substantial portions of the Software.
  862. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  863. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  864. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  865. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  866. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  867. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  868. SOFTWARE.
  869. </string>
  870. <key>License</key>
  871. <string>MIT</string>
  872. <key>Title</key>
  873. <string>JXPagingView</string>
  874. <key>Type</key>
  875. <string>PSGroupSpecifier</string>
  876. </dict>
  877. <dict>
  878. <key>FooterText</key>
  879. <string>MIT License
  880. Copyright (c) 2018 唱吧
  881. Permission is hereby granted, free of charge, to any person obtaining a copy
  882. of this software and associated documentation files (the "Software"), to deal
  883. in the Software without restriction, including without limitation the rights
  884. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  885. copies of the Software, and to permit persons to whom the Software is
  886. furnished to do so, subject to the following conditions:
  887. The above copyright notice and this permission notice shall be included in all
  888. copies or substantial portions of the Software.
  889. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  890. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  891. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  892. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  893. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  894. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  895. SOFTWARE.
  896. </string>
  897. <key>License</key>
  898. <string>MIT</string>
  899. <key>Title</key>
  900. <string>KTVCocoaHTTPServer</string>
  901. <key>Type</key>
  902. <string>PSGroupSpecifier</string>
  903. </dict>
  904. <dict>
  905. <key>FooterText</key>
  906. <string>MIT License
  907. Copyright (c) 2017 Single
  908. Permission is hereby granted, free of charge, to any person obtaining a copy
  909. of this software and associated documentation files (the "Software"), to deal
  910. in the Software without restriction, including without limitation the rights
  911. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  912. copies of the Software, and to permit persons to whom the Software is
  913. furnished to do so, subject to the following conditions:
  914. The above copyright notice and this permission notice shall be included in all
  915. copies or substantial portions of the Software.
  916. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  917. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  918. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  919. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  920. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  921. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  922. SOFTWARE.
  923. </string>
  924. <key>License</key>
  925. <string>MIT</string>
  926. <key>Title</key>
  927. <string>KTVHTTPCache</string>
  928. <key>Type</key>
  929. <string>PSGroupSpecifier</string>
  930. </dict>
  931. <dict>
  932. <key>FooterText</key>
  933. <string> GNU GENERAL PUBLIC LICENSE
  934. Version 3, 29 June 2007
  935. Copyright (C) 2007 Free Software Foundation, Inc. &lt;https://fsf.org/&gt;
  936. Everyone is permitted to copy and distribute verbatim copies
  937. of this license document, but changing it is not allowed.
  938. Preamble
  939. The GNU General Public License is a free, copyleft license for
  940. software and other kinds of works.
  941. The licenses for most software and other practical works are designed
  942. to take away your freedom to share and change the works. By contrast,
  943. the GNU General Public License is intended to guarantee your freedom to
  944. share and change all versions of a program--to make sure it remains free
  945. software for all its users. We, the Free Software Foundation, use the
  946. GNU General Public License for most of our software; it applies also to
  947. any other work released this way by its authors. You can apply it to
  948. your programs, too.
  949. When we speak of free software, we are referring to freedom, not
  950. price. Our General Public Licenses are designed to make sure that you
  951. have the freedom to distribute copies of free software (and charge for
  952. them if you wish), that you receive source code or can get it if you
  953. want it, that you can change the software or use pieces of it in new
  954. free programs, and that you know you can do these things.
  955. To protect your rights, we need to prevent others from denying you
  956. these rights or asking you to surrender the rights. Therefore, you have
  957. certain responsibilities if you distribute copies of the software, or if
  958. you modify it: responsibilities to respect the freedom of others.
  959. For example, if you distribute copies of such a program, whether
  960. gratis or for a fee, you must pass on to the recipients the same
  961. freedoms that you received. You must make sure that they, too, receive
  962. or can get the source code. And you must show them these terms so they
  963. know their rights.
  964. Developers that use the GNU GPL protect your rights with two steps:
  965. (1) assert copyright on the software, and (2) offer you this License
  966. giving you legal permission to copy, distribute and/or modify it.
  967. For the developers' and authors' protection, the GPL clearly explains
  968. that there is no warranty for this free software. For both users' and
  969. authors' sake, the GPL requires that modified versions be marked as
  970. changed, so that their problems will not be attributed erroneously to
  971. authors of previous versions.
  972. Some devices are designed to deny users access to install or run
  973. modified versions of the software inside them, although the manufacturer
  974. can do so. This is fundamentally incompatible with the aim of
  975. protecting users' freedom to change the software. The systematic
  976. pattern of such abuse occurs in the area of products for individuals to
  977. use, which is precisely where it is most unacceptable. Therefore, we
  978. have designed this version of the GPL to prohibit the practice for those
  979. products. If such problems arise substantially in other domains, we
  980. stand ready to extend this provision to those domains in future versions
  981. of the GPL, as needed to protect the freedom of users.
  982. Finally, every program is threatened constantly by software patents.
  983. States should not allow patents to restrict development and use of
  984. software on general-purpose computers, but in those that do, we wish to
  985. avoid the special danger that patents applied to a free program could
  986. make it effectively proprietary. To prevent this, the GPL assures that
  987. patents cannot be used to render the program non-free.
  988. The precise terms and conditions for copying, distribution and
  989. modification follow.
  990. TERMS AND CONDITIONS
  991. 0. Definitions.
  992. "This License" refers to version 3 of the GNU General Public License.
  993. "Copyright" also means copyright-like laws that apply to other kinds of
  994. works, such as semiconductor masks.
  995. "The Program" refers to any copyrightable work licensed under this
  996. License. Each licensee is addressed as "you". "Licensees" and
  997. "recipients" may be individuals or organizations.
  998. To "modify" a work means to copy from or adapt all or part of the work
  999. in a fashion requiring copyright permission, other than the making of an
  1000. exact copy. The resulting work is called a "modified version" of the
  1001. earlier work or a work "based on" the earlier work.
  1002. A "covered work" means either the unmodified Program or a work based
  1003. on the Program.
  1004. To "propagate" a work means to do anything with it that, without
  1005. permission, would make you directly or secondarily liable for
  1006. infringement under applicable copyright law, except executing it on a
  1007. computer or modifying a private copy. Propagation includes copying,
  1008. distribution (with or without modification), making available to the
  1009. public, and in some countries other activities as well.
  1010. To "convey" a work means any kind of propagation that enables other
  1011. parties to make or receive copies. Mere interaction with a user through
  1012. a computer network, with no transfer of a copy, is not conveying.
  1013. An interactive user interface displays "Appropriate Legal Notices"
  1014. to the extent that it includes a convenient and prominently visible
  1015. feature that (1) displays an appropriate copyright notice, and (2)
  1016. tells the user that there is no warranty for the work (except to the
  1017. extent that warranties are provided), that licensees may convey the
  1018. work under this License, and how to view a copy of this License. If
  1019. the interface presents a list of user commands or options, such as a
  1020. menu, a prominent item in the list meets this criterion.
  1021. 1. Source Code.
  1022. The "source code" for a work means the preferred form of the work
  1023. for making modifications to it. "Object code" means any non-source
  1024. form of a work.
  1025. A "Standard Interface" means an interface that either is an official
  1026. standard defined by a recognized standards body, or, in the case of
  1027. interfaces specified for a particular programming language, one that
  1028. is widely used among developers working in that language.
  1029. The "System Libraries" of an executable work include anything, other
  1030. than the work as a whole, that (a) is included in the normal form of
  1031. packaging a Major Component, but which is not part of that Major
  1032. Component, and (b) serves only to enable use of the work with that
  1033. Major Component, or to implement a Standard Interface for which an
  1034. implementation is available to the public in source code form. A
  1035. "Major Component", in this context, means a major essential component
  1036. (kernel, window system, and so on) of the specific operating system
  1037. (if any) on which the executable work runs, or a compiler used to
  1038. produce the work, or an object code interpreter used to run it.
  1039. The "Corresponding Source" for a work in object code form means all
  1040. the source code needed to generate, install, and (for an executable
  1041. work) run the object code and to modify the work, including scripts to
  1042. control those activities. However, it does not include the work's
  1043. System Libraries, or general-purpose tools or generally available free
  1044. programs which are used unmodified in performing those activities but
  1045. which are not part of the work. For example, Corresponding Source
  1046. includes interface definition files associated with source files for
  1047. the work, and the source code for shared libraries and dynamically
  1048. linked subprograms that the work is specifically designed to require,
  1049. such as by intimate data communication or control flow between those
  1050. subprograms and other parts of the work.
  1051. The Corresponding Source need not include anything that users
  1052. can regenerate automatically from other parts of the Corresponding
  1053. Source.
  1054. The Corresponding Source for a work in source code form is that
  1055. same work.
  1056. 2. Basic Permissions.
  1057. All rights granted under this License are granted for the term of
  1058. copyright on the Program, and are irrevocable provided the stated
  1059. conditions are met. This License explicitly affirms your unlimited
  1060. permission to run the unmodified Program. The output from running a
  1061. covered work is covered by this License only if the output, given its
  1062. content, constitutes a covered work. This License acknowledges your
  1063. rights of fair use or other equivalent, as provided by copyright law.
  1064. You may make, run and propagate covered works that you do not
  1065. convey, without conditions so long as your license otherwise remains
  1066. in force. You may convey covered works to others for the sole purpose
  1067. of having them make modifications exclusively for you, or provide you
  1068. with facilities for running those works, provided that you comply with
  1069. the terms of this License in conveying all material for which you do
  1070. not control copyright. Those thus making or running the covered works
  1071. for you must do so exclusively on your behalf, under your direction
  1072. and control, on terms that prohibit them from making any copies of
  1073. your copyrighted material outside their relationship with you.
  1074. Conveying under any other circumstances is permitted solely under
  1075. the conditions stated below. Sublicensing is not allowed; section 10
  1076. makes it unnecessary.
  1077. 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  1078. No covered work shall be deemed part of an effective technological
  1079. measure under any applicable law fulfilling obligations under article
  1080. 11 of the WIPO copyright treaty adopted on 20 December 1996, or
  1081. similar laws prohibiting or restricting circumvention of such
  1082. measures.
  1083. When you convey a covered work, you waive any legal power to forbid
  1084. circumvention of technological measures to the extent such circumvention
  1085. is effected by exercising rights under this License with respect to
  1086. the covered work, and you disclaim any intention to limit operation or
  1087. modification of the work as a means of enforcing, against the work's
  1088. users, your or third parties' legal rights to forbid circumvention of
  1089. technological measures.
  1090. 4. Conveying Verbatim Copies.
  1091. You may convey verbatim copies of the Program's source code as you
  1092. receive it, in any medium, provided that you conspicuously and
  1093. appropriately publish on each copy an appropriate copyright notice;
  1094. keep intact all notices stating that this License and any
  1095. non-permissive terms added in accord with section 7 apply to the code;
  1096. keep intact all notices of the absence of any warranty; and give all
  1097. recipients a copy of this License along with the Program.
  1098. You may charge any price or no price for each copy that you convey,
  1099. and you may offer support or warranty protection for a fee.
  1100. 5. Conveying Modified Source Versions.
  1101. You may convey a work based on the Program, or the modifications to
  1102. produce it from the Program, in the form of source code under the
  1103. terms of section 4, provided that you also meet all of these conditions:
  1104. a) The work must carry prominent notices stating that you modified
  1105. it, and giving a relevant date.
  1106. b) The work must carry prominent notices stating that it is
  1107. released under this License and any conditions added under section
  1108. 7. This requirement modifies the requirement in section 4 to
  1109. "keep intact all notices".
  1110. c) You must license the entire work, as a whole, under this
  1111. License to anyone who comes into possession of a copy. This
  1112. License will therefore apply, along with any applicable section 7
  1113. additional terms, to the whole of the work, and all its parts,
  1114. regardless of how they are packaged. This License gives no
  1115. permission to license the work in any other way, but it does not
  1116. invalidate such permission if you have separately received it.
  1117. d) If the work has interactive user interfaces, each must display
  1118. Appropriate Legal Notices; however, if the Program has interactive
  1119. interfaces that do not display Appropriate Legal Notices, your
  1120. work need not make them do so.
  1121. A compilation of a covered work with other separate and independent
  1122. works, which are not by their nature extensions of the covered work,
  1123. and which are not combined with it such as to form a larger program,
  1124. in or on a volume of a storage or distribution medium, is called an
  1125. "aggregate" if the compilation and its resulting copyright are not
  1126. used to limit the access or legal rights of the compilation's users
  1127. beyond what the individual works permit. Inclusion of a covered work
  1128. in an aggregate does not cause this License to apply to the other
  1129. parts of the aggregate.
  1130. 6. Conveying Non-Source Forms.
  1131. You may convey a covered work in object code form under the terms
  1132. of sections 4 and 5, provided that you also convey the
  1133. machine-readable Corresponding Source under the terms of this License,
  1134. in one of these ways:
  1135. a) Convey the object code in, or embodied in, a physical product
  1136. (including a physical distribution medium), accompanied by the
  1137. Corresponding Source fixed on a durable physical medium
  1138. customarily used for software interchange.
  1139. b) Convey the object code in, or embodied in, a physical product
  1140. (including a physical distribution medium), accompanied by a
  1141. written offer, valid for at least three years and valid for as
  1142. long as you offer spare parts or customer support for that product
  1143. model, to give anyone who possesses the object code either (1) a
  1144. copy of the Corresponding Source for all the software in the
  1145. product that is covered by this License, on a durable physical
  1146. medium customarily used for software interchange, for a price no
  1147. more than your reasonable cost of physically performing this
  1148. conveying of source, or (2) access to copy the
  1149. Corresponding Source from a network server at no charge.
  1150. c) Convey individual copies of the object code with a copy of the
  1151. written offer to provide the Corresponding Source. This
  1152. alternative is allowed only occasionally and noncommercially, and
  1153. only if you received the object code with such an offer, in accord
  1154. with subsection 6b.
  1155. d) Convey the object code by offering access from a designated
  1156. place (gratis or for a charge), and offer equivalent access to the
  1157. Corresponding Source in the same way through the same place at no
  1158. further charge. You need not require recipients to copy the
  1159. Corresponding Source along with the object code. If the place to
  1160. copy the object code is a network server, the Corresponding Source
  1161. may be on a different server (operated by you or a third party)
  1162. that supports equivalent copying facilities, provided you maintain
  1163. clear directions next to the object code saying where to find the
  1164. Corresponding Source. Regardless of what server hosts the
  1165. Corresponding Source, you remain obligated to ensure that it is
  1166. available for as long as needed to satisfy these requirements.
  1167. e) Convey the object code using peer-to-peer transmission, provided
  1168. you inform other peers where the object code and Corresponding
  1169. Source of the work are being offered to the general public at no
  1170. charge under subsection 6d.
  1171. A separable portion of the object code, whose source code is excluded
  1172. from the Corresponding Source as a System Library, need not be
  1173. included in conveying the object code work.
  1174. A "User Product" is either (1) a "consumer product", which means any
  1175. tangible personal property which is normally used for personal, family,
  1176. or household purposes, or (2) anything designed or sold for incorporation
  1177. into a dwelling. In determining whether a product is a consumer product,
  1178. doubtful cases shall be resolved in favor of coverage. For a particular
  1179. product received by a particular user, "normally used" refers to a
  1180. typical or common use of that class of product, regardless of the status
  1181. of the particular user or of the way in which the particular user
  1182. actually uses, or expects or is expected to use, the product. A product
  1183. is a consumer product regardless of whether the product has substantial
  1184. commercial, industrial or non-consumer uses, unless such uses represent
  1185. the only significant mode of use of the product.
  1186. "Installation Information" for a User Product means any methods,
  1187. procedures, authorization keys, or other information required to install
  1188. and execute modified versions of a covered work in that User Product from
  1189. a modified version of its Corresponding Source. The information must
  1190. suffice to ensure that the continued functioning of the modified object
  1191. code is in no case prevented or interfered with solely because
  1192. modification has been made.
  1193. If you convey an object code work under this section in, or with, or
  1194. specifically for use in, a User Product, and the conveying occurs as
  1195. part of a transaction in which the right of possession and use of the
  1196. User Product is transferred to the recipient in perpetuity or for a
  1197. fixed term (regardless of how the transaction is characterized), the
  1198. Corresponding Source conveyed under this section must be accompanied
  1199. by the Installation Information. But this requirement does not apply
  1200. if neither you nor any third party retains the ability to install
  1201. modified object code on the User Product (for example, the work has
  1202. been installed in ROM).
  1203. The requirement to provide Installation Information does not include a
  1204. requirement to continue to provide support service, warranty, or updates
  1205. for a work that has been modified or installed by the recipient, or for
  1206. the User Product in which it has been modified or installed. Access to a
  1207. network may be denied when the modification itself materially and
  1208. adversely affects the operation of the network or violates the rules and
  1209. protocols for communication across the network.
  1210. Corresponding Source conveyed, and Installation Information provided,
  1211. in accord with this section must be in a format that is publicly
  1212. documented (and with an implementation available to the public in
  1213. source code form), and must require no special password or key for
  1214. unpacking, reading or copying.
  1215. 7. Additional Terms.
  1216. "Additional permissions" are terms that supplement the terms of this
  1217. License by making exceptions from one or more of its conditions.
  1218. Additional permissions that are applicable to the entire Program shall
  1219. be treated as though they were included in this License, to the extent
  1220. that they are valid under applicable law. If additional permissions
  1221. apply only to part of the Program, that part may be used separately
  1222. under those permissions, but the entire Program remains governed by
  1223. this License without regard to the additional permissions.
  1224. When you convey a copy of a covered work, you may at your option
  1225. remove any additional permissions from that copy, or from any part of
  1226. it. (Additional permissions may be written to require their own
  1227. removal in certain cases when you modify the work.) You may place
  1228. additional permissions on material, added by you to a covered work,
  1229. for which you have or can give appropriate copyright permission.
  1230. Notwithstanding any other provision of this License, for material you
  1231. add to a covered work, you may (if authorized by the copyright holders of
  1232. that material) supplement the terms of this License with terms:
  1233. a) Disclaiming warranty or limiting liability differently from the
  1234. terms of sections 15 and 16 of this License; or
  1235. b) Requiring preservation of specified reasonable legal notices or
  1236. author attributions in that material or in the Appropriate Legal
  1237. Notices displayed by works containing it; or
  1238. c) Prohibiting misrepresentation of the origin of that material, or
  1239. requiring that modified versions of such material be marked in
  1240. reasonable ways as different from the original version; or
  1241. d) Limiting the use for publicity purposes of names of licensors or
  1242. authors of the material; or
  1243. e) Declining to grant rights under trademark law for use of some
  1244. trade names, trademarks, or service marks; or
  1245. f) Requiring indemnification of licensors and authors of that
  1246. material by anyone who conveys the material (or modified versions of
  1247. it) with contractual assumptions of liability to the recipient, for
  1248. any liability that these contractual assumptions directly impose on
  1249. those licensors and authors.
  1250. All other non-permissive additional terms are considered "further
  1251. restrictions" within the meaning of section 10. If the Program as you
  1252. received it, or any part of it, contains a notice stating that it is
  1253. governed by this License along with a term that is a further
  1254. restriction, you may remove that term. If a license document contains
  1255. a further restriction but permits relicensing or conveying under this
  1256. License, you may add to a covered work material governed by the terms
  1257. of that license document, provided that the further restriction does
  1258. not survive such relicensing or conveying.
  1259. If you add terms to a covered work in accord with this section, you
  1260. must place, in the relevant source files, a statement of the
  1261. additional terms that apply to those files, or a notice indicating
  1262. where to find the applicable terms.
  1263. Additional terms, permissive or non-permissive, may be stated in the
  1264. form of a separately written license, or stated as exceptions;
  1265. the above requirements apply either way.
  1266. 8. Termination.
  1267. You may not propagate or modify a covered work except as expressly
  1268. provided under this License. Any attempt otherwise to propagate or
  1269. modify it is void, and will automatically terminate your rights under
  1270. this License (including any patent licenses granted under the third
  1271. paragraph of section 11).
  1272. However, if you cease all violation of this License, then your
  1273. license from a particular copyright holder is reinstated (a)
  1274. provisionally, unless and until the copyright holder explicitly and
  1275. finally terminates your license, and (b) permanently, if the copyright
  1276. holder fails to notify you of the violation by some reasonable means
  1277. prior to 60 days after the cessation.
  1278. Moreover, your license from a particular copyright holder is
  1279. reinstated permanently if the copyright holder notifies you of the
  1280. violation by some reasonable means, this is the first time you have
  1281. received notice of violation of this License (for any work) from that
  1282. copyright holder, and you cure the violation prior to 30 days after
  1283. your receipt of the notice.
  1284. Termination of your rights under this section does not terminate the
  1285. licenses of parties who have received copies or rights from you under
  1286. this License. If your rights have been terminated and not permanently
  1287. reinstated, you do not qualify to receive new licenses for the same
  1288. material under section 10.
  1289. 9. Acceptance Not Required for Having Copies.
  1290. You are not required to accept this License in order to receive or
  1291. run a copy of the Program. Ancillary propagation of a covered work
  1292. occurring solely as a consequence of using peer-to-peer transmission
  1293. to receive a copy likewise does not require acceptance. However,
  1294. nothing other than this License grants you permission to propagate or
  1295. modify any covered work. These actions infringe copyright if you do
  1296. not accept this License. Therefore, by modifying or propagating a
  1297. covered work, you indicate your acceptance of this License to do so.
  1298. 10. Automatic Licensing of Downstream Recipients.
  1299. Each time you convey a covered work, the recipient automatically
  1300. receives a license from the original licensors, to run, modify and
  1301. propagate that work, subject to this License. You are not responsible
  1302. for enforcing compliance by third parties with this License.
  1303. An "entity transaction" is a transaction transferring control of an
  1304. organization, or substantially all assets of one, or subdividing an
  1305. organization, or merging organizations. If propagation of a covered
  1306. work results from an entity transaction, each party to that
  1307. transaction who receives a copy of the work also receives whatever
  1308. licenses to the work the party's predecessor in interest had or could
  1309. give under the previous paragraph, plus a right to possession of the
  1310. Corresponding Source of the work from the predecessor in interest, if
  1311. the predecessor has it or can get it with reasonable efforts.
  1312. You may not impose any further restrictions on the exercise of the
  1313. rights granted or affirmed under this License. For example, you may
  1314. not impose a license fee, royalty, or other charge for exercise of
  1315. rights granted under this License, and you may not initiate litigation
  1316. (including a cross-claim or counterclaim in a lawsuit) alleging that
  1317. any patent claim is infringed by making, using, selling, offering for
  1318. sale, or importing the Program or any portion of it.
  1319. 11. Patents.
  1320. A "contributor" is a copyright holder who authorizes use under this
  1321. License of the Program or a work on which the Program is based. The
  1322. work thus licensed is called the contributor's "contributor version".
  1323. A contributor's "essential patent claims" are all patent claims
  1324. owned or controlled by the contributor, whether already acquired or
  1325. hereafter acquired, that would be infringed by some manner, permitted
  1326. by this License, of making, using, or selling its contributor version,
  1327. but do not include claims that would be infringed only as a
  1328. consequence of further modification of the contributor version. For
  1329. purposes of this definition, "control" includes the right to grant
  1330. patent sublicenses in a manner consistent with the requirements of
  1331. this License.
  1332. Each contributor grants you a non-exclusive, worldwide, royalty-free
  1333. patent license under the contributor's essential patent claims, to
  1334. make, use, sell, offer for sale, import and otherwise run, modify and
  1335. propagate the contents of its contributor version.
  1336. In the following three paragraphs, a "patent license" is any express
  1337. agreement or commitment, however denominated, not to enforce a patent
  1338. (such as an express permission to practice a patent or covenant not to
  1339. sue for patent infringement). To "grant" such a patent license to a
  1340. party means to make such an agreement or commitment not to enforce a
  1341. patent against the party.
  1342. If you convey a covered work, knowingly relying on a patent license,
  1343. and the Corresponding Source of the work is not available for anyone
  1344. to copy, free of charge and under the terms of this License, through a
  1345. publicly available network server or other readily accessible means,
  1346. then you must either (1) cause the Corresponding Source to be so
  1347. available, or (2) arrange to deprive yourself of the benefit of the
  1348. patent license for this particular work, or (3) arrange, in a manner
  1349. consistent with the requirements of this License, to extend the patent
  1350. license to downstream recipients. "Knowingly relying" means you have
  1351. actual knowledge that, but for the patent license, your conveying the
  1352. covered work in a country, or your recipient's use of the covered work
  1353. in a country, would infringe one or more identifiable patents in that
  1354. country that you have reason to believe are valid.
  1355. If, pursuant to or in connection with a single transaction or
  1356. arrangement, you convey, or propagate by procuring conveyance of, a
  1357. covered work, and grant a patent license to some of the parties
  1358. receiving the covered work authorizing them to use, propagate, modify
  1359. or convey a specific copy of the covered work, then the patent license
  1360. you grant is automatically extended to all recipients of the covered
  1361. work and works based on it.
  1362. A patent license is "discriminatory" if it does not include within
  1363. the scope of its coverage, prohibits the exercise of, or is
  1364. conditioned on the non-exercise of one or more of the rights that are
  1365. specifically granted under this License. You may not convey a covered
  1366. work if you are a party to an arrangement with a third party that is
  1367. in the business of distributing software, under which you make payment
  1368. to the third party based on the extent of your activity of conveying
  1369. the work, and under which the third party grants, to any of the
  1370. parties who would receive the covered work from you, a discriminatory
  1371. patent license (a) in connection with copies of the covered work
  1372. conveyed by you (or copies made from those copies), or (b) primarily
  1373. for and in connection with specific products or compilations that
  1374. contain the covered work, unless you entered into that arrangement,
  1375. or that patent license was granted, prior to 28 March 2007.
  1376. Nothing in this License shall be construed as excluding or limiting
  1377. any implied license or other defenses to infringement that may
  1378. otherwise be available to you under applicable patent law.
  1379. 12. No Surrender of Others' Freedom.
  1380. If conditions are imposed on you (whether by court order, agreement or
  1381. otherwise) that contradict the conditions of this License, they do not
  1382. excuse you from the conditions of this License. If you cannot convey a
  1383. covered work so as to satisfy simultaneously your obligations under this
  1384. License and any other pertinent obligations, then as a consequence you may
  1385. not convey it at all. For example, if you agree to terms that obligate you
  1386. to collect a royalty for further conveying from those to whom you convey
  1387. the Program, the only way you could satisfy both those terms and this
  1388. License would be to refrain entirely from conveying the Program.
  1389. 13. Use with the GNU Affero General Public License.
  1390. Notwithstanding any other provision of this License, you have
  1391. permission to link or combine any covered work with a work licensed
  1392. under version 3 of the GNU Affero General Public License into a single
  1393. combined work, and to convey the resulting work. The terms of this
  1394. License will continue to apply to the part which is the covered work,
  1395. but the special requirements of the GNU Affero General Public License,
  1396. section 13, concerning interaction through a network will apply to the
  1397. combination as such.
  1398. 14. Revised Versions of this License.
  1399. The Free Software Foundation may publish revised and/or new versions of
  1400. the GNU General Public License from time to time. Such new versions will
  1401. be similar in spirit to the present version, but may differ in detail to
  1402. address new problems or concerns.
  1403. Each version is given a distinguishing version number. If the
  1404. Program specifies that a certain numbered version of the GNU General
  1405. Public License "or any later version" applies to it, you have the
  1406. option of following the terms and conditions either of that numbered
  1407. version or of any later version published by the Free Software
  1408. Foundation. If the Program does not specify a version number of the
  1409. GNU General Public License, you may choose any version ever published
  1410. by the Free Software Foundation.
  1411. If the Program specifies that a proxy can decide which future
  1412. versions of the GNU General Public License can be used, that proxy's
  1413. public statement of acceptance of a version permanently authorizes you
  1414. to choose that version for the Program.
  1415. Later license versions may give you additional or different
  1416. permissions. However, no additional obligations are imposed on any
  1417. author or copyright holder as a result of your choosing to follow a
  1418. later version.
  1419. 15. Disclaimer of Warranty.
  1420. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  1421. APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  1422. HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  1423. OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  1424. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1425. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
  1426. IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  1427. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  1428. 16. Limitation of Liability.
  1429. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  1430. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
  1431. THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  1432. GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  1433. USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  1434. DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
  1435. PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
  1436. EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
  1437. SUCH DAMAGES.
  1438. 17. Interpretation of Sections 15 and 16.
  1439. If the disclaimer of warranty and limitation of liability provided
  1440. above cannot be given local legal effect according to their terms,
  1441. reviewing courts shall apply local law that most closely approximates
  1442. an absolute waiver of all civil liability in connection with the
  1443. Program, unless a warranty or assumption of liability accompanies a
  1444. copy of the Program in return for a fee.
  1445. END OF TERMS AND CONDITIONS
  1446. How to Apply These Terms to Your New Programs
  1447. If you develop a new program, and you want it to be of the greatest
  1448. possible use to the public, the best way to achieve this is to make it
  1449. free software which everyone can redistribute and change under these terms.
  1450. To do so, attach the following notices to the program. It is safest
  1451. to attach them to the start of each source file to most effectively
  1452. state the exclusion of warranty; and each file should have at least
  1453. the "copyright" line and a pointer to where the full notice is found.
  1454. &lt;one line to give the program's name and a brief idea of what it does.&gt;
  1455. Copyright (C) &lt;year&gt; &lt;name of author&gt;
  1456. This program is free software: you can redistribute it and/or modify
  1457. it under the terms of the GNU General Public License as published by
  1458. the Free Software Foundation, either version 3 of the License, or
  1459. (at your option) any later version.
  1460. This program is distributed in the hope that it will be useful,
  1461. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1462. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1463. GNU General Public License for more details.
  1464. You should have received a copy of the GNU General Public License
  1465. along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.
  1466. Also add information on how to contact you by electronic and paper mail.
  1467. If the program does terminal interaction, make it output a short
  1468. notice like this when it starts in an interactive mode:
  1469. &lt;program&gt; Copyright (C) &lt;year&gt; &lt;name of author&gt;
  1470. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  1471. This is free software, and you are welcome to redistribute it
  1472. under certain conditions; type `show c' for details.
  1473. The hypothetical commands `show w' and `show c' should show the appropriate
  1474. parts of the General Public License. Of course, your program's commands
  1475. might be different; for a GUI interface, you would use an "about box".
  1476. You should also get your employer (if you work as a programmer) or school,
  1477. if any, to sign a "copyright disclaimer" for the program, if necessary.
  1478. For more information on this, and how to apply and follow the GNU GPL, see
  1479. &lt;https://www.gnu.org/licenses/&gt;.
  1480. The GNU General Public License does not permit incorporating your program
  1481. into proprietary programs. If your program is a subroutine library, you
  1482. may consider it more useful to permit linking proprietary applications with
  1483. the library. If this is what you want to do, use the GNU Lesser General
  1484. Public License instead of this License. But first, please read
  1485. &lt;https://www.gnu.org/licenses/why-not-lgpl.html&gt;.
  1486. </string>
  1487. <key>License</key>
  1488. <string>GPL-3.0</string>
  1489. <key>Title</key>
  1490. <string>LookinServer</string>
  1491. <key>Type</key>
  1492. <string>PSGroupSpecifier</string>
  1493. </dict>
  1494. <dict>
  1495. <key>FooterText</key>
  1496. <string>Copyright © 2009-2020 Matej Bukovinski
  1497. Permission is hereby granted, free of charge, to any person obtaining a copy
  1498. of this software and associated documentation files (the "Software"), to deal
  1499. in the Software without restriction, including without limitation the rights
  1500. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1501. copies of the Software, and to permit persons to whom the Software is
  1502. furnished to do so, subject to the following conditions:
  1503. The above copyright notice and this permission notice shall be included in
  1504. all copies or substantial portions of the Software.
  1505. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1506. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1507. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1508. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1509. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1510. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1511. THE SOFTWARE.</string>
  1512. <key>License</key>
  1513. <string>MIT</string>
  1514. <key>Title</key>
  1515. <string>MBProgressHUD</string>
  1516. <key>Type</key>
  1517. <string>PSGroupSpecifier</string>
  1518. </dict>
  1519. <dict>
  1520. <key>FooterText</key>
  1521. <string>Copyright (c) 2013-2019 MJExtension (https://github.com/CoderMJLee/MJExtension)
  1522. Permission is hereby granted, free of charge, to any person obtaining a copy
  1523. of this software and associated documentation files (the "Software"), to deal
  1524. in the Software without restriction, including without limitation the rights
  1525. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1526. copies of the Software, and to permit persons to whom the Software is
  1527. furnished to do so, subject to the following conditions:
  1528. The above copyright notice and this permission notice shall be included in
  1529. all copies or substantial portions of the Software.
  1530. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1531. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1532. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1533. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1534. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1535. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1536. THE SOFTWARE.
  1537. </string>
  1538. <key>License</key>
  1539. <string>MIT</string>
  1540. <key>Title</key>
  1541. <string>MJExtension</string>
  1542. <key>Type</key>
  1543. <string>PSGroupSpecifier</string>
  1544. </dict>
  1545. <dict>
  1546. <key>FooterText</key>
  1547. <string>Copyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh)
  1548. Permission is hereby granted, free of charge, to any person obtaining a copy
  1549. of this software and associated documentation files (the "Software"), to deal
  1550. in the Software without restriction, including without limitation the rights
  1551. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1552. copies of the Software, and to permit persons to whom the Software is
  1553. furnished to do so, subject to the following conditions:
  1554. The above copyright notice and this permission notice shall be included in
  1555. all copies or substantial portions of the Software.
  1556. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1557. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1558. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1559. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1560. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1561. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1562. THE SOFTWARE.
  1563. </string>
  1564. <key>License</key>
  1565. <string>MIT</string>
  1566. <key>Title</key>
  1567. <string>MJRefresh</string>
  1568. <key>Type</key>
  1569. <string>PSGroupSpecifier</string>
  1570. </dict>
  1571. <dict>
  1572. <key>FooterText</key>
  1573. <string>The MIT License (MIT)
  1574. Copyright (c) 2014 molon
  1575. Permission is hereby granted, free of charge, to any person obtaining a copy
  1576. of this software and associated documentation files (the "Software"), to deal
  1577. in the Software without restriction, including without limitation the rights
  1578. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1579. copies of the Software, and to permit persons to whom the Software is
  1580. furnished to do so, subject to the following conditions:
  1581. The above copyright notice and this permission notice shall be included in all
  1582. copies or substantial portions of the Software.
  1583. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1584. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1585. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1586. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1587. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1588. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1589. SOFTWARE.</string>
  1590. <key>License</key>
  1591. <string>MIT</string>
  1592. <key>Title</key>
  1593. <string>MLEmojiLabel</string>
  1594. <key>Type</key>
  1595. <string>PSGroupSpecifier</string>
  1596. </dict>
  1597. <dict>
  1598. <key>FooterText</key>
  1599. <string>Tencent is pleased to support the open source community by making MLeaksFinder available.
  1600. Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.
  1601. If you have downloaded a copy of the MLeaksFinder binary from Tencent, please note that the MLeaksFinder binary is licensed under the BSD 3-Clause License.
  1602. If you have downloaded a copy of the MLeaksFinder source code from Tencent, please note that MLeaksFinder source code is licensed under the BSD 3-Clause License. Your integration of MLeaksFinder into your own projects may require compliance with the BSD 3-Clause License.
  1603. A copy of the BSD 3-Clause License is included in this file.
  1604. Terms of the BSD 3-Clause License:
  1605. --------------------------------------------------------------------
  1606. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  1607. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  1608. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  1609. Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  1610. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
  1611. <key>License</key>
  1612. <string>MIT</string>
  1613. <key>Title</key>
  1614. <string>MLeaksFinder</string>
  1615. <key>Type</key>
  1616. <string>PSGroupSpecifier</string>
  1617. </dict>
  1618. <dict>
  1619. <key>FooterText</key>
  1620. <string>Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry
  1621. Permission is hereby granted, free of charge, to any person obtaining a copy
  1622. of this software and associated documentation files (the "Software"), to deal
  1623. in the Software without restriction, including without limitation the rights
  1624. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1625. copies of the Software, and to permit persons to whom the Software is
  1626. furnished to do so, subject to the following conditions:
  1627. The above copyright notice and this permission notice shall be included in
  1628. all copies or substantial portions of the Software.
  1629. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1630. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1631. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1632. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1633. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1634. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1635. THE SOFTWARE.</string>
  1636. <key>License</key>
  1637. <string>MIT</string>
  1638. <key>Title</key>
  1639. <string>Masonry</string>
  1640. <key>Type</key>
  1641. <string>PSGroupSpecifier</string>
  1642. </dict>
  1643. <dict>
  1644. <key>FooterText</key>
  1645. <string>
  1646. LICENSE ISSUES
  1647. ==============
  1648. The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
  1649. the OpenSSL License and the original SSLeay license apply to the toolkit.
  1650. See below for the actual license texts. Actually both licenses are BSD-style
  1651. Open Source licenses. In case of any license issues related to OpenSSL
  1652. please contact openssl-core@openssl.org.
  1653. OpenSSL License
  1654. ---------------
  1655. /* ====================================================================
  1656. * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved.
  1657. *
  1658. * Redistribution and use in source and binary forms, with or without
  1659. * modification, are permitted provided that the following conditions
  1660. * are met:
  1661. *
  1662. * 1. Redistributions of source code must retain the above copyright
  1663. * notice, this list of conditions and the following disclaimer.
  1664. *
  1665. * 2. Redistributions in binary form must reproduce the above copyright
  1666. * notice, this list of conditions and the following disclaimer in
  1667. * the documentation and/or other materials provided with the
  1668. * distribution.
  1669. *
  1670. * 3. All advertising materials mentioning features or use of this
  1671. * software must display the following acknowledgment:
  1672. * "This product includes software developed by the OpenSSL Project
  1673. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  1674. *
  1675. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  1676. * endorse or promote products derived from this software without
  1677. * prior written permission. For written permission, please contact
  1678. * openssl-core@openssl.org.
  1679. *
  1680. * 5. Products derived from this software may not be called "OpenSSL"
  1681. * nor may "OpenSSL" appear in their names without prior written
  1682. * permission of the OpenSSL Project.
  1683. *
  1684. * 6. Redistributions of any form whatsoever must retain the following
  1685. * acknowledgment:
  1686. * "This product includes software developed by the OpenSSL Project
  1687. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  1688. *
  1689. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  1690. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1691. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1692. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  1693. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1694. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  1695. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1696. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1697. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1698. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1699. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1700. * OF THE POSSIBILITY OF SUCH DAMAGE.
  1701. * ====================================================================
  1702. *
  1703. * This product includes cryptographic software written by Eric Young
  1704. * (eay@cryptsoft.com). This product includes software written by Tim
  1705. * Hudson (tjh@cryptsoft.com).
  1706. *
  1707. */
  1708. Original SSLeay License
  1709. -----------------------
  1710. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  1711. * All rights reserved.
  1712. *
  1713. * This package is an SSL implementation written
  1714. * by Eric Young (eay@cryptsoft.com).
  1715. * The implementation was written so as to conform with Netscapes SSL.
  1716. *
  1717. * This library is free for commercial and non-commercial use as long as
  1718. * the following conditions are aheared to. The following conditions
  1719. * apply to all code found in this distribution, be it the RC4, RSA,
  1720. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  1721. * included with this distribution is covered by the same copyright terms
  1722. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  1723. *
  1724. * Copyright remains Eric Young's, and as such any Copyright notices in
  1725. * the code are not to be removed.
  1726. * If this package is used in a product, Eric Young should be given attribution
  1727. * as the author of the parts of the library used.
  1728. * This can be in the form of a textual message at program startup or
  1729. * in documentation (online or textual) provided with the package.
  1730. *
  1731. * Redistribution and use in source and binary forms, with or without
  1732. * modification, are permitted provided that the following conditions
  1733. * are met:
  1734. * 1. Redistributions of source code must retain the copyright
  1735. * notice, this list of conditions and the following disclaimer.
  1736. * 2. Redistributions in binary form must reproduce the above copyright
  1737. * notice, this list of conditions and the following disclaimer in the
  1738. * documentation and/or other materials provided with the distribution.
  1739. * 3. All advertising materials mentioning features or use of this software
  1740. * must display the following acknowledgement:
  1741. * "This product includes cryptographic software written by
  1742. * Eric Young (eay@cryptsoft.com)"
  1743. * The word 'cryptographic' can be left out if the rouines from the library
  1744. * being used are not cryptographic related :-).
  1745. * 4. If you include any Windows specific code (or a derivative thereof) from
  1746. * the apps directory (application code) you must include an acknowledgement:
  1747. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  1748. *
  1749. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  1750. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1751. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1752. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  1753. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1754. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  1755. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1756. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  1757. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  1758. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  1759. * SUCH DAMAGE.
  1760. *
  1761. * The licence and distribution terms for any publically available version or
  1762. * derivative of this code cannot be changed. i.e. this code cannot simply be
  1763. * copied and put under another distribution licence
  1764. * [including the GNU Public Licence.]
  1765. */
  1766. </string>
  1767. <key>License</key>
  1768. <string>OpenSSL (OpenSSL/SSLeay)</string>
  1769. <key>Title</key>
  1770. <string>OpenSSL-Universal</string>
  1771. <key>Type</key>
  1772. <string>PSGroupSpecifier</string>
  1773. </dict>
  1774. <dict>
  1775. <key>FooterText</key>
  1776. <string>MIT License
  1777. Copyright (c) 2022 北京容联七陌科技有限公司
  1778. Permission is hereby granted, free of charge, to any person obtaining a copy
  1779. of this software and associated documentation files (the "Software"), to deal
  1780. in the Software without restriction, including without limitation the rights
  1781. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1782. copies of the Software, and to permit persons to whom the Software is
  1783. furnished to do so, subject to the following conditions:
  1784. The above copyright notice and this permission notice shall be included in all
  1785. copies or substantial portions of the Software.
  1786. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1787. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1788. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1789. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1790. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1791. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1792. SOFTWARE.
  1793. </string>
  1794. <key>License</key>
  1795. <string>MIT</string>
  1796. <key>Title</key>
  1797. <string>QMBaseLib</string>
  1798. <key>Type</key>
  1799. <string>PSGroupSpecifier</string>
  1800. </dict>
  1801. <dict>
  1802. <key>FooterText</key>
  1803. <string>MIT License
  1804. Copyright (c) 2021 北京容联七陌科技有限公司
  1805. Permission is hereby granted, free of charge, to any person obtaining a copy
  1806. of this software and associated documentation files (the "Software"), to deal
  1807. in the Software without restriction, including without limitation the rights
  1808. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1809. copies of the Software, and to permit persons to whom the Software is
  1810. furnished to do so, subject to the following conditions:
  1811. The above copyright notice and this permission notice shall be included in all
  1812. copies or substantial portions of the Software.
  1813. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1814. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1815. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1816. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1817. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1818. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1819. SOFTWARE.
  1820. </string>
  1821. <key>License</key>
  1822. <string>MIT</string>
  1823. <key>Title</key>
  1824. <string>QMLineSDK</string>
  1825. <key>Type</key>
  1826. <string>PSGroupSpecifier</string>
  1827. </dict>
  1828. <dict>
  1829. <key>FooterText</key>
  1830. <string>Tencent is pleased to support the open source community by making QMUI_iOS available.
  1831. Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
  1832. If you have downloaded a copy of the QMUI_iOS binary from Tencent, please note that the QMUI_iOS binary is licensed under the MIT License.
  1833. If you have downloaded a copy of the QMUI_iOS source code from Tencent, please note that QMUI_iOS source code is licensed under the MIT License. Your integration of QMUI_iOS into your own projects may require compliance with the MIT License.
  1834. A copy of the MIT License is included in this file.
  1835. Terms of the MIT License:
  1836. ---------------------------------------------------
  1837. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  1838. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  1839. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1840. </string>
  1841. <key>License</key>
  1842. <string>MIT</string>
  1843. <key>Title</key>
  1844. <string>QMUIKit</string>
  1845. <key>Type</key>
  1846. <string>PSGroupSpecifier</string>
  1847. </dict>
  1848. <dict>
  1849. <key>FooterText</key>
  1850. <string>The MIT License (MIT)
  1851. Copyright (c) 2011-2020 qiniu.com
  1852. Permission is hereby granted, free of charge, to any person obtaining a copy
  1853. of this software and associated documentation files (the "Software"), to deal
  1854. in the Software without restriction, including without limitation the rights
  1855. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1856. copies of the Software, and to permit persons to whom the Software is
  1857. furnished to do so, subject to the following conditions:
  1858. The above copyright notice and this permission notice shall be included in
  1859. all copies or substantial portions of the Software.
  1860. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1861. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1862. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1863. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1864. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1865. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1866. THE SOFTWARE.
  1867. </string>
  1868. <key>License</key>
  1869. <string>MIT</string>
  1870. <key>Title</key>
  1871. <string>Qiniu</string>
  1872. <key>Type</key>
  1873. <string>PSGroupSpecifier</string>
  1874. </dict>
  1875. <dict>
  1876. <key>FooterText</key>
  1877. <string>**Copyright (c) 2012 - 2016, GitHub, Inc.**
  1878. **All rights reserved.**
  1879. Permission is hereby granted, free of charge, to any person obtaining a copy of
  1880. this software and associated documentation files (the "Software"), to deal in
  1881. the Software without restriction, including without limitation the rights to
  1882. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  1883. the Software, and to permit persons to whom the Software is furnished to do so,
  1884. subject to the following conditions:
  1885. The above copyright notice and this permission notice shall be included in all
  1886. copies or substantial portions of the Software.
  1887. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1888. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  1889. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  1890. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  1891. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  1892. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1893. </string>
  1894. <key>License</key>
  1895. <string>MIT</string>
  1896. <key>Title</key>
  1897. <string>ReactiveObjC</string>
  1898. <key>Type</key>
  1899. <string>PSGroupSpecifier</string>
  1900. </dict>
  1901. <dict>
  1902. <key>FooterText</key>
  1903. <string>The MIT License (MIT)
  1904. Copyright (c) 2016 Dustturtle openglnewbee@163.com
  1905. Permission is hereby granted, free of charge, to any person obtaining a copy
  1906. of this software and associated documentation files (the "Software"), to deal
  1907. in the Software without restriction, including without limitation the rights
  1908. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1909. copies of the Software, and to permit persons to whom the Software is
  1910. furnished to do so, subject to the following conditions:
  1911. The above copyright notice and this permission notice shall be included in all
  1912. copies or substantial portions of the Software.
  1913. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1914. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1915. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1916. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1917. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1918. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1919. SOFTWARE.
  1920. </string>
  1921. <key>License</key>
  1922. <string>MIT</string>
  1923. <key>Title</key>
  1924. <string>RealReachability</string>
  1925. <key>Type</key>
  1926. <string>PSGroupSpecifier</string>
  1927. </dict>
  1928. <dict>
  1929. <key>FooterText</key>
  1930. <string>Copyright (c) 2010-2016 Sam Soffes, http://soff.es
  1931. Permission is hereby granted, free of charge, to any person obtaining
  1932. a copy of this software and associated documentation files (the
  1933. "Software"), to deal in the Software without restriction, including
  1934. without limitation the rights to use, copy, modify, merge, publish,
  1935. distribute, sublicense, and/or sell copies of the Software, and to
  1936. permit persons to whom the Software is furnished to do so, subject to
  1937. the following conditions:
  1938. The above copyright notice and this permission notice shall be
  1939. included in all copies or substantial portions of the Software.
  1940. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1941. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1942. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1943. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1944. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1945. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1946. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1947. </string>
  1948. <key>License</key>
  1949. <string>MIT</string>
  1950. <key>Title</key>
  1951. <string>SAMKeychain</string>
  1952. <key>Type</key>
  1953. <string>PSGroupSpecifier</string>
  1954. </dict>
  1955. <dict>
  1956. <key>FooterText</key>
  1957. <string>Copyright (c) 2013-2014 SCLAlertView-Objective-C by Diogo Autilio
  1958. Permission is hereby granted, free of charge, to any person obtaining a copy
  1959. of this software and associated documentation files (the "Software"), to deal
  1960. in the Software without restriction, including without limitation the rights
  1961. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1962. copies of the Software, and to permit persons to whom the Software is
  1963. furnished to do so, subject to the following conditions:
  1964. The above copyright notice and this permission notice shall be included in
  1965. all copies or substantial portions of the Software.
  1966. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1967. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1968. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1969. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1970. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1971. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1972. THE SOFTWARE.</string>
  1973. <key>License</key>
  1974. <string>MIT</string>
  1975. <key>Title</key>
  1976. <string>SCLAlertView-Objective-C</string>
  1977. <key>Type</key>
  1978. <string>PSGroupSpecifier</string>
  1979. </dict>
  1980. <dict>
  1981. <key>FooterText</key>
  1982. <string>The MIT License (MIT)
  1983. Copyright (c) 2015 GSD_iOS
  1984. Permission is hereby granted, free of charge, to any person obtaining a copy
  1985. of this software and associated documentation files (the "Software"), to deal
  1986. in the Software without restriction, including without limitation the rights
  1987. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1988. copies of the Software, and to permit persons to whom the Software is
  1989. furnished to do so, subject to the following conditions:
  1990. The above copyright notice and this permission notice shall be included in all
  1991. copies or substantial portions of the Software.
  1992. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1993. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1994. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1995. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1996. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1997. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1998. SOFTWARE.
  1999. </string>
  2000. <key>License</key>
  2001. <string>MIT</string>
  2002. <key>Title</key>
  2003. <string>SDCycleScrollView</string>
  2004. <key>Type</key>
  2005. <string>PSGroupSpecifier</string>
  2006. </dict>
  2007. <dict>
  2008. <key>FooterText</key>
  2009. <string>Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com
  2010. Permission is hereby granted, free of charge, to any person obtaining a copy
  2011. of this software and associated documentation files (the "Software"), to deal
  2012. in the Software without restriction, including without limitation the rights
  2013. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2014. copies of the Software, and to permit persons to whom the Software is furnished
  2015. to do so, subject to the following conditions:
  2016. The above copyright notice and this permission notice shall be included in all
  2017. copies or substantial portions of the Software.
  2018. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2019. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2020. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2021. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2022. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2023. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2024. THE SOFTWARE.
  2025. </string>
  2026. <key>License</key>
  2027. <string>MIT</string>
  2028. <key>Title</key>
  2029. <string>SDWebImage</string>
  2030. <key>Type</key>
  2031. <string>PSGroupSpecifier</string>
  2032. </dict>
  2033. <dict>
  2034. <key>FooterText</key>
  2035. <string>Copyright (c) 2018 Bogdan Poplauschi
  2036. Permission is hereby granted, free of charge, to any person obtaining a copy
  2037. of this software and associated documentation files (the "Software"), to deal
  2038. in the Software without restriction, including without limitation the rights
  2039. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2040. copies of the Software, and to permit persons to whom the Software is
  2041. furnished to do so, subject to the following conditions:
  2042. The above copyright notice and this permission notice shall be included in
  2043. all copies or substantial portions of the Software.
  2044. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2045. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2046. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2047. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2048. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2049. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2050. THE SOFTWARE.
  2051. </string>
  2052. <key>License</key>
  2053. <string>MIT</string>
  2054. <key>Title</key>
  2055. <string>SDWebImageWebPCoder</string>
  2056. <key>Type</key>
  2057. <string>PSGroupSpecifier</string>
  2058. </dict>
  2059. <dict>
  2060. <key>FooterText</key>
  2061. <string> Apache License
  2062. Version 2.0, January 2004
  2063. http://www.apache.org/licenses/
  2064. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  2065. 1. Definitions.
  2066. "License" shall mean the terms and conditions for use, reproduction,
  2067. and distribution as defined by Sections 1 through 9 of this document.
  2068. "Licensor" shall mean the copyright owner or entity authorized by
  2069. the copyright owner that is granting the License.
  2070. "Legal Entity" shall mean the union of the acting entity and all
  2071. other entities that control, are controlled by, or are under common
  2072. control with that entity. For the purposes of this definition,
  2073. "control" means (i) the power, direct or indirect, to cause the
  2074. direction or management of such entity, whether by contract or
  2075. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  2076. outstanding shares, or (iii) beneficial ownership of such entity.
  2077. "You" (or "Your") shall mean an individual or Legal Entity
  2078. exercising permissions granted by this License.
  2079. "Source" form shall mean the preferred form for making modifications,
  2080. including but not limited to software source code, documentation
  2081. source, and configuration files.
  2082. "Object" form shall mean any form resulting from mechanical
  2083. transformation or translation of a Source form, including but
  2084. not limited to compiled object code, generated documentation,
  2085. and conversions to other media types.
  2086. "Work" shall mean the work of authorship, whether in Source or
  2087. Object form, made available under the License, as indicated by a
  2088. copyright notice that is included in or attached to the work
  2089. (an example is provided in the Appendix below).
  2090. "Derivative Works" shall mean any work, whether in Source or Object
  2091. form, that is based on (or derived from) the Work and for which the
  2092. editorial revisions, annotations, elaborations, or other modifications
  2093. represent, as a whole, an original work of authorship. For the purposes
  2094. of this License, Derivative Works shall not include works that remain
  2095. separable from, or merely link (or bind by name) to the interfaces of,
  2096. the Work and Derivative Works thereof.
  2097. "Contribution" shall mean any work of authorship, including
  2098. the original version of the Work and any modifications or additions
  2099. to that Work or Derivative Works thereof, that is intentionally
  2100. submitted to Licensor for inclusion in the Work by the copyright owner
  2101. or by an individual or Legal Entity authorized to submit on behalf of
  2102. the copyright owner. For the purposes of this definition, "submitted"
  2103. means any form of electronic, verbal, or written communication sent
  2104. to the Licensor or its representatives, including but not limited to
  2105. communication on electronic mailing lists, source code control systems,
  2106. and issue tracking systems that are managed by, or on behalf of, the
  2107. Licensor for the purpose of discussing and improving the Work, but
  2108. excluding communication that is conspicuously marked or otherwise
  2109. designated in writing by the copyright owner as "Not a Contribution."
  2110. "Contributor" shall mean Licensor and any individual or Legal Entity
  2111. on behalf of whom a Contribution has been received by Licensor and
  2112. subsequently incorporated within the Work.
  2113. 2. Grant of Copyright License. Subject to the terms and conditions of
  2114. this License, each Contributor hereby grants to You a perpetual,
  2115. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  2116. copyright license to reproduce, prepare Derivative Works of,
  2117. publicly display, publicly perform, sublicense, and distribute the
  2118. Work and such Derivative Works in Source or Object form.
  2119. 3. Grant of Patent License. Subject to the terms and conditions of
  2120. this License, each Contributor hereby grants to You a perpetual,
  2121. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  2122. (except as stated in this section) patent license to make, have made,
  2123. use, offer to sell, sell, import, and otherwise transfer the Work,
  2124. where such license applies only to those patent claims licensable
  2125. by such Contributor that are necessarily infringed by their
  2126. Contribution(s) alone or by combination of their Contribution(s)
  2127. with the Work to which such Contribution(s) was submitted. If You
  2128. institute patent litigation against any entity (including a
  2129. cross-claim or counterclaim in a lawsuit) alleging that the Work
  2130. or a Contribution incorporated within the Work constitutes direct
  2131. or contributory patent infringement, then any patent licenses
  2132. granted to You under this License for that Work shall terminate
  2133. as of the date such litigation is filed.
  2134. 4. Redistribution. You may reproduce and distribute copies of the
  2135. Work or Derivative Works thereof in any medium, with or without
  2136. modifications, and in Source or Object form, provided that You
  2137. meet the following conditions:
  2138. (a) You must give any other recipients of the Work or
  2139. Derivative Works a copy of this License; and
  2140. (b) You must cause any modified files to carry prominent notices
  2141. stating that You changed the files; and
  2142. (c) You must retain, in the Source form of any Derivative Works
  2143. that You distribute, all copyright, patent, trademark, and
  2144. attribution notices from the Source form of the Work,
  2145. excluding those notices that do not pertain to any part of
  2146. the Derivative Works; and
  2147. (d) If the Work includes a "NOTICE" text file as part of its
  2148. distribution, then any Derivative Works that You distribute must
  2149. include a readable copy of the attribution notices contained
  2150. within such NOTICE file, excluding those notices that do not
  2151. pertain to any part of the Derivative Works, in at least one
  2152. of the following places: within a NOTICE text file distributed
  2153. as part of the Derivative Works; within the Source form or
  2154. documentation, if provided along with the Derivative Works; or,
  2155. within a display generated by the Derivative Works, if and
  2156. wherever such third-party notices normally appear. The contents
  2157. of the NOTICE file are for informational purposes only and
  2158. do not modify the License. You may add Your own attribution
  2159. notices within Derivative Works that You distribute, alongside
  2160. or as an addendum to the NOTICE text from the Work, provided
  2161. that such additional attribution notices cannot be construed
  2162. as modifying the License.
  2163. You may add Your own copyright statement to Your modifications and
  2164. may provide additional or different license terms and conditions
  2165. for use, reproduction, or distribution of Your modifications, or
  2166. for any such Derivative Works as a whole, provided Your use,
  2167. reproduction, and distribution of the Work otherwise complies with
  2168. the conditions stated in this License.
  2169. 5. Submission of Contributions. Unless You explicitly state otherwise,
  2170. any Contribution intentionally submitted for inclusion in the Work
  2171. by You to the Licensor shall be under the terms and conditions of
  2172. this License, without any additional terms or conditions.
  2173. Notwithstanding the above, nothing herein shall supersede or modify
  2174. the terms of any separate license agreement you may have executed
  2175. with Licensor regarding such Contributions.
  2176. 6. Trademarks. This License does not grant permission to use the trade
  2177. names, trademarks, service marks, or product names of the Licensor,
  2178. except as required for reasonable and customary use in describing the
  2179. origin of the Work and reproducing the content of the NOTICE file.
  2180. 7. Disclaimer of Warranty. Unless required by applicable law or
  2181. agreed to in writing, Licensor provides the Work (and each
  2182. Contributor provides its Contributions) on an "AS IS" BASIS,
  2183. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  2184. implied, including, without limitation, any warranties or conditions
  2185. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  2186. PARTICULAR PURPOSE. You are solely responsible for determining the
  2187. appropriateness of using or redistributing the Work and assume any
  2188. risks associated with Your exercise of permissions under this License.
  2189. 8. Limitation of Liability. In no event and under no legal theory,
  2190. whether in tort (including negligence), contract, or otherwise,
  2191. unless required by applicable law (such as deliberate and grossly
  2192. negligent acts) or agreed to in writing, shall any Contributor be
  2193. liable to You for damages, including any direct, indirect, special,
  2194. incidental, or consequential damages of any character arising as a
  2195. result of this License or out of the use or inability to use the
  2196. Work (including but not limited to damages for loss of goodwill,
  2197. work stoppage, computer failure or malfunction, or any and all
  2198. other commercial damages or losses), even if such Contributor
  2199. has been advised of the possibility of such damages.
  2200. 9. Accepting Warranty or Additional Liability. While redistributing
  2201. the Work or Derivative Works thereof, You may choose to offer,
  2202. and charge a fee for, acceptance of support, warranty, indemnity,
  2203. or other liability obligations and/or rights consistent with this
  2204. License. However, in accepting such obligations, You may act only
  2205. on Your own behalf and on Your sole responsibility, not on behalf
  2206. of any other Contributor, and only if You agree to indemnify,
  2207. defend, and hold each Contributor harmless for any liability
  2208. incurred by, or claims asserted against, such Contributor by reason
  2209. of your accepting any such warranty or additional liability.
  2210. END OF TERMS AND CONDITIONS
  2211. APPENDIX: How to apply the Apache License to your work.
  2212. To apply the Apache License to your work, attach the following
  2213. boilerplate notice, with the fields enclosed by brackets "{}"
  2214. replaced with your own identifying information. (Don't include
  2215. the brackets!) The text should be enclosed in the appropriate
  2216. comment syntax for the file format. We also recommend that a
  2217. file or class name and description of purpose be included on the
  2218. same "printed page" as the copyright notice for easier
  2219. identification within third-party archives.
  2220. Copyright {yyyy} {name of copyright owner}
  2221. Licensed under the Apache License, Version 2.0 (the "License");
  2222. you may not use this file except in compliance with the License.
  2223. You may obtain a copy of the License at
  2224. http://www.apache.org/licenses/LICENSE-2.0
  2225. Unless required by applicable law or agreed to in writing, software
  2226. distributed under the License is distributed on an "AS IS" BASIS,
  2227. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  2228. See the License for the specific language governing permissions and
  2229. limitations under the License.
  2230. </string>
  2231. <key>License</key>
  2232. <string>Apache-2.0</string>
  2233. <key>Title</key>
  2234. <string>SGQRCode</string>
  2235. <key>Type</key>
  2236. <string>PSGroupSpecifier</string>
  2237. </dict>
  2238. <dict>
  2239. <key>FooterText</key>
  2240. <string>BSD License
  2241. For SocketRocket software
  2242. Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
  2243. Redistribution and use in source and binary forms, with or without modification,
  2244. are permitted provided that the following conditions are met:
  2245. * Redistributions of source code must retain the above copyright notice, this
  2246. list of conditions and the following disclaimer.
  2247. * Redistributions in binary form must reproduce the above copyright notice,
  2248. this list of conditions and the following disclaimer in the documentation
  2249. and/or other materials provided with the distribution.
  2250. * Neither the name Facebook nor the names of its contributors may be used to
  2251. endorse or promote products derived from this software without specific
  2252. prior written permission.
  2253. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  2254. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  2255. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2256. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  2257. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2258. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  2259. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  2260. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2261. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  2262. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
  2263. <key>License</key>
  2264. <string>BSD</string>
  2265. <key>Title</key>
  2266. <string>SocketRocket</string>
  2267. <key>Type</key>
  2268. <string>PSGroupSpecifier</string>
  2269. </dict>
  2270. <dict>
  2271. <key>FooterText</key>
  2272. <string>Copyright (c) 2011 Mattt Thompson (http://mattt.me/)
  2273. Permission is hereby granted, free of charge, to any person obtaining a copy
  2274. of this software and associated documentation files (the "Software"), to deal
  2275. in the Software without restriction, including without limitation the rights
  2276. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2277. copies of the Software, and to permit persons to whom the Software is
  2278. furnished to do so, subject to the following conditions:
  2279. The above copyright notice and this permission notice shall be included in
  2280. all copies or substantial portions of the Software.
  2281. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2282. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2283. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2284. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2285. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2286. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2287. THE SOFTWARE.
  2288. </string>
  2289. <key>License</key>
  2290. <string>MIT</string>
  2291. <key>Title</key>
  2292. <string>TTTAttributedLabel</string>
  2293. <key>Type</key>
  2294. <string>PSGroupSpecifier</string>
  2295. </dict>
  2296. <dict>
  2297. <key>FooterText</key>
  2298. <string>The MIT License (MIT)
  2299. Copyright (c) 2016 Zhen Tan
  2300. Permission is hereby granted, free of charge, to any person obtaining a copy
  2301. of this software and associated documentation files (the "Software"), to deal
  2302. in the Software without restriction, including without limitation the rights
  2303. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2304. copies of the Software, and to permit persons to whom the Software is
  2305. furnished to do so, subject to the following conditions:
  2306. The above copyright notice and this permission notice shall be included in all
  2307. copies or substantial portions of the Software.
  2308. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2309. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2310. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2311. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2312. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2313. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2314. SOFTWARE.
  2315. </string>
  2316. <key>License</key>
  2317. <string>MIT</string>
  2318. <key>Title</key>
  2319. <string>TZImagePickerController</string>
  2320. <key>Type</key>
  2321. <string>PSGroupSpecifier</string>
  2322. </dict>
  2323. <dict>
  2324. <key>FooterText</key>
  2325. <string>MIT License
  2326. Copyright (c) 2022 ADSuyi_Kit
  2327. Permission is hereby granted, free of charge, to any person obtaining a copy
  2328. of this software and associated documentation files (the "Software"), to deal
  2329. in the Software without restriction, including without limitation the rights
  2330. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2331. copies of the Software, and to permit persons to whom the Software is
  2332. furnished to do so, subject to the following conditions:
  2333. The above copyright notice and this permission notice shall be included in all
  2334. copies or substantial portions of the Software.
  2335. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2336. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2337. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2338. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2339. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2340. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2341. SOFTWARE.
  2342. </string>
  2343. <key>License</key>
  2344. <string>MIT</string>
  2345. <key>Title</key>
  2346. <string>TianmuSDK</string>
  2347. <key>Type</key>
  2348. <string>PSGroupSpecifier</string>
  2349. </dict>
  2350. <dict>
  2351. <key>FooterText</key>
  2352. <string>The MIT License
  2353. Copyright (c) 2011 kishikawa katsumi
  2354. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  2355. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  2356. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</string>
  2357. <key>License</key>
  2358. <string>MIT</string>
  2359. <key>Title</key>
  2360. <string>UICKeyChainStore</string>
  2361. <key>Type</key>
  2362. <string>PSGroupSpecifier</string>
  2363. </dict>
  2364. <dict>
  2365. <key>FooterText</key>
  2366. <string>Copyright 2011 - 2021 umeng.com. All rights reserved.
  2367. </string>
  2368. <key>License</key>
  2369. <string>Copyright</string>
  2370. <key>Title</key>
  2371. <string>UMCCommonLog</string>
  2372. <key>Type</key>
  2373. <string>PSGroupSpecifier</string>
  2374. </dict>
  2375. <dict>
  2376. <key>FooterText</key>
  2377. <string>Copyright 2011 - 2021 umeng.com. All rights reserved.
  2378. </string>
  2379. <key>License</key>
  2380. <string>Copyright</string>
  2381. <key>Title</key>
  2382. <string>UMCommon</string>
  2383. <key>Type</key>
  2384. <string>PSGroupSpecifier</string>
  2385. </dict>
  2386. <dict>
  2387. <key>FooterText</key>
  2388. <string>Copyright 2011 - 2021 umeng.com. All rights reserved.
  2389. </string>
  2390. <key>License</key>
  2391. <string>Copyright</string>
  2392. <key>Title</key>
  2393. <string>UMDevice</string>
  2394. <key>Type</key>
  2395. <string>PSGroupSpecifier</string>
  2396. </dict>
  2397. <dict>
  2398. <key>FooterText</key>
  2399. <string>Copyright (c) 2011-2015 Marcus Westin, Antoine Lagadec
  2400. Permission is hereby granted, free of charge, to any person
  2401. obtaining a copy of this software and associated documentation
  2402. files (the "Software"), to deal in the Software without
  2403. restriction, including without limitation the rights to use,
  2404. copy, modify, merge, publish, distribute, sublicense, and/or sell
  2405. copies of the Software, and to permit persons to whom the
  2406. Software is furnished to do so, subject to the following
  2407. conditions:
  2408. The above copyright notice and this permission notice shall be
  2409. included in all copies or substantial portions of the Software.
  2410. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2411. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  2412. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2413. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  2414. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  2415. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  2416. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  2417. OTHER DEALINGS IN THE SOFTWARE.
  2418. </string>
  2419. <key>License</key>
  2420. <string>MIT</string>
  2421. <key>Title</key>
  2422. <string>WebViewJavascriptBridge</string>
  2423. <key>Type</key>
  2424. <string>PSGroupSpecifier</string>
  2425. </dict>
  2426. <dict>
  2427. <key>FooterText</key>
  2428. <string>Copyright 2020 tencent.com. All rights reserved.
  2429. </string>
  2430. <key>License</key>
  2431. <string>Copyright</string>
  2432. <key>Title</key>
  2433. <string>WechatOpenSDK</string>
  2434. <key>Type</key>
  2435. <string>PSGroupSpecifier</string>
  2436. </dict>
  2437. <dict>
  2438. <key>FooterText</key>
  2439. <string>The MIT License (MIT)
  2440. Copyright (c) 2016 XHLaunchAd (https://github.com/CoderZhuXH/XHLaunchAd)
  2441. Permission is hereby granted, free of charge, to any person obtaining a copy
  2442. of this software and associated documentation files (the "Software"), to deal
  2443. in the Software without restriction, including without limitation the rights
  2444. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2445. copies of the Software, and to permit persons to whom the Software is
  2446. furnished to do so, subject to the following conditions:
  2447. The above copyright notice and this permission notice shall be included in
  2448. all copies or substantial portions of the Software.
  2449. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2450. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2451. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2452. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2453. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2454. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2455. THE SOFTWARE.
  2456. </string>
  2457. <key>License</key>
  2458. <string>MIT</string>
  2459. <key>Title</key>
  2460. <string>XHLaunchAd</string>
  2461. <key>Type</key>
  2462. <string>PSGroupSpecifier</string>
  2463. </dict>
  2464. <dict>
  2465. <key>FooterText</key>
  2466. <string>The MIT License (MIT)
  2467. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2468. Permission is hereby granted, free of charge, to any person obtaining a copy
  2469. of this software and associated documentation files (the "Software"), to deal
  2470. in the Software without restriction, including without limitation the rights
  2471. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2472. copies of the Software, and to permit persons to whom the Software is
  2473. furnished to do so, subject to the following conditions:
  2474. The above copyright notice and this permission notice shall be included in all
  2475. copies or substantial portions of the Software.
  2476. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2477. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2478. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2479. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2480. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2481. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2482. SOFTWARE.
  2483. </string>
  2484. <key>License</key>
  2485. <string>MIT</string>
  2486. <key>Title</key>
  2487. <string>YYCache</string>
  2488. <key>Type</key>
  2489. <string>PSGroupSpecifier</string>
  2490. </dict>
  2491. <dict>
  2492. <key>FooterText</key>
  2493. <string>The MIT License (MIT)
  2494. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2495. Permission is hereby granted, free of charge, to any person obtaining a copy
  2496. of this software and associated documentation files (the "Software"), to deal
  2497. in the Software without restriction, including without limitation the rights
  2498. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2499. copies of the Software, and to permit persons to whom the Software is
  2500. furnished to do so, subject to the following conditions:
  2501. The above copyright notice and this permission notice shall be included in all
  2502. copies or substantial portions of the Software.
  2503. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2504. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2505. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2506. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2507. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2508. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2509. SOFTWARE.
  2510. </string>
  2511. <key>License</key>
  2512. <string>MIT</string>
  2513. <key>Title</key>
  2514. <string>YYImage</string>
  2515. <key>Type</key>
  2516. <string>PSGroupSpecifier</string>
  2517. </dict>
  2518. <dict>
  2519. <key>FooterText</key>
  2520. <string>The MIT License (MIT)
  2521. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2522. Permission is hereby granted, free of charge, to any person obtaining a copy
  2523. of this software and associated documentation files (the "Software"), to deal
  2524. in the Software without restriction, including without limitation the rights
  2525. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2526. copies of the Software, and to permit persons to whom the Software is
  2527. furnished to do so, subject to the following conditions:
  2528. The above copyright notice and this permission notice shall be included in all
  2529. copies or substantial portions of the Software.
  2530. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2531. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2532. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2533. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2534. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2535. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2536. SOFTWARE.
  2537. </string>
  2538. <key>License</key>
  2539. <string>MIT</string>
  2540. <key>Title</key>
  2541. <string>YYModel</string>
  2542. <key>Type</key>
  2543. <string>PSGroupSpecifier</string>
  2544. </dict>
  2545. <dict>
  2546. <key>FooterText</key>
  2547. <string>The MIT License (MIT)
  2548. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2549. Permission is hereby granted, free of charge, to any person obtaining a copy
  2550. of this software and associated documentation files (the "Software"), to deal
  2551. in the Software without restriction, including without limitation the rights
  2552. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2553. copies of the Software, and to permit persons to whom the Software is
  2554. furnished to do so, subject to the following conditions:
  2555. The above copyright notice and this permission notice shall be included in all
  2556. copies or substantial portions of the Software.
  2557. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2558. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2559. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2560. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2561. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2562. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2563. SOFTWARE.
  2564. </string>
  2565. <key>License</key>
  2566. <string>MIT</string>
  2567. <key>Title</key>
  2568. <string>YYText</string>
  2569. <key>Type</key>
  2570. <string>PSGroupSpecifier</string>
  2571. </dict>
  2572. <dict>
  2573. <key>FooterText</key>
  2574. <string>The MIT License (MIT)
  2575. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2576. Permission is hereby granted, free of charge, to any person obtaining a copy
  2577. of this software and associated documentation files (the "Software"), to deal
  2578. in the Software without restriction, including without limitation the rights
  2579. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2580. copies of the Software, and to permit persons to whom the Software is
  2581. furnished to do so, subject to the following conditions:
  2582. The above copyright notice and this permission notice shall be included in all
  2583. copies or substantial portions of the Software.
  2584. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2585. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2586. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2587. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2588. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2589. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2590. SOFTWARE.
  2591. </string>
  2592. <key>License</key>
  2593. <string>MIT</string>
  2594. <key>Title</key>
  2595. <string>YYWebImage</string>
  2596. <key>Type</key>
  2597. <string>PSGroupSpecifier</string>
  2598. </dict>
  2599. <dict>
  2600. <key>FooterText</key>
  2601. <string>Copyright (c) 2018 renzifeng &lt;zifeng1300@gmail.com&gt;
  2602. Permission is hereby granted, free of charge, to any person obtaining a copy
  2603. of this software and associated documentation files (the "Software"), to deal
  2604. in the Software without restriction, including without limitation the rights
  2605. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2606. copies of the Software, and to permit persons to whom the Software is
  2607. furnished to do so, subject to the following conditions:
  2608. The above copyright notice and this permission notice shall be included in
  2609. all copies or substantial portions of the Software.
  2610. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2611. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2612. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2613. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2614. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2615. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2616. THE SOFTWARE.
  2617. </string>
  2618. <key>License</key>
  2619. <string>MIT</string>
  2620. <key>Title</key>
  2621. <string>ZFPlayer</string>
  2622. <key>Type</key>
  2623. <string>PSGroupSpecifier</string>
  2624. </dict>
  2625. <dict>
  2626. <key>FooterText</key>
  2627. <string>Copyright (c) 2010, Google Inc. All rights reserved.
  2628. Redistribution and use in source and binary forms, with or without
  2629. modification, are permitted provided that the following conditions are
  2630. met:
  2631. * Redistributions of source code must retain the above copyright
  2632. notice, this list of conditions and the following disclaimer.
  2633. * Redistributions in binary form must reproduce the above copyright
  2634. notice, this list of conditions and the following disclaimer in
  2635. the documentation and/or other materials provided with the
  2636. distribution.
  2637. * Neither the name of Google nor the names of its contributors may
  2638. be used to endorse or promote products derived from this software
  2639. without specific prior written permission.
  2640. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2641. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2642. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  2643. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  2644. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2645. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2646. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  2647. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  2648. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2649. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  2650. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2651. </string>
  2652. <key>License</key>
  2653. <string>BSD</string>
  2654. <key>Title</key>
  2655. <string>libwebp</string>
  2656. <key>Type</key>
  2657. <string>PSGroupSpecifier</string>
  2658. </dict>
  2659. <dict>
  2660. <key>FooterText</key>
  2661. <string>BSD License
  2662. For Pop software
  2663. Copyright (c) 2014, Facebook, Inc. All rights reserved.
  2664. Redistribution and use in source and binary forms, with or without modification,
  2665. are permitted provided that the following conditions are met:
  2666. * Redistributions of source code must retain the above copyright notice, this
  2667. list of conditions and the following disclaimer.
  2668. * Redistributions in binary form must reproduce the above copyright notice,
  2669. this list of conditions and the following disclaimer in the documentation
  2670. and/or other materials provided with the distribution.
  2671. * Neither the name Facebook nor the names of its contributors may be used to
  2672. endorse or promote products derived from this software without specific
  2673. prior written permission.
  2674. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  2675. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  2676. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2677. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  2678. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2679. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  2680. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  2681. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2682. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  2683. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2684. </string>
  2685. <key>License</key>
  2686. <string>BSD</string>
  2687. <key>Title</key>
  2688. <string>pop</string>
  2689. <key>Type</key>
  2690. <string>PSGroupSpecifier</string>
  2691. </dict>
  2692. <dict>
  2693. <key>FooterText</key>
  2694. <string>Generated by CocoaPods - https://cocoapods.org</string>
  2695. <key>Title</key>
  2696. <string></string>
  2697. <key>Type</key>
  2698. <string>PSGroupSpecifier</string>
  2699. </dict>
  2700. </array>
  2701. <key>StringsTable</key>
  2702. <string>Acknowledgements</string>
  2703. <key>Title</key>
  2704. <string>Acknowledgements</string>
  2705. </dict>
  2706. </plist>