mmentovai | 7daf246 | 2006-09-20 21:16:16 | [diff] [blame] | 1 | Copyright (c) 2006, Google Inc. |
| 2 | All rights reserved. |
bryner | cb91a2f | 2006-08-25 21:14:45 | [diff] [blame] | 3 | |
mmentovai | 7daf246 | 2006-09-20 21:16:16 | [diff] [blame] | 4 | Redistribution and use in source and binary forms, with or without |
| 5 | modification, are permitted provided that the following conditions are |
| 6 | met: |
bryner | cb91a2f | 2006-08-25 21:14:45 | [diff] [blame] | 7 | |
mmentovai | 7daf246 | 2006-09-20 21:16:16 | [diff] [blame] | 8 | * Redistributions of source code must retain the above copyright |
| 9 | notice, this list of conditions and the following disclaimer. |
| 10 | * Redistributions in binary form must reproduce the above |
| 11 | copyright notice, this list of conditions and the following disclaimer |
| 12 | in the documentation and/or other materials provided with the |
| 13 | distribution. |
| 14 | * Neither the name of Google Inc. nor the names of its |
| 15 | contributors may be used to endorse or promote products derived from |
| 16 | this software without specific prior written permission. |
bryner | cb91a2f | 2006-08-25 21:14:45 | [diff] [blame] | 17 | |
mmentovai | 7daf246 | 2006-09-20 21:16:16 | [diff] [blame] | 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
ivan.penkov@gmail.com | 70acad5 | 2014-02-27 19:23:16 | [diff] [blame] | 29 | |
| 30 | -------------------------------------------------------------------- |
| 31 | |
| 32 | Copyright 2001-2004 Unicode, Inc. |
| 33 | |
| 34 | Disclaimer |
| 35 | |
| 36 | This source code is provided as is by Unicode, Inc. No claims are |
| 37 | made as to fitness for any particular purpose. No warranties of any |
| 38 | kind are expressed or implied. The recipient agrees to determine |
| 39 | applicability of information provided. If this file has been |
| 40 | purchased on magnetic or optical media from Unicode, Inc., the |
| 41 | sole remedy for any claim will be exchange of defective media |
| 42 | within 90 days of receipt. |
| 43 | |
| 44 | Limitations on Rights to Redistribute This Code |
| 45 | |
| 46 | Unicode, Inc. hereby grants the right to freely use the information |
| 47 | supplied in this file in the creation of products supporting the |
| 48 | Unicode Standard, and to make copies of this file in any form |
| 49 | for internal or external distribution as long as this notice |
| 50 | remains attached. |
Sterling Augustine | 678c4c5 | 2020-07-16 23:09:06 | [diff] [blame] | 51 | |
| 52 | -------------------------------------------------------------------- |
| 53 | |
| 54 | libunwind - a platform-independent unwind library |
| 55 | Copyright (C) 2008 Google, Inc |
| 56 | Contributed by Paul Pluzhnikov <ppluzhnikov@google.com> |
| 57 | Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org> |
| 58 | |
| 59 | Permission is hereby granted, free of charge, to any person obtaining |
| 60 | a copy of this software and associated documentation files (the |
| 61 | "Software"), to deal in the Software without restriction, including |
| 62 | without limitation the rights to use, copy, modify, merge, publish, |
| 63 | distribute, sublicense, and/or sell copies of the Software, and to |
| 64 | permit persons to whom the Software is furnished to do so, subject to |
| 65 | the following conditions: |
| 66 | |
| 67 | The above copyright notice and this permission notice shall be |
| 68 | included in all copies or substantial portions of the Software. |
| 69 | |
| 70 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 71 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 72 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 73 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 74 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 75 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 76 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ |
Sterling Augustine | 2e6f8de | 2020-07-16 23:29:57 | [diff] [blame] | 77 | |
| 78 | -------------------------------------------------------------------- |
| 79 | |
Sterling Augustine | 428a01e | 2020-07-17 00:53:35 | [diff] [blame] | 80 | Copyright (c) 1999 Apple Computer, Inc. All rights reserved. |
| 81 | |
| 82 | @APPLE_LICENSE_HEADER_START@ |
| 83 | |
| 84 | This file contains Original Code and/or Modifications of Original Code |
| 85 | as defined in and that are subject to the Apple Public Source License |
| 86 | Version 2.0 (the 'License'). You may not use this file except in |
| 87 | compliance with the License. Please obtain a copy of the License at |
| 88 | http://www.opensource.apple.com/apsl/ and read it before using this |
| 89 | file. |
| 90 | |
| 91 | The Original Code and all software distributed under the License are |
| 92 | distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER |
| 93 | EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
| 94 | INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, |
| 95 | FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
| 96 | Please see the License for the specific language governing rights and |
| 97 | limitations under the License. |
| 98 | |
| 99 | @APPLE_LICENSE_HEADER_END@ |
| 100 | |
| 101 | -------------------------------------------------------------------- |
| 102 | |
Sterling Augustine | 2e6f8de | 2020-07-16 23:29:57 | [diff] [blame] | 103 | Copyright (c) 1989, 1993 |
| 104 | The Regents of the University of California. All rights reserved. |
| 105 | |
| 106 | Redistribution and use in source and binary forms, with or without |
| 107 | modification, are permitted provided that the following conditions |
| 108 | are met: |
| 109 | 1. Redistributions of source code must retain the above copyright |
| 110 | notice, this list of conditions and the following disclaimer. |
| 111 | 2. Redistributions in binary form must reproduce the above copyright |
| 112 | notice, this list of conditions and the following disclaimer in the |
| 113 | documentation and/or other materials provided with the distribution. |
| 114 | 3. All advertising materials mentioning features or use of this software |
| 115 | must display the following acknowledgement: |
| 116 | This product includes software developed by the University of |
| 117 | California, Berkeley and its contributors. |
| 118 | 4. Neither the name of the University nor the names of its contributors |
| 119 | may be used to endorse or promote products derived from this software |
| 120 | without specific prior written permission. |
| 121 | |
| 122 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 123 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 124 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 125 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 126 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 127 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 128 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 129 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 130 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 131 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 132 | SUCH DAMAGE. |