├── .gitignore ├── LICENSE ├── README.md ├── data ├── ggc.txt └── iata.txt ├── hosts ├── hosts_lax ├── merge_snippets.sh ├── snippets ├── 01_google.txt ├── 02_l.google.txt ├── 03_adwords.txt ├── 04_android.txt ├── 05_bigcache.txt ├── 06_googleusercontent.txt ├── 07_youtube.txt ├── 08_googlevideo.txt ├── 09_facebook.txt ├── 10_wiki.txt ├── 11_others.txt ├── 12_ipv4.txt ├── 1e100.txt └── CN.txt ├── tools ├── conv.py ├── extract_ggc.sh ├── extract_iata.sh ├── extract_iata_1e100.sh ├── gen-1e100.sh ├── gen-ggc.sh ├── gen-sn.sh ├── geoip.sh ├── list-1e100-all.py ├── list-1e100.py ├── list-sn-all.py ├── list-sn-spec.py ├── list-sn.py ├── list-xx.py └── sort-by-ip.py └── update_hosts.py /.gitignore: -------------------------------------------------------------------------------- 1 | tools/*.txt 2 | *.pyc 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014-2017 lennylxx 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | What 2 | ---- 3 | 4 | Hosts file which is used for improving IPv6 access speed to Google, YouTube, 5 | Facebook, Wikipedia, etc. in Mainland China. 6 | 7 | | \ | | 8 | | ----- | ------------------------------------------------------------------ | 9 | | Hosts | https://raw.githubusercontent.com/lennylxx/ipv6-hosts/master/hosts | 10 | | Wiki | https://github.com/lennylxx/ipv6-hosts/wiki | 11 | | Info | [1e100 servers deployment geoinfo], [SN-domain servers list] | 12 | 13 | * You may need [HTTPS Everywhere] to secure your transmission. 14 | * [How to decode Google SN domains] 15 | * How to [Do It Yourself] 16 | 17 | Scripts 18 | ------- 19 | 20 | [update_hosts.py] 21 | 22 | ``` 23 | usage: update_hosts [OPTIONS] FILE 24 | A simple multi-threading tool used for updating hosts file. 25 | 26 | Options: 27 | -h, --help show this help message and exit 28 | -s DNS set another dns server, default: 2001:4860:4860::8844 29 | -o OUT_FILE output file, default: inputfilename.out 30 | -t QUERY_TYPE dig command query type, default: aaaa 31 | -c, --cname write canonical name into hosts file 32 | -n THREAD_NUM set the number of worker threads, default: 10 33 | ``` 34 | 35 | [merge_snippets.sh] 36 | 37 | ``` 38 | usage: ./merge_snippets.sh new_hosts 39 | ``` 40 | 41 | Some Public DNS Servers 42 | ----------------------- 43 | 44 | | | USA | USA | 45 | | -------- | ---------------------- | ---------------------- | 46 | | Hostname | **ordns.he.net** | **tserv1.lax1.he.net** | 47 | | IPv6 | 2001:470:20::2 | 2001:470:0:9d::2 | 48 | | IPv4 | 74.82.42.42 | 66.220.18.42 | 49 | | ISP | Hurricane Electric Inc.| Hurricane Electric Inc.| 50 | | City | Anycast | Los Angeles | 51 | 52 | 53 | | | Hong Kong | Japan | 54 | | -------- | ---------------------- | ------------------ | 55 | | Hostname | **dns.hutchcity.com** | **ns01.miinet.jp** | 56 | | IPv4 | 202.45.84.58 | 203.112.2.4 | 57 | | ISP | Hutchison Whampoa Ltd. | UCOM Corporation | 58 | | City | Hong Kong | Tokyo | 59 | 60 | More public DNS servers please refer to http://public-dns.info 61 | 62 | Privacy 63 | ------- 64 | 65 | * The hosts file just redirects domain to its official IPs. You can check them on any other public DNS servers. 66 | * There is no absolute privacy on the Internet. Learn to protect yourself. 67 | * Act smart. 68 | 69 | License 70 | ------- 71 | 72 | Code of this project is licensed under the [MIT license](LICENSE). 73 | Content of this project (including hosts files, wiki, and Google sheets) is licensed under [![CC Image]][CC BY-NC-SA 3.0]. 74 | 75 | 76 | [merge_snippets.sh]: merge_snippets.sh 77 | [update_hosts.py]: update_hosts.py 78 | [1e100 servers deployment geoinfo]: https://docs.google.com/spreadsheets/d/1a5HI0lkc1TycJdwJnCVDVd3x6_gemI3CQhNHhdsVmP8 79 | [SN-domain servers list]: https://docs.google.com/spreadsheets/d/14gT1GV1IE0oYCq-1Dy747_5FWNxL26R-9T5htJ485dY 80 | [HTTPS Everywhere]: https://www.eff.org/https-everywhere 81 | [How to decode Google SN domains]: https://github.com/lennylxx/ipv6-hosts/wiki/sn-domains 82 | [Do It Yourself]: https://github.com/lennylxx/ipv6-hosts/wiki/Do-It-Yourself 83 | [CC Image]: https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png 84 | [CC BY-NC-SA 3.0]: https://creativecommons.org/licenses/by-nc-sa/3.0/ 85 | -------------------------------------------------------------------------------- /data/iata.txt: -------------------------------------------------------------------------------- 1 | ams 5hn 2 | arn 5go 3 | atl 5ua 4 | ber cxg 5 | bog cvb 6 | bom cvh 7 | bru cg0 8 | bud c0q 9 | cbf jc4 10 | del qxa 11 | den qxo 12 | dfw q4f 13 | dub q0c 14 | eze x1x 15 | fjr 4wg 16 | fra 4g5 17 | gru bg0 18 | ham i5h 19 | hkg i3b 20 | iad p5q 21 | jnb woc 22 | kbp 3c2 23 | kix 3pm 24 | kul 30a 25 | lax a5m 26 | led axq 27 | lga ab5 28 | lhr aig 29 | lis apn 30 | maa h55 31 | mad h5q 32 | mba hc5 33 | mct hju 34 | mia hp5 35 | mil hpa 36 | mrs hgn 37 | muc h0j 38 | nrt ogu 39 | nuq o09 40 | ord vgq 41 | par 25g 42 | pek 2x3 43 | prg 2gb 44 | qro 9gv 45 | rio gpv 46 | scl nja 47 | sea nx5 48 | sfo n4v 49 | sha ni5 50 | sin npo 51 | sjc nwj 52 | sof nv4 53 | svo n8v 54 | syd ntq 55 | tpe u2x 56 | tsa un5 57 | waw f5f 58 | yul t0a 59 | yyz tt1 60 | zrh 1gi 61 | -------------------------------------------------------------------------------- /merge_snippets.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ $# -ne 1 ]; then 4 | echo -e "Usage:" 5 | echo -e " $ ./merge_snippets.sh new_hosts\n" 6 | exit 1 7 | fi 8 | 9 | new_hosts_file=$1 10 | 11 | if [ -f $new_hosts_file ]; then 12 | new_hosts_file=${new_hosts_file}".new" 13 | printf "" > $new_hosts_file 14 | fi 15 | 16 | export LC_ALL="C" 17 | 18 | printf "\ 19 | ## __ __ \r\n\ 20 | ## |__| _____ __ __ ┌─────┐ | | __ \r\n\ 21 | ## | || || | || ──| ______ | |──┐┌─────┐.─────.| |_ .─────.\r\n\ 22 | ## | || ─ || | || ─ | |______| | || ─ ||__ ──|| _||__ ──|\r\n\ 23 | ## |__|| ┌──┘ \___/ |_____| |__|__||_____||_____||____||_____|\r\n\ 24 | ## |__| \r\n\ 25 | ## · lennylxx ·\r\n\ 26 | ##\r\n\ 27 | ## +------------------------- >>d(' _ ')b<< -------------------------+\r\n\ 28 | ## | |\r\n\ 29 | ## | Project: https://github.com/lennylxx/ipv6-hosts |\r\n\ 30 | ## | Update : `date +"%a, %d %b %Y %T %z"` |\r\n\ 31 | ## | |\r\n\ 32 | ## +-------------------------------------------------------------------+\r\n\ 33 | " >> $new_hosts_file 34 | 35 | unset LC_ALL 36 | 37 | printf "\r\n127.0.0.1 localhost\r\n" >> $new_hosts_file 38 | printf "::1 localhost ip6-localhost ip6-loopback\r\n\r\n" >> $new_hosts_file 39 | 40 | cat snippets/??_*.txt >> $new_hosts_file 41 | 42 | printf "\ 43 | ## +-------------------------------------------------------------------+\r\n\ 44 | ## | End of File |\r\n\ 45 | ## +-------------------------------------------------------------------+\r\n\ 46 | " >> $new_hosts_file 47 | 48 | exit 0 49 | -------------------------------------------------------------------------------- /snippets/02_l.google.txt: -------------------------------------------------------------------------------- 1 | ## l.google.com 2 | 2404:6800:4008:c05::6a www.l.google.com 3 | 2404:6800:4008:c03::63 www2.l.google.com 4 | 2404:6800:4008:c03::8b www3.l.google.com #www3-china.l.google.com 5 | 2404:6800:4008:c02::76 www4.l.google.com 6 | 2404:6800:4008:c06::54 accounts.l.google.com #accounts-china.l.google.com 7 | 2404:6800:4008:c06::5e accounts-cctld.l.google.com 8 | #2404:6800:4008:c00::62 afd.l.google.com 9 | 2607:f8b0:4003:c03::7d alt1.talk.l.google.com 10 | 2404:6800:4008:c00::76 android-market.l.google.com 11 | 2404:6800:4008:c06::be android.l.google.com 12 | #2404:6800:4008:c00::64 android-china.l.google.com 13 | 2404:6800:4008:c03::70 adwords.l.google.com #adwords-china.l.google.com 14 | 2404:6800:4008:c02::8d appspot.l.google.com 15 | 2404:6800:4008:c06::1b aspmx.l.google.com 16 | 2404:6800:4008:c03::bd b.googlemail.l.google.com 17 | 2404:6800:4005:805::200e bandaid-redirector.l.google.com 18 | 2404:6800:4008:c04::bf blogger.l.google.com 19 | 2404:6800:4008:c04::8b bloggerphotos.l.google.com 20 | #2a00:1450:4007:812::2001 blogspot.l.google.com 21 | #2404:6800:4008:c00::66 browsersync.l.google.com 22 | 2404:6800:4008:c03::bd browserchannel-docs.l.google.com 23 | 2404:6800:4005:805::200e cache.l.google.com 24 | 2404:6800:4008:c00::66 cbk.l.google.com 25 | 2404:6800:4008:c06::64 code.l.google.com 26 | #2404:6800:4008:c00::73 checkout.l.google.com 27 | #2607:f8b0:400e:c01::97 chromeecho.l.google.com 28 | 2404:6800:4008:c06::66 clients.l.google.com #clients-china.l.google.com 29 | 2404:6800:4008:c05::5e clients-cctld.l.google.com 30 | 2a00:1450:400e:800::2003 csi.l.google.com 31 | #2404:6800:4008:c00::68 desktop.l.google.com 32 | 2404:6800:4005:805::200e dl.l.google.com 33 | 2404:6800:4008:c00::5d dl-ssl.l.google.com 34 | 2404:6800:4008:c03::63 ds.ipv6test.l.google.com 35 | 2404:6800:4008:c07::71 encrypted-tbn.l.google.com 36 | 2404:6800:4008:c03::76 gadgets.l.google.com 37 | 2404:6800:4008:c07::6c gmail-imap.l.google.com 38 | 2404:6800:4008:c00::6d gmail-pop.l.google.com 39 | 2a00:1450:400b:c00::6d gmail-smtp.l.google.com 40 | 2404:6800:4008:c03::1b gmail-smtp-in.l.google.com 41 | 2404:6800:4008:c06::6d gmail-smtp-msa.l.google.com 42 | 2404:6800:4008:c04::79 ghs.l.google.com 43 | 2404:6800:4008:c05::79 ghs46.l.google.com 44 | 2404:6800:4008:c06::e gmr-smtp-in.l.google.com 45 | 2404:6800:4008:c04::5f googleapis.l.google.com 46 | #2404:6800:4008:c00::5f googleapis-ajax.l.google.com 47 | 2404:6800:4008:c06::52 googlecode.l.google.com 48 | 2404:6800:4008:c03::84 googlehosted.l.google.com 49 | 2404:6800:4008:c03::53 googlemail.l.google.com #mail-china.l.google.com 50 | 2404:6800:4008:c07::10 googlemail-imap.l.google.com 51 | 2404:6800:4008:c07::10 googlemail-pop.l.google.com 52 | 2404:6800:4008:c06::10 googlemail-smtp.l.google.com 53 | 2404:6800:4008:c07::64 groups.l.google.com #groups-china.l.google.com 54 | 2404:6800:4008:c02::64 history.l.google.com 55 | 2404:6800:4008:c06::5e id.l.google.com 56 | 2404:6800:4008:c06::71 images.l.google.com 57 | #2404:6800:4008:c00::63 ipv4.l.google.com 58 | 2404:6800:4008:c05::64 ipv6.l.google.com 59 | #2404:6800:4008:c00::63 ipv6test.l.google.com 60 | 2404:6800:4005:805::200e keyhole.l.google.com 61 | #2404:6800:4008:c04::5d kh.l.google.com 62 | 2404:6800:4005:805::200e khm.l.google.com 63 | 2404:6800:4005:805::200e khmdb.l.google.com 64 | 2404:6800:4008:c04::66 khms.l.google.com #khms-china.l.google.com 65 | 2404:6800:4008:c03::75 large-uploads.l.google.com 66 | 2404:6800:4008:c03::64 lh2.l.google.com 67 | 2404:6800:4008:c02::66 maps.l.google.com #maps-china.l.google.com 68 | 2404:6800:4008:c06::5e maps-cctld.l.google.com 69 | 2404:6800:4008:c03::c1 mobile.l.google.com 70 | 2404:6800:4008:c06::bc mobile-gtalk.l.google.com 71 | 2404:6800:4008:c05::65 mt.l.google.com 72 | 2404:6800:4008:c03::8a mts.l.google.com #mts-china.l.google.com 73 | 2404:6800:4008:c02::84 music-china.l.google.com 74 | 2404:6800:4008:c04::75 music-streaming.l.google.com 75 | 2404:6800:4008:c06::76 mw-medium.l.google.com 76 | 2404:6800:4008:c00::76 mw-small.l.google.com 77 | 2404:6800:4008:c04::8a news.l.google.com 78 | 2404:6800:4012::200e ogs.google.com 79 | #2404:6800:4003:c01::57 orkut-fe.l.google.com 80 | #2404:6800:4003:c02::56 orkut-images.l.google.com 81 | #2404:6800:4003:c02::57 orkut-opensocial.l.google.com 82 | #2404:6800:4003:c01::55 orkut-promote.l.google.com 83 | #2404:6800:4003:c02::55 orkut-static.l.google.com 84 | #2404:6800:4008:c00::9a pagead.l.google.com 85 | 2404:6800:4008:c06::84 pagead-tpc.l.google.com 86 | 2404:6800:4005:805::200e pagead-googlehosted.l.google.com 87 | #2404:6800:4008:c00::9a partnerad.l.google.com 88 | 2404:6800:4008:c07::be picasaweb.l.google.com 89 | 2404:6800:4008:c03::66 plus.l.google.com #plus-china.l.google.com 90 | #2a00:1450:4007:812::2001 photos-ugc.l.google.com 91 | 2404:6800:4008:c06::451 sandbox.l.google.com 92 | 2404:6800:4008:c00::8a safebrowsing.cache.l.google.com 93 | 2404:6800:4008:c00::5d sb.l.google.com 94 | 2404:6800:4008:c03::5d sb-ssl.l.google.com 95 | 2404:6800:4008:c06::be scholar.l.google.com 96 | #2404:6800:4008:c00::66 sketchup.l.google.com 97 | 2404:6800:4008:c04::8a spreadsheets.l.google.com #spreadsheets-china.l.google.com 98 | 2404:6800:4008:c00::71 spreadsheets-china.l.google.com 99 | 2404:6800:4008:c02::74 sslvideo-upload.l.google.com 100 | 2404:6800:4005:805::200e ssl-google-analytics.l.google.com 101 | #2607:f8b0:4005:400::17 static.cache.l.google.com 102 | 2404:6800:4008:c00::8a suggestqueries.l.google.com 103 | 2404:6800:4008:c07::69 tbn.l.google.com 104 | 2404:6800:4008:c05::7d talk.l.google.com 105 | 2404:6800:4008:c07::66 talkgadget.l.google.com 106 | 2607:f8b0:4003:c03::7d talkx.l.google.com #alt1.talk.l.google.com 107 | 2404:6800:4005:805::200e toolbarqueries.l.google.com 108 | 2404:6800:4008:c07::65 tools.l.google.com #tools-china.l.google.com 109 | 2404:6800:4008:c07::8a video.l.google.com #video-china.l.google.com 110 | 2404:6800:4008:c07::66 video-stats.l.google.com 111 | 2404:6800:4008:c06::64 video-analytics.l.google.com 112 | 2404:6800:4008:c04::64 video-thumbnails.l.google.com 113 | 2404:6800:4008:c04::7b wifi.l.google.com 114 | 2404:6800:4008:c07::8a writely.l.google.com #writely-china.l.google.com 115 | #2404:6800:4008:c00::62 writely-com.l.google.com 116 | 2404:6800:4008:c06::66 writely-china.l.google.com 117 | 2404:6800:4005:807::200e www-google-analytics.l.google.com 118 | 2404:6800:4005:805::200e www-googletagmanager.l.google.com 119 | 2404:6800:4008:c05::c7 www-wide.l.google.com 120 | 2404:6800:4008:c07::8a youtube-ui.l.google.com #youtube-ui-china.l.google.com 121 | 2404:6800:4008:c04::75 yt-video-upload.l.google.com 122 | 2404:6800:4008:c06::8a ytimg.l.google.com 123 | 2404:6800:4008:c07::71 ytstatic.l.google.com 124 | 125 | -------------------------------------------------------------------------------- /snippets/03_adwords.txt: -------------------------------------------------------------------------------- 1 | ## AdWords/AdSense 广告服务 2 | #2404:6800:4008:c00::62 www.googlesyndication.com 3 | #2404:6800:4008:c00::9a www.googleadservices.com #pagead.l.doubleclick.net 4 | #2404:6800:4008:c00::9a domains.googlesyndication.com #pagead.l.doubleclick.net 5 | 2404:6800:4005:805::200e pagead2.googlesyndication.com #pagead46.l.doubleclick.net 6 | 2404:6800:4008:c03::70 adwords.google.com #adwords.l.google.com 7 | 2404:6800:4008:c03::70 adwords.google.sk #adwords.l.google.com 8 | #2404:6800:4008:c00::9a partner.googleadservices.com #partnerad.l.doubleclick.net 9 | #2404:6800:4008:c00::62 pagead.google.com 10 | #2404:6800:4008:c00::9a pagead2.googleadservices.com #pagead.l.doubleclick.net 11 | 2404:6800:4008:c02::69 buttons.googlesyndication.com #www.google.com 12 | 2404:6800:4005:805::200e tpc.googlesyndication.com #pagead-googlehosted.l.google.com 13 | 2404:6800:4005:807::200e v1.cache1.c.googlesyndication.com 14 | 2404:6800:4005:805::200e v1.cache2.c.googlesyndication.com 15 | 2404:6800:4005:805::200e v1.cache3.c.googlesyndication.com 16 | 2404:6800:4005:805::200e v1.cache4.c.googlesyndication.com 17 | 2404:6800:4005:805::200e v1.cache5.c.googlesyndication.com 18 | 2404:6800:4005:805::200e v1.cache6.c.googlesyndication.com 19 | 2404:6800:4005:805::200e v1.cache7.c.googlesyndication.com 20 | 2404:6800:4005:807::200e v1.cache8.c.googlesyndication.com 21 | 2404:6800:4005:805::200e v2.cache1.c.googlesyndication.com 22 | 2404:6800:4005:805::200e v2.cache2.c.googlesyndication.com 23 | 2404:6800:4005:805::200e v2.cache3.c.googlesyndication.com 24 | 2404:6800:4005:805::200e v2.cache4.c.googlesyndication.com 25 | 2404:6800:4005:805::200e v2.cache5.c.googlesyndication.com 26 | 2404:6800:4005:805::200e v2.cache6.c.googlesyndication.com 27 | 2404:6800:4005:802::200e v2.cache7.c.googlesyndication.com 28 | 2401:3800:4002:802::1003 v2.cache8.c.googlesyndication.com 29 | 2404:6800:4005:806::200e v3.cache1.c.googlesyndication.com 30 | 2404:6800:4005:805::200e v3.cache2.c.googlesyndication.com 31 | 2404:6800:4005:805::200e v3.cache3.c.googlesyndication.com 32 | 2404:6800:4005:805::200e v3.cache4.c.googlesyndication.com 33 | 2404:6800:4005:805::200e v3.cache5.c.googlesyndication.com 34 | 2404:6800:4005:805::200e v3.cache6.c.googlesyndication.com 35 | 2404:6800:4005:805::200e v3.cache7.c.googlesyndication.com 36 | 2404:6800:4005:805::200e v3.cache8.c.googlesyndication.com 37 | 2404:6800:4005:805::200e v4.cache1.c.googlesyndication.com 38 | 2404:6800:4005:805::200e v4.cache2.c.googlesyndication.com 39 | 2404:6800:4005:805::200e v4.cache3.c.googlesyndication.com 40 | 2404:6800:4005:805::200e v4.cache4.c.googlesyndication.com 41 | 2404:6800:4005:805::200e v4.cache5.c.googlesyndication.com 42 | 2404:6800:4005:805::200e v4.cache6.c.googlesyndication.com 43 | 2404:6800:4005:805::200e v4.cache7.c.googlesyndication.com 44 | 2404:6800:4005:805::200e v4.cache8.c.googlesyndication.com 45 | 2404:6800:4005:805::200e v5.cache1.c.googlesyndication.com 46 | 2401:3800:4002:802::1000 v5.cache2.c.googlesyndication.com 47 | 2404:6800:4005:805::200e v5.cache3.c.googlesyndication.com 48 | 2404:6800:4005:805::200e v5.cache4.c.googlesyndication.com 49 | 2404:6800:4005:805::200e v5.cache5.c.googlesyndication.com 50 | 2404:6800:4005:805::200e v5.cache6.c.googlesyndication.com 51 | 2404:6800:4005:805::200e v5.cache7.c.googlesyndication.com 52 | 2404:6800:4005:805::200e v5.cache8.c.googlesyndication.com 53 | 2404:6800:4005:805::200e v6.cache1.c.googlesyndication.com 54 | 2404:6800:4005:805::200e v6.cache2.c.googlesyndication.com 55 | 2404:6800:4005:805::200e v6.cache3.c.googlesyndication.com 56 | 2404:6800:4005:805::200e v6.cache4.c.googlesyndication.com 57 | 2404:6800:4005:805::200e v6.cache5.c.googlesyndication.com 58 | 2404:6800:4005:805::200e v6.cache6.c.googlesyndication.com 59 | 2404:6800:4005:805::200e v6.cache7.c.googlesyndication.com 60 | 2404:6800:4005:805::200e v6.cache8.c.googlesyndication.com 61 | 2404:6800:4005:806::200e v7.cache1.c.googlesyndication.com 62 | 2404:6800:4005:805::200e v7.cache2.c.googlesyndication.com 63 | 2404:6800:4005:805::200e v7.cache3.c.googlesyndication.com 64 | 2404:6800:4005:805::200e v7.cache4.c.googlesyndication.com 65 | 2404:6800:4005:805::200e v7.cache5.c.googlesyndication.com 66 | 2404:6800:4005:805::200e v7.cache6.c.googlesyndication.com 67 | 2404:6800:4005:805::200e v7.cache7.c.googlesyndication.com 68 | 2404:6800:4005:805::200e v7.cache8.c.googlesyndication.com 69 | 2404:6800:4005:807::200e v8.cache1.c.googlesyndication.com 70 | 2404:6800:4005:805::200e v8.cache2.c.googlesyndication.com 71 | 2404:6800:4005:805::200e v8.cache3.c.googlesyndication.com 72 | 2404:6800:4005:805::200e v8.cache4.c.googlesyndication.com 73 | 2404:6800:4005:805::200e v8.cache5.c.googlesyndication.com 74 | 2404:6800:4005:805::200e v8.cache6.c.googlesyndication.com 75 | 2404:6800:4005:805::200e v8.cache7.c.googlesyndication.com 76 | 2404:6800:4005:805::200e v8.cache8.c.googlesyndication.com 77 | 2404:6800:4005:805::200e v1.lscache1.c.googlesyndication.com 78 | 2404:6800:4005:805::200e v1.lscache2.c.googlesyndication.com 79 | 2404:6800:4005:805::200e v1.lscache3.c.googlesyndication.com 80 | 2404:6800:4005:805::200e v1.lscache4.c.googlesyndication.com 81 | 2404:6800:4005:805::200e v1.lscache5.c.googlesyndication.com 82 | 2404:6800:4005:805::200e v1.lscache6.c.googlesyndication.com 83 | 2404:6800:4005:805::200e v1.lscache7.c.googlesyndication.com 84 | 2404:6800:4005:805::200e v1.lscache8.c.googlesyndication.com 85 | 2404:6800:4005:805::200e v2.lscache1.c.googlesyndication.com 86 | 2404:6800:4005:805::200e v2.lscache2.c.googlesyndication.com 87 | 2404:6800:4005:805::200e v2.lscache3.c.googlesyndication.com 88 | 2404:6800:4005:805::200e v2.lscache4.c.googlesyndication.com 89 | 2404:6800:4005:805::200e v2.lscache5.c.googlesyndication.com 90 | 2404:6800:4005:807::200e v2.lscache6.c.googlesyndication.com 91 | 2404:6800:4005:805::200e v2.lscache7.c.googlesyndication.com 92 | 2404:6800:4005:805::200e v2.lscache8.c.googlesyndication.com 93 | 2404:6800:4005:805::200e v3.lscache1.c.googlesyndication.com 94 | 2404:6800:4005:805::200e v3.lscache2.c.googlesyndication.com 95 | 2404:6800:4005:805::200e v3.lscache3.c.googlesyndication.com 96 | 2404:6800:4005:805::200e v3.lscache4.c.googlesyndication.com 97 | 2404:6800:4005:805::200e v3.lscache5.c.googlesyndication.com 98 | 2404:6800:4005:805::200e v3.lscache6.c.googlesyndication.com 99 | 2404:6800:4005:805::200e v3.lscache7.c.googlesyndication.com 100 | 2404:6800:4005:805::200e v3.lscache8.c.googlesyndication.com 101 | 2404:6800:4005:805::200e v4.lscache1.c.googlesyndication.com 102 | 2404:6800:4005:805::200e v4.lscache2.c.googlesyndication.com 103 | 2404:6800:4005:805::200e v4.lscache3.c.googlesyndication.com 104 | 2404:6800:4005:805::200e v4.lscache4.c.googlesyndication.com 105 | 2404:6800:4005:805::200e v4.lscache5.c.googlesyndication.com 106 | 2404:6800:4005:805::200e v4.lscache6.c.googlesyndication.com 107 | 2404:6800:4005:805::200e v4.lscache7.c.googlesyndication.com 108 | 2404:6800:4005:802::200e v4.lscache8.c.googlesyndication.com 109 | 2404:6800:4005:805::200e v5.lscache1.c.googlesyndication.com 110 | 2404:6800:4005:804::200e v5.lscache2.c.googlesyndication.com 111 | 2404:6800:4005:805::200e v5.lscache3.c.googlesyndication.com 112 | 2404:6800:4005:805::200e v5.lscache4.c.googlesyndication.com 113 | 2404:6800:4005:805::200e v5.lscache5.c.googlesyndication.com 114 | 2404:6800:4005:805::200e v5.lscache6.c.googlesyndication.com 115 | 2404:6800:4005:805::200e v5.lscache7.c.googlesyndication.com 116 | 2404:6800:4005:805::200e v5.lscache8.c.googlesyndication.com 117 | 2404:6800:4005:806::200e v6.lscache1.c.googlesyndication.com 118 | 2404:6800:4005:805::200e v6.lscache2.c.googlesyndication.com 119 | 2404:6800:4005:805::200e v6.lscache3.c.googlesyndication.com 120 | 2404:6800:4005:805::200e v6.lscache4.c.googlesyndication.com 121 | 2404:6800:4005:805::200e v6.lscache5.c.googlesyndication.com 122 | 2404:6800:4005:805::200e v6.lscache6.c.googlesyndication.com 123 | 2404:6800:4005:805::200e v6.lscache7.c.googlesyndication.com 124 | 2404:6800:4005:806::200e v6.lscache8.c.googlesyndication.com 125 | 2404:6800:4005:806::200e v7.lscache1.c.googlesyndication.com 126 | 2404:6800:4005:805::200e v7.lscache2.c.googlesyndication.com 127 | 2404:6800:4005:805::200e v7.lscache3.c.googlesyndication.com 128 | 2404:6800:4005:805::200e v7.lscache4.c.googlesyndication.com 129 | 2404:6800:4005:805::200e v7.lscache5.c.googlesyndication.com 130 | 2404:6800:4005:805::200e v7.lscache6.c.googlesyndication.com 131 | 2404:6800:4005:807::200e v7.lscache7.c.googlesyndication.com 132 | 2404:6800:4005:805::200e v7.lscache8.c.googlesyndication.com 133 | 2404:6800:4005:805::200e v8.lscache1.c.googlesyndication.com 134 | 2404:6800:4005:805::200e v8.lscache2.c.googlesyndication.com 135 | 2404:6800:4005:805::200e v8.lscache3.c.googlesyndication.com 136 | 2404:6800:4005:807::200e v8.lscache4.c.googlesyndication.com 137 | 2404:6800:4005:805::200e v8.lscache5.c.googlesyndication.com 138 | 2404:6800:4005:805::200e v8.lscache6.c.googlesyndication.com 139 | 2404:6800:4005:805::200e v8.lscache7.c.googlesyndication.com 140 | 2404:6800:4005:805::200e v8.lscache8.c.googlesyndication.com 141 | 2404:6800:4005:805::200e v9.lscache1.c.googlesyndication.com 142 | 2404:6800:4005:805::200e v9.lscache2.c.googlesyndication.com 143 | 2404:6800:4005:805::200e v9.lscache3.c.googlesyndication.com 144 | 2404:6800:4005:805::200e v9.lscache4.c.googlesyndication.com 145 | 2404:6800:4005:802::200e v9.lscache5.c.googlesyndication.com 146 | 2404:6800:4005:805::200e v9.lscache6.c.googlesyndication.com 147 | 2404:6800:4005:805::200e v9.lscache7.c.googlesyndication.com 148 | 2404:6800:4005:806::200e v9.lscache8.c.googlesyndication.com 149 | 2404:6800:4005:805::200e v10.lscache1.c.googlesyndication.com 150 | 2404:6800:4005:805::200e v10.lscache2.c.googlesyndication.com 151 | 2404:6800:4005:805::200e v10.lscache3.c.googlesyndication.com 152 | 2404:6800:4005:805::200e v10.lscache4.c.googlesyndication.com 153 | 2404:6800:4005:805::200e v10.lscache5.c.googlesyndication.com 154 | 2404:6800:4005:805::200e v10.lscache6.c.googlesyndication.com 155 | 2404:6800:4005:805::200e v10.lscache7.c.googlesyndication.com 156 | 2404:6800:4005:806::200e v10.lscache8.c.googlesyndication.com 157 | 2404:6800:4005:805::200e v11.lscache1.c.googlesyndication.com 158 | 2404:6800:4005:805::200e v11.lscache2.c.googlesyndication.com 159 | 2404:6800:4005:805::200e v11.lscache3.c.googlesyndication.com 160 | 2404:6800:4005:805::200e v11.lscache4.c.googlesyndication.com 161 | 2404:6800:4005:805::200e v11.lscache5.c.googlesyndication.com 162 | 2404:6800:4005:805::200e v11.lscache6.c.googlesyndication.com 163 | 2404:6800:4005:805::200e v11.lscache7.c.googlesyndication.com 164 | 2404:6800:4005:807::200e v11.lscache8.c.googlesyndication.com 165 | 2404:6800:4005:805::200e v12.lscache1.c.googlesyndication.com 166 | 2404:6800:4005:805::200e v12.lscache2.c.googlesyndication.com 167 | 2404:6800:4005:805::200e v12.lscache3.c.googlesyndication.com 168 | 2404:6800:4005:802::200e v12.lscache4.c.googlesyndication.com 169 | 2404:6800:4005:805::200e v12.lscache5.c.googlesyndication.com 170 | 2404:6800:4005:805::200e v12.lscache6.c.googlesyndication.com 171 | 2404:6800:4005:805::200e v12.lscache7.c.googlesyndication.com 172 | 2404:6800:4005:805::200e v12.lscache8.c.googlesyndication.com 173 | 2404:6800:4005:805::200e v13.lscache1.c.googlesyndication.com 174 | 2404:6800:4005:805::200e v13.lscache2.c.googlesyndication.com 175 | 2404:6800:4005:805::200e v13.lscache3.c.googlesyndication.com 176 | 2404:6800:4005:805::200e v13.lscache4.c.googlesyndication.com 177 | 2404:6800:4005:805::200e v13.lscache5.c.googlesyndication.com 178 | 2404:6800:4005:805::200e v13.lscache6.c.googlesyndication.com 179 | 2404:6800:4005:805::200e v13.lscache7.c.googlesyndication.com 180 | 2404:6800:4005:805::200e v13.lscache8.c.googlesyndication.com 181 | 2404:6800:4005:804::200e v14.lscache1.c.googlesyndication.com 182 | 2404:6800:4005:805::200e v14.lscache2.c.googlesyndication.com 183 | 2404:6800:4005:805::200e v14.lscache3.c.googlesyndication.com 184 | 2404:6800:4005:805::200e v14.lscache4.c.googlesyndication.com 185 | 2404:6800:4005:805::200e v14.lscache5.c.googlesyndication.com 186 | 2404:6800:4005:805::200e v14.lscache6.c.googlesyndication.com 187 | 2404:6800:4005:805::200e v14.lscache7.c.googlesyndication.com 188 | 2404:6800:4005:805::200e v14.lscache8.c.googlesyndication.com 189 | 2404:6800:4005:805::200e v15.lscache1.c.googlesyndication.com 190 | 2404:6800:4005:805::200e v15.lscache2.c.googlesyndication.com 191 | 2404:6800:4005:805::200e v15.lscache3.c.googlesyndication.com 192 | 2404:6800:4005:805::200e v15.lscache4.c.googlesyndication.com 193 | 2404:6800:4005:805::200e v15.lscache5.c.googlesyndication.com 194 | 2404:6800:4005:805::200e v15.lscache6.c.googlesyndication.com 195 | 2404:6800:4005:805::200e v15.lscache7.c.googlesyndication.com 196 | 2404:6800:4005:805::200e v15.lscache8.c.googlesyndication.com 197 | 2404:6800:4005:805::200e v16.lscache1.c.googlesyndication.com 198 | 2404:6800:4005:805::200e v16.lscache2.c.googlesyndication.com 199 | 2404:6800:4005:807::200e v16.lscache3.c.googlesyndication.com 200 | 2404:6800:4005:805::200e v16.lscache4.c.googlesyndication.com 201 | 2404:6800:4005:805::200e v16.lscache5.c.googlesyndication.com 202 | 2404:6800:4005:805::200e v16.lscache6.c.googlesyndication.com 203 | 2404:6800:4005:802::200e v16.lscache7.c.googlesyndication.com 204 | 2404:6800:4005:805::200e v16.lscache8.c.googlesyndication.com 205 | 2404:6800:4005:802::200e v17.lscache1.c.googlesyndication.com 206 | 2404:6800:4005:805::200e v17.lscache2.c.googlesyndication.com 207 | 2404:6800:4005:805::200e v17.lscache3.c.googlesyndication.com 208 | 2404:6800:4005:805::200e v17.lscache4.c.googlesyndication.com 209 | 2404:6800:4005:805::200e v17.lscache5.c.googlesyndication.com 210 | 2404:6800:4005:805::200e v17.lscache6.c.googlesyndication.com 211 | 2404:6800:4005:805::200e v17.lscache7.c.googlesyndication.com 212 | 2404:6800:4005:805::200e v17.lscache8.c.googlesyndication.com 213 | 2404:6800:4005:804::200e v18.lscache1.c.googlesyndication.com 214 | 2404:6800:4005:802::200e v18.lscache2.c.googlesyndication.com 215 | 2404:6800:4005:805::200e v18.lscache3.c.googlesyndication.com 216 | 2404:6800:4005:805::200e v18.lscache4.c.googlesyndication.com 217 | 2404:6800:4005:805::200e v18.lscache5.c.googlesyndication.com 218 | 2404:6800:4005:807::200e v18.lscache6.c.googlesyndication.com 219 | 2404:6800:4005:805::200e v18.lscache7.c.googlesyndication.com 220 | 2404:6800:4005:805::200e v18.lscache8.c.googlesyndication.com 221 | 2404:6800:4005:805::200e v19.lscache1.c.googlesyndication.com 222 | 2404:6800:4005:806::200e v19.lscache2.c.googlesyndication.com 223 | 2404:6800:4005:805::200e v19.lscache3.c.googlesyndication.com 224 | 2404:6800:4005:805::200e v19.lscache4.c.googlesyndication.com 225 | 2404:6800:4005:805::200e v19.lscache5.c.googlesyndication.com 226 | 2404:6800:4005:805::200e v19.lscache6.c.googlesyndication.com 227 | 2404:6800:4005:805::200e v19.lscache7.c.googlesyndication.com 228 | 2404:6800:4005:805::200e v19.lscache8.c.googlesyndication.com 229 | 2404:6800:4005:805::200e v20.lscache1.c.googlesyndication.com 230 | 2404:6800:4005:805::200e v20.lscache2.c.googlesyndication.com 231 | 2404:6800:4005:806::200e v20.lscache3.c.googlesyndication.com 232 | 2404:6800:4005:805::200e v20.lscache4.c.googlesyndication.com 233 | 2404:6800:4005:807::200e v20.lscache5.c.googlesyndication.com 234 | 2404:6800:4005:805::200e v20.lscache6.c.googlesyndication.com 235 | 2404:6800:4005:805::200e v20.lscache7.c.googlesyndication.com 236 | 2404:6800:4005:805::200e v20.lscache8.c.googlesyndication.com 237 | 2404:6800:4005:805::200e v21.lscache1.c.googlesyndication.com 238 | 2404:6800:4005:805::200e v21.lscache2.c.googlesyndication.com 239 | 2404:6800:4005:805::200e v21.lscache3.c.googlesyndication.com 240 | 2404:6800:4005:805::200e v21.lscache4.c.googlesyndication.com 241 | 2404:6800:4005:805::200e v21.lscache5.c.googlesyndication.com 242 | 2404:6800:4005:805::200e v21.lscache6.c.googlesyndication.com 243 | 2404:6800:4005:806::200e v21.lscache7.c.googlesyndication.com 244 | 2404:6800:4005:805::200e v21.lscache8.c.googlesyndication.com 245 | 2404:6800:4005:805::200e v22.lscache1.c.googlesyndication.com 246 | 2404:6800:4005:805::200e v22.lscache2.c.googlesyndication.com 247 | 2404:6800:4005:805::200e v22.lscache3.c.googlesyndication.com 248 | 2404:6800:4005:805::200e v22.lscache4.c.googlesyndication.com 249 | 2404:6800:4005:805::200e v22.lscache5.c.googlesyndication.com 250 | 2404:6800:4005:805::200e v22.lscache6.c.googlesyndication.com 251 | 2404:6800:4005:805::200e v22.lscache7.c.googlesyndication.com 252 | 2404:6800:4005:805::200e v22.lscache8.c.googlesyndication.com 253 | 2404:6800:4005:805::200e v23.lscache1.c.googlesyndication.com 254 | 2404:6800:4005:805::200e v23.lscache2.c.googlesyndication.com 255 | 2404:6800:4005:805::200e v23.lscache3.c.googlesyndication.com 256 | 2404:6800:4005:805::200e v23.lscache4.c.googlesyndication.com 257 | 2404:6800:4005:806::200e v23.lscache5.c.googlesyndication.com 258 | 2404:6800:4005:805::200e v23.lscache6.c.googlesyndication.com 259 | 2404:6800:4005:805::200e v23.lscache7.c.googlesyndication.com 260 | 2404:6800:4005:805::200e v23.lscache8.c.googlesyndication.com 261 | 2404:6800:4005:805::200e v24.lscache1.c.googlesyndication.com 262 | 2404:6800:4005:805::200e v24.lscache2.c.googlesyndication.com 263 | 2404:6800:4005:805::200e v24.lscache3.c.googlesyndication.com 264 | 2404:6800:4005:805::200e v24.lscache4.c.googlesyndication.com 265 | 2404:6800:4005:805::200e v24.lscache5.c.googlesyndication.com 266 | 2404:6800:4005:807::200e v24.lscache6.c.googlesyndication.com 267 | 2404:6800:4005:805::200e v24.lscache7.c.googlesyndication.com 268 | 2404:6800:4005:805::200e v24.lscache8.c.googlesyndication.com 269 | 270 | -------------------------------------------------------------------------------- /snippets/05_bigcache.txt: -------------------------------------------------------------------------------- 1 | ## BigCache (Google Storage) 2 | 2404:6800:4005:805::200e v1.lscache1.c.bigcache.googleapis.com #bandaid-redirector.l.google.com 3 | 2404:6800:4005:805::200e v1.lscache2.c.bigcache.googleapis.com 4 | 2404:6800:4005:805::200e v1.lscache3.c.bigcache.googleapis.com 5 | 2401:3800:4002:802::1007 v1.lscache4.c.bigcache.googleapis.com 6 | 2404:6800:4005:805::200e v1.lscache5.c.bigcache.googleapis.com 7 | 2404:6800:4005:805::200e v1.lscache6.c.bigcache.googleapis.com 8 | 2404:6800:4005:805::200e v1.lscache7.c.bigcache.googleapis.com 9 | 2404:6800:4005:805::200e v1.lscache8.c.bigcache.googleapis.com 10 | 2404:6800:4005:805::200e v2.lscache1.c.bigcache.googleapis.com 11 | 2404:6800:4005:805::200e v2.lscache2.c.bigcache.googleapis.com 12 | 2404:6800:4005:806::200e v2.lscache3.c.bigcache.googleapis.com 13 | 2404:6800:4005:805::200e v2.lscache4.c.bigcache.googleapis.com 14 | 2404:6800:4005:805::200e v2.lscache5.c.bigcache.googleapis.com 15 | 2404:6800:4005:805::200e v2.lscache6.c.bigcache.googleapis.com 16 | 2401:3800:4002:805::1002 v2.lscache7.c.bigcache.googleapis.com 17 | 2404:6800:4005:805::200e v2.lscache8.c.bigcache.googleapis.com 18 | 2404:6800:4005:805::200e v3.lscache1.c.bigcache.googleapis.com 19 | 2404:6800:4005:805::200e v3.lscache2.c.bigcache.googleapis.com 20 | 2404:6800:4005:805::200e v3.lscache3.c.bigcache.googleapis.com 21 | 2404:6800:4005:805::200e v3.lscache4.c.bigcache.googleapis.com 22 | 2404:6800:4005:805::200e v3.lscache5.c.bigcache.googleapis.com 23 | 2404:6800:4005:805::200e v3.lscache6.c.bigcache.googleapis.com 24 | 2404:6800:4005:805::200e v3.lscache7.c.bigcache.googleapis.com 25 | 2404:6800:4005:805::200e v3.lscache8.c.bigcache.googleapis.com 26 | 2404:6800:4005:805::200e v4.lscache1.c.bigcache.googleapis.com 27 | 2404:6800:4005:805::200e v4.lscache2.c.bigcache.googleapis.com 28 | 2404:6800:4005:805::200e v4.lscache3.c.bigcache.googleapis.com 29 | 2404:6800:4005:805::200e v4.lscache4.c.bigcache.googleapis.com 30 | 2404:6800:4005:805::200e v4.lscache5.c.bigcache.googleapis.com 31 | 2404:6800:4005:805::200e v4.lscache6.c.bigcache.googleapis.com 32 | 2404:6800:4005:805::200e v4.lscache7.c.bigcache.googleapis.com 33 | 2404:6800:4005:805::200e v4.lscache8.c.bigcache.googleapis.com 34 | 2404:6800:4005:805::200e v5.lscache1.c.bigcache.googleapis.com 35 | 2404:6800:4005:805::200e v5.lscache2.c.bigcache.googleapis.com 36 | 2404:6800:4005:805::200e v5.lscache3.c.bigcache.googleapis.com 37 | 2404:6800:4005:805::200e v5.lscache4.c.bigcache.googleapis.com 38 | 2404:6800:4005:805::200e v5.lscache5.c.bigcache.googleapis.com 39 | 2404:6800:4005:805::200e v5.lscache6.c.bigcache.googleapis.com 40 | 2404:6800:4005:806::200e v5.lscache7.c.bigcache.googleapis.com 41 | 2404:6800:4005:805::200e v5.lscache8.c.bigcache.googleapis.com 42 | 2404:6800:4005:805::200e v6.lscache1.c.bigcache.googleapis.com 43 | 2404:6800:4005:805::200e v6.lscache2.c.bigcache.googleapis.com 44 | 2404:6800:4005:805::200e v6.lscache3.c.bigcache.googleapis.com 45 | 2404:6800:4005:805::200e v6.lscache4.c.bigcache.googleapis.com 46 | 2404:6800:4005:805::200e v6.lscache5.c.bigcache.googleapis.com 47 | 2404:6800:4005:807::200e v6.lscache6.c.bigcache.googleapis.com 48 | 2404:6800:4005:805::200e v6.lscache7.c.bigcache.googleapis.com 49 | 2404:6800:4005:805::200e v6.lscache8.c.bigcache.googleapis.com 50 | 2404:6800:4005:804::200e v7.lscache1.c.bigcache.googleapis.com 51 | 2404:6800:4005:806::200e v7.lscache2.c.bigcache.googleapis.com 52 | 2404:6800:4005:805::200e v7.lscache3.c.bigcache.googleapis.com 53 | 2404:6800:4005:805::200e v7.lscache4.c.bigcache.googleapis.com 54 | 2404:6800:4005:805::200e v7.lscache5.c.bigcache.googleapis.com 55 | 2404:6800:4005:805::200e v7.lscache6.c.bigcache.googleapis.com 56 | 2404:6800:4005:805::200e v7.lscache7.c.bigcache.googleapis.com 57 | 2404:6800:4005:805::200e v7.lscache8.c.bigcache.googleapis.com 58 | 2404:6800:4005:805::200e v8.lscache1.c.bigcache.googleapis.com 59 | 2404:6800:4005:805::200e v8.lscache2.c.bigcache.googleapis.com 60 | 2404:6800:4005:805::200e v8.lscache3.c.bigcache.googleapis.com 61 | 2404:6800:4005:805::200e v8.lscache4.c.bigcache.googleapis.com 62 | 2404:6800:4005:805::200e v8.lscache5.c.bigcache.googleapis.com 63 | 2404:6800:4005:805::200e v8.lscache6.c.bigcache.googleapis.com 64 | 2404:6800:4005:805::200e v8.lscache7.c.bigcache.googleapis.com 65 | 2404:6800:4005:805::200e v8.lscache8.c.bigcache.googleapis.com 66 | 2404:6800:4005:805::200e v9.lscache1.c.bigcache.googleapis.com 67 | 2404:6800:4005:805::200e v9.lscache2.c.bigcache.googleapis.com 68 | 2404:6800:4005:805::200e v9.lscache3.c.bigcache.googleapis.com 69 | 2404:6800:4005:805::200e v9.lscache4.c.bigcache.googleapis.com 70 | 2404:6800:4005:805::200e v9.lscache5.c.bigcache.googleapis.com 71 | 2404:6800:4005:805::200e v9.lscache6.c.bigcache.googleapis.com 72 | 2404:6800:4005:805::200e v9.lscache7.c.bigcache.googleapis.com 73 | 2404:6800:4005:805::200e v9.lscache8.c.bigcache.googleapis.com 74 | 2404:6800:4005:805::200e v10.lscache1.c.bigcache.googleapis.com 75 | 2404:6800:4005:805::200e v10.lscache2.c.bigcache.googleapis.com 76 | 2404:6800:4005:805::200e v10.lscache3.c.bigcache.googleapis.com 77 | 2404:6800:4005:805::200e v10.lscache4.c.bigcache.googleapis.com 78 | 2404:6800:4005:805::200e v10.lscache5.c.bigcache.googleapis.com 79 | 2404:6800:4005:805::200e v10.lscache6.c.bigcache.googleapis.com 80 | 2404:6800:4005:805::200e v10.lscache7.c.bigcache.googleapis.com 81 | 2404:6800:4005:805::200e v10.lscache8.c.bigcache.googleapis.com 82 | 2404:6800:4005:805::200e v11.lscache1.c.bigcache.googleapis.com 83 | 2404:6800:4005:805::200e v11.lscache2.c.bigcache.googleapis.com 84 | 2404:6800:4005:805::200e v11.lscache3.c.bigcache.googleapis.com 85 | 2404:6800:4005:805::200e v11.lscache4.c.bigcache.googleapis.com 86 | 2404:6800:4005:805::200e v11.lscache5.c.bigcache.googleapis.com 87 | 2404:6800:4005:805::200e v11.lscache6.c.bigcache.googleapis.com 88 | 2404:6800:4005:805::200e v11.lscache7.c.bigcache.googleapis.com 89 | 2404:6800:4005:805::200e v11.lscache8.c.bigcache.googleapis.com 90 | 2404:6800:4005:805::200e v12.lscache1.c.bigcache.googleapis.com 91 | 2404:6800:4005:805::200e v12.lscache2.c.bigcache.googleapis.com 92 | 2404:6800:4005:805::200e v12.lscache3.c.bigcache.googleapis.com 93 | 2404:6800:4005:805::200e v12.lscache4.c.bigcache.googleapis.com 94 | 2404:6800:4005:805::200e v12.lscache5.c.bigcache.googleapis.com 95 | 2404:6800:4005:805::200e v12.lscache6.c.bigcache.googleapis.com 96 | 2404:6800:4005:805::200e v12.lscache7.c.bigcache.googleapis.com 97 | 2404:6800:4005:805::200e v12.lscache8.c.bigcache.googleapis.com 98 | 2404:6800:4005:805::200e v13.lscache1.c.bigcache.googleapis.com 99 | 2404:6800:4005:805::200e v13.lscache2.c.bigcache.googleapis.com 100 | 2404:6800:4005:805::200e v13.lscache3.c.bigcache.googleapis.com 101 | 2404:6800:4005:805::200e v13.lscache4.c.bigcache.googleapis.com 102 | 2404:6800:4005:805::200e v13.lscache5.c.bigcache.googleapis.com 103 | 2404:6800:4005:805::200e v13.lscache6.c.bigcache.googleapis.com 104 | 2404:6800:4005:805::200e v13.lscache7.c.bigcache.googleapis.com 105 | 2404:6800:4005:805::200e v13.lscache8.c.bigcache.googleapis.com 106 | 2404:6800:4005:805::200e v14.lscache1.c.bigcache.googleapis.com 107 | 2404:6800:4005:805::200e v14.lscache2.c.bigcache.googleapis.com 108 | 2404:6800:4005:805::200e v14.lscache3.c.bigcache.googleapis.com 109 | 2404:6800:4005:805::200e v14.lscache4.c.bigcache.googleapis.com 110 | 2404:6800:4005:805::200e v14.lscache5.c.bigcache.googleapis.com 111 | 2404:6800:4005:805::200e v14.lscache6.c.bigcache.googleapis.com 112 | 2404:6800:4005:805::200e v14.lscache7.c.bigcache.googleapis.com 113 | 2404:6800:4005:805::200e v14.lscache8.c.bigcache.googleapis.com 114 | 2404:6800:4005:805::200e v15.lscache1.c.bigcache.googleapis.com 115 | 2404:6800:4005:805::200e v15.lscache2.c.bigcache.googleapis.com 116 | 2404:6800:4005:805::200e v15.lscache3.c.bigcache.googleapis.com 117 | 2404:6800:4005:807::200e v15.lscache4.c.bigcache.googleapis.com 118 | 2404:6800:4005:805::200e v15.lscache5.c.bigcache.googleapis.com 119 | 2404:6800:4005:805::200e v15.lscache6.c.bigcache.googleapis.com 120 | 2404:6800:4005:805::200e v15.lscache7.c.bigcache.googleapis.com 121 | 2404:6800:4005:805::200e v15.lscache8.c.bigcache.googleapis.com 122 | 2404:6800:4005:805::200e v16.lscache1.c.bigcache.googleapis.com 123 | 2401:3800:4002:802::1002 v16.lscache2.c.bigcache.googleapis.com 124 | 2404:6800:4005:805::200e v16.lscache3.c.bigcache.googleapis.com 125 | 2404:6800:4005:806::200e v16.lscache4.c.bigcache.googleapis.com 126 | 2404:6800:4005:807::200e v16.lscache5.c.bigcache.googleapis.com 127 | 2404:6800:4005:805::200e v16.lscache6.c.bigcache.googleapis.com 128 | 2404:6800:4005:805::200e v16.lscache7.c.bigcache.googleapis.com 129 | 2404:6800:4005:805::200e v16.lscache8.c.bigcache.googleapis.com 130 | 2404:6800:4005:805::200e v17.lscache1.c.bigcache.googleapis.com 131 | 2404:6800:4005:805::200e v17.lscache2.c.bigcache.googleapis.com 132 | 2404:6800:4005:805::200e v17.lscache3.c.bigcache.googleapis.com 133 | 2404:6800:4005:805::200e v17.lscache4.c.bigcache.googleapis.com 134 | 2404:6800:4005:805::200e v17.lscache5.c.bigcache.googleapis.com 135 | 2404:6800:4005:805::200e v17.lscache6.c.bigcache.googleapis.com 136 | 2404:6800:4005:805::200e v17.lscache7.c.bigcache.googleapis.com 137 | 2404:6800:4005:805::200e v17.lscache8.c.bigcache.googleapis.com 138 | 2404:6800:4005:805::200e v18.lscache1.c.bigcache.googleapis.com 139 | 2404:6800:4005:805::200e v18.lscache2.c.bigcache.googleapis.com 140 | 2404:6800:4005:805::200e v18.lscache3.c.bigcache.googleapis.com 141 | 2404:6800:4005:807::200e v18.lscache4.c.bigcache.googleapis.com 142 | 2404:6800:4005:805::200e v18.lscache5.c.bigcache.googleapis.com 143 | 2404:6800:4005:805::200e v18.lscache6.c.bigcache.googleapis.com 144 | 2404:6800:4005:805::200e v18.lscache7.c.bigcache.googleapis.com 145 | 2404:6800:4005:805::200e v18.lscache8.c.bigcache.googleapis.com 146 | 2404:6800:4005:805::200e v19.lscache1.c.bigcache.googleapis.com 147 | 2404:6800:4005:805::200e v19.lscache2.c.bigcache.googleapis.com 148 | 2404:6800:4005:805::200e v19.lscache3.c.bigcache.googleapis.com 149 | 2404:6800:4005:805::200e v19.lscache4.c.bigcache.googleapis.com 150 | 2404:6800:4005:805::200e v19.lscache5.c.bigcache.googleapis.com 151 | 2404:6800:4005:805::200e v19.lscache6.c.bigcache.googleapis.com 152 | 2404:6800:4005:805::200e v19.lscache7.c.bigcache.googleapis.com 153 | 2404:6800:4005:805::200e v19.lscache8.c.bigcache.googleapis.com 154 | 2404:6800:4005:805::200e v20.lscache1.c.bigcache.googleapis.com 155 | 2404:6800:4005:805::200e v20.lscache2.c.bigcache.googleapis.com 156 | 2404:6800:4005:805::200e v20.lscache3.c.bigcache.googleapis.com 157 | 2404:6800:4005:805::200e v20.lscache4.c.bigcache.googleapis.com 158 | 2404:6800:4005:805::200e v20.lscache5.c.bigcache.googleapis.com 159 | 2404:6800:4005:805::200e v20.lscache6.c.bigcache.googleapis.com 160 | 2404:6800:4005:805::200e v20.lscache7.c.bigcache.googleapis.com 161 | 2404:6800:4005:805::200e v20.lscache8.c.bigcache.googleapis.com 162 | 2404:6800:4005:805::200e v21.lscache1.c.bigcache.googleapis.com 163 | 2404:6800:4005:805::200e v21.lscache2.c.bigcache.googleapis.com 164 | 2404:6800:4005:805::200e v21.lscache3.c.bigcache.googleapis.com 165 | 2404:6800:4005:805::200e v21.lscache4.c.bigcache.googleapis.com 166 | 2404:6800:4005:805::200e v21.lscache5.c.bigcache.googleapis.com 167 | 2404:6800:4005:805::200e v21.lscache6.c.bigcache.googleapis.com 168 | 2404:6800:4005:805::200e v21.lscache7.c.bigcache.googleapis.com 169 | 2404:6800:4005:805::200e v21.lscache8.c.bigcache.googleapis.com 170 | 2404:6800:4005:805::200e v22.lscache1.c.bigcache.googleapis.com 171 | 2401:3800:4002:805::1001 v22.lscache2.c.bigcache.googleapis.com 172 | 2404:6800:4005:805::200e v22.lscache3.c.bigcache.googleapis.com 173 | 2404:6800:4005:805::200e v22.lscache4.c.bigcache.googleapis.com 174 | 2404:6800:4005:805::200e v22.lscache5.c.bigcache.googleapis.com 175 | 2404:6800:4005:805::200e v22.lscache6.c.bigcache.googleapis.com 176 | 2404:6800:4005:805::200e v22.lscache7.c.bigcache.googleapis.com 177 | 2404:6800:4005:805::200e v22.lscache8.c.bigcache.googleapis.com 178 | 2404:6800:4005:805::200e v23.lscache1.c.bigcache.googleapis.com 179 | 2404:6800:4005:805::200e v23.lscache2.c.bigcache.googleapis.com 180 | 2404:6800:4005:805::200e v23.lscache3.c.bigcache.googleapis.com 181 | 2404:6800:4005:805::200e v23.lscache4.c.bigcache.googleapis.com 182 | 2404:6800:4005:805::200e v23.lscache5.c.bigcache.googleapis.com 183 | 2404:6800:4005:805::200e v23.lscache6.c.bigcache.googleapis.com 184 | 2404:6800:4005:805::200e v23.lscache7.c.bigcache.googleapis.com 185 | 2404:6800:4005:805::200e v23.lscache8.c.bigcache.googleapis.com 186 | 2404:6800:4005:805::200e v24.lscache1.c.bigcache.googleapis.com 187 | 2404:6800:4005:805::200e v24.lscache2.c.bigcache.googleapis.com 188 | 2404:6800:4005:805::200e v24.lscache3.c.bigcache.googleapis.com 189 | 2404:6800:4005:805::200e v24.lscache4.c.bigcache.googleapis.com 190 | 2404:6800:4005:805::200e v24.lscache5.c.bigcache.googleapis.com 191 | 2404:6800:4005:805::200e v24.lscache6.c.bigcache.googleapis.com 192 | 2404:6800:4005:805::200e v24.lscache7.c.bigcache.googleapis.com 193 | 2404:6800:4005:805::200e v24.lscache8.c.bigcache.googleapis.com 194 | 2404:6800:4005:805::200e v1.cache1.c.bigcache.googleapis.com 195 | 2404:6800:4005:805::200e v1.cache2.c.bigcache.googleapis.com 196 | 2404:6800:4005:805::200e v1.cache3.c.bigcache.googleapis.com 197 | 2404:6800:4005:806::200e v1.cache4.c.bigcache.googleapis.com 198 | 2404:6800:4005:805::200e v1.cache5.c.bigcache.googleapis.com 199 | 2404:6800:4005:805::200e v1.cache6.c.bigcache.googleapis.com 200 | 2404:6800:4005:805::200e v1.cache7.c.bigcache.googleapis.com 201 | 2404:6800:4005:805::200e v1.cache8.c.bigcache.googleapis.com 202 | 2404:6800:4005:805::200e v2.cache1.c.bigcache.googleapis.com 203 | 2404:6800:4005:805::200e v2.cache2.c.bigcache.googleapis.com 204 | 2404:6800:4005:805::200e v2.cache3.c.bigcache.googleapis.com 205 | 2404:6800:4005:805::200e v2.cache4.c.bigcache.googleapis.com 206 | 2404:6800:4005:805::200e v2.cache5.c.bigcache.googleapis.com 207 | 2404:6800:4005:805::200e v2.cache6.c.bigcache.googleapis.com 208 | 2404:6800:4005:805::200e v2.cache7.c.bigcache.googleapis.com 209 | 2404:6800:4005:805::200e v2.cache8.c.bigcache.googleapis.com 210 | 2404:6800:4005:805::200e v3.cache1.c.bigcache.googleapis.com 211 | 2404:6800:4005:805::200e v3.cache2.c.bigcache.googleapis.com 212 | 2404:6800:4005:805::200e v3.cache3.c.bigcache.googleapis.com 213 | 2404:6800:4005:805::200e v3.cache4.c.bigcache.googleapis.com 214 | 2404:6800:4005:805::200e v3.cache5.c.bigcache.googleapis.com 215 | 2404:6800:4005:805::200e v3.cache6.c.bigcache.googleapis.com 216 | 2404:6800:4005:805::200e v3.cache7.c.bigcache.googleapis.com 217 | 2404:6800:4005:805::200e v3.cache8.c.bigcache.googleapis.com 218 | 2404:6800:4005:805::200e v4.cache1.c.bigcache.googleapis.com 219 | 2404:6800:4005:805::200e v4.cache2.c.bigcache.googleapis.com 220 | 2404:6800:4005:805::200e v4.cache3.c.bigcache.googleapis.com 221 | 2404:6800:4005:805::200e v4.cache4.c.bigcache.googleapis.com 222 | 2404:6800:4005:805::200e v4.cache5.c.bigcache.googleapis.com 223 | 2404:6800:4005:805::200e v4.cache6.c.bigcache.googleapis.com 224 | 2404:6800:4005:805::200e v4.cache7.c.bigcache.googleapis.com 225 | 2404:6800:4005:805::200e v4.cache8.c.bigcache.googleapis.com 226 | 2404:6800:4005:805::200e v5.cache1.c.bigcache.googleapis.com 227 | 2404:6800:4005:805::200e v5.cache2.c.bigcache.googleapis.com 228 | 2404:6800:4005:805::200e v5.cache3.c.bigcache.googleapis.com 229 | 2404:6800:4005:805::200e v5.cache4.c.bigcache.googleapis.com 230 | 2404:6800:4005:805::200e v5.cache5.c.bigcache.googleapis.com 231 | 2404:6800:4005:805::200e v5.cache6.c.bigcache.googleapis.com 232 | 2404:6800:4005:805::200e v5.cache7.c.bigcache.googleapis.com 233 | 2404:6800:4005:805::200e v5.cache8.c.bigcache.googleapis.com 234 | 2404:6800:4005:805::200e v6.cache1.c.bigcache.googleapis.com 235 | 2404:6800:4005:805::200e v6.cache2.c.bigcache.googleapis.com 236 | 2404:6800:4005:805::200e v6.cache3.c.bigcache.googleapis.com 237 | 2404:6800:4005:802::200e v6.cache4.c.bigcache.googleapis.com 238 | 2404:6800:4005:805::200e v6.cache5.c.bigcache.googleapis.com 239 | 2404:6800:4005:805::200e v6.cache6.c.bigcache.googleapis.com 240 | 2404:6800:4005:805::200e v6.cache7.c.bigcache.googleapis.com 241 | 2404:6800:4005:805::200e v6.cache8.c.bigcache.googleapis.com 242 | 2404:6800:4005:805::200e v7.cache1.c.bigcache.googleapis.com 243 | 2404:6800:4005:805::200e v7.cache2.c.bigcache.googleapis.com 244 | 2404:6800:4005:805::200e v7.cache3.c.bigcache.googleapis.com 245 | 2404:6800:4005:802::200e v7.cache4.c.bigcache.googleapis.com 246 | 2404:6800:4005:805::200e v7.cache5.c.bigcache.googleapis.com 247 | 2404:6800:4005:805::200e v7.cache6.c.bigcache.googleapis.com 248 | 2404:6800:4005:805::200e v7.cache7.c.bigcache.googleapis.com 249 | 2404:6800:4005:805::200e v7.cache8.c.bigcache.googleapis.com 250 | 2404:6800:4005:805::200e v8.cache1.c.bigcache.googleapis.com 251 | 2401:3800:4002:802::1000 v8.cache2.c.bigcache.googleapis.com 252 | 2404:6800:4005:805::200e v8.cache3.c.bigcache.googleapis.com 253 | 2404:6800:4005:805::200e v8.cache4.c.bigcache.googleapis.com 254 | 2404:6800:4005:805::200e v8.cache5.c.bigcache.googleapis.com 255 | 2404:6800:4005:805::200e v8.cache6.c.bigcache.googleapis.com 256 | 2404:6800:4005:805::200e v8.cache7.c.bigcache.googleapis.com 257 | 2404:6800:4005:805::200e v8.cache8.c.bigcache.googleapis.com 258 | 259 | #2404:6800:4005:4::6 r1.hkg03s05.c.bigcache.googleapis.com 260 | #2404:6800:4005:4::7 r2.hkg03s05.c.bigcache.googleapis.com 261 | #2404:6800:4005:4::8 r3.hkg03s05.c.bigcache.googleapis.com 262 | #2404:6800:4005:4::9 r4.hkg03s05.c.bigcache.googleapis.com 263 | #2404:6800:4005:4::a r5.hkg03s05.c.bigcache.googleapis.com 264 | #2404:6800:4005:4::b r6.hkg03s05.c.bigcache.googleapis.com 265 | #2404:6800:4005:4::c r7.hkg03s05.c.bigcache.googleapis.com 266 | #2404:6800:4005:4::d r8.hkg03s05.c.bigcache.googleapis.com 267 | #2404:6800:4005:4::e r9.hkg03s05.c.bigcache.googleapis.com 268 | #2404:6800:4005:4::f r10.hkg03s05.c.bigcache.googleapis.com 269 | #2404:6800:4005:4::10 r11.hkg03s05.c.bigcache.googleapis.com 270 | #2404:6800:4005:4::11 r12.hkg03s05.c.bigcache.googleapis.com 271 | #2404:6800:4005:4::12 r13.hkg03s05.c.bigcache.googleapis.com 272 | #2404:6800:4005:4::13 r14.hkg03s05.c.bigcache.googleapis.com 273 | #2404:6800:4005:4::14 r15.hkg03s05.c.bigcache.googleapis.com 274 | #2404:6800:4005:4::15 r16.hkg03s05.c.bigcache.googleapis.com 275 | #2404:6800:4005:4::16 r17.hkg03s05.c.bigcache.googleapis.com 276 | #2404:6800:4005:4::17 r18.hkg03s05.c.bigcache.googleapis.com 277 | #2404:6800:4005:4::18 r19.hkg03s05.c.bigcache.googleapis.com 278 | #2404:6800:4005:4::19 r20.hkg03s05.c.bigcache.googleapis.com 279 | 280 | #2404:6800:4005:5::6 r1.hkg03s06.c.bigcache.googleapis.com 281 | #2404:6800:4005:5::7 r2.hkg03s06.c.bigcache.googleapis.com 282 | #2404:6800:4005:5::8 r3.hkg03s06.c.bigcache.googleapis.com 283 | #2404:6800:4005:5::9 r4.hkg03s06.c.bigcache.googleapis.com 284 | #2404:6800:4005:5::a r5.hkg03s06.c.bigcache.googleapis.com 285 | #2404:6800:4005:5::b r6.hkg03s06.c.bigcache.googleapis.com 286 | #2404:6800:4005:5::c r7.hkg03s06.c.bigcache.googleapis.com 287 | #2404:6800:4005:5::d r8.hkg03s06.c.bigcache.googleapis.com 288 | #2404:6800:4005:5::e r9.hkg03s06.c.bigcache.googleapis.com 289 | #2404:6800:4005:5::f r10.hkg03s06.c.bigcache.googleapis.com 290 | #2404:6800:4005:5::10 r11.hkg03s06.c.bigcache.googleapis.com 291 | #2404:6800:4005:5::11 r12.hkg03s06.c.bigcache.googleapis.com 292 | #2404:6800:4005:5::12 r13.hkg03s06.c.bigcache.googleapis.com 293 | #2404:6800:4005:5::13 r14.hkg03s06.c.bigcache.googleapis.com 294 | #2404:6800:4005:5::14 r15.hkg03s06.c.bigcache.googleapis.com 295 | #2404:6800:4005:5::15 r16.hkg03s06.c.bigcache.googleapis.com 296 | #2404:6800:4005:5::16 r17.hkg03s06.c.bigcache.googleapis.com 297 | #2404:6800:4005:5::17 r18.hkg03s06.c.bigcache.googleapis.com 298 | #2404:6800:4005:5::18 r19.hkg03s06.c.bigcache.googleapis.com 299 | #2404:6800:4005:5::19 r20.hkg03s06.c.bigcache.googleapis.com 300 | 301 | #2404:6800:4005:6::6 r1.hkg03s07.c.bigcache.googleapis.com 302 | #2404:6800:4005:6::7 r2.hkg03s07.c.bigcache.googleapis.com 303 | #2404:6800:4005:6::8 r3.hkg03s07.c.bigcache.googleapis.com 304 | #2404:6800:4005:6::9 r4.hkg03s07.c.bigcache.googleapis.com 305 | #2404:6800:4005:6::a r5.hkg03s07.c.bigcache.googleapis.com 306 | #2404:6800:4005:6::b r6.hkg03s07.c.bigcache.googleapis.com 307 | #2404:6800:4005:6::c r7.hkg03s07.c.bigcache.googleapis.com 308 | #2404:6800:4005:6::d r8.hkg03s07.c.bigcache.googleapis.com 309 | #2404:6800:4005:6::e r9.hkg03s07.c.bigcache.googleapis.com 310 | #2404:6800:4005:6::f r10.hkg03s07.c.bigcache.googleapis.com 311 | #2404:6800:4005:6::10 r11.hkg03s07.c.bigcache.googleapis.com 312 | #2404:6800:4005:6::11 r12.hkg03s07.c.bigcache.googleapis.com 313 | #2404:6800:4005:6::12 r13.hkg03s07.c.bigcache.googleapis.com 314 | #2404:6800:4005:6::13 r14.hkg03s07.c.bigcache.googleapis.com 315 | #2404:6800:4005:6::14 r15.hkg03s07.c.bigcache.googleapis.com 316 | #2404:6800:4005:6::15 r16.hkg03s07.c.bigcache.googleapis.com 317 | #2404:6800:4005:6::16 r17.hkg03s07.c.bigcache.googleapis.com 318 | #2404:6800:4005:6::17 r18.hkg03s07.c.bigcache.googleapis.com 319 | #2404:6800:4005:6::18 r19.hkg03s07.c.bigcache.googleapis.com 320 | #2404:6800:4005:6::19 r20.hkg03s07.c.bigcache.googleapis.com 321 | 322 | #2404:6800:4005:7::6 r1.hkg03s08.c.bigcache.googleapis.com 323 | #2404:6800:4005:7::7 r2.hkg03s08.c.bigcache.googleapis.com 324 | #2404:6800:4005:7::8 r3.hkg03s08.c.bigcache.googleapis.com 325 | #2404:6800:4005:7::9 r4.hkg03s08.c.bigcache.googleapis.com 326 | #2404:6800:4005:7::a r5.hkg03s08.c.bigcache.googleapis.com 327 | #2404:6800:4005:7::b r6.hkg03s08.c.bigcache.googleapis.com 328 | #2404:6800:4005:7::c r7.hkg03s08.c.bigcache.googleapis.com 329 | #2404:6800:4005:7::d r8.hkg03s08.c.bigcache.googleapis.com 330 | #2404:6800:4005:7::e r9.hkg03s08.c.bigcache.googleapis.com 331 | #2404:6800:4005:7::f r10.hkg03s08.c.bigcache.googleapis.com 332 | #2404:6800:4005:7::10 r11.hkg03s08.c.bigcache.googleapis.com 333 | #2404:6800:4005:7::11 r12.hkg03s08.c.bigcache.googleapis.com 334 | #2404:6800:4005:7::12 r13.hkg03s08.c.bigcache.googleapis.com 335 | #2404:6800:4005:7::13 r14.hkg03s08.c.bigcache.googleapis.com 336 | #2404:6800:4005:7::14 r15.hkg03s08.c.bigcache.googleapis.com 337 | #2404:6800:4005:7::15 r16.hkg03s08.c.bigcache.googleapis.com 338 | #2404:6800:4005:7::16 r17.hkg03s08.c.bigcache.googleapis.com 339 | #2404:6800:4005:7::17 r18.hkg03s08.c.bigcache.googleapis.com 340 | #2404:6800:4005:7::18 r19.hkg03s08.c.bigcache.googleapis.com 341 | #2404:6800:4005:7::19 r20.hkg03s08.c.bigcache.googleapis.com 342 | 343 | -------------------------------------------------------------------------------- /snippets/06_googleusercontent.txt: -------------------------------------------------------------------------------- 1 | ## GoogleUserContent 用户自定义的Google服务 googlehosted.l.googleusercontent.com 2 | 2404:6800:4008:c03::84 www.googleusercontent.com 3 | 2404:6800:4008:c06::84 androidmarket.googleusercontent.com 4 | 2404:6800:4008:c03::84 apidata.googleusercontent.com 5 | 2404:6800:4008:c00::84 ap2.googleusercontent.com 6 | 2404:6800:4008:c04::84 blogger.googleusercontent.com 7 | 2404:6800:4008:c03::84 blogspot.l.googleusercontent.com 8 | 2404:6800:4008:c06::76 gadgets.l.googleusercontent.com 9 | 2404:6800:4008:c07::84 googlehosted.l.googleusercontent.com 10 | 2404:6800:4008:c00::52 googlecode.l.googleusercontent.com 11 | 2404:6800:4008:c06::89 googlegroups.l.googleusercontent.com 12 | #2404:6800:4003:c01::55 orkut-opensocial.l.googleusercontent.com 13 | 2404:6800:4008:c06::84 photos-ugc.l.googleusercontent.com 14 | 2404:6800:4008:c00::80 storage.l.googleusercontent.com 15 | 2404:6800:4008:c05::84 storage-ugc.l.googleusercontent.com 16 | 2404:6800:4008:c04::84 www-blogger-opensocial.googleusercontent.com 17 | 2404:6800:4008:c03::84 books.googleusercontent.com 18 | 2404:6800:4008:c04::84 blogger.googleusercontent.com 19 | 2404:6800:4008:c03::84 ci1.googleusercontent.com 20 | 2404:6800:4008:c05::84 ci2.googleusercontent.com 21 | 2404:6800:4008:c00::84 ci3.googleusercontent.com 22 | 2404:6800:4008:c03::84 ci4.googleusercontent.com 23 | 2404:6800:4008:c03::84 ci5.googleusercontent.com 24 | 2404:6800:4008:c00::84 ci6.googleusercontent.com 25 | 2404:6800:4008:c06::84 clients1.googleusercontent.com 26 | 2404:6800:4008:c02::84 clients2.googleusercontent.com 27 | 2404:6800:4008:c03::84 clients4.googleusercontent.com 28 | 2404:6800:4008:c03::84 clients5.googleusercontent.com 29 | 2404:6800:4008:c06::84 clients6.googleusercontent.com 30 | 2404:6800:4008:c04::84 code-opensocial.googleusercontent.com 31 | 2404:6800:4008:c02::84 doc-00-1k-docs.googleusercontent.com 32 | 2404:6800:4008:c07::84 doc-00-1o-docs.googleusercontent.com 33 | 2404:6800:4008:c00::84 doc-04-1o-docs.googleusercontent.com 34 | 2404:6800:4008:c07::84 doc-08-1o-docs.googleusercontent.com 35 | 2404:6800:4008:c03::84 doc-0c-1o-docs.googleusercontent.com 36 | 2404:6800:4008:c03::84 doc-0g-1o-docs.googleusercontent.com 37 | 2404:6800:4008:c02::84 doc-0k-1o-docs.googleusercontent.com 38 | 2404:6800:4008:c03::84 doc-0o-1o-docs.googleusercontent.com 39 | 2404:6800:4008:c02::84 doc-0s-1o-docs.googleusercontent.com 40 | 2404:6800:4008:c03::84 doc-10-1o-docs.googleusercontent.com 41 | 2404:6800:4008:c07::84 doc-14-1o-docs.googleusercontent.com 42 | 2404:6800:4008:c04::84 doc-10-2c-docs.googleusercontent.com 43 | 2404:6800:4008:c07::84 doc-0k-38-docs.googleusercontent.com 44 | 2404:6800:4008:c05::84 doc-14-48-docs.googleusercontent.com 45 | 2404:6800:4008:c07::84 doc-00-6c-docs.googleusercontent.com 46 | 2404:6800:4008:c03::84 doc-04-6c-docs.googleusercontent.com 47 | 2404:6800:4008:c06::84 doc-08-6c-docs.googleusercontent.com 48 | 2404:6800:4008:c03::84 doc-0c-6c-docs.googleusercontent.com 49 | 2404:6800:4008:c04::84 doc-0g-6c-docs.googleusercontent.com 50 | 2404:6800:4008:c06::84 doc-0k-6c-docs.googleusercontent.com 51 | 2404:6800:4008:c03::84 doc-0o-6c-docs.googleusercontent.com 52 | 2404:6800:4008:c06::84 doc-0s-6c-docs.googleusercontent.com 53 | 2404:6800:4008:c06::84 doc-10-6c-docs.googleusercontent.com 54 | 2404:6800:4008:c06::84 doc-14-6c-docs.googleusercontent.com 55 | 2404:6800:4008:c07::84 doc-0o-74-docs.googleusercontent.com 56 | 2404:6800:4008:c06::84 doc-14-74-docs.googleusercontent.com 57 | 2404:6800:4008:c04::84 doc-00-7o-docs.googleusercontent.com 58 | 2404:6800:4008:c07::84 doc-04-7o-docs.googleusercontent.com 59 | 2404:6800:4008:c00::84 doc-08-7o-docs.googleusercontent.com 60 | 2404:6800:4008:c04::84 doc-0c-7o-docs.googleusercontent.com 61 | 2404:6800:4008:c06::84 doc-0g-7o-docs.googleusercontent.com 62 | 2404:6800:4008:c03::84 doc-0k-7o-docs.googleusercontent.com 63 | 2404:6800:4008:c03::84 doc-0o-7o-docs.googleusercontent.com 64 | 2404:6800:4008:c03::84 doc-0s-7o-docs.googleusercontent.com 65 | 2404:6800:4008:c05::84 doc-10-7o-docs.googleusercontent.com 66 | 2404:6800:4008:c00::84 doc-14-7o-docs.googleusercontent.com 67 | 2404:6800:4008:c03::84 doc-00-8k-docs.googleusercontent.com 68 | 2404:6800:4008:c03::84 doc-04-8k-docs.googleusercontent.com 69 | 2404:6800:4008:c07::84 doc-08-8k-docs.googleusercontent.com 70 | 2404:6800:4008:c06::84 doc-0c-8k-docs.googleusercontent.com 71 | 2404:6800:4008:c06::84 doc-0g-8k-docs.googleusercontent.com 72 | 2404:6800:4008:c07::84 doc-0k-8k-docs.googleusercontent.com 73 | 2404:6800:4008:c07::84 doc-0o-8k-docs.googleusercontent.com 74 | 2404:6800:4008:c04::84 doc-0s-8k-docs.googleusercontent.com 75 | 2404:6800:4008:c00::84 doc-10-8k-docs.googleusercontent.com 76 | 2404:6800:4008:c00::84 doc-14-8k-docs.googleusercontent.com 77 | 2404:6800:4008:c03::84 doc-00-9k-docs.googleusercontent.com 78 | 2404:6800:4008:c02::84 doc-04-9k-docs.googleusercontent.com 79 | 2404:6800:4008:c03::84 doc-08-9k-docs.googleusercontent.com 80 | 2404:6800:4008:c04::84 doc-0c-9k-docs.googleusercontent.com 81 | 2404:6800:4008:c03::84 doc-0g-9k-docs.googleusercontent.com 82 | 2404:6800:4008:c03::84 doc-0k-9k-docs.googleusercontent.com 83 | 2404:6800:4008:c07::84 doc-0o-9k-docs.googleusercontent.com 84 | 2404:6800:4008:c07::84 doc-0s-9k-docs.googleusercontent.com 85 | 2404:6800:4008:c07::84 doc-10-9k-docs.googleusercontent.com 86 | 2404:6800:4008:c03::84 doc-14-9k-docs.googleusercontent.com 87 | 2404:6800:4008:c00::84 doc-00-as-docs.googleusercontent.com 88 | 2404:6800:4008:c00::84 doc-04-as-docs.googleusercontent.com 89 | 2404:6800:4008:c03::84 doc-08-as-docs.googleusercontent.com 90 | 2404:6800:4008:c04::84 doc-0c-as-docs.googleusercontent.com 91 | 2404:6800:4008:c07::84 doc-0g-as-docs.googleusercontent.com 92 | 2404:6800:4008:c06::84 doc-0k-as-docs.googleusercontent.com 93 | 2404:6800:4008:c07::84 doc-0o-as-docs.googleusercontent.com 94 | 2404:6800:4008:c06::84 doc-0s-as-docs.googleusercontent.com 95 | 2404:6800:4008:c06::84 doc-10-as-docs.googleusercontent.com 96 | 2404:6800:4008:c03::84 doc-14-as-docs.googleusercontent.com 97 | 2404:6800:4008:c05::84 doc-00-bg-docs.googleusercontent.com 98 | 2404:6800:4008:c07::84 doc-00-2g-3dwarehouse.googleusercontent.com 99 | 2404:6800:4008:c06::84 doc-04-2g-3dwarehouse.googleusercontent.com 100 | 2404:6800:4008:c02::84 doc-08-2g-3dwarehouse.googleusercontent.com 101 | 2404:6800:4008:c06::84 doc-0c-2g-3dwarehouse.googleusercontent.com 102 | 2404:6800:4008:c00::84 doc-0g-2g-3dwarehouse.googleusercontent.com 103 | 2404:6800:4008:c03::84 doc-0k-2g-3dwarehouse.googleusercontent.com 104 | 2404:6800:4008:c06::84 doc-0o-2g-3dwarehouse.googleusercontent.com 105 | 2404:6800:4008:c03::84 doc-0s-2g-3dwarehouse.googleusercontent.com 106 | 2404:6800:4008:c02::84 doc-10-2g-3dwarehouse.googleusercontent.com 107 | 2404:6800:4008:c00::84 doc-14-2g-3dwarehouse.googleusercontent.com 108 | 2404:6800:4008:c07::84 feedback.googleusercontent.com 109 | 2404:6800:4008:c00::84 images1-esmobile-opensocial.googleusercontent.com 110 | 2404:6800:4008:c03::84 images2-esmobile-opensocial.googleusercontent.com 111 | 2404:6800:4008:c04::84 images3-esmobile-opensocial.googleusercontent.com 112 | 2404:6800:4008:c07::84 images4-esmobile-opensocial.googleusercontent.com 113 | 2404:6800:4008:c04::84 images5-esmobile-opensocial.googleusercontent.com 114 | 2404:6800:4008:c00::84 images6-esmobile-opensocial.googleusercontent.com 115 | 2404:6800:4008:c06::84 images7-esmobile-opensocial.googleusercontent.com 116 | 2404:6800:4008:c05::84 images8-esmobile-opensocial.googleusercontent.com 117 | 2404:6800:4008:c03::84 images9-esmobile-opensocial.googleusercontent.com 118 | 2404:6800:4008:c03::84 images1-hangout-opensocial.googleusercontent.com 119 | 2404:6800:4008:c04::84 images2-hangout-opensocial.googleusercontent.com 120 | 2404:6800:4008:c02::84 images3-hangout-opensocial.googleusercontent.com 121 | 2404:6800:4008:c06::84 images4-hangout-opensocial.googleusercontent.com 122 | 2404:6800:4008:c02::84 images5-hangout-opensocial.googleusercontent.com 123 | 2404:6800:4008:c03::84 images6-hangout-opensocial.googleusercontent.com 124 | 2404:6800:4008:c03::84 images7-hangout-opensocial.googleusercontent.com 125 | 2404:6800:4008:c07::84 images8-hangout-opensocial.googleusercontent.com 126 | 2404:6800:4008:c03::84 images9-hangout-opensocial.googleusercontent.com 127 | 2404:6800:4008:c02::84 images-docs-opensocial.googleusercontent.com 128 | 2404:6800:4008:c03::84 images-oz-opensocial.googleusercontent.com 129 | 2404:6800:4008:c04::84 images-lso-opensocial.googleusercontent.com 130 | 2404:6800:4008:c06::84 images-blogger-opensocial.googleusercontent.com 131 | 2404:6800:4008:c04::84 images-pos-opensocial.googleusercontent.com 132 | 2404:6800:4008:c06::84 lh0.googleusercontent.com 133 | 2404:6800:4008:c05::84 lh1.googleusercontent.com 134 | 2404:6800:4008:c00::84 lh2.googleusercontent.com 135 | 2404:6800:4008:c07::84 lh3.googleusercontent.com 136 | 2404:6800:4008:c06::84 lh4.googleusercontent.com 137 | 2404:6800:4008:c02::84 lh5.googleusercontent.com 138 | 2404:6800:4008:c06::84 lh6.googleusercontent.com 139 | 2404:6800:4008:c02::84 mail-attachment.googleusercontent.com 140 | 2404:6800:4008:c04::84 mua3.googleusercontent.com 141 | 2404:6800:4008:c07::84 mua4.googleusercontent.com 142 | 2404:6800:4008:c03::84 mua5.googleusercontent.com 143 | 2404:6800:4008:c03::84 mua6.googleusercontent.com 144 | 2404:6800:4008:c04::84 music.googleusercontent.com 145 | 2404:6800:4008:c06::84 music-onebox.googleusercontent.com 146 | 2404:6800:4008:c06::84 newsstand.googleusercontent.com 147 | 2404:6800:4008:c03::84 oauth.googleusercontent.com 148 | 2404:6800:4008:c02::84 producer.googleusercontent.com 149 | 2404:6800:4008:c03::84 1-ps.googleusercontent.com 150 | 2404:6800:4008:c07::84 2-ps.googleusercontent.com 151 | 2404:6800:4008:c03::84 3-ps.googleusercontent.com 152 | 2404:6800:4008:c07::84 4-ps.googleusercontent.com 153 | 2404:6800:4008:c03::84 reader.googleusercontent.com 154 | 2404:6800:4008:c04::84 s1.googleusercontent.com 155 | 2404:6800:4008:c06::84 s2.googleusercontent.com 156 | 2404:6800:4008:c02::84 sj.googleusercontent.com 157 | 2404:6800:4008:803::2001 scholar.googleusercontent.com 158 | 2404:6800:4008:c02::84 spreadsheets-opensocial.googleusercontent.com 159 | 2404:6800:4008:c07::84 static.googleusercontent.com 160 | 2404:6800:4008:c00::84 themes.googleusercontent.com 161 | 2404:6800:4008:c00::84 translate.googleusercontent.com 162 | 2404:6800:4008:c03::84 video.googleusercontent.com 163 | 2404:6800:4008:c00::84 wave.googleusercontent.com 164 | 2404:6800:4008:c03::84 webcache.googleusercontent.com 165 | 2404:6800:4008:c06::84 ytimg.googleusercontent.com 166 | 2404:6800:4008:c03::84 code-opensocial.googleusercontent.com 167 | 2404:6800:4008:c06::84 spreadsheets-opensocial.googleusercontent.com 168 | 2404:6800:4008:c07::84 www-opensocial.googleusercontent.com 169 | 2404:6800:4008:c07::84 images-docs-opensocial.googleusercontent.com 170 | 2404:6800:4008:c03::84 www-gm-opensocial.googleusercontent.com 171 | 2404:6800:4008:c05::84 www-opensocial-sandbox.googleusercontent.com 172 | 2404:6800:4008:c03::84 www-fc-opensocial.googleusercontent.com 173 | 2404:6800:4008:c07::84 *-a-fc-opensocial.googleusercontent.com 174 | 2404:6800:4008:c06::84 4lam9a1ki27mb9p1h5q3furvvf58ss02-a-gm-opensocial.googleusercontent.com 175 | 2404:6800:4008:c06::84 nl3atn8402ncgahndqn8rb6qi2ld2g5a-a-gm-opensocial.googleusercontent.com 176 | 2404:6800:4008:c05::84 8fkcem1ves287v3g5lu9gep1j91p3kk1-a-fc-opensocial.googleusercontent.com 177 | 2404:6800:4008:c03::84 r1rk9np7bpcsfoeekl0khkd2juj27q3o-a-fc-opensocial.googleusercontent.com 178 | 2404:6800:4008:c04::84 www-focus-opensocial.googleusercontent.com 179 | 2404:6800:4008:c07::84 images0-focus-opensocial.googleusercontent.com 180 | 2404:6800:4008:c02::84 images1-focus-opensocial.googleusercontent.com 181 | 2404:6800:4008:c06::84 images2-focus-opensocial.googleusercontent.com 182 | 2404:6800:4008:c07::84 images3-focus-opensocial.googleusercontent.com 183 | 2404:6800:4008:c02::84 images4-focus-opensocial.googleusercontent.com 184 | 2404:6800:4008:c03::84 images5-focus-opensocial.googleusercontent.com 185 | 2404:6800:4008:c07::84 images6-focus-opensocial.googleusercontent.com 186 | 2404:6800:4008:c03::84 images7-focus-opensocial.googleusercontent.com 187 | 2404:6800:4008:c04::84 images8-focus-opensocial.googleusercontent.com 188 | 2404:6800:4008:c07::84 images9-focus-opensocial.googleusercontent.com 189 | 2404:6800:4008:c05::84 images*-focus-opensocial.googleusercontent.com 190 | 2404:6800:4008:c06::84 0-focus-opensocial.googleusercontent.com 191 | 2404:6800:4008:c04::84 1-focus-opensocial.googleusercontent.com 192 | 2404:6800:4008:c03::84 2-focus-opensocial.googleusercontent.com 193 | 2404:6800:4008:c02::84 3-focus-opensocial.googleusercontent.com 194 | 2404:6800:4008:c07::84 www-fusiontables-opensocial.googleusercontent.com 195 | 2404:6800:4008:c06::84 www-kix-opensocial.googleusercontent.com 196 | 2404:6800:4008:c00::84 images-lso-opensocial.googleusercontent.com 197 | 2404:6800:4008:c06::84 www-onepick-opensocial.googleusercontent.com 198 | 2404:6800:4008:c07::84 images-onepick-opensocial.googleusercontent.com 199 | 2404:6800:4008:c06::84 www-open-opensocial.googleusercontent.com 200 | 2404:6800:4008:c07::84 *-a-oz-opensocial.googleusercontent.com 201 | 2404:6800:4008:c06::84 0-open-opensocial.googleusercontent.com 202 | 2404:6800:4008:c06::84 1-open-opensocial.googleusercontent.com 203 | 2404:6800:4008:c02::84 2-open-opensocial.googleusercontent.com 204 | 2404:6800:4008:c03::84 3-open-opensocial.googleusercontent.com 205 | 2404:6800:4008:c07::84 www-oz-opensocial.googleusercontent.com 206 | 2404:6800:4008:c02::84 images-oz-opensocial.googleusercontent.com 207 | 2404:6800:4008:c04::84 4fjvqid3r3oq66t548clrdj52df15coc-a-oz-opensocial.googleusercontent.com 208 | 2404:6800:4008:c04::84 53rd6p0catml6vat6qra84rs0del836d-a-oz-opensocial.googleusercontent.com 209 | 2404:6800:4008:c02::84 59cbv4l9s05pbaks9v77vc3mengeqors-a-oz-opensocial.googleusercontent.com 210 | 2404:6800:4008:c06::84 8kubpeu8314p2efdd7jlv09an9i2ljdo-a-oz-opensocial.googleusercontent.com 211 | 2404:6800:4008:c06::84 adstvca8k2ooaknjjmv89j22n9t676ve-a-oz-opensocial.googleusercontent.com 212 | 2404:6800:4008:c02::84 bt26mravu2qpe56n8gnmjnpv2inl84bf-a-oz-opensocial.googleusercontent.com 213 | 2404:6800:4008:c02::84 debh8vg7vd93bco3prdajidmm7dhql3f-a-oz-opensocial.googleusercontent.com 214 | 2404:6800:4008:c03::84 hsco54a20sh11q9jkmb51ad2n3hmkmrg-a-oz-opensocial.googleusercontent.com 215 | 2404:6800:4008:c04::84 i8brh95qor6r54nkl52hidj2ggcs4jgm-a-oz-opensocial.googleusercontent.com 216 | 2404:6800:4008:c04::84 k6v18tjr24doa89b55o3na41kn4v73eb-a-oz-opensocial.googleusercontent.com 217 | 2404:6800:4008:c06::84 ob7f2qc0i50kbjnc81vkhgmb5hsv7a8l-a-oz-opensocial.googleusercontent.com 218 | 2404:6800:4008:c03::84 qhie5b8u979rnch1q0hqbrmbkn9estf7-a-oz-opensocial.googleusercontent.com 219 | 2404:6800:4008:c03::84 r70rmsn4s0rhk6cehcbbcbfbs31pu0va-a-oz-opensocial.googleusercontent.com 220 | 2404:6800:4008:c06::84 rbjhe237k979f79d87gmenp3gejfonu9-a-oz-opensocial.googleusercontent.com 221 | 2404:6800:4008:c07::84 u807isd5egseeabjccgcns005p2miucq-a-oz-opensocial.googleusercontent.com 222 | 2404:6800:4008:c06::84 upt14k1i2veesusrda9nfotcrbp9d7p5-a-oz-opensocial.googleusercontent.com 223 | 2404:6800:4008:c00::84 4098j3r7bdqqvlggmhbnlu6u5i8d08jq-a-oz-opensocial.googleusercontent.com 224 | 2404:6800:4008:c04::84 images-pos-opensocial.googleusercontent.com 225 | 2404:6800:4008:c03::84 www-trixcopysheet-opensocial.googleusercontent.com 226 | 2404:6800:4008:c03::84 www-wave-opensocial.googleusercontent.com 227 | 2404:6800:4008:c07::84 wave-opensocial.googleusercontent.com 228 | 2404:6800:4008:c06::84 0-wave-opensocial.googleusercontent.com 229 | 2404:6800:4008:c05::84 1-wave-opensocial.googleusercontent.com 230 | 2404:6800:4008:c04::84 2-wave-opensocial.googleusercontent.com 231 | 2404:6800:4008:c05::84 3-wave-opensocial.googleusercontent.com 232 | 2404:6800:4008:c06::84 4-wave-opensocial.googleusercontent.com 233 | 2404:6800:4008:c04::84 5-wave-opensocial.googleusercontent.com 234 | 2404:6800:4008:c07::84 6-wave-opensocial.googleusercontent.com 235 | 2404:6800:4008:c04::84 7-wave-opensocial.googleusercontent.com 236 | 2404:6800:4008:c00::84 8-wave-opensocial.googleusercontent.com 237 | 2404:6800:4008:c06::84 9-wave-opensocial.googleusercontent.com 238 | 2404:6800:4008:c07::84 10-wave-opensocial.googleusercontent.com 239 | 2404:6800:4008:c07::84 11-wave-opensocial.googleusercontent.com 240 | 2404:6800:4008:c06::84 12-wave-opensocial.googleusercontent.com 241 | 2404:6800:4008:c05::84 13-wave-opensocial.googleusercontent.com 242 | 2404:6800:4008:c02::84 14-wave-opensocial.googleusercontent.com 243 | 2404:6800:4008:c00::84 15-wave-opensocial.googleusercontent.com 244 | 2404:6800:4008:c06::84 16-wave-opensocial.googleusercontent.com 245 | 2404:6800:4008:c06::84 17-wave-opensocial.googleusercontent.com 246 | 2404:6800:4008:c05::84 18-wave-opensocial.googleusercontent.com 247 | 2404:6800:4008:c05::84 19-wave-opensocial.googleusercontent.com 248 | 2404:6800:4008:c06::84 20-wave-opensocial.googleusercontent.com 249 | 2404:6800:4008:c05::84 21-wave-opensocial.googleusercontent.com 250 | 2404:6800:4008:c07::84 22-wave-opensocial.googleusercontent.com 251 | 2404:6800:4008:c06::84 23-wave-opensocial.googleusercontent.com 252 | 2404:6800:4008:c04::84 24-wave-opensocial.googleusercontent.com 253 | 2404:6800:4008:c02::84 25-wave-opensocial.googleusercontent.com 254 | 2404:6800:4008:c02::84 26-wave-opensocial.googleusercontent.com 255 | 2404:6800:4008:c04::84 27-wave-opensocial.googleusercontent.com 256 | 2404:6800:4008:c02::84 28-wave-opensocial.googleusercontent.com 257 | 2404:6800:4008:c03::84 29-wave-opensocial.googleusercontent.com 258 | 2404:6800:4008:c07::84 30-wave-opensocial.googleusercontent.com 259 | 2404:6800:4008:c03::84 31-wave-opensocial.googleusercontent.com 260 | 2404:6800:4008:c07::84 32-wave-opensocial.googleusercontent.com 261 | 2404:6800:4008:c06::84 33-wave-opensocial.googleusercontent.com 262 | 2404:6800:4008:c04::84 34-wave-opensocial.googleusercontent.com 263 | 2404:6800:4008:c05::84 35-wave-opensocial.googleusercontent.com 264 | 2404:6800:4008:c03::84 36-wave-opensocial.googleusercontent.com 265 | 2404:6800:4008:c03::84 37-wave-opensocial.googleusercontent.com 266 | 2404:6800:4008:c06::84 38-wave-opensocial.googleusercontent.com 267 | 2404:6800:4008:c03::84 39-wave-opensocial.googleusercontent.com 268 | 2404:6800:4008:c07::84 40-wave-opensocial.googleusercontent.com 269 | 270 | -------------------------------------------------------------------------------- /snippets/07_youtube.txt: -------------------------------------------------------------------------------- 1 | ## YouTube 2 | 2404:6800:4008:c06::5d youtube.com 3 | 2404:6800:4008:c07::8a www.youtube.com #youtube-ui.l.google.com 4 | 2404:6800:4008:c07::71 au.youtube.com #youtube-ui.l.google.com 5 | 2404:6800:4008:c03::65 ca.youtube.com #youtube-ui.l.google.com 6 | 2404:6800:4008:c05::8b de.youtube.com #youtube-ui.l.google.com 7 | 2404:6800:4008:c04::64 fr.youtube.com #youtube-ui.l.google.com 8 | 2404:6800:4008:c02::8b jp.youtube.com #youtube-ui.l.google.com 9 | 2404:6800:4008:c03::66 ru.youtube.com #youtube-ui.l.google.com 10 | 2404:6800:4008:c07::66 uk.youtube.com #youtube-ui.l.google.com 11 | 2404:6800:4008:c07::65 tw.youtube.com #youtube-ui.l.google.com 12 | 2404:6800:4008:c03::64 gaming.youtube.com #youtube-ui.l.google.com 13 | 2404:6800:4008:c06::64 music.youtube.com #youtube-ui.l.google.com 14 | 2404:6800:4008:c05::71 ads.youtube.com #www3.l.google.com 15 | 2404:6800:4008:c06::65 www.youtube-nocookie.com #youtube-ui.l.google.com 16 | 2404:6800:4008:c03::8b m.youtube.com 17 | 2404:6800:4008:c06::5d youtu.be 18 | 2404:6800:4008:c06::76 gdata.youtube.com #www4.l.google.com 19 | 2404:6800:4008:c03::74 stage.gdata.youtube.com #yt-video-upload.l.google.com 20 | 2404:6800:4008:c06::66 s.youtube.com #video-stats.l.google.com 21 | #2607:f8b0:4007:805::100e s2.youtube.com 22 | 2404:6800:4008:c07::8a accounts.youtube.com #www3.l.google.com 23 | 2404:6800:4008:c02::71 img.youtube.com #ytimg.l.google.com 24 | 2404:6800:4008:c06::67 help.youtube.com #www.google.com 25 | 2404:6800:4008:c04::75 upload.youtube.com #yt-video-upload.l.google.com 26 | 2404:6800:4008:c06::75 uploads.stage.gdata.youtube.com #yt-video-upload.l.google.com 27 | 2404:6800:4008:c03::71 insight.youtube.com #video-analytics.google.com 28 | 2404:6800:4008:c07::66 apiblog.youtube.com #www3.l.google.com 29 | 2404:6800:4008:c06::66 youtubei.youtube.com #youtube-ui.l.google.com 30 | 31 | #2404:6800:4008:c00::64 clients1.youtube.com 32 | 33 | 2404:6800:4008:c06::66 i.ytimg.com #ytimg.l.google.com 34 | 2404:6800:4008:c06::65 i1.ytimg.com #ytimg.l.google.com 35 | 2404:6800:4008:c07::8a i2.ytimg.com #ytimg.l.google.com 36 | 2404:6800:4008:c07::8a i3.ytimg.com #ytimg.l.google.com 37 | 2404:6800:4008:c03::65 i4.ytimg.com #ytimg.l.google.com 38 | 2404:6800:4008:c00::71 s.ytimg.com #ytstatic.l.google.com 39 | 40 | -------------------------------------------------------------------------------- /snippets/09_facebook.txt: -------------------------------------------------------------------------------- 1 | ## Facebook 脸谱网 2 | 2a03:2880:f10d:183:face:b00c:0:25de facebook.com 3 | 2a03:2880:f10d:183:face:b00c:0:25de www.facebook.com #star.c10r.facebook.com 4 | 2a03:2880:f00d:110:face:b00c:0:2 edge-chat.facebook.com #star.c10r.facebook.com 5 | 2a03:2880:f00d:110:face:b00c:0:2 0-edge-chat.facebook.com #star.c10r.facebook.com 6 | 2a03:2880:f00d:110:face:b00c:0:2 1-edge-chat.facebook.com #star.c10r.facebook.com 7 | 2a03:2880:f00d:110:face:b00c:0:2 2-edge-chat.facebook.com #star.c10r.facebook.com 8 | 2a03:2880:f00d:110:face:b00c:0:2 3-edge-chat.facebook.com #star.c10r.facebook.com 9 | 2a03:2880:f00d:110:face:b00c:0:2 4-edge-chat.facebook.com #star.c10r.facebook.com 10 | 2a03:2880:f00d:110:face:b00c:0:2 5-edge-chat.facebook.com #star.c10r.facebook.com 11 | 2a03:2880:f00d:110:face:b00c:0:2 6-edge-chat.facebook.com #star.c10r.facebook.com 12 | 2a03:2880:f00d:110:face:b00c:0:2 api.facebook.com #star.c10r.facebook.com 13 | 2a03:2880:f00d:110:face:b00c:0:2 api-read.facebook.com #api.facebook.com 14 | 2a03:2880:f00d:110:face:b00c:0:2 apps.facebook.com #star.facebook.com 15 | 2a03:2880:f00d:110:face:b00c:0:2 attachments.facebook.com #star.c10r.facebook.com 16 | 2a03:2880:f10d:183:face:b00c:0:25de b-api.facebook.com #z-m.facebook.com 17 | 2a03:2880:f10d:183:face:b00c:0:25de b-graph.facebook.com #z-m.facebook.com 18 | 2a03:2880:f00d:110:face:b00c:0:2 check6.facebook.com #star.c10r.facebook.com 19 | 2a03:2880:f00d:110:face:b00c:0:2 code.facebook.com #star.facebook.com 20 | 2a03:2880:f10d:183:face:b00c:0:25de connect.facebook.com #www.facebook.com 21 | 2a03:2880:f00d:110:face:b00c:0:2 developers.facebook.com #star.facebook.com 22 | 2a03:2880:f00d:110:face:b00c:0:2 error.facebook.com #star.facebook.com 23 | 2a03:2880:f00d:110:face:b00c:0:2 graph.facebook.com #api.facebook.com 24 | 2a03:2880:f00d:110:face:b00c:0:2 login.facebook.com #star.facebook.com 25 | 2a03:2880:f10d:183:face:b00c:0:25de m.facebook.com #star.c10r.facebook.com 26 | 2a03:2880:f00d:10b:face:b00c:0:8e mqtt.facebook.com #mqtt.vvv.facebook.com 27 | 2a03:2880:f00d:10b:face:b00c:0:8e edge-mqtt.facebook.com #mqtt.c10r.facebook.com 28 | 2a03:2880:f10d:184:face:b00c:0:14c9 pixel.facebook.com #star.facebook.com 29 | 2a03:2880:f00d:110:face:b00c:0:2 star.facebook.com #star.c10r.facebook.com 30 | 2a03:2880:f00d:110:face:b00c:0:2 upload.facebook.com #star.c10r.facebook.com 31 | 2a03:2880:f00d:110:face:b00c:0:2 zh-cn.facebook.com #star.facebook.com 32 | 2a03:2880:f00d:110:face:b00c:0:2 zh-tw.facebook.com #star.facebook.com 33 | 2a03:2880:f00d:110:face:b00c:0:2 star.c10r.facebook.com 34 | 2a03:2880:f10d:184:face:b00c:0:14c9 l.facebook.com 35 | 2a03:2880:f10d:181:face:b00c:0:e17 snaptu-z.facebook.com #snaptu-mini.c10r.facebook.com 36 | 2a03:2880:f00d:10e:face:b00c:0:4381 snaptu-p1.facebook.com #snaptu-p1.c10r.facebook.com 37 | 2a03:2880:f00d:10e:face:b00c:0:4381 snaptu-p2.facebook.com #snaptu-p1.c10r.facebook.com 38 | 2a03:2880:20:8f12:face:b00c:0:12e vupload.facebook.com #vupload2.facebook.com 39 | 2a03:2880:3010:ff03:face:b00c:0:12e vupload2.vvv.facebook.com 40 | 2a03:2880:f00d:115:face:b00c:0:3 bigzipfiles.facebook.com 41 | 2a03:2880:f00d:115:face:b00c:0:3 staticxx.facebook.com 42 | 2a03:2880:20:8f08:face:b00c:0:1 apps.v6.facebook.com #v6.vvv.facebook.com 43 | 2a03:2880:20:cf04:face:b00c:0:12c m.v6.facebook.com #v6.vvv.facebook.com 44 | 2a03:2880:1010:5f07:face:b00c:0:12c pixel.v6.facebook.com #v6.vvv.facebook.com 45 | 2a03:2880:20:8f08:face:b00c:0:1 www.v6.facebook.com #v6.vvv.facebook.com 46 | 2a03:2880:20:8f08:face:b00c:0:1 v6.vvv.facebook.com 47 | 2a03:2880:f00d:110:face:b00c:0:2 attachment.fbsbx.com #star.c10r.facebook.com 48 | #2001:e68:2005:1e::3a1b:5630 static.ak.facebook.com 49 | #2600:1406:3f:299::236 s-static.ak.facebook.com #e566.dspe1.akamaiedge.net 50 | #2610:d0:face::9 www.lisp6.facebook.com 51 | #2610:d0:face::9 m.lisp6.facebook.com #www.lisp6.facebook.com 52 | 2a03:2880:f00d:110:face:b00c:0:2 www.messenger.com #star.c10r.facebook.com 53 | 2a03:2880:f00d:110:face:b00c:0:2 messenger.com 54 | 2a03:2880:f00d:110:face:b00c:0:2 edge-chat.messenger.com #star.c10r.facebook.com 55 | 2a03:2880:f00d:110:face:b00c:0:2 0-edge-chat.messenger.com #star.c10r.facebook.com 56 | 2a03:2880:f00d:110:face:b00c:0:2 1-edge-chat.messenger.com #star.c10r.facebook.com 57 | 2a03:2880:f00d:110:face:b00c:0:2 2-edge-chat.messenger.com #star.c10r.facebook.com 58 | 2a03:2880:f00d:110:face:b00c:0:2 3-edge-chat.messenger.com #star.c10r.facebook.com 59 | 2a03:2880:f00d:110:face:b00c:0:2 4-edge-chat.messenger.com #star.c10r.facebook.com 60 | 2a03:2880:f00d:110:face:b00c:0:2 5-edge-chat.messenger.com #star.c10r.facebook.com 61 | 2a03:2880:f00d:110:face:b00c:0:2 6-edge-chat.messenger.com #star.c10r.facebook.com 62 | 2a03:2880:f10d:183:face:b00c:0:25de www.fb.com #star.c10r.facebook.com 63 | 2a03:2880:f10d:183:face:b00c:0:25de fb.com 64 | 2a03:2880:f10d:183:face:b00c:0:25de www.fb.me 65 | 2a03:2880:f10d:183:face:b00c:0:25de fb.me 66 | 2a03:2880:f00d:110:face:b00c:0:2 thefacebook.com 67 | 2a03:2880:f10d:183:face:b00c:0:25de www.thefacebook.com #star.c10r.facebook.com 68 | 69 | 70 | ## fbcdn.net 71 | 2a03:2880:f00d:115:face:b00c:0:3 connect.facebook.net #connect.facebook.net.edgekey.net 72 | #2001:e68:2005:1e::3a1b:5630 creative.ak.fbcdn.net #ads.ak.facebook.com.edgesuite.net 73 | #2001:5a0:3a03::3ff3:f313 external.ak.fbcdn.net #external.ak.fbcdn.net.edgesuite.net 74 | #2001:e68:2005:1e::3a1b:5630 platform.ak.fbcdn.net #platform.ak.facebook.com.edgesuite.net 75 | #2001:428:6402:201::cf6c:dca0 profile.ak.fbcdn.net #profile.ak.facebook.com.edgesuite.net 76 | #2600:1406:3:18b::38a s-external.ak.fbcdn.net #s-external.ak.fbcdn.net.edgekey.net 77 | #2600:1406:3:18b::d19 s-static.ak.fbcdn.net #s-static.ak.fbcdn.net.edgekey.net 78 | #2001:5a0:3a03::3ff3:f311 static.ak.fbcdn.net #static.ak.facebook.com.edgesuite.net 79 | #2001:5a0:3a03::3ff3:f330 vthumb.ak.fbcdn.net #vthumb.facebook.com.edgesuite.net 80 | 2a03:2880:f00d:115:face:b00c:0:3 scontent-a.xx.fbcdn.net 81 | 2a03:2880:f00d:115:face:b00c:0:3 scontent-b.xx.fbcdn.net 82 | 2a03:2880:f00c:212:face:b00c:0:3 scontent-a-sin.xx.fbcdn.net 83 | 2a03:2880:f00c:19:face:b00c:0:3 scontent-b-sin.xx.fbcdn.net 84 | 2a03:2880:f00d:8:face:b00c:0:1 scontent-a-lax.xx.fbcdn.net 85 | 2a03:2880:f00d:8:face:b00c:0:1 scontent-b-lax.xx.fbcdn.net 86 | 2a03:2880:f007:8:face:b00c:0:1 scontent-ams3-1.xx.fbcdn.net 87 | 2a03:2880:f007:8:face:b00c:0:1 scontent-amt2-1.xx.fbcdn.net 88 | 2a03:2880:f007:8:face:b00c:0:1 scontent-arn2-1.xx.fbcdn.net 89 | 2a03:2880:f007:8:face:b00c:0:1 scontent-atl3-1.xx.fbcdn.net 90 | 2a03:2880:f007:8:face:b00c:0:1 scontent-bog1-1.xx.fbcdn.net 91 | 2a03:2880:f007:8:face:b00c:0:1 scontent-bom1-1.xx.fbcdn.net 92 | 2a03:2880:f007:8:face:b00c:0:1 scontent-bru2-1.xx.fbcdn.net 93 | 2a03:2880:f007:8:face:b00c:0:1 scontent-cai1-1.xx.fbcdn.net 94 | 2a03:2880:f007:8:face:b00c:0:1 scontent-cdg2-1.xx.fbcdn.net 95 | 2a03:2880:f007:8:face:b00c:0:1 scontent-cdt1-1.xx.fbcdn.net 96 | 2a03:2880:f007:8:face:b00c:0:1 scontent-dft4-1.xx.fbcdn.net 97 | 2a03:2880:f007:8:face:b00c:0:1 scontent-dft4-2.xx.fbcdn.net 98 | 2a03:2880:f007:8:face:b00c:0:1 scontent-dft4-3.xx.fbcdn.net 99 | 2a03:2880:f007:8:face:b00c:0:1 scontent-dub4-1.xx.fbcdn.net 100 | 2a03:2880:f007:8:face:b00c:0:1 scontent-eze1-1.xx.fbcdn.net 101 | 2a03:2880:f007:8:face:b00c:0:1 scontent-frt3-1.xx.fbcdn.net 102 | 2a03:2880:f007:8:face:b00c:0:1 scontent-frt3-2.xx.fbcdn.net 103 | 2a03:2880:f007:8:face:b00c:0:1 scontent-frx5-1.xx.fbcdn.net 104 | 2a03:2880:f007:8:face:b00c:0:1 scontent-gig2-1.xx.fbcdn.net 105 | 2a03:2880:f007:8:face:b00c:0:1 scontent-gru2-1.xx.fbcdn.net 106 | 2a03:2880:f007:8:face:b00c:0:1 scontent-gru2-2.xx.fbcdn.net 107 | 2a03:2880:f007:8:face:b00c:0:1 scontent-hkg3-1.xx.fbcdn.net 108 | 2a03:2880:f007:8:face:b00c:0:1 scontent-hkg3-2.xx.fbcdn.net 109 | 2a03:2880:f007:8:face:b00c:0:1 scontent-iad3-1.xx.fbcdn.net 110 | 2a03:2880:f007:8:face:b00c:0:1 scontent-icn1-1.xx.fbcdn.net 111 | 2a03:2880:f007:8:face:b00c:0:1 scontent-jnb1-1.xx.fbcdn.net 112 | 2a03:2880:f007:8:face:b00c:0:1 scontent-kut2-1.xx.fbcdn.net 113 | 2a03:2880:f007:8:face:b00c:0:1 scontent-lax3-1.xx.fbcdn.net 114 | 2a03:2880:f007:8:face:b00c:0:1 scontent-lax3-2.xx.fbcdn.net 115 | 2a03:2880:f007:8:face:b00c:0:1 scontent-lga3-1.xx.fbcdn.net 116 | 2a03:2880:f007:8:face:b00c:0:1 scontent-lhr3-1.xx.fbcdn.net 117 | 2a03:2880:f007:8:face:b00c:0:1 scontent-lht6-1.xx.fbcdn.net 118 | 2a03:2880:f007:8:face:b00c:0:1 scontent-mad1-1.xx.fbcdn.net 119 | 2a03:2880:f007:8:face:b00c:0:1 scontent-mia3-1.xx.fbcdn.net 120 | 2a03:2880:f007:8:face:b00c:0:1 scontent-mia3-2.xx.fbcdn.net 121 | 2a03:2880:f007:8:face:b00c:0:1 scontent-mrs1-1.xx.fbcdn.net 122 | 2a03:2880:f007:8:face:b00c:0:1 scontent-mxp1-1.xx.fbcdn.net 123 | 2a03:2880:f007:8:face:b00c:0:1 scontent-nrt1-1.xx.fbcdn.net 124 | 2a03:2880:f007:8:face:b00c:0:1 scontent-ort2-1.xx.fbcdn.net 125 | 2a03:2880:f007:8:face:b00c:0:1 scontent-ort2-2.xx.fbcdn.net 126 | 2a03:2880:f007:8:face:b00c:0:1 scontent-otp1-1.xx.fbcdn.net 127 | 2a03:2880:f007:8:face:b00c:0:1 scontent-prg1-1.xx.fbcdn.net 128 | 2a03:2880:f007:8:face:b00c:0:1 scontent-scl1-1.xx.fbcdn.net 129 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sea1-1.xx.fbcdn.net 130 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sin2-2.xx.fbcdn.net 131 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sin6-1.xx.fbcdn.net 132 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sin6-2.xx.fbcdn.net 133 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sit4-1.xx.fbcdn.net 134 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sjc3-1.xx.fbcdn.net 135 | 2a03:2880:f007:8:face:b00c:0:1 scontent-sof1-1.xx.fbcdn.net 136 | 2a03:2880:f007:8:face:b00c:0:1 scontent-syd2-1.xx.fbcdn.net 137 | 2a03:2880:f007:8:face:b00c:0:1 scontent-tpe1-1.xx.fbcdn.net 138 | 2a03:2880:f007:8:face:b00c:0:1 scontent-vie1-1.xx.fbcdn.net 139 | 2a03:2880:f007:8:face:b00c:0:1 scontent-waw1-1.xx.fbcdn.net 140 | 2a03:2880:f007:8:face:b00c:0:1 scontent-yyz1-1.xx.fbcdn.net 141 | #2a03:2880:f00d:8:face:b00c::1 ent-a.xx.fbcdn.net 142 | #2a03:2880:f00d:8:face:b00c::1 ent-b.xx.fbcdn.net 143 | 2a03:2880:f00d:115:face:b00c:0:3 scontent.xx.fbcdn.net 144 | 2a03:2880:f00d:115:face:b00c:0:3 external.xx.fbcdn.net 145 | 2a03:2880:f00d:115:face:b00c:0:3 static.xx.fbcdn.net 146 | 2a03:2880:f00d:111:face:b00c:0:1823 video.xx.fbcdn.net 147 | 148 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-a.akamaihd.net #fbcdn-photos-a.akamaihd.net.edgesuite.net 149 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-a-a.akamaihd.net #fbcdn-photos-a-a.akamaihd.net.edgesuite.net 150 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-b-a.akamaihd.net #fbcdn-photos-b-a.akamaihd.net.edgesuite.net 151 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-c-a.akamaihd.net #fbcdn-photos-c-a.akamaihd.net.edgesuite.net 152 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-d-a.akamaihd.net #fbcdn-photos-d-a.akamaihd.net.edgesuite.net 153 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-e-a.akamaihd.net #fbcdn-photos-e-a.akamaihd.net.edgesuite.net 154 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-f-a.akamaihd.net #fbcdn-photos-f-a.akamaihd.net.edgesuite.net 155 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-g-a.akamaihd.net #fbcdn-photos-g-a.akamaihd.net.edgesuite.net 156 | 2001:e68:2005:1e::3a1b:5630 fbcdn-photos-h-a.akamaihd.net #fbcdn-photos-h-a.akamaihd.net.edgesuite.net 157 | 2001:e68:2005:1e::3a1b:5630 fbcdn-profile-a.akamaihd.net #a2047.dspl.akamai.net 158 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-a.akamaihd.net #fbcdn-sphotos-a.akamaihd.net.edgesuite.net 159 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-a-a.akamaihd.net #fbcdn-sphotos-a-a.akamaihd.net.edgesuite.net 160 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-b-a.akamaihd.net #fbcdn-sphotos-b-a.akamaihd.net.edgesuite.net 161 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-c-a.akamaihd.net #fbcdn-sphotos-c-a.akamaihd.net.edgesuite.net 162 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-d-a.akamaihd.net #fbcdn-sphotos-d-a.akamaihd.net.edgesuite.net 163 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-e-a.akamaihd.net #fbcdn-sphotos-e-a.akamaihd.net.edgesuite.net 164 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-f-a.akamaihd.net #fbcdn-sphotos-f-a.akamaihd.net.edgesuite.net 165 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-g-a.akamaihd.net #fbcdn-sphotos-g-a.akamaihd.net.edgesuite.net 166 | 2001:e68:2005:1e::3a1b:5630 fbcdn-sphotos-h-a.akamaihd.net #fbcdn-sphotos-h-a.akamaihd.net.edgesuite.net 167 | #2001:5a0:3a03::3ff3:f333 fbcdn-video-a-a.akamaihd.net #fbcdn-video-a-a.akamaihd.net.edgesuite.net 168 | #2001:5a0:3a03::3ff3:f318 fbcdn-video-b-a.akamaihd.net #fbcdn-video-b-a.akamaihd.net.edgesuite.net 169 | #2001:5a0:3a03::3ff3:f32a fbcdn-video-c-a.akamaihd.net #fbcdn-video-c-a.akamaihd.net.edgesuite.net 170 | #2001:5a0:3a03::3ff3:f320 fbcdn-video-d-a.akamaihd.net #fbcdn-video-d-a.akamaihd.net.edgesuite.net 171 | #2001:5a0:3a03::3ff3:f320 fbcdn-video-e-a.akamaihd.net #fbcdn-video-e-a.akamaihd.net.edgesuite.net 172 | #2001:5a0:3a03::3ff3:f320 fbcdn-video-f-a.akamaihd.net #fbcdn-video-f-a.akamaihd.net.edgesuite.net 173 | #2001:5a0:3a03::3ff3:f32b fbcdn-video-g-a.akamaihd.net #fbcdn-video-g-a.akamaihd.net.edgesuite.net 174 | #2001:5a0:3a03::3ff3:f319 fbcdn-video-h-a.akamaihd.net #fbcdn-video-h-a.akamaihd.net.edgesuite.net 175 | #2001:5a0:3a03::3ff3:f321 fbcdn-video-i-a.akamaihd.net #fbcdn-video-i-a.akamaihd.net.edgesuite.net 176 | #2001:5a0:3a03::3ff3:f333 fbcdn-video-j-a.akamaihd.net #fbcdn-video-j-a.akamaihd.net.edgesuite.net 177 | #2001:5a0:3a03::3ff3:f32b fbcdn-video-k-a.akamaihd.net #fbcdn-video-k-a.akamaihd.net.edgesuite.net 178 | #2001:5a0:3a03::3ff3:f339 fbcdn-video-l-a.akamaihd.net #fbcdn-video-l-a.akamaihd.net.edgesuite.net 179 | #2001:5a0:3a03::3ff3:f31a fbcdn-video-m-a.akamaihd.net #fbcdn-video-m-a.akamaihd.net.edgesuite.net 180 | #2001:5a0:3a03::3ff3:f322 fbcdn-video-n-a.akamaihd.net #fbcdn-video-n-a.akamaihd.net.edgesuite.net 181 | #2001:5a0:3a03::3ff3:f331 fbcdn-video-o-a.akamaihd.net #fbcdn-video-o-a.akamaihd.net.edgesuite.net 182 | #2001:5a0:3a03::3ff3:f322 fbcdn-video-p-a.akamaihd.net #fbcdn-video-p-a.akamaihd.net.edgesuite.net 183 | #2001:5a0:3a03::3ff3:f32b fbcdn-vthumb-a.akamaihd.net #fbcdn-vthumb-a.akamaihd.net.edgesuite.net 184 | #2001:5a0:3a03::3ff3:f313 fbstatic-a.akamaihd.net #fbstatic-a.akamaihd.net.edgesuite.net 185 | 2600:1417:a000::1730:c949 fbexternal-a.akamaihd.net #fbexternal-a.akamaihd.net.edgesuite.net 186 | #2001:5a0:3a03::3ff3:f308 fbcdn-creative-a.akamaihd.net #fbcdn-creative-a.akamaihd.net.edgesuite.net 187 | 188 | #2001:e68:2005:1e::3a1b:5630 photos-a.ak.fbcdn.net #photos-a.ak.facebook.com.edgesuite.net 189 | #2001:e68:2005:1e::3a1b:5630 photos-b.ak.fbcdn.net #photos-b.ak.facebook.com.edgesuite.net 190 | #2001:e68:2005:1e::3a1b:5630 photos-c.ak.fbcdn.net #photos-c.ak.facebook.com.edgesuite.net 191 | #2001:e68:2005:1e::3a1b:5630 photos-e.ak.fbcdn.net #photos-a.ak.facebook.com.edgesuite.net 192 | #2001:e68:2005:1e::3a1b:5630 photos-f.ak.fbcdn.net #photos-b.ak.facebook.com.edgesuite.net 193 | #2001:e68:2005:1e::3a1b:5630 photos-g.ak.fbcdn.net #photos-c.ak.facebook.com.edgesuite.net 194 | #2001:e68:2005:1e::3a1b:5630 photos-h.ak.fbcdn.net #photos-d.ak.facebook.com.edgesuite.net 195 | #2600:1406:1a::173d:c228 a1.sphotos.ak.fbcdn.net #a1001.dspw40.akamai.net 196 | #2600:1406:1a::173d:c220 a2.sphotos.ak.fbcdn.net #a1402.dspw40.akamai.net 197 | #2600:1406:1a::173d:c221 a3.sphotos.ak.fbcdn.net #a1003.dspw41.akamai.net 198 | #2600:1406:1a::173d:c211 a4.sphotos.ak.fbcdn.net #a1404.dspw41.akamai.net 199 | #2600:1409:a::b81b:b241 a5.sphotos.ak.fbcdn.net #a1005.dspw42.akamai.net 200 | #2600:1409:a::b81b:b220 a6.sphotos.ak.fbcdn.net #a1406.dspw42.akamai.net 201 | #2600:1409:a::173b:be10 a7.sphotos.ak.fbcdn.net #a1007.dspw43.akamai.net 202 | #2600:1409:a::173b:be13 a8.sphotos.ak.fbcdn.net #a1408.dspw43.akamai.net 203 | 204 | ## Instagram 205 | 2406:da00:ff00::34c8:2550 instagram.com 206 | 2a03:2880:f20d:1c4:face:b00c::43fe www.instagram.com 207 | 2a03:2880:f20d:1c4:face:b00c::43fe i.instagram.com 208 | 2a03:2880:f20d:1c4:face:b00c::43fe l.instagram.com 209 | 2a03:2880:f20d:1c4:face:b00c::43fe api.instagram.com 210 | 2a03:2880:f20d:1c4:face:b00c::43fe help.instagram.com 211 | 2a03:2880:f20d:c4:face:b00c:0:43fe blog.instagram.com 212 | 2a03:2880:f20d:1c4:face:b00c::43fe graph.instagram.com 213 | 2a03:2880:f20d:1c4:face:b00c::43fe logger.instagram.com 214 | 2a03:2880:f20d:1c4:face:b00c::43fe badges.instagram.com 215 | 2a03:2880:f20d:1c4:face:b00c::43fe platform.instagram.com 216 | 2a03:2880:f20d:1c4:face:b00c::43fe maps.instagram.com 217 | 2a03:2880:f20d:1c4:face:b00c::43fe scontent.cdninstagram.com 218 | 2a03:2880:f20d:1c4:face:b00c::43fe scontent-a.cdninstagram.com 219 | 2a03:2880:f20d:1c4:face:b00c::43fe scontent-b.cdninstagram.com 220 | 2a03:2880:f21b:c4:face:b00c:0:43fe scontent-a-ams.cdninstagram.com 221 | 2a03:2880:f21b:c4:face:b00c:0:43fe scontent-b-ams.cdninstagram.com 222 | 2a03:2880:f206:c4:face:b00c:0:43fe scontent-a-amt.cdninstagram.com 223 | 2a03:2880:f206:c4:face:b00c:0:43fe scontent-b-amt.cdninstagram.com 224 | 2a03:2880:f20a:c4:face:b00c:0:43fe scontent-a-arn.cdninstagram.com 225 | 2a03:2880:f20a:c4:face:b00c:0:43fe scontent-b-arn.cdninstagram.com 226 | 2a03:2880:f211:c4:face:b00c:0:43fe scontent-a-atl.cdninstagram.com 227 | 2a03:2880:f211:c4:face:b00c:0:43fe scontent-b-atl.cdninstagram.com 228 | 2a03:2880:f22b:c4:face:b00c:0:43fe scontent-a-bog.cdninstagram.com 229 | 2a03:2880:f22b:c4:face:b00c:0:43fe scontent-b-bog.cdninstagram.com 230 | 2a03:2880:f22f:c4:face:b00c:0:43fe scontent-a-bom.cdninstagram.com 231 | 2a03:2880:f22f:c4:face:b00c:0:43fe scontent-b-bom.cdninstagram.com 232 | 2a03:2880:f221:c4:face:b00c:0:43fe scontent-a-bru.cdninstagram.com 233 | 2a03:2880:f221:c4:face:b00c:0:43fe scontent-b-bru.cdninstagram.com 234 | 2a03:2880:f218:c2:face:b00c:0:43fe scontent-a-cai.cdninstagram.com 235 | 2a03:2880:f218:c2:face:b00c:0:43fe scontent-b-cai.cdninstagram.com 236 | 2a03:2880:f21f:c4:face:b00c:0:43fe scontent-a-cdg.cdninstagram.com 237 | 2a03:2880:f21f:c4:face:b00c:0:43fe scontent-b-cdg.cdninstagram.com 238 | 2a03:2880:f230:c4:face:b00c:0:43fe scontent-a-cdt.cdninstagram.com 239 | 2a03:2880:f230:c4:face:b00c:0:43fe scontent-b-cdt.cdninstagram.com 240 | 2a03:2880:f213:1c4:face:b00c:0:43fe scontent-a-dft.cdninstagram.com 241 | 2a03:2880:f213:80c4:face:b00c:0:43fe scontent-b-dft.cdninstagram.com 242 | 2a03:2880:f232:c4:face:b00c:0:43fe scontent-a-dub.cdninstagram.com 243 | 2a03:2880:f232:c4:face:b00c:0:43fe scontent-b-dub.cdninstagram.com 244 | 2a03:2880:f210:c4:face:b00c:0:43fe scontent-a-eze.cdninstagram.com 245 | 2a03:2880:f210:c4:face:b00c:0:43fe scontent-b-eze.cdninstagram.com 246 | 2a03:2880:f21c:80c4:face:b00c:0:43fe scontent-a-frt.cdninstagram.com 247 | 2a03:2880:f21c:81c4:face:b00c:0:43fe scontent-b-frt.cdninstagram.com 248 | 2a03:2880:f22d:c4:face:b00c:0:43fe scontent-a-frx.cdninstagram.com 249 | 2a03:2880:f22d:c4:face:b00c:0:43fe scontent-b-frx.cdninstagram.com 250 | 2a03:2880:f233:c4:face:b00c:0:43fe scontent-a-gig.cdninstagram.com 251 | 2a03:2880:f233:c4:face:b00c:0:43fe scontent-b-gig.cdninstagram.com 252 | 2a03:2880:f205:c4:face:b00c:0:43fe scontent-a-gru.cdninstagram.com 253 | 2a03:2880:f205:2c4:face:b00c:0:43fe scontent-b-gru.cdninstagram.com 254 | 2a03:2880:f202:c2:face:b00c:0:43fe scontent-a-hkg.cdninstagram.com 255 | 2a03:2880:f202:c2:face:b00c:0:43fe scontent-b-hkg.cdninstagram.com 256 | 2a03:2880:f203:c4:face:b00c:0:43fe scontent-a-iad.cdninstagram.com 257 | 2a03:2880:f203:c4:face:b00c:0:43fe scontent-b-iad.cdninstagram.com 258 | 2a03:2880:f215:c4:face:b00c:0:43fe scontent-a-icn.cdninstagram.com 259 | 2a03:2880:f215:c4:face:b00c:0:43fe scontent-b-icn.cdninstagram.com 260 | 2a03:2880:f224:c4:face:b00c:0:43fe scontent-a-jnb.cdninstagram.com 261 | 2a03:2880:f224:c4:face:b00c:0:43fe scontent-b-jnb.cdninstagram.com 262 | 2a03:2880:f22a:c4:face:b00c:0:43fe scontent-a-kut.cdninstagram.com 263 | 2a03:2880:f22a:c4:face:b00c:0:43fe scontent-b-kut.cdninstagram.com 264 | 2a03:2880:f20d:c4:face:b00c:0:43fe scontent-a-lax.cdninstagram.com 265 | 2a03:2880:f20d:c4:face:b00c:0:43fe scontent-b-lax.cdninstagram.com 266 | 2a03:2880:f212:c4:face:b00c:0:43fe scontent-a-lga.cdninstagram.com 267 | 2a03:2880:f212:c4:face:b00c:0:43fe scontent-b-lga.cdninstagram.com 268 | 2a03:2880:f21a:c4:face:b00c:0:43fe scontent-a-lhr.cdninstagram.com 269 | 2a03:2880:f21a:c4:face:b00c:0:43fe scontent-b-lhr.cdninstagram.com 270 | 2a03:2880:f229:c4:face:b00c:0:43fe scontent-a-lht.cdninstagram.com 271 | 2a03:2880:f229:c4:face:b00c:0:43fe scontent-b-lht.cdninstagram.com 272 | 2a03:2880:f204:c4:face:b00c:0:43fe scontent-a-mad.cdninstagram.com 273 | 2a03:2880:f204:c4:face:b00c:0:43fe scontent-b-mad.cdninstagram.com 274 | 2a03:2880:f22c:c4:face:b00c:0:43fe scontent-a-mia.cdninstagram.com 275 | 2a03:2880:f22c:1c4:face:b00c:0:43fe scontent-b-mia.cdninstagram.com 276 | 2a03:2880:f209:c4:face:b00c:0:43fe scontent-a-mrs.cdninstagram.com 277 | 2a03:2880:f209:c4:face:b00c:0:43fe scontent-b-mrs.cdninstagram.com 278 | 2a03:2880:f208:c4:face:b00c:0:43fe scontent-a-mxp.cdninstagram.com 279 | 2a03:2880:f208:c4:face:b00c:0:43fe scontent-b-mxp.cdninstagram.com 280 | 2a03:2880:f20f:c4:face:b00c:0:43fe scontent-a-nrt.cdninstagram.com 281 | 2a03:2880:f20f:c4:face:b00c:0:43fe scontent-b-nrt.cdninstagram.com 282 | #2a03:2880:f20b:c4:face:b00c:0:43fe scontent-a-ord.cdninstagram.com 283 | #2a03:2880:f20b:c4:face:b00c:0:43fe scontent-b-ord.cdninstagram.com 284 | 2a03:2880:f227:c4:face:b00c:0:43fe scontent-a-ort.cdninstagram.com 285 | 2a03:2880:f227:2c4:face:b00c:0:43fe scontent-b-ort.cdninstagram.com 286 | 2a03:2880:f223:c4:face:b00c:0:43fe scontent-a-otp.cdninstagram.com 287 | 2a03:2880:f223:c4:face:b00c:0:43fe scontent-b-otp.cdninstagram.com 288 | 2a03:2880:f22e:c4:face:b00c:0:43fe scontent-a-scl.cdninstagram.com 289 | 2a03:2880:f22e:c4:face:b00c:0:43fe scontent-b-scl.cdninstagram.com 290 | 2a03:2880:f201:c4:face:b00c:0:43fe scontent-a-sea.cdninstagram.com 291 | 2a03:2880:f201:c4:face:b00c:0:43fe scontent-b-sea.cdninstagram.com 292 | 2a03:2880:f20c:c4:face:b00c:0:43fe scontent-a-sin.cdninstagram.com 293 | 2a03:2880:f20c:c4:face:b00c:0:43fe scontent-b-sin.cdninstagram.com 294 | 2a03:2880:f226:c4:face:b00c:0:43fe scontent-a-sit.cdninstagram.com 295 | 2a03:2880:f226:c4:face:b00c:0:43fe scontent-b-sit.cdninstagram.com 296 | 2a03:2880:f231:c5:face:b00c:0:43fe scontent-a-sjc.cdninstagram.com 297 | 2a03:2880:f231:c5:face:b00c:0:43fe scontent-b-sjc.cdninstagram.com 298 | 2a03:2880:f228:c4:face:b00c:0:43fe scontent-a-sof.cdninstagram.com 299 | 2a03:2880:f228:c4:face:b00c:0:43fe scontent-b-sof.cdninstagram.com 300 | 2a03:2880:f219:80c4:face:b00c:0:43fe scontent-a-syd.cdninstagram.com 301 | 2a03:2880:f219:80c4:face:b00c:0:43fe scontent-b-syd.cdninstagram.com 302 | 2a03:2880:f217:c4:face:b00c:0:43fe scontent-a-tpe.cdninstagram.com 303 | 2a03:2880:f217:c4:face:b00c:0:43fe scontent-b-tpe.cdninstagram.com 304 | 2a03:2880:f207:c4:face:b00c:0:43fe scontent-a-vie.cdninstagram.com 305 | 2a03:2880:f207:c4:face:b00c:0:43fe scontent-b-vie.cdninstagram.com 306 | 2a03:2880:f216:c4:face:b00c:0:43fe scontent-a-waw.cdninstagram.com 307 | 2a03:2880:f216:c4:face:b00c:0:43fe scontent-b-waw.cdninstagram.com 308 | 2a03:2880:f20e:c4:face:b00c:0:43fe scontent-a-yyz.cdninstagram.com 309 | 2a03:2880:f20e:c4:face:b00c:0:43fe scontent-b-yyz.cdninstagram.com 310 | 2a03:2880:f21b:c4:face:b00c:0:43fe scontent-ams3-1.cdninstagram.com 311 | 2a03:2880:f206:c4:face:b00c:0:43fe scontent-amt2-1.cdninstagram.com 312 | 2a03:2880:f20a:c4:face:b00c:0:43fe scontent-arn2-1.cdninstagram.com 313 | 2a03:2880:f211:c4:face:b00c:0:43fe scontent-atl3-1.cdninstagram.com 314 | 2a03:2880:f22b:c4:face:b00c:0:43fe scontent-bog1-1.cdninstagram.com 315 | 2a03:2880:f22f:c4:face:b00c:0:43fe scontent-bom1-1.cdninstagram.com 316 | 2a03:2880:f221:c4:face:b00c:0:43fe scontent-bru2-1.cdninstagram.com 317 | 2a03:2880:f218:c2:face:b00c:0:43fe scontent-cai1-1.cdninstagram.com 318 | 2a03:2880:f21f:c4:face:b00c:0:43fe scontent-cdg2-1.cdninstagram.com 319 | 2a03:2880:f230:c4:face:b00c:0:43fe scontent-cdt1-1.cdninstagram.com 320 | 2a03:2880:f213:80c4:face:b00c:0:43fe scontent-dft4-1.cdninstagram.com 321 | 2a03:2880:f213:c4:face:b00c:0:43fe scontent-dft4-2.cdninstagram.com 322 | 2a03:2880:f213:1c4:face:b00c:0:43fe scontent-dft4-3.cdninstagram.com 323 | 2a03:2880:f232:c4:face:b00c:0:43fe scontent-dub4-1.cdninstagram.com 324 | 2a03:2880:f210:c4:face:b00c:0:43fe scontent-eze1-1.cdninstagram.com 325 | 2a03:2880:f21c:80c4:face:b00c:0:43fe scontent-frt3-1.cdninstagram.com 326 | 2a03:2880:f21c:81c4:face:b00c:0:43fe scontent-frt3-2.cdninstagram.com 327 | 2a03:2880:f22d:c4:face:b00c:0:43fe scontent-frx5-1.cdninstagram.com 328 | 2a03:2880:f233:c4:face:b00c:0:43fe scontent-gig2-1.cdninstagram.com 329 | 2a03:2880:f205:c4:face:b00c:0:43fe scontent-gru2-1.cdninstagram.com 330 | 2a03:2880:f205:2c4:face:b00c:0:43fe scontent-gru2-2.cdninstagram.com 331 | 2a03:2880:f202:c2:face:b00c:0:43fe scontent-hkg3-1.cdninstagram.com 332 | 2a03:2880:f202:1c4:face:b00c:0:43fe scontent-hkg3-2.cdninstagram.com 333 | 2a03:2880:f203:c4:face:b00c:0:43fe scontent-iad3-1.cdninstagram.com 334 | 2a03:2880:f215:c4:face:b00c:0:43fe scontent-icn1-1.cdninstagram.com 335 | 2a03:2880:f224:c4:face:b00c:0:43fe scontent-jnb1-1.cdninstagram.com 336 | 2a03:2880:f22a:c4:face:b00c:0:43fe scontent-kut2-1.cdninstagram.com 337 | 2a03:2880:f20d:c4:face:b00c:0:43fe scontent-lax3-1.cdninstagram.com 338 | 2a03:2880:f20d:1c4:face:b00c:0:43fe scontent-lax3-2.cdninstagram.com 339 | 2a03:2880:f212:c4:face:b00c:0:43fe scontent-lga3-1.cdninstagram.com 340 | 2a03:2880:f21a:c4:face:b00c:0:43fe scontent-lhr3-1.cdninstagram.com 341 | 2a03:2880:f229:c4:face:b00c:0:43fe scontent-lht6-1.cdninstagram.com 342 | 2a03:2880:f204:c4:face:b00c:0:43fe scontent-mad1-1.cdninstagram.com 343 | 2a03:2880:f22c:c4:face:b00c:0:43fe scontent-mia3-1.cdninstagram.com 344 | 2a03:2880:f22c:1c4:face:b00c:0:43fe scontent-mia3-2.cdninstagram.com 345 | 2a03:2880:f209:c4:face:b00c:0:43fe scontent-mrs1-1.cdninstagram.com 346 | 2a03:2880:f209:c4:face:b00c:0:43fe scontent-mxp1-1.cdninstagram.com 347 | 2a03:2880:f20f:c4:face:b00c:0:43fe scontent-nrt1-1.cdninstagram.com 348 | 2a03:2880:f227:c4:face:b00c:0:43fe scontent-ort2-1.cdninstagram.com 349 | 2a03:2880:f227:2c4:face:b00c:0:43fe scontent-ort2-2.cdninstagram.com 350 | 2a03:2880:f223:c4:face:b00c:0:43fe scontent-otp1-1.cdninstagram.com 351 | 2a03:2880:f223:c4:face:b00c:0:43fe scontent-prg1-1.cdninstagram.com 352 | 2a03:2880:f22e:c4:face:b00c:0:43fe scontent-scl1-1.cdninstagram.com 353 | 2a03:2880:f201:c4:face:b00c:0:43fe scontent-sea1-1.cdninstagram.com 354 | 2a03:2880:f20c:2c4:face:b00c:0:43fe scontent-sin2-2.cdninstagram.com 355 | 2a03:2880:f20c:c4:face:b00c:0:43fe scontent-sin6-1.cdninstagram.com 356 | 2a03:2880:f20c:2c4:face:b00c:0:43fe scontent-sin6-2.cdninstagram.com 357 | 2a03:2880:f226:c4:face:b00c:0:43fe scontent-sit4-1.cdninstagram.com 358 | 2a03:2880:f231:c5:face:b00c:0:43fe scontent-sjc3-1.cdninstagram.com 359 | 2a03:2880:f228:c4:face:b00c:0:43fe scontent-sof1-1.cdninstagram.com 360 | 2a03:2880:f219:80c4:face:b00c:0:43fe scontent-syd2-1.cdninstagram.com 361 | 2a03:2880:f217:c4:face:b00c:0:43fe scontent-tpe1-1.cdninstagram.com 362 | 2a03:2880:f207:c4:face:b00c:0:43fe scontent-vie1-1.cdninstagram.com 363 | 2a03:2880:f216:c4:face:b00c:0:43fe scontent-waw1-1.cdninstagram.com 364 | 2a03:2880:f20e:c4:face:b00c:0:43fe scontent-yyz1-1.cdninstagram.com 365 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-a-a.akamaihd.net 366 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-b-a.akamaihd.net 367 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-c-a.akamaihd.net 368 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-d-a.akamaihd.net 369 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-e-a.akamaihd.net 370 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-f-a.akamaihd.net 371 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-g-a.akamaihd.net 372 | 2001:e68:2005:1e::3a1b:5630 igcdn-photos-h-a.akamaihd.net 373 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-0-a.akamaihd.net 374 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-1-a.akamaihd.net 375 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-2-a.akamaihd.net 376 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-3-a.akamaihd.net 377 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-4-a.akamaihd.net 378 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-5-a.akamaihd.net 379 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-6-a.akamaihd.net 380 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-7-a.akamaihd.net 381 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-8-a.akamaihd.net 382 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-9-a.akamaihd.net 383 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-10-a.akamaihd.net 384 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-11-a.akamaihd.net 385 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-12-a.akamaihd.net 386 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-13-a.akamaihd.net 387 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-14-a.akamaihd.net 388 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-15-a.akamaihd.net 389 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-16-a.akamaihd.net 390 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-17-a.akamaihd.net 391 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-18-a.akamaihd.net 392 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-a-19-a.akamaihd.net 393 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-0-a.akamaihd.net 394 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-1-a.akamaihd.net 395 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-2-a.akamaihd.net 396 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-3-a.akamaihd.net 397 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-4-a.akamaihd.net 398 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-5-a.akamaihd.net 399 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-6-a.akamaihd.net 400 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-7-a.akamaihd.net 401 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-8-a.akamaihd.net 402 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-9-a.akamaihd.net 403 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-10-a.akamaihd.net 404 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-11-a.akamaihd.net 405 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-12-a.akamaihd.net 406 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-13-a.akamaihd.net 407 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-14-a.akamaihd.net 408 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-15-a.akamaihd.net 409 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-16-a.akamaihd.net 410 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-17-a.akamaihd.net 411 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-18-a.akamaihd.net 412 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-b-19-a.akamaihd.net 413 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-0-a.akamaihd.net 414 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-1-a.akamaihd.net 415 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-2-a.akamaihd.net 416 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-3-a.akamaihd.net 417 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-4-a.akamaihd.net 418 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-5-a.akamaihd.net 419 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-6-a.akamaihd.net 420 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-7-a.akamaihd.net 421 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-8-a.akamaihd.net 422 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-9-a.akamaihd.net 423 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-10-a.akamaihd.net 424 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-11-a.akamaihd.net 425 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-12-a.akamaihd.net 426 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-13-a.akamaihd.net 427 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-14-a.akamaihd.net 428 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-15-a.akamaihd.net 429 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-16-a.akamaihd.net 430 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-17-a.akamaihd.net 431 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-18-a.akamaihd.net 432 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-c-19-a.akamaihd.net 433 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-0-a.akamaihd.net 434 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-1-a.akamaihd.net 435 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-2-a.akamaihd.net 436 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-3-a.akamaihd.net 437 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-4-a.akamaihd.net 438 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-5-a.akamaihd.net 439 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-6-a.akamaihd.net 440 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-7-a.akamaihd.net 441 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-8-a.akamaihd.net 442 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-9-a.akamaihd.net 443 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-10-a.akamaihd.net 444 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-11-a.akamaihd.net 445 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-12-a.akamaihd.net 446 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-13-a.akamaihd.net 447 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-14-a.akamaihd.net 448 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-15-a.akamaihd.net 449 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-16-a.akamaihd.net 450 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-17-a.akamaihd.net 451 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-18-a.akamaihd.net 452 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-d-19-a.akamaihd.net 453 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-0-a.akamaihd.net 454 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-1-a.akamaihd.net 455 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-2-a.akamaihd.net 456 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-3-a.akamaihd.net 457 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-4-a.akamaihd.net 458 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-5-a.akamaihd.net 459 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-6-a.akamaihd.net 460 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-7-a.akamaihd.net 461 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-8-a.akamaihd.net 462 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-9-a.akamaihd.net 463 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-10-a.akamaihd.net 464 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-11-a.akamaihd.net 465 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-12-a.akamaihd.net 466 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-13-a.akamaihd.net 467 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-14-a.akamaihd.net 468 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-15-a.akamaihd.net 469 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-16-a.akamaihd.net 470 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-17-a.akamaihd.net 471 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-18-a.akamaihd.net 472 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-e-19-a.akamaihd.net 473 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-0-a.akamaihd.net 474 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-1-a.akamaihd.net 475 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-2-a.akamaihd.net 476 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-3-a.akamaihd.net 477 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-4-a.akamaihd.net 478 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-5-a.akamaihd.net 479 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-6-a.akamaihd.net 480 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-7-a.akamaihd.net 481 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-8-a.akamaihd.net 482 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-9-a.akamaihd.net 483 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-10-a.akamaihd.net 484 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-11-a.akamaihd.net 485 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-12-a.akamaihd.net 486 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-13-a.akamaihd.net 487 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-14-a.akamaihd.net 488 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-15-a.akamaihd.net 489 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-16-a.akamaihd.net 490 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-17-a.akamaihd.net 491 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-18-a.akamaihd.net 492 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-f-19-a.akamaihd.net 493 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-0-a.akamaihd.net 494 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-1-a.akamaihd.net 495 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-2-a.akamaihd.net 496 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-3-a.akamaihd.net 497 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-4-a.akamaihd.net 498 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-5-a.akamaihd.net 499 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-6-a.akamaihd.net 500 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-7-a.akamaihd.net 501 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-8-a.akamaihd.net 502 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-9-a.akamaihd.net 503 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-10-a.akamaihd.net 504 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-11-a.akamaihd.net 505 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-12-a.akamaihd.net 506 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-13-a.akamaihd.net 507 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-14-a.akamaihd.net 508 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-15-a.akamaihd.net 509 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-16-a.akamaihd.net 510 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-17-a.akamaihd.net 511 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-18-a.akamaihd.net 512 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-g-19-a.akamaihd.net 513 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-0-a.akamaihd.net 514 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-1-a.akamaihd.net 515 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-2-a.akamaihd.net 516 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-3-a.akamaihd.net 517 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-4-a.akamaihd.net 518 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-5-a.akamaihd.net 519 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-6-a.akamaihd.net 520 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-7-a.akamaihd.net 521 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-8-a.akamaihd.net 522 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-9-a.akamaihd.net 523 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-10-a.akamaihd.net 524 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-11-a.akamaihd.net 525 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-12-a.akamaihd.net 526 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-13-a.akamaihd.net 527 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-14-a.akamaihd.net 528 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-15-a.akamaihd.net 529 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-16-a.akamaihd.net 530 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-17-a.akamaihd.net 531 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-18-a.akamaihd.net 532 | 2001:e68:2005:1e::3a1b:5630 igcdn-videos-h-19-a.akamaihd.net 533 | 2001:e68:2005:1e::3a1b:5630 instagramimages-a.akamaihd.net 534 | 2001:e68:2005:1e::3a1b:5630 instagramstatic-a.akamaihd.net 535 | #2001:590:1:501::42ab:e018 photos-a.ak.instagram.com #photos-a.ak.instagram.com.edgesuite.net 536 | #2001:590:1:501::42ab:e010 photos-b.ak.instagram.com #photos-b.ak.instagram.com.edgesuite.net 537 | #2600:1404:2::1702:11bb photos-c.ak.instagram.com #photos-c.ak.instagram.com.edgesuite.net 538 | #2600:1404:2::1702:1191 photos-d.ak.instagram.com #photos-d.ak.instagram.com.edgesuite.net 539 | #2001:428:2001:302::3fe9:7e2a photos-e.ak.instagram.com #photos-e.ak.instagram.com.edgesuite.net 540 | #2001:428:2001:302::3fe9:7e18 photos-f.ak.instagram.com #photos-f.ak.instagram.com.edgesuite.net 541 | #2001:428:2001:302::3fe9:7e11 photos-g.ak.instagram.com #photos-g.ak.instagram.com.edgesuite.net 542 | #2600:1409:a::173b:be09 photos-h.ak.instagram.com #photos-h.ak.instagram.com.edgesuite.net 543 | 544 | -------------------------------------------------------------------------------- /snippets/10_wiki.txt: -------------------------------------------------------------------------------- 1 | ## WikiMedia 维基媒体 2 | #2620:0:860:2:21d:9ff:fe33:f235 static.wikipedia.org #hume.wikimedia.org 3 | #2620:0:860:2:21d:9ff:fe33:f235 hume.wikimedia.org 4 | 2620:0:863:ed1a::1 download.wikimedia.org 5 | 2620:0:863:ed1a::1 download.wikipedia.org 6 | 2620:0:861:1:208:80:154:11 dumps.wikimedia.org #dataset1001.wikimedia.org 7 | #2620:0:860:2:230:48ff:fe5a:eb1e dataset2.wikimedia.org 8 | #2620:0:862:1::80:2 blog.wikimedia.org 9 | #2620:0:862:1::80:2 geoiplookup.wikimedia.org 10 | 2620:0:863:ed1a::1 svn.wikimedia.org 11 | #2620:0:862:1:209:3dff:fe10:d5d2 mayflower.esams.wikimedia.org 12 | #2620:0:862:1:6666:6666:6666:6666 ipv6and4.labs.wikimedia.org 13 | 14 | 2620:0:861:3::2 lists.wikimedia.org 15 | 2620:0:863:ed1a::1 wikimedia.org 16 | 2620:0:863:ed1a::1 wikimediafoundation.org 17 | 2620:0:863:ed1a::1 www.mediawiki.org 18 | 2620:0:863:ed1a::1 www.wikimedia.org 19 | 2620:0:863:ed1a::1 commons.wikimedia.org 20 | 2620:0:863:ed1a::1 incubator.wikimedia.org 21 | 2620:0:863:ed1a::1 meta.wikimedia.org 22 | 2620:0:863:ed1a::1 secure.wikimedia.org 23 | 2620:0:863:ed1a::1 species.wikimedia.org 24 | #2620:0:863:ed1a::1 bits.wikimedia.org 25 | 2620:0:863:ed1a::2:b upload.wikimedia.org 26 | #2620:0:863:ed1a::1 wikimedia-lb.wikimedia.org 27 | #2620:0:863:ed1a::1 wikipedia-lb.wikimedia.org 28 | #2620:0:863:ed1a::1 wiktionary-lb.wikimedia.org 29 | #2620:0:863:ed1a::1 wikiquote-lb.wikimedia.org 30 | #2620:0:863:ed1a::1 wikibooks-lb.wikimedia.org 31 | #2620:0:863:ed1a::1 wikisource-lb.wikimedia.org 32 | #2620:0:863:ed1a::1 wikinews-lb.wikimedia.org 33 | #2620:0:863:ed1a::1 wikiversity-lb.wikimedia.org 34 | #2620:0:863:ed1a::1 mediawiki-lb.wikimedia.org 35 | 2620:0:863:ed1a::1 m.wikimedia.org 36 | 2620:0:863:ed1a::3:d en.planet.wikimedia.org #misc-web-lb.eqiad.wikimedia.org 37 | #2620:0:861:1:208:80:154:41 zirconium.wikimedia.org 38 | 39 | #2620:0:860:ed1a:: wikimedia-lb.pmtpa.wikimedia.org 40 | #2620:0:860:ed1a::1 wikipedia-lb.pmtpa.wikimedia.org 41 | #2620:0:860:ed1a::2 wiktionary-lb.pmtpa.wikimedia.org 42 | #2620:0:860:ed1a::3 wikiquote-lb.pmtpa.wikimedia.org 43 | #2620:0:860:ed1a::4 wikibooks-lb.pmtpa.wikimedia.org 44 | #2620:0:860:ed1a::5 wikisource-lb.pmtpa.wikimedia.org 45 | #2620:0:860:ed1a::6 wikinews-lb.pmtpa.wikimedia.org 46 | #2620:0:860:ed1a::7 wikiversity-lb.pmtpa.wikimedia.org 47 | #2620:0:860:ed1a::8 mediawiki-lb.pmtpa.wikimedia.org 48 | #2620:0:861:ed1a:: wikimedia-lb.eqiad.wikimedia.org 49 | #2620:0:861:ed1a::1 wikipedia-lb.eqiad.wikimedia.org 50 | #2620:0:861:ed1a::2 wiktionary-lb.eqiad.wikimedia.org 51 | #2620:0:861:ed1a::3 wikiquote-lb.eqiad.wikimedia.org 52 | #2620:0:861:ed1a::4 wikibooks-lb.eqiad.wikimedia.org 53 | #2620:0:861:ed1a::5 wikisource-lb.eqiad.wikimedia.org 54 | #2620:0:861:ed1a::6 wikinews-lb.eqiad.wikimedia.org 55 | #2620:0:861:ed1a::7 wikiversity-lb.eqiad.wikimedia.org 56 | #2620:0:861:ed1a::8 mediawiki-lb.eqiad.wikimedia.org 57 | #2620:0:862:ed1a:: wikimedia-lb.esams.wikimedia.org 58 | #2620:0:862:ed1a::1 wikipedia-lb.esams.wikimedia.org 59 | #2620:0:862:ed1a::2 wiktionary-lb.esams.wikimedia.org 60 | #2620:0:862:ed1a::3 wikiquote-lb.esams.wikimedia.org 61 | #2620:0:862:ed1a::4 wikibooks-lb.esams.wikimedia.org 62 | #2620:0:862:ed1a::5 wikisource-lb.esams.wikimedia.org 63 | #2620:0:862:ed1a::6 wikinews-lb.esams.wikimedia.org 64 | #2620:0:862:ed1a::7 wikiversity-lb.esams.wikimedia.org 65 | #2620:0:862:ed1a::8 mediawiki-lb.esams.wikimedia.org 66 | 67 | 2620:0:861:ed1a::1 text-lb.eqiad.wikimedia.org 68 | #2620:0:861:ed1a::1:a bits-lb.eqiad.wikimedia.org 69 | #2620:0:861:ed1a::1:c mobile-lb.eqiad.wikimedia.org 70 | 2620:0:861:ed1a::2:b upload-lb.eqiad.wikimedia.org 71 | 2620:0:863:ed1a::1 text-lb.ulsfo.wikimedia.org 72 | #2620:0:863:ed1a::1:a bits-lb.ulsfo.wikimedia.org 73 | #2620:0:863:ed1a::1:c mobile-lb.ulsfo.wikimedia.org 74 | 2620:0:863:ed1a::2:b upload-lb.ulsfo.wikimedia.org 75 | 76 | ## WikiBooks 维基教科书 77 | 2620:0:863:ed1a::1 wikibooks.org 78 | 2620:0:863:ed1a::1 www.wikibooks.org 79 | 2620:0:863:ed1a::1 aa.wikibooks.org 80 | 2620:0:863:ed1a::1 af.wikibooks.org 81 | 2620:0:863:ed1a::1 ak.wikibooks.org 82 | 2620:0:863:ed1a::1 als.wikibooks.org 83 | 2620:0:863:ed1a::1 ang.wikibooks.org 84 | 2620:0:863:ed1a::1 ar.wikibooks.org 85 | 2620:0:863:ed1a::1 as.wikibooks.org 86 | 2620:0:863:ed1a::1 ast.wikibooks.org 87 | 2620:0:863:ed1a::1 ay.wikibooks.org 88 | 2620:0:863:ed1a::1 az.wikibooks.org 89 | 2620:0:863:ed1a::1 ba.wikibooks.org 90 | 2620:0:863:ed1a::1 be.wikibooks.org 91 | 2620:0:863:ed1a::1 bg.wikibooks.org 92 | 2620:0:863:ed1a::1 bi.wikibooks.org 93 | 2620:0:863:ed1a::1 bm.wikibooks.org 94 | 2620:0:863:ed1a::1 bn.wikibooks.org 95 | 2620:0:863:ed1a::1 bo.wikibooks.org 96 | 2620:0:863:ed1a::1 bs.wikibooks.org 97 | 2620:0:863:ed1a::1 ca.wikibooks.org 98 | 2620:0:863:ed1a::1 ch.wikibooks.org 99 | 2620:0:863:ed1a::1 co.wikibooks.org 100 | 2620:0:863:ed1a::1 cs.wikibooks.org 101 | 2620:0:863:ed1a::1 cv.wikibooks.org 102 | 2620:0:863:ed1a::1 cy.wikibooks.org 103 | 2620:0:863:ed1a::1 da.wikibooks.org 104 | 2620:0:863:ed1a::1 de.wikibooks.org 105 | 2620:0:863:ed1a::1 el.wikibooks.org 106 | 2620:0:863:ed1a::1 en.wikibooks.org 107 | 2620:0:863:ed1a::1 eo.wikibooks.org 108 | 2620:0:863:ed1a::1 es.wikibooks.org 109 | 2620:0:863:ed1a::1 et.wikibooks.org 110 | 2620:0:863:ed1a::1 eu.wikibooks.org 111 | 2620:0:863:ed1a::1 fa.wikibooks.org 112 | 2620:0:863:ed1a::1 fi.wikibooks.org 113 | 2620:0:863:ed1a::1 fr.wikibooks.org 114 | 2620:0:863:ed1a::1 fy.wikibooks.org 115 | 2620:0:863:ed1a::1 ga.wikibooks.org 116 | 2620:0:863:ed1a::1 gl.wikibooks.org 117 | 2620:0:863:ed1a::1 gn.wikibooks.org 118 | 2620:0:863:ed1a::1 got.wikibooks.org 119 | 2620:0:863:ed1a::1 gu.wikibooks.org 120 | 2620:0:863:ed1a::1 he.wikibooks.org 121 | 2620:0:863:ed1a::1 hi.wikibooks.org 122 | 2620:0:863:ed1a::1 hr.wikibooks.org 123 | 2620:0:863:ed1a::1 hu.wikibooks.org 124 | 2620:0:863:ed1a::1 hy.wikibooks.org 125 | 2620:0:863:ed1a::1 ia.wikibooks.org 126 | 2620:0:863:ed1a::1 id.wikibooks.org 127 | 2620:0:863:ed1a::1 ie.wikibooks.org 128 | 2620:0:863:ed1a::1 is.wikibooks.org 129 | 2620:0:863:ed1a::1 it.wikibooks.org 130 | 2620:0:863:ed1a::1 ja.wikibooks.org 131 | 2620:0:863:ed1a::1 ka.wikibooks.org 132 | 2620:0:863:ed1a::1 kk.wikibooks.org 133 | 2620:0:863:ed1a::1 km.wikibooks.org 134 | 2620:0:863:ed1a::1 kn.wikibooks.org 135 | 2620:0:863:ed1a::1 ko.wikibooks.org 136 | 2620:0:863:ed1a::1 ks.wikibooks.org 137 | 2620:0:863:ed1a::1 ku.wikibooks.org 138 | 2620:0:863:ed1a::1 ky.wikibooks.org 139 | 2620:0:863:ed1a::1 la.wikibooks.org 140 | 2620:0:863:ed1a::1 lb.wikibooks.org 141 | 2620:0:863:ed1a::1 li.wikibooks.org 142 | 2620:0:863:ed1a::1 ln.wikibooks.org 143 | 2620:0:863:ed1a::1 lt.wikibooks.org 144 | 2620:0:863:ed1a::1 lv.wikibooks.org 145 | 2620:0:863:ed1a::1 mg.wikibooks.org 146 | 2620:0:863:ed1a::1 mi.wikibooks.org 147 | 2620:0:863:ed1a::1 mk.wikibooks.org 148 | 2620:0:863:ed1a::1 ml.wikibooks.org 149 | 2620:0:863:ed1a::1 mn.wikibooks.org 150 | 2620:0:863:ed1a::1 mr.wikibooks.org 151 | 2620:0:863:ed1a::1 ms.wikibooks.org 152 | 2620:0:863:ed1a::1 my.wikibooks.org 153 | 2620:0:863:ed1a::1 na.wikibooks.org 154 | 2620:0:863:ed1a::1 nah.wikibooks.org 155 | 2620:0:863:ed1a::1 nds.wikibooks.org 156 | 2620:0:863:ed1a::1 ne.wikibooks.org 157 | 2620:0:863:ed1a::1 nl.wikibooks.org 158 | 2620:0:863:ed1a::1 no.wikibooks.org 159 | 2620:0:863:ed1a::1 oc.wikibooks.org 160 | 2620:0:863:ed1a::1 pa.wikibooks.org 161 | 2620:0:863:ed1a::1 pl.wikibooks.org 162 | 2620:0:863:ed1a::1 ps.wikibooks.org 163 | 2620:0:863:ed1a::1 pt.wikibooks.org 164 | 2620:0:863:ed1a::1 qu.wikibooks.org 165 | 2620:0:863:ed1a::1 rm.wikibooks.org 166 | 2620:0:863:ed1a::1 ro.wikibooks.org 167 | 2620:0:863:ed1a::1 ru.wikibooks.org 168 | 2620:0:863:ed1a::1 sa.wikibooks.org 169 | 2620:0:863:ed1a::1 se.wikibooks.org 170 | 2620:0:863:ed1a::1 si.wikibooks.org 171 | 2620:0:863:ed1a::1 simple.wikibooks.org 172 | 2620:0:863:ed1a::1 sk.wikibooks.org 173 | 2620:0:863:ed1a::1 sl.wikibooks.org 174 | 2620:0:863:ed1a::1 sq.wikibooks.org 175 | 2620:0:863:ed1a::1 sr.wikibooks.org 176 | 2620:0:863:ed1a::1 su.wikibooks.org 177 | 2620:0:863:ed1a::1 sv.wikibooks.org 178 | 2620:0:863:ed1a::1 sw.wikibooks.org 179 | 2620:0:863:ed1a::1 ta.wikibooks.org 180 | 2620:0:863:ed1a::1 te.wikibooks.org 181 | 2620:0:863:ed1a::1 tg.wikibooks.org 182 | 2620:0:863:ed1a::1 th.wikibooks.org 183 | 2620:0:863:ed1a::1 tk.wikibooks.org 184 | 2620:0:863:ed1a::1 tl.wikibooks.org 185 | 2620:0:863:ed1a::1 tr.wikibooks.org 186 | 2620:0:863:ed1a::1 tt.wikibooks.org 187 | 2620:0:863:ed1a::1 ug.wikibooks.org 188 | 2620:0:863:ed1a::1 uk.wikibooks.org 189 | 2620:0:863:ed1a::1 ur.wikibooks.org 190 | 2620:0:863:ed1a::1 uz.wikibooks.org 191 | 2620:0:863:ed1a::1 vi.wikibooks.org 192 | 2620:0:863:ed1a::1 vo.wikibooks.org 193 | 2620:0:863:ed1a::1 wa.wikibooks.org 194 | 2620:0:863:ed1a::1 xh.wikibooks.org 195 | 2620:0:863:ed1a::1 yo.wikibooks.org 196 | 2620:0:863:ed1a::1 za.wikibooks.org 197 | 2620:0:863:ed1a::1 zh.wikibooks.org 198 | 2620:0:863:ed1a::1 zh-min-nan.wikibooks.org 199 | 2620:0:863:ed1a::1 zu.wikibooks.org 200 | 201 | ## WikiNews 维基新闻 202 | 2620:0:863:ed1a::1 wikinews.org 203 | 2620:0:863:ed1a::1 www.wikinews.org 204 | 2620:0:863:ed1a::1 ar.wikinews.org 205 | 2620:0:863:ed1a::1 bg.wikinews.org 206 | 2620:0:863:ed1a::1 bs.wikinews.org 207 | 2620:0:863:ed1a::1 ca.wikinews.org 208 | 2620:0:863:ed1a::1 cs.wikinews.org 209 | 2620:0:863:ed1a::1 de.wikinews.org 210 | 2620:0:863:ed1a::1 el.wikinews.org 211 | 2620:0:863:ed1a::1 en.wikinews.org 212 | 2620:0:863:ed1a::1 eo.wikinews.org 213 | 2620:0:863:ed1a::1 es.wikinews.org 214 | 2620:0:863:ed1a::1 fa.wikinews.org 215 | 2620:0:863:ed1a::1 fi.wikinews.org 216 | 2620:0:863:ed1a::1 fr.wikinews.org 217 | 2620:0:863:ed1a::1 he.wikinews.org 218 | 2620:0:863:ed1a::1 hu.wikinews.org 219 | 2620:0:863:ed1a::1 it.wikinews.org 220 | 2620:0:863:ed1a::1 ja.wikinews.org 221 | 2620:0:863:ed1a::1 ko.wikinews.org 222 | 2620:0:863:ed1a::1 nl.wikinews.org 223 | 2620:0:863:ed1a::1 no.wikinews.org 224 | 2620:0:863:ed1a::1 pl.wikinews.org 225 | 2620:0:863:ed1a::1 pt.wikinews.org 226 | 2620:0:863:ed1a::1 ro.wikinews.org 227 | 2620:0:863:ed1a::1 ru.wikinews.org 228 | 2620:0:863:ed1a::1 sd.wikinews.org 229 | 2620:0:863:ed1a::1 sq.wikinews.org 230 | 2620:0:863:ed1a::1 sr.wikinews.org 231 | 2620:0:863:ed1a::1 sv.wikinews.org 232 | 2620:0:863:ed1a::1 ta.wikinews.org 233 | 2620:0:863:ed1a::1 th.wikinews.org 234 | 2620:0:863:ed1a::1 tr.wikinews.org 235 | 2620:0:863:ed1a::1 uk.wikinews.org 236 | 2620:0:863:ed1a::1 zh.wikinews.org 237 | 238 | ## WikiPedia 维基百科 239 | 2620:0:863:ed1a::1 wikipedia.org 240 | 2620:0:863:ed1a::1 www.wikipedia.org 241 | 2620:0:863:ed1a::1 aa.wikipedia.org 242 | 2620:0:863:ed1a::1 ab.wikipedia.org 243 | 2620:0:863:ed1a::1 ace.wikipedia.org 244 | 2620:0:863:ed1a::1 af.wikipedia.org 245 | 2620:0:863:ed1a::1 ak.wikipedia.org 246 | 2620:0:863:ed1a::1 als.wikipedia.org 247 | 2620:0:863:ed1a::1 am.wikipedia.org 248 | 2620:0:863:ed1a::1 an.wikipedia.org 249 | 2620:0:863:ed1a::1 ang.wikipedia.org 250 | 2620:0:863:ed1a::1 ar.wikipedia.org 251 | 2620:0:863:ed1a::1 arc.wikipedia.org 252 | 2620:0:863:ed1a::1 arz.wikipedia.org 253 | 2620:0:863:ed1a::1 as.wikipedia.org 254 | 2620:0:863:ed1a::1 ast.wikipedia.org 255 | 2620:0:863:ed1a::1 av.wikipedia.org 256 | 2620:0:863:ed1a::1 ay.wikipedia.org 257 | 2620:0:863:ed1a::1 az.wikipedia.org 258 | 2620:0:863:ed1a::1 ba.wikipedia.org 259 | 2620:0:863:ed1a::1 bar.wikipedia.org 260 | 2620:0:863:ed1a::1 bat-smg.wikipedia.org 261 | 2620:0:863:ed1a::1 bcl.wikipedia.org 262 | 2620:0:863:ed1a::1 be.wikipedia.org 263 | 2620:0:863:ed1a::1 be-x-old.wikipedia.org 264 | 2620:0:863:ed1a::1 bg.wikipedia.org 265 | 2620:0:863:ed1a::1 bh.wikipedia.org 266 | 2620:0:863:ed1a::1 bi.wikipedia.org 267 | 2620:0:863:ed1a::1 bm.wikipedia.org 268 | 2620:0:863:ed1a::1 bn.wikipedia.org 269 | 2620:0:863:ed1a::1 bo.wikipedia.org 270 | 2620:0:863:ed1a::1 bpy.wikipedia.org 271 | 2620:0:863:ed1a::1 br.wikipedia.org 272 | 2620:0:863:ed1a::1 bs.wikipedia.org 273 | 2620:0:863:ed1a::1 bug.wikipedia.org 274 | 2620:0:863:ed1a::1 bxr.wikipedia.org 275 | 2620:0:863:ed1a::1 ca.wikipedia.org 276 | 2620:0:863:ed1a::1 cbk-zam.wikipedia.org 277 | 2620:0:863:ed1a::1 cdo.wikipedia.org 278 | 2620:0:863:ed1a::1 ce.wikipedia.org 279 | 2620:0:863:ed1a::1 ceb.wikipedia.org 280 | 2620:0:863:ed1a::1 ch.wikipedia.org 281 | 2620:0:863:ed1a::1 chr.wikipedia.org 282 | 2620:0:863:ed1a::1 chy.wikipedia.org 283 | 2620:0:863:ed1a::1 ckb.wikipedia.org 284 | 2620:0:863:ed1a::1 co.wikipedia.org 285 | 2620:0:863:ed1a::1 cr.wikipedia.org 286 | 2620:0:863:ed1a::1 crh.wikipedia.org 287 | 2620:0:863:ed1a::1 cs.wikipedia.org 288 | 2620:0:863:ed1a::1 csb.wikipedia.org 289 | 2620:0:863:ed1a::1 cu.wikipedia.org 290 | 2620:0:863:ed1a::1 cv.wikipedia.org 291 | 2620:0:863:ed1a::1 cy.wikipedia.org 292 | 2620:0:863:ed1a::1 da.wikipedia.org 293 | 2620:0:863:ed1a::1 de.wikipedia.org 294 | 2620:0:863:ed1a::1 diq.wikipedia.org 295 | 2620:0:863:ed1a::1 dsb.wikipedia.org 296 | 2620:0:863:ed1a::1 dv.wikipedia.org 297 | 2620:0:863:ed1a::1 dz.wikipedia.org 298 | 2620:0:863:ed1a::1 ee.wikipedia.org 299 | 2620:0:863:ed1a::1 el.wikipedia.org 300 | 2620:0:863:ed1a::1 eml.wikipedia.org 301 | 2620:0:863:ed1a::1 en.wikipedia.org 302 | 2620:0:863:ed1a::1 eo.wikipedia.org 303 | 2620:0:863:ed1a::1 es.wikipedia.org 304 | 2620:0:863:ed1a::1 et.wikipedia.org 305 | 2620:0:863:ed1a::1 eu.wikipedia.org 306 | 2620:0:863:ed1a::1 ext.wikipedia.org 307 | 2620:0:863:ed1a::1 fa.wikipedia.org 308 | 2620:0:863:ed1a::1 ff.wikipedia.org 309 | 2620:0:863:ed1a::1 fi.wikipedia.org 310 | 2620:0:863:ed1a::1 fiu-vro.wikipedia.org 311 | 2620:0:863:ed1a::1 fj.wikipedia.org 312 | 2620:0:863:ed1a::1 fo.wikipedia.org 313 | 2620:0:863:ed1a::1 fr.wikipedia.org 314 | 2620:0:863:ed1a::1 frp.wikipedia.org 315 | 2620:0:863:ed1a::1 fur.wikipedia.org 316 | 2620:0:863:ed1a::1 fy.wikipedia.org 317 | 2620:0:863:ed1a::1 ga.wikipedia.org 318 | 2620:0:863:ed1a::1 gan.wikipedia.org 319 | 2620:0:863:ed1a::1 gd.wikipedia.org 320 | 2620:0:863:ed1a::1 gl.wikipedia.org 321 | 2620:0:863:ed1a::1 glk.wikipedia.org 322 | 2620:0:863:ed1a::1 gn.wikipedia.org 323 | 2620:0:863:ed1a::1 got.wikipedia.org 324 | 2620:0:863:ed1a::1 gu.wikipedia.org 325 | 2620:0:863:ed1a::1 gv.wikipedia.org 326 | 2620:0:863:ed1a::1 ha.wikipedia.org 327 | 2620:0:863:ed1a::1 hak.wikipedia.org 328 | 2620:0:863:ed1a::1 haw.wikipedia.org 329 | 2620:0:863:ed1a::1 he.wikipedia.org 330 | 2620:0:863:ed1a::1 hi.wikipedia.org 331 | 2620:0:863:ed1a::1 hif.wikipedia.org 332 | 2620:0:863:ed1a::1 hr.wikipedia.org 333 | 2620:0:863:ed1a::1 hsb.wikipedia.org 334 | 2620:0:863:ed1a::1 ht.wikipedia.org 335 | 2620:0:863:ed1a::1 hu.wikipedia.org 336 | 2620:0:863:ed1a::1 hy.wikipedia.org 337 | 2620:0:863:ed1a::1 ia.wikipedia.org 338 | 2620:0:863:ed1a::1 id.wikipedia.org 339 | 2620:0:863:ed1a::1 ie.wikipedia.org 340 | 2620:0:863:ed1a::1 ig.wikipedia.org 341 | 2620:0:863:ed1a::1 ik.wikipedia.org 342 | 2620:0:863:ed1a::1 ilo.wikipedia.org 343 | 2620:0:863:ed1a::1 io.wikipedia.org 344 | 2620:0:863:ed1a::1 is.wikipedia.org 345 | 2620:0:863:ed1a::1 it.wikipedia.org 346 | 2620:0:863:ed1a::1 iu.wikipedia.org 347 | 2620:0:863:ed1a::1 ja.wikipedia.org 348 | 2620:0:863:ed1a::1 jbo.wikipedia.org 349 | 2620:0:863:ed1a::1 jv.wikipedia.org 350 | 2620:0:863:ed1a::1 ka.wikipedia.org 351 | 2620:0:863:ed1a::1 kaa.wikipedia.org 352 | 2620:0:863:ed1a::1 kab.wikipedia.org 353 | 2620:0:863:ed1a::1 kg.wikipedia.org 354 | 2620:0:863:ed1a::1 ki.wikipedia.org 355 | 2620:0:863:ed1a::1 kk.wikipedia.org 356 | 2620:0:863:ed1a::1 kl.wikipedia.org 357 | 2620:0:863:ed1a::1 km.wikipedia.org 358 | 2620:0:863:ed1a::1 kn.wikipedia.org 359 | 2620:0:863:ed1a::1 ko.wikipedia.org 360 | 2620:0:863:ed1a::1 krc.wikipedia.org 361 | 2620:0:863:ed1a::1 ks.wikipedia.org 362 | 2620:0:863:ed1a::1 ksh.wikipedia.org 363 | 2620:0:863:ed1a::1 ku.wikipedia.org 364 | 2620:0:863:ed1a::1 kv.wikipedia.org 365 | 2620:0:863:ed1a::1 kw.wikipedia.org 366 | 2620:0:863:ed1a::1 ky.wikipedia.org 367 | 2620:0:863:ed1a::1 la.wikipedia.org 368 | 2620:0:863:ed1a::1 lad.wikipedia.org 369 | 2620:0:863:ed1a::1 lb.wikipedia.org 370 | 2620:0:863:ed1a::1 lbe.wikipedia.org 371 | 2620:0:863:ed1a::1 lg.wikipedia.org 372 | 2620:0:863:ed1a::1 li.wikipedia.org 373 | 2620:0:863:ed1a::1 lij.wikipedia.org 374 | 2620:0:863:ed1a::1 lmo.wikipedia.org 375 | 2620:0:863:ed1a::1 ln.wikipedia.org 376 | 2620:0:863:ed1a::1 lo.wikipedia.org 377 | 2620:0:863:ed1a::1 lt.wikipedia.org 378 | 2620:0:863:ed1a::1 lv.wikipedia.org 379 | 2620:0:863:ed1a::1 map-bms.wikipedia.org 380 | 2620:0:863:ed1a::1 mdf.wikipedia.org 381 | 2620:0:863:ed1a::1 mg.wikipedia.org 382 | 2620:0:863:ed1a::1 mh.wikipedia.org 383 | 2620:0:863:ed1a::1 mhr.wikipedia.org 384 | 2620:0:863:ed1a::1 mi.wikipedia.org 385 | 2620:0:863:ed1a::1 mk.wikipedia.org 386 | 2620:0:863:ed1a::1 ml.wikipedia.org 387 | 2620:0:863:ed1a::1 mn.wikipedia.org 388 | 2620:0:863:ed1a::1 mr.wikipedia.org 389 | 2620:0:863:ed1a::1 ms.wikipedia.org 390 | 2620:0:863:ed1a::1 mt.wikipedia.org 391 | 2620:0:863:ed1a::1 mwl.wikipedia.org 392 | 2620:0:863:ed1a::1 my.wikipedia.org 393 | 2620:0:863:ed1a::1 myv.wikipedia.org 394 | 2620:0:863:ed1a::1 mzn.wikipedia.org 395 | 2620:0:863:ed1a::1 na.wikipedia.org 396 | 2620:0:863:ed1a::1 nah.wikipedia.org 397 | 2620:0:863:ed1a::1 nap.wikipedia.org 398 | 2620:0:863:ed1a::1 nds.wikipedia.org 399 | 2620:0:863:ed1a::1 nds-nl.wikipedia.org 400 | 2620:0:863:ed1a::1 ne.wikipedia.org 401 | 2620:0:863:ed1a::1 new.wikipedia.org 402 | 2620:0:863:ed1a::1 ng.wikipedia.org 403 | 2620:0:863:ed1a::1 nl.wikipedia.org 404 | 2620:0:863:ed1a::1 nn.wikipedia.org 405 | 2620:0:863:ed1a::1 no.wikipedia.org 406 | 2620:0:863:ed1a::1 nov.wikipedia.org 407 | 2620:0:863:ed1a::1 nrm.wikipedia.org 408 | 2620:0:863:ed1a::1 nv.wikipedia.org 409 | 2620:0:863:ed1a::1 ny.wikipedia.org 410 | 2620:0:863:ed1a::1 oc.wikipedia.org 411 | 2620:0:863:ed1a::1 om.wikipedia.org 412 | 2620:0:863:ed1a::1 or.wikipedia.org 413 | 2620:0:863:ed1a::1 os.wikipedia.org 414 | 2620:0:863:ed1a::1 pa.wikipedia.org 415 | 2620:0:863:ed1a::1 pag.wikipedia.org 416 | 2620:0:863:ed1a::1 pam.wikipedia.org 417 | 2620:0:863:ed1a::1 pap.wikipedia.org 418 | 2620:0:863:ed1a::1 pcd.wikipedia.org 419 | 2620:0:863:ed1a::1 pdc.wikipedia.org 420 | 2620:0:863:ed1a::1 pi.wikipedia.org 421 | 2620:0:863:ed1a::1 pih.wikipedia.org 422 | 2620:0:863:ed1a::1 pl.wikipedia.org 423 | 2620:0:863:ed1a::1 pms.wikipedia.org 424 | 2620:0:863:ed1a::1 pnb.wikipedia.org 425 | 2620:0:863:ed1a::1 pnt.wikipedia.org 426 | 2620:0:863:ed1a::1 ps.wikipedia.org 427 | 2620:0:863:ed1a::1 pt.wikipedia.org 428 | 2620:0:863:ed1a::1 qu.wikipedia.org 429 | 2620:0:863:ed1a::1 rm.wikipedia.org 430 | 2620:0:863:ed1a::1 rmy.wikipedia.org 431 | 2620:0:863:ed1a::1 rn.wikipedia.org 432 | 2620:0:863:ed1a::1 ro.wikipedia.org 433 | 2620:0:863:ed1a::1 roa-rup.wikipedia.org 434 | 2620:0:863:ed1a::1 roa-tara.wikipedia.org 435 | 2620:0:863:ed1a::1 ru.wikipedia.org 436 | 2620:0:863:ed1a::1 rw.wikipedia.org 437 | 2620:0:863:ed1a::1 sa.wikipedia.org 438 | 2620:0:863:ed1a::1 sah.wikipedia.org 439 | 2620:0:863:ed1a::1 sc.wikipedia.org 440 | 2620:0:863:ed1a::1 scn.wikipedia.org 441 | 2620:0:863:ed1a::1 sco.wikipedia.org 442 | 2620:0:863:ed1a::1 sd.wikipedia.org 443 | 2620:0:863:ed1a::1 se.wikipedia.org 444 | 2620:0:863:ed1a::1 sg.wikipedia.org 445 | 2620:0:863:ed1a::1 sh.wikipedia.org 446 | 2620:0:863:ed1a::1 si.wikipedia.org 447 | 2620:0:863:ed1a::1 simple.wikipedia.org 448 | 2620:0:863:ed1a::1 sk.wikipedia.org 449 | 2620:0:863:ed1a::1 sl.wikipedia.org 450 | 2620:0:863:ed1a::1 sm.wikipedia.org 451 | 2620:0:863:ed1a::1 sn.wikipedia.org 452 | 2620:0:863:ed1a::1 so.wikipedia.org 453 | 2620:0:863:ed1a::1 sq.wikipedia.org 454 | 2620:0:863:ed1a::1 sr.wikipedia.org 455 | 2620:0:863:ed1a::1 srn.wikipedia.org 456 | 2620:0:863:ed1a::1 ss.wikipedia.org 457 | 2620:0:863:ed1a::1 st.wikipedia.org 458 | 2620:0:863:ed1a::1 stq.wikipedia.org 459 | 2620:0:863:ed1a::1 su.wikipedia.org 460 | 2620:0:863:ed1a::1 sv.wikipedia.org 461 | 2620:0:863:ed1a::1 sw.wikipedia.org 462 | 2620:0:863:ed1a::1 szl.wikipedia.org 463 | 2620:0:863:ed1a::1 ta.wikipedia.org 464 | 2620:0:863:ed1a::1 te.wikipedia.org 465 | 2620:0:863:ed1a::1 tet.wikipedia.org 466 | 2620:0:863:ed1a::1 tg.wikipedia.org 467 | 2620:0:863:ed1a::1 th.wikipedia.org 468 | 2620:0:863:ed1a::1 ti.wikipedia.org 469 | 2620:0:863:ed1a::1 tk.wikipedia.org 470 | 2620:0:863:ed1a::1 tl.wikipedia.org 471 | 2620:0:863:ed1a::1 tn.wikipedia.org 472 | 2620:0:863:ed1a::1 to.wikipedia.org 473 | 2620:0:863:ed1a::1 tpi.wikipedia.org 474 | 2620:0:863:ed1a::1 tr.wikipedia.org 475 | 2620:0:863:ed1a::1 ts.wikipedia.org 476 | 2620:0:863:ed1a::1 tt.wikipedia.org 477 | 2620:0:863:ed1a::1 tum.wikipedia.org 478 | 2620:0:863:ed1a::1 tw.wikipedia.org 479 | 2620:0:863:ed1a::1 ty.wikipedia.org 480 | 2620:0:863:ed1a::1 udm.wikipedia.org 481 | 2620:0:863:ed1a::1 ug.wikipedia.org 482 | 2620:0:863:ed1a::1 uk.wikipedia.org 483 | 2620:0:863:ed1a::1 ur.wikipedia.org 484 | 2620:0:863:ed1a::1 uz.wikipedia.org 485 | 2620:0:863:ed1a::1 ve.wikipedia.org 486 | 2620:0:863:ed1a::1 vec.wikipedia.org 487 | 2620:0:863:ed1a::1 vi.wikipedia.org 488 | 2620:0:863:ed1a::1 vls.wikipedia.org 489 | 2620:0:863:ed1a::1 vo.wikipedia.org 490 | 2620:0:863:ed1a::1 wa.wikipedia.org 491 | 2620:0:863:ed1a::1 war.wikipedia.org 492 | 2620:0:863:ed1a::1 wo.wikipedia.org 493 | 2620:0:863:ed1a::1 wuu.wikipedia.org 494 | 2620:0:863:ed1a::1 xal.wikipedia.org 495 | 2620:0:863:ed1a::1 xh.wikipedia.org 496 | 2620:0:863:ed1a::1 yi.wikipedia.org 497 | 2620:0:863:ed1a::1 yo.wikipedia.org 498 | 2620:0:863:ed1a::1 za.wikipedia.org 499 | 2620:0:863:ed1a::1 zea.wikipedia.org 500 | 2620:0:863:ed1a::1 zh.wikipedia.org 501 | 2620:0:863:ed1a::1 zh-classical.wikipedia.org 502 | 2620:0:863:ed1a::1 zh-min-nan.wikipedia.org 503 | 2620:0:863:ed1a::1 zh-yue.wikipedia.org 504 | 2620:0:863:ed1a::1 zu.wikipedia.org 505 | 506 | ## WikiPedia Mobile 维基百科移动版 507 | 2620:0:863:ed1a::1 m.wikipedia.org 508 | 2620:0:863:ed1a::1 en.m.wikipedia.org 509 | 2620:0:863:ed1a::1 zh.m.wikipedia.org 510 | 511 | ## WikiQuote 维基语录 512 | 2620:0:863:ed1a::1 wikiquote.org 513 | 2620:0:863:ed1a::1 www.wikiquote.org 514 | 2620:0:863:ed1a::1 af.wikiquote.org 515 | 2620:0:863:ed1a::1 als.wikiquote.org 516 | 2620:0:863:ed1a::1 am.wikiquote.org 517 | 2620:0:863:ed1a::1 ang.wikiquote.org 518 | 2620:0:863:ed1a::1 ar.wikiquote.org 519 | 2620:0:863:ed1a::1 ast.wikiquote.org 520 | 2620:0:863:ed1a::1 az.wikiquote.org 521 | 2620:0:863:ed1a::1 be.wikiquote.org 522 | 2620:0:863:ed1a::1 bg.wikiquote.org 523 | 2620:0:863:ed1a::1 bm.wikiquote.org 524 | 2620:0:863:ed1a::1 br.wikiquote.org 525 | 2620:0:863:ed1a::1 bs.wikiquote.org 526 | 2620:0:863:ed1a::1 ca.wikiquote.org 527 | 2620:0:863:ed1a::1 co.wikiquote.org 528 | 2620:0:863:ed1a::1 cr.wikiquote.org 529 | 2620:0:863:ed1a::1 cs.wikiquote.org 530 | 2620:0:863:ed1a::1 cy.wikiquote.org 531 | 2620:0:863:ed1a::1 da.wikiquote.org 532 | 2620:0:863:ed1a::1 de.wikiquote.org 533 | 2620:0:863:ed1a::1 el.wikiquote.org 534 | 2620:0:863:ed1a::1 en.wikiquote.org 535 | 2620:0:863:ed1a::1 eo.wikiquote.org 536 | 2620:0:863:ed1a::1 es.wikiquote.org 537 | 2620:0:863:ed1a::1 et.wikiquote.org 538 | 2620:0:863:ed1a::1 eu.wikiquote.org 539 | 2620:0:863:ed1a::1 fa.wikiquote.org 540 | 2620:0:863:ed1a::1 fi.wikiquote.org 541 | 2620:0:863:ed1a::1 fr.wikiquote.org 542 | 2620:0:863:ed1a::1 ga.wikiquote.org 543 | 2620:0:863:ed1a::1 gl.wikiquote.org 544 | 2620:0:863:ed1a::1 gu.wikiquote.org 545 | 2620:0:863:ed1a::1 he.wikiquote.org 546 | 2620:0:863:ed1a::1 hi.wikiquote.org 547 | 2620:0:863:ed1a::1 hr.wikiquote.org 548 | 2620:0:863:ed1a::1 hu.wikiquote.org 549 | 2620:0:863:ed1a::1 hy.wikiquote.org 550 | 2620:0:863:ed1a::1 id.wikiquote.org 551 | 2620:0:863:ed1a::1 is.wikiquote.org 552 | 2620:0:863:ed1a::1 it.wikiquote.org 553 | 2620:0:863:ed1a::1 ja.wikiquote.org 554 | 2620:0:863:ed1a::1 ka.wikiquote.org 555 | 2620:0:863:ed1a::1 kk.wikiquote.org 556 | 2620:0:863:ed1a::1 kn.wikiquote.org 557 | 2620:0:863:ed1a::1 ko.wikiquote.org 558 | 2620:0:863:ed1a::1 kr.wikiquote.org 559 | 2620:0:863:ed1a::1 ks.wikiquote.org 560 | 2620:0:863:ed1a::1 ku.wikiquote.org 561 | 2620:0:863:ed1a::1 kw.wikiquote.org 562 | 2620:0:863:ed1a::1 ky.wikiquote.org 563 | 2620:0:863:ed1a::1 la.wikiquote.org 564 | 2620:0:863:ed1a::1 lb.wikiquote.org 565 | 2620:0:863:ed1a::1 li.wikiquote.org 566 | 2620:0:863:ed1a::1 lt.wikiquote.org 567 | 2620:0:863:ed1a::1 ml.wikiquote.org 568 | 2620:0:863:ed1a::1 mr.wikiquote.org 569 | 2620:0:863:ed1a::1 na.wikiquote.org 570 | 2620:0:863:ed1a::1 nds.wikiquote.org 571 | 2620:0:863:ed1a::1 nl.wikiquote.org 572 | 2620:0:863:ed1a::1 nn.wikiquote.org 573 | 2620:0:863:ed1a::1 no.wikiquote.org 574 | 2620:0:863:ed1a::1 pl.wikiquote.org 575 | 2620:0:863:ed1a::1 pt.wikiquote.org 576 | 2620:0:863:ed1a::1 qu.wikiquote.org 577 | 2620:0:863:ed1a::1 ro.wikiquote.org 578 | 2620:0:863:ed1a::1 ru.wikiquote.org 579 | 2620:0:863:ed1a::1 simple.wikiquote.org 580 | 2620:0:863:ed1a::1 sk.wikiquote.org 581 | 2620:0:863:ed1a::1 sl.wikiquote.org 582 | 2620:0:863:ed1a::1 sq.wikiquote.org 583 | 2620:0:863:ed1a::1 sr.wikiquote.org 584 | 2620:0:863:ed1a::1 su.wikiquote.org 585 | 2620:0:863:ed1a::1 sv.wikiquote.org 586 | 2620:0:863:ed1a::1 ta.wikiquote.org 587 | 2620:0:863:ed1a::1 te.wikiquote.org 588 | 2620:0:863:ed1a::1 th.wikiquote.org 589 | 2620:0:863:ed1a::1 tk.wikiquote.org 590 | 2620:0:863:ed1a::1 tr.wikiquote.org 591 | 2620:0:863:ed1a::1 tt.wikiquote.org 592 | 2620:0:863:ed1a::1 ug.wikiquote.org 593 | 2620:0:863:ed1a::1 uk.wikiquote.org 594 | 2620:0:863:ed1a::1 ur.wikiquote.org 595 | 2620:0:863:ed1a::1 uz.wikiquote.org 596 | 2620:0:863:ed1a::1 vi.wikiquote.org 597 | 2620:0:863:ed1a::1 vo.wikiquote.org 598 | 2620:0:863:ed1a::1 wo.wikiquote.org 599 | 2620:0:863:ed1a::1 za.wikiquote.org 600 | 2620:0:863:ed1a::1 zh.wikiquote.org 601 | 2620:0:863:ed1a::1 zh-min-nan.wikiquote.org 602 | 603 | ## WikiSource 维基文库 604 | 2620:0:863:ed1a::1 wikisource.org 605 | 2620:0:863:ed1a::1 www.wikisource.org 606 | 2620:0:863:ed1a::1 ang.wikisource.org 607 | 2620:0:863:ed1a::1 ar.wikisource.org 608 | 2620:0:863:ed1a::1 az.wikisource.org 609 | 2620:0:863:ed1a::1 bg.wikisource.org 610 | 2620:0:863:ed1a::1 bn.wikisource.org 611 | 2620:0:863:ed1a::1 br.wikisource.org 612 | 2620:0:863:ed1a::1 bs.wikisource.org 613 | 2620:0:863:ed1a::1 ca.wikisource.org 614 | 2620:0:863:ed1a::1 cs.wikisource.org 615 | 2620:0:863:ed1a::1 cy.wikisource.org 616 | 2620:0:863:ed1a::1 da.wikisource.org 617 | 2620:0:863:ed1a::1 de.wikisource.org 618 | 2620:0:863:ed1a::1 el.wikisource.org 619 | 2620:0:863:ed1a::1 en.wikisource.org 620 | 2620:0:863:ed1a::1 eo.wikisource.org 621 | 2620:0:863:ed1a::1 es.wikisource.org 622 | 2620:0:863:ed1a::1 et.wikisource.org 623 | 2620:0:863:ed1a::1 fa.wikisource.org 624 | 2620:0:863:ed1a::1 fi.wikisource.org 625 | 2620:0:863:ed1a::1 fo.wikisource.org 626 | 2620:0:863:ed1a::1 fr.wikisource.org 627 | 2620:0:863:ed1a::1 gl.wikisource.org 628 | 2620:0:863:ed1a::1 he.wikisource.org 629 | 2620:0:863:ed1a::1 hr.wikisource.org 630 | 2620:0:863:ed1a::1 ht.wikisource.org 631 | 2620:0:863:ed1a::1 hu.wikisource.org 632 | 2620:0:863:ed1a::1 hy.wikisource.org 633 | 2620:0:863:ed1a::1 id.wikisource.org 634 | 2620:0:863:ed1a::1 is.wikisource.org 635 | 2620:0:863:ed1a::1 it.wikisource.org 636 | 2620:0:863:ed1a::1 ja.wikisource.org 637 | 2620:0:863:ed1a::1 kn.wikisource.org 638 | 2620:0:863:ed1a::1 ko.wikisource.org 639 | 2620:0:863:ed1a::1 la.wikisource.org 640 | 2620:0:863:ed1a::1 li.wikisource.org 641 | 2620:0:863:ed1a::1 lt.wikisource.org 642 | 2620:0:863:ed1a::1 mk.wikisource.org 643 | 2620:0:863:ed1a::1 ml.wikisource.org 644 | 2620:0:863:ed1a::1 nl.wikisource.org 645 | 2620:0:863:ed1a::1 no.wikisource.org 646 | 2620:0:863:ed1a::1 pl.wikisource.org 647 | 2620:0:863:ed1a::1 pt.wikisource.org 648 | 2620:0:863:ed1a::1 ro.wikisource.org 649 | 2620:0:863:ed1a::1 ru.wikisource.org 650 | 2620:0:863:ed1a::1 sa.wikisource.org 651 | 2620:0:863:ed1a::1 sah.wikisource.org 652 | 2620:0:863:ed1a::1 sk.wikisource.org 653 | 2620:0:863:ed1a::1 sl.wikisource.org 654 | 2620:0:863:ed1a::1 sr.wikisource.org 655 | 2620:0:863:ed1a::1 sv.wikisource.org 656 | 2620:0:863:ed1a::1 ta.wikisource.org 657 | 2620:0:863:ed1a::1 te.wikisource.org 658 | 2620:0:863:ed1a::1 th.wikisource.org 659 | 2620:0:863:ed1a::1 tr.wikisource.org 660 | 2620:0:863:ed1a::1 uk.wikisource.org 661 | 2620:0:863:ed1a::1 vec.wikisource.org 662 | 2620:0:863:ed1a::1 vi.wikisource.org 663 | 2620:0:863:ed1a::1 yi.wikisource.org 664 | 2620:0:863:ed1a::1 zh.wikisource.org 665 | 2620:0:863:ed1a::1 zh-min-nan.wikisource.org 666 | 667 | ## Wiktionary 维基词典 668 | 2620:0:863:ed1a::1 wiktionary.org 669 | 2620:0:863:ed1a::1 www.wiktionary.org 670 | 2620:0:863:ed1a::1 aa.wiktionary.org 671 | 2620:0:863:ed1a::1 ab.wiktionary.org 672 | 2620:0:863:ed1a::1 af.wiktionary.org 673 | 2620:0:863:ed1a::1 ak.wiktionary.org 674 | 2620:0:863:ed1a::1 als.wiktionary.org 675 | 2620:0:863:ed1a::1 am.wiktionary.org 676 | 2620:0:863:ed1a::1 an.wiktionary.org 677 | 2620:0:863:ed1a::1 ang.wiktionary.org 678 | 2620:0:863:ed1a::1 ar.wiktionary.org 679 | 2620:0:863:ed1a::1 as.wiktionary.org 680 | 2620:0:863:ed1a::1 ast.wiktionary.org 681 | 2620:0:863:ed1a::1 av.wiktionary.org 682 | 2620:0:863:ed1a::1 ay.wiktionary.org 683 | 2620:0:863:ed1a::1 az.wiktionary.org 684 | 2620:0:863:ed1a::1 be.wiktionary.org 685 | 2620:0:863:ed1a::1 bg.wiktionary.org 686 | 2620:0:863:ed1a::1 bh.wiktionary.org 687 | 2620:0:863:ed1a::1 bi.wiktionary.org 688 | 2620:0:863:ed1a::1 bm.wiktionary.org 689 | 2620:0:863:ed1a::1 bn.wiktionary.org 690 | 2620:0:863:ed1a::1 bo.wiktionary.org 691 | 2620:0:863:ed1a::1 br.wiktionary.org 692 | 2620:0:863:ed1a::1 bs.wiktionary.org 693 | 2620:0:863:ed1a::1 ca.wiktionary.org 694 | 2620:0:863:ed1a::1 ch.wiktionary.org 695 | 2620:0:863:ed1a::1 chr.wiktionary.org 696 | 2620:0:863:ed1a::1 co.wiktionary.org 697 | 2620:0:863:ed1a::1 cr.wiktionary.org 698 | 2620:0:863:ed1a::1 cs.wiktionary.org 699 | 2620:0:863:ed1a::1 csb.wiktionary.org 700 | 2620:0:863:ed1a::1 cy.wiktionary.org 701 | 2620:0:863:ed1a::1 da.wiktionary.org 702 | 2620:0:863:ed1a::1 de.wiktionary.org 703 | 2620:0:863:ed1a::1 dv.wiktionary.org 704 | 2620:0:863:ed1a::1 dz.wiktionary.org 705 | 2620:0:863:ed1a::1 el.wiktionary.org 706 | 2620:0:863:ed1a::1 en.wiktionary.org 707 | 2620:0:863:ed1a::1 eo.wiktionary.org 708 | 2620:0:863:ed1a::1 es.wiktionary.org 709 | 2620:0:863:ed1a::1 et.wiktionary.org 710 | 2620:0:863:ed1a::1 eu.wiktionary.org 711 | 2620:0:863:ed1a::1 fa.wiktionary.org 712 | 2620:0:863:ed1a::1 fi.wiktionary.org 713 | 2620:0:863:ed1a::1 fj.wiktionary.org 714 | 2620:0:863:ed1a::1 fo.wiktionary.org 715 | 2620:0:863:ed1a::1 fr.wiktionary.org 716 | 2620:0:863:ed1a::1 fy.wiktionary.org 717 | 2620:0:863:ed1a::1 ga.wiktionary.org 718 | 2620:0:863:ed1a::1 gd.wiktionary.org 719 | 2620:0:863:ed1a::1 gl.wiktionary.org 720 | 2620:0:863:ed1a::1 gn.wiktionary.org 721 | 2620:0:863:ed1a::1 gu.wiktionary.org 722 | 2620:0:863:ed1a::1 gv.wiktionary.org 723 | 2620:0:863:ed1a::1 ha.wiktionary.org 724 | 2620:0:863:ed1a::1 he.wiktionary.org 725 | 2620:0:863:ed1a::1 hi.wiktionary.org 726 | 2620:0:863:ed1a::1 hr.wiktionary.org 727 | 2620:0:863:ed1a::1 hsb.wiktionary.org 728 | 2620:0:863:ed1a::1 hu.wiktionary.org 729 | 2620:0:863:ed1a::1 hy.wiktionary.org 730 | 2620:0:863:ed1a::1 ia.wiktionary.org 731 | 2620:0:863:ed1a::1 id.wiktionary.org 732 | 2620:0:863:ed1a::1 ie.wiktionary.org 733 | 2620:0:863:ed1a::1 ik.wiktionary.org 734 | 2620:0:863:ed1a::1 io.wiktionary.org 735 | 2620:0:863:ed1a::1 is.wiktionary.org 736 | 2620:0:863:ed1a::1 it.wiktionary.org 737 | 2620:0:863:ed1a::1 iu.wiktionary.org 738 | 2620:0:863:ed1a::1 ja.wiktionary.org 739 | 2620:0:863:ed1a::1 jbo.wiktionary.org 740 | 2620:0:863:ed1a::1 jv.wiktionary.org 741 | 2620:0:863:ed1a::1 ka.wiktionary.org 742 | 2620:0:863:ed1a::1 kk.wiktionary.org 743 | 2620:0:863:ed1a::1 kl.wiktionary.org 744 | 2620:0:863:ed1a::1 km.wiktionary.org 745 | 2620:0:863:ed1a::1 kn.wiktionary.org 746 | 2620:0:863:ed1a::1 ko.wiktionary.org 747 | 2620:0:863:ed1a::1 ks.wiktionary.org 748 | 2620:0:863:ed1a::1 ku.wiktionary.org 749 | 2620:0:863:ed1a::1 kw.wiktionary.org 750 | 2620:0:863:ed1a::1 ky.wiktionary.org 751 | 2620:0:863:ed1a::1 la.wiktionary.org 752 | 2620:0:863:ed1a::1 lb.wiktionary.org 753 | 2620:0:863:ed1a::1 li.wiktionary.org 754 | 2620:0:863:ed1a::1 ln.wiktionary.org 755 | 2620:0:863:ed1a::1 lo.wiktionary.org 756 | 2620:0:863:ed1a::1 lt.wiktionary.org 757 | 2620:0:863:ed1a::1 lv.wiktionary.org 758 | 2620:0:863:ed1a::1 mg.wiktionary.org 759 | 2620:0:863:ed1a::1 mh.wiktionary.org 760 | 2620:0:863:ed1a::1 mi.wiktionary.org 761 | 2620:0:863:ed1a::1 mk.wiktionary.org 762 | 2620:0:863:ed1a::1 ml.wiktionary.org 763 | 2620:0:863:ed1a::1 mn.wiktionary.org 764 | 2620:0:863:ed1a::1 mo.wiktionary.org 765 | 2620:0:863:ed1a::1 mr.wiktionary.org 766 | 2620:0:863:ed1a::1 ms.wiktionary.org 767 | 2620:0:863:ed1a::1 mt.wiktionary.org 768 | 2620:0:863:ed1a::1 my.wiktionary.org 769 | 2620:0:863:ed1a::1 na.wiktionary.org 770 | 2620:0:863:ed1a::1 nah.wiktionary.org 771 | 2620:0:863:ed1a::1 nds.wiktionary.org 772 | 2620:0:863:ed1a::1 ne.wiktionary.org 773 | 2620:0:863:ed1a::1 nl.wiktionary.org 774 | 2620:0:863:ed1a::1 nn.wiktionary.org 775 | 2620:0:863:ed1a::1 no.wiktionary.org 776 | 2620:0:863:ed1a::1 oc.wiktionary.org 777 | 2620:0:863:ed1a::1 om.wiktionary.org 778 | 2620:0:863:ed1a::1 or.wiktionary.org 779 | 2620:0:863:ed1a::1 pa.wiktionary.org 780 | 2620:0:863:ed1a::1 pi.wiktionary.org 781 | 2620:0:863:ed1a::1 pl.wiktionary.org 782 | 2620:0:863:ed1a::1 ps.wiktionary.org 783 | 2620:0:863:ed1a::1 pt.wiktionary.org 784 | 2620:0:863:ed1a::1 qu.wiktionary.org 785 | 2620:0:863:ed1a::1 rm.wiktionary.org 786 | 2620:0:863:ed1a::1 rn.wiktionary.org 787 | 2620:0:863:ed1a::1 ro.wiktionary.org 788 | 2620:0:863:ed1a::1 roa-rup.wiktionary.org 789 | 2620:0:863:ed1a::1 ru.wiktionary.org 790 | 2620:0:863:ed1a::1 rw.wiktionary.org 791 | 2620:0:863:ed1a::1 sa.wiktionary.org 792 | 2620:0:863:ed1a::1 sc.wiktionary.org 793 | 2620:0:863:ed1a::1 scn.wiktionary.org 794 | 2620:0:863:ed1a::1 sd.wiktionary.org 795 | 2620:0:863:ed1a::1 sg.wiktionary.org 796 | 2620:0:863:ed1a::1 sh.wiktionary.org 797 | 2620:0:863:ed1a::1 si.wiktionary.org 798 | 2620:0:863:ed1a::1 simple.wiktionary.org 799 | 2620:0:863:ed1a::1 sk.wiktionary.org 800 | 2620:0:863:ed1a::1 sl.wiktionary.org 801 | 2620:0:863:ed1a::1 sm.wiktionary.org 802 | 2620:0:863:ed1a::1 sn.wiktionary.org 803 | 2620:0:863:ed1a::1 so.wiktionary.org 804 | 2620:0:863:ed1a::1 sq.wiktionary.org 805 | 2620:0:863:ed1a::1 sr.wiktionary.org 806 | 2620:0:863:ed1a::1 ss.wiktionary.org 807 | 2620:0:863:ed1a::1 st.wiktionary.org 808 | 2620:0:863:ed1a::1 su.wiktionary.org 809 | 2620:0:863:ed1a::1 sv.wiktionary.org 810 | 2620:0:863:ed1a::1 sw.wiktionary.org 811 | 2620:0:863:ed1a::1 ta.wiktionary.org 812 | 2620:0:863:ed1a::1 te.wiktionary.org 813 | 2620:0:863:ed1a::1 tg.wiktionary.org 814 | 2620:0:863:ed1a::1 th.wiktionary.org 815 | 2620:0:863:ed1a::1 ti.wiktionary.org 816 | 2620:0:863:ed1a::1 tk.wiktionary.org 817 | 2620:0:863:ed1a::1 tl.wiktionary.org 818 | 2620:0:863:ed1a::1 tn.wiktionary.org 819 | 2620:0:863:ed1a::1 to.wiktionary.org 820 | 2620:0:863:ed1a::1 tpi.wiktionary.org 821 | 2620:0:863:ed1a::1 tr.wiktionary.org 822 | 2620:0:863:ed1a::1 ts.wiktionary.org 823 | 2620:0:863:ed1a::1 tt.wiktionary.org 824 | 2620:0:863:ed1a::1 tw.wiktionary.org 825 | 2620:0:863:ed1a::1 ug.wiktionary.org 826 | 2620:0:863:ed1a::1 uk.wiktionary.org 827 | 2620:0:863:ed1a::1 ur.wiktionary.org 828 | 2620:0:863:ed1a::1 uz.wiktionary.org 829 | 2620:0:863:ed1a::1 vi.wiktionary.org 830 | 2620:0:863:ed1a::1 vo.wiktionary.org 831 | 2620:0:863:ed1a::1 wa.wiktionary.org 832 | 2620:0:863:ed1a::1 wo.wiktionary.org 833 | 2620:0:863:ed1a::1 xh.wiktionary.org 834 | 2620:0:863:ed1a::1 yi.wiktionary.org 835 | 2620:0:863:ed1a::1 yo.wiktionary.org 836 | 2620:0:863:ed1a::1 za.wiktionary.org 837 | 2620:0:863:ed1a::1 zh.wiktionary.org 838 | 2620:0:863:ed1a::1 zh-min-nan.wiktionary.org 839 | 2620:0:863:ed1a::1 zu.wiktionary.org 840 | 841 | ## Wikiversity 维基学院 842 | 2620:0:863:ed1a::1 wikiversity.org 843 | 2620:0:863:ed1a::1 www.wikiversity.org 844 | 2620:0:863:ed1a::1 ar.wikiversity.org 845 | 2620:0:863:ed1a::1 beta.wikiversity.org 846 | 2620:0:863:ed1a::1 cs.wikiversity.org 847 | 2620:0:863:ed1a::1 de.wikiversity.org 848 | 2620:0:863:ed1a::1 el.wikiversity.org 849 | 2620:0:863:ed1a::1 en.wikiversity.org 850 | 2620:0:863:ed1a::1 es.wikiversity.org 851 | 2620:0:863:ed1a::1 fi.wikiversity.org 852 | 2620:0:863:ed1a::1 fr.wikiversity.org 853 | 2620:0:863:ed1a::1 it.wikiversity.org 854 | 2620:0:863:ed1a::1 ja.wikiversity.org 855 | 2620:0:863:ed1a::1 pt.wikiversity.org 856 | 2620:0:863:ed1a::1 ru.wikiversity.org 857 | 2620:0:863:ed1a::1 sv.wikiversity.org 858 | 859 | -------------------------------------------------------------------------------- /snippets/11_others.txt: -------------------------------------------------------------------------------- 1 | ## Apple 苹果 2 | 2001:428:4c02:48e::1aca www.apple.com #www.isg-apple.com.akadns.net 3 | 4 | ## Blizzard Entertainment 暴雪娱乐 5 | 2620:10b:9006:600:dad3:85ff:fed9:ce24 ipv6.blizzard.com 6 | 7 | ## Gravatar 8 | #2606:2800:20d:1047:6cf:353:607:e8a www.gravatar.com #cs91.wac.edgecastcdn.net 9 | #2606:2800:20d:1047:6cf:353:607:e8a s.gravatar.com #cs91.wac.edgecastcdn.net 10 | #2606:2800:20d:1047:6cf:353:607:e8a 0.gravatar.com #cs91.wac.edgecastcdn.net 11 | #2606:2800:20d:1047:6cf:353:607:e8a 1.gravatar.com #cs91.wac.edgecastcdn.net 12 | #2606:2800:20d:1047:6cf:353:607:e8a 2.gravatar.com #cs91.wac.edgecastcdn.net 13 | 14 | ## Plurk 15 | #2607:f128:47::1:1 plurk.com 16 | #2607:f128:47::1:1 www.plurk.com 17 | #2607:f128:47::1:1 ipv6.plurk.com 18 | 19 | ## 其他IPv6网站 20 | ## US 美国 21 | ## Easylist系列 22 | 2a01:4f8:130:11ee::2 easylist-downloads.adblockplus.org 23 | 24 | ## LEDE Project 25 | 2a03:b0c0:3:d0::1af1:1 lede-project.org 26 | 27 | ## Mozilla 28 | 2400:cb00:2048:1::6810:2902 www.mozilla.org #www.mozilla.org.cdn.cloudflare.net 29 | #2620:101:8008:5::2:6 air.mozilla.org #generic.zlb.phx.mozilla.net 30 | #2620:101:8020:5::2:132 addons.mozilla.org #addons.dynect.mozilla.net 31 | #2620:101:8008:5::2:6 blog.mozilla.org #generic.zlb.phx.mozilla.net 32 | #2620:101:8008:5::2:9 bugzilla.mozilla.org #bugzilla.zlb.phx.mozilla.net 33 | #2620:101:8008:5::2:7 dnt.mozilla.org #static.zlb.phx.mozilla.net 34 | #2620:101:8008:5::2:6 firefoxflicks.mozilla.org #generic.zlb.phx.mozilla.net 35 | #2620:101:8008:5::2:6 hacks.mozilla.org #generic.zlb.phx.mozilla.net 36 | #2620:101:8008:5::2:7 nightly.mozilla.org #static.zlb.phx.mozilla.net 37 | #2620:101:8008:5::2:6 pastebin.mozilla.org #generic.zlb.phx.mozilla.net 38 | #2620:101:8008:5::2:7 planet.mozilla.org #static.zlb.phx.mozilla.net 39 | #2620:101:8008:5::2:6 quality.mozilla.org 40 | #2620:101:8008:5::2:8 releases.mozilla.org #static-non-ssl.zlb.phx.mozilla.net 41 | #2620:101:8008:5::2:3 support.mozilla.org #sumo.zlb.phx.mozilla.net 42 | #2620:101:8008:5::2:7 tbpl.mozilla.org #static-redirect.zlb.phx.mozilla.net 43 | #2620:101:8008:5::2:6 wiki.mozilla.org #generic.zlb.phx.mozilla.net 44 | #2620:101:8008:5::2:7 www.mozilla.com #static-redirect.zlb.phx.mozilla.net 45 | #2620:101:8008:5::2:8 www.firefox.com #firefox.com 46 | #2620:101:8008:5::2:8 firefox.com 47 | 48 | ## Microsoft 微软 49 | 2600:1406:3f:299::356e www.microsoft.com #e10088.dscb.akamaiedge.net 50 | 2600:1406:3f:299::2886 i.microsoft.com 51 | 2600:1406:3f:299::2886 i2.microsoft.com #i.microsoft.com.edgekey.net 52 | 2600:1406:3f:299::2886 i3.microsoft.com #i.microsoft.com.edgekey.net 53 | 2002:836b:9820::836b:9886 www.ipv6.microsoft.com 54 | 2600:1406:3f:299::e59 download.microsoft.com 55 | 2606:2800:11f:17a5:191a:18d5:537:22f9 software-download.microsoft.com #cs9.wpc.v0cdn.net 56 | 2606:2800:11f:17a5:191a:18d5:537:22f9 ajax.aspnetcdn.com #cs9.wpc.v0cdn.net 57 | 2606:2800:11f:7de:d31:7db:168f:1225 download.visualstudio.microsoft.com #cs10.wpc.v0cdn.net 58 | 2400:a980:fd:6:11::14 download.windowsupdate.com #download.windowsupdate.com.bsgslb.cn 59 | 2400:a980:fd:6:11::14 dl.delivery.mp.microsoft.com #tlu.dl.delivery.mp.microsoft.com.bsgslb.cn 60 | 2400:a980:fd:6:11::14 tlu.dl.delivery.mp.microsoft.com #tlu.dl.delivery.mp.microsoft.com.bsgslb.cn 61 | 2400:a980:fd:6:11::14 8.tlu.dl.delivery.mp.microsoft.com #tlu.dl.delivery.mp.microsoft.com.bsgslb.cn 62 | 2400:a980:fd:6:11::14 10.tlu.dl.delivery.mp.microsoft.com #tlu.dl.delivery.mp.microsoft.com.bsgslb.cn 63 | 2620:1ec:c11::212 onedrive.live.com #skyweb.skyprod.akadns.net 64 | 157.55.109.232 skyapi.onedrive.live.com #odc-common-emea-meta-geo.onedrive.akadns.net 65 | 2620:1ec:c11::212 storage.live.com 66 | 2600:1406:3f:299::1c24 s1-word-view-15.cdn.office.net #wildcard.cdn.office.net.edgekey.net 67 | 2600:1406:3f:299::1c24 s1-officeapps-15.cdn.office.net #e6911.dspg.akamaiedge.net 68 | 2600:1406:3f:299::6bb officecdn.microsoft.com #e1723.dscd.akamaiedge.net 69 | 2620:1ec:c11::200 www.bing.com 70 | 2620:1ec:c11::200 www2.bing.com 71 | 2620:1ec:c11::200 cn.bing.com 72 | 2620:1ec:c11::200 ssl.bing.com 73 | 2620:1ec:c11::200 global.bing.com 74 | #2a01:111:2003::200 api.bing.com 75 | #2a01:111:2003::200 bj1.api.bing.com 76 | #2a01:111:2003::200 tse1.mm.bing.net 77 | #2a01:111:2003::200 tse2.mm.bing.net 78 | #2a01:111:2003::200 tse3.mm.bing.net 79 | #2a01:111:2003::200 tse4.mm.bing.net 80 | #2a01:111:2003::200 tse1-mm.cn.bing.net 81 | #2a01:111:2003::200 tse2-mm.cn.bing.net 82 | #2a01:111:2003::200 tse3-mm.cn.bing.net 83 | #2a01:111:2003::200 tse4-mm.cn.bing.net 84 | 2600:1406:3f::17d7:6464 a248.e.akamai.net 85 | 2600:1417:8000::b81c:da83 img-s-msn-com.akamaized.net #a1834.dspg2.akamai.net 86 | 87 | ## ARIN 88 | 2001:500:4:c000::43 www.arin.net 89 | 2001:500:31::46 whois.arin.net 90 | 91 | ## Yahoo! 92 | 2001:4998:c:a06::2:4008 www.yahoo.com #fd-fp3.wg1.b.yahoo.com 93 | 2001:4998:c:80c::3010 news.yahoo.com #fd-geoycpi-uno-deluxe.gycpi.b.yahoodns.net 94 | #2406:2000:f016:1fe::3001 hk.news.yahoo.com #fd-geoycpi-uno-deluxe.gycpi.b.yahoodns.net 95 | 2406:2000:ec:a01::4000 dstest.yahoo.com #ds-jpx-ycpi-uno.gycpi.b.yahoodns.net 96 | 2001:4998:f007:1fb::1001 dstest2.yahoo.com #ds-jpx-ycpi-uno.gycpi.b.yahoodns.net 97 | 2001:4998:c:401::c:9102 dstest3.yahoo.com #ds-jpx-ycpi-uno.gycpi.b.yahoodns.net 98 | #2406:2000:f016:1fe::3000 tw.news.yahoo.com #fd-geoycpi-uno-deluxe.gycpi.b.yahoodns.net 99 | #2406:2000:f016:1fe::3001 tw.news.yahoo.com #fd-geoycpi-uno-deluxe.gycpi.b.yahoodns.net 100 | 2001:4998:f007:1fb::1001 l.yimg.com #l.gycs.b.yahoodns.net 101 | 2001:4998:f007:1fb::1000 l1.yimg.com #l.gycs.b.yahoodns.net 102 | 2406:2000:a8:802::1009 l2.yimg.com #any-l.aycs.b.yahoodns.net 103 | 2406:2000:90:800::4002 l3.yimg.com #any-l.aycs.b.yahoodns.net 104 | 2001:4998:c:293f::6000 ad.yieldmanager.com #ds-kr-world.ngd.gysm.yahoodns.net 105 | 106 | ## Uncyclopedia 107 | 2400:cb00:2048:1::681c:1a21 uncyclopedia.hk 108 | 2400:cb00:2048:1::681c:1a09 uncyclopedia.info 109 | 2400:cb00:2048:1::681c:1a09 www.uncyclopedia.info 110 | 2400:cb00:2048:1::681c:1304 uncyclopedia.tw 111 | 2400:cb00:2048:1::681c:b56 uncyclomedia.org 112 | 2400:cb00:2048:1::681c:b56 meta.uncyclomedia.org 113 | 2400:cb00:2048:1::681c:183a images.uncyc.org 114 | 2400:cb00:2048:1::681c:193a static.uncyc.org 115 | 2400:cb00:2048:1::681c:1009 ansaikuropedia.org 116 | 117 | ## Vine 118 | #2606:1f80:a000:100::4 edge.vncdn.co 119 | #2606:1f80:a000:100::11 mid.vncdn.co 120 | #2606:1f80:a000:100::5 v.cdn.vine.co 121 | #2606:1f80:a000:100::5 mtc.cdn.vine.co 122 | 123 | ## Imgur 124 | #2a04:4e42:2e::193 imgur.com 125 | 2a04:4e42:2e::193 www.imgur.com 126 | 2a04:4e42:2e::193 s.imgur.com 127 | 2a04:4e42:2e::193 i.imgur.com 128 | 2a04:4e42:2e::193 m.imgur.com 129 | 2a04:4e42:2e::193 p.imgur.com 130 | #2a04:4e42:2e::193 api.imgur.com 131 | 132 | ## Steam 133 | #2600:1406:3f:299::3a7 api.steampowered.com 134 | #2600:1406:3f:299::3a7 support.steampowered.com 135 | #2600:1406:3f::17d7:6464 repo.steampowered.com 136 | 2600:1406:3f::17d7:6464 cdn.akamai.steamstatic.com 137 | #2600:1406:3f::17d7:6464 store.akamai.steamstatic.com 138 | #2600:1406:3f::17d7:6464 cdn.store.steampowered.com 139 | #2600:1406:3f::17d7:6464 cdn.steampowered.com 140 | #2600:1406:3f::17d7:6464 media.steampowered.com 141 | #2600:1406:3f::17d7:6464 media4.steampowered.com 142 | #2600:1406:3f::17d7:6464 content8.steampowered.com 143 | #2600:1406:3f::17d7:6464 cloud-3.steampowered.com 144 | #2600:1406:3f::17d7:6464 cloud-3.steamusercontent.com 145 | #2600:1406:3f::17d7:6464 images.akamai.steamusercontent.com 146 | 2600:1406:3f::17d7:6464 steamcdn-a.akamaihd.net 147 | 2600:1406:3f::17d7:6464 steamstore-a.akamaihd.net 148 | 2600:1406:3f::17d7:6464 steamcommunity-a.akamaihd.net 149 | #2600:1406:3f:299::3a7 steamcommunity.com 150 | #2600:1406:3f::17d7:6464 cdn.steamcommunity.com 151 | #2600:1406:3f::17d7:6464 store.valvesoftware.com 152 | 153 | ## NVIDIA 154 | #2600:1406:3f:299::376 www.nvidia.com 155 | #2600:1406:3f:299::376 arg.nvidia.com 156 | #2600:1406:3f:299::376 blogs.nvidia.com 157 | #2600:1406:3f:299::376 br.nvidia.com 158 | #2600:1406:3f:299::376 chl.nvidia.com 159 | #2600:1406:3f:299::376 clm.nvidia.com 160 | #2600:1406:3f:299::376 research.nvidia.com 161 | #2600:1406:3f:299::376 ven.nvidia.com 162 | 2606:2800:21f:3aa:dcf:37b:1ed6:1fb images.nvidia.com 163 | #2600:1406:3f:299::a90 developer.nvidia.com 164 | #2600:1406:3f:299::778 www.nvidia.cn 165 | #2600:1406:3f:299::c8c blogs.nvidia.cn 166 | #2600:1406:3f::17d7:6464 cn.nvidia.com 167 | #2600:1406:3f:299::778 contests.nvidia.com 168 | #2600:1406:3f:299::778 services.gfe.nvidia.com 169 | 2606:2800:21f:150d:87d:2526:2d1:177d download-cdn.gfe.nvidia.com 170 | #2600:1406:3f:299::778 shield.nvidia.com 171 | 2606:2800:21f:3aa:dcf:37b:1ed6:1fb cn.download.nvidia.com 172 | 2606:2800:21f:3aa:dcf:37b:1ed6:1fb us.download.nvidia.com 173 | 2606:2800:21f:3aa:dcf:37b:1ed6:1fb international.download.nvidia.com 174 | 2606:2800:21f:3aa:dcf:37b:1ed6:1fb international-gfe.download.nvidia.com 175 | #2600:1406:3f:299::7b4 www.geforce.com 176 | #2600:1406:3f:299::7b4 gfwsl.geforce.com 177 | #2600:1406:3f::17d7:6464 www.geforce.cn 178 | #2600:1406:3f:299::c8c nfans.geforce.cn 179 | #2600:1406:3f::17d7:6464 www.tegrazone.com 180 | 181 | ## AMD 182 | 2600:1406:3f:299::b51 www.amd.com 183 | 2600:1406:3f:299::554 community.amd.com 184 | 2600:1406:3f:299::2b39 ir.amd.com 185 | 2600:1406:3f:299::b51 shop.amd.com 186 | 2600:1406:3f:299::b51 support.amd.com 187 | 2600:1406:3f:299::1c7b download.amd.com 188 | 2600:1406:3f:299::1c7b www2.ati.com 189 | 190 | ## Intel 191 | 2600:1406:3f:299::75 www.intel.cn 192 | 2600:1406:3f:299::b www.intel.com 193 | 2600:1406:3f:299::b ark.intel.com 194 | 2600:1406:3f:299::b corpredirect.intel.com 195 | 2600:1406:3f:299::75 newsroom.intel.cn 196 | 2600:1406:3f:299::b www-ssl.intel.com 197 | 2600:1406:3f:299::b communities.intel.com 198 | 2600:1406:3f:299::b downloadcenter.intel.com 199 | 2600:1406:3f:299::b downloadmirror.intel.com 200 | 2600:1406:3f:299::b engage.intel.com 201 | 2600:1406:3f:299::b iq.intel.com 202 | 2600:1406:3f:299::b newsroom.intel.com 203 | 2600:1406:3f:299::b software.intel.com 204 | 2600:1406:3f:299::ae6 embedded.communities.intel.com 205 | 2600:1406:3f:299::358a videocdn.intel.cn 206 | 207 | ## Coursera 208 | 2600:9000:2012:: d3c33hcgiwev3.cloudfront.net 209 | 2600:9000:2012:: d3njjcbhbojbot.cloudfront.net 210 | 211 | ## Reddit 212 | 2a04:4e42:2e::396 reddit.com 213 | 2a04:4e42:2e::396 www.reddit.com 214 | 2a04:4e42:2e::396 np.reddit.com 215 | 2a04:4e42:2e::396 old.reddit.com 216 | 2a04:4e42:2e::396 new.reddit.com 217 | 2a04:4e42:2e::396 pay.reddit.com 218 | 2a04:4e42:2e::396 ssl.reddit.com 219 | 2a04:4e42:2e::396 about.reddit.com 220 | 2a04:4e42:2e::396 m.reddit.com 221 | 2a04:4e42:2e::396 mod.reddit.com 222 | 2a04:4e42:2e::396 d.reddit.com 223 | 2a04:4e42:2e::396 e.reddit.com 224 | 2a04:4e42:2e::396 events.reddit.com 225 | 2a04:4e42:2e::396 buttons.reddit.com 226 | 2a04:4e42:2e::396 oauth.reddit.com 227 | 2a04:4e42:2e::396 gateway.reddit.com 228 | 2a04:4e42:2e::396 sendbird.reddit.com 229 | 2a04:4e42:2e::396 www.redditstatic.com 230 | 2a04:4e42:2e::396 www.redditmedia.com 231 | 2a04:4e42:2e::396 embed.redditmedia.com 232 | 2a04:4e42:2e::396 emoji.redditmedia.com 233 | 2a04:4e42:2e::396 styles.redditmedia.com 234 | 2a04:4e42:2e::396 g.redditmedia.com 235 | 2a04:4e42:2e::396 i.redditmedia.com 236 | 2a04:4e42:2e::396 s.redditmedia.com 237 | 2a04:4e42:2e::396 a.thumbs.redditmedia.com 238 | 2a04:4e42:2e::396 b.thumbs.redditmedia.com 239 | 2a04:4e42:2e::396 c.thumbs.redditmedia.com 240 | 2a04:4e42:2e::396 d.thumbs.redditmedia.com 241 | 2a04:4e42:2e::396 e.thumbs.redditmedia.com 242 | 2a04:4e42:2e::396 f.thumbs.redditmedia.com 243 | 2a04:4e42:2e::396 redd.it 244 | 2a04:4e42:2e::396 i.redd.it 245 | 2a04:4e42:2e::396 v.redd.it 246 | 2a04:4e42:2e::396 redditinc.com 247 | 2a04:4e42:2e::396 www.redditinc.com 248 | 2a04:4e42:2e::396 redditgifts.com 249 | 2a04:4e42:2e::396 www.redditgifts.com 250 | 2a04:4e42:2e::396 static.redditgifts.com 251 | 2600:1fa0:80a0:81:34d8:c20b:: redditstatic.s3.amazonaws.com 252 | 2600:1fa0:80a0:81:34d8:c20b:: redditgifts.s3.amazonaws.com 253 | 2600:1fa0:80a0:81:34d8:c20b:: reddit-image.s3.amazonaws.com 254 | 2600:9000:2012:: reddit-uploaded-media.s3-accelerate.amazonaws.com 255 | 256 | ## AT 奥地利 257 | ## Tor Project 258 | 2001:6b0:5a:5000::5 torproject.org 259 | 2001:41b8:202:deb:213:21ff:fe20:1426 www.torproject.org 260 | 2a01:4f8:172:1b46:0:abba:5:1 deb.torproject.org #www.torproject.org 261 | 2a01:4f8:10b:239f:0:ab4:204:1 dist.torproject.org 262 | 2a01:4f8:172:39ca:0:dad3:3:1 trac.torproject.org #troodi.torproject.org 263 | 2001:6b0:5a:5000::5 cloud.torproject.org #www.torproject.org 264 | 2620:0:6b0:b:1a1a:0:26e5:4810 atlas.torproject.org #www.torproject.org 265 | 2a01:4f8:172:1b46:0:abba:14:1 svn.torproject.org #gayi.torproject.org 266 | 267 | ## AU 澳大利亚 268 | ## APNIC 269 | 2400:cb00:2048:1::6814:3bc2 www.apnic.net 270 | 2001:dd8:9:2::101:34 wq.apnic.net 271 | 2001:dc0:2001:11::205 submit.apnic.net 272 | 273 | ## FR 法国 274 | 2a01:e0d:1:3:58bf:fa02:c0de:5 videolan.org 275 | 2a01:e0d:1:3:58bf:fa02:c0de:5 www.videolan.org #ganesh.videolan.org 276 | 277 | ## JP 日本 278 | ## JAIST 北陸先端科学技術大学院大学 279 | 2001:df0:2ed:feed::feed ftp.jaist.ac.jp 280 | 2001:df0:2ed:feed::feed jaist.dl.sourceforge.net 281 | 282 | ## NL 荷兰 283 | ## Ubuntu Archive 284 | 2001:7b8:3:37::21:3 ipv6.torrent.ubuntu.com #ubuntuv6tracker.bit.nl 285 | 2001:7b8:3:37::21:3 nl.archive.ubuntu.com #ubuntuarchive.bit.nl 286 | 287 | ## PA 巴拿马 288 | 2400:cb00:2048:1::681b:d41e bitsnoop.com 289 | 290 | ## IPv6/IPv4 转换代理 291 | ## DNS64 服务器: 292 | #2001:778::37 dns64.litnet.lt 293 | 294 | ## Telegram 295 | 2001:67c:4e8:fa60:3:0:811:139 telegram.org 296 | 2001:67c:4e8:fa60:3:0:811:139 core.telegram.org 297 | 2001:67c:4e8:fa60:3:0:811:140 web.telegram.org 298 | 2001:67c:4e8:f004::9 api.telegram.org 299 | 2001:67c:4e8:fa60:3:0:811:139 my.telegram.org 300 | 2001:67c:4e8:fa60:3:0:811:139 tisvpn.telegram.org 301 | 2001:b28:f23d:800a:3:0:830:630 aurora.web.telegram.org 302 | 2001:67c:4e8:a:3:0:710:605 venus.web.telegram.org 303 | 2001:b28:f23f:d:3:0:850:340 flora.web.telegram.org 304 | 2001:67c:4e8:100a:3:0:811:240 vesta-1.web.telegram.org 305 | 2001:67c:4e8:fa60:3:0:811:139 www.telegram.org 306 | 2001:67c:4e8:100a:3:0:811:240 vesta.web.telegram.org 307 | 2001:b28:f23f:d:3:0:850:340 flora-1.web.telegram.org 308 | 2001:67c:4e8:fa60:3:0:811:139 desktop.telegram.org 309 | 2001:b28:f23d:a:3:0:802:231 pluto.web.telegram.org 310 | 2001:b28:f23d:a:3:0:802:231 pluto-1.web.telegram.org 311 | 2001:67c:4e8:a:3:0:710:605 venus-1.web.telegram.org 312 | 2001:67c:4e8:fa60:3:0:811:139 macos.telegram.org 313 | 2001:b28:f23d:800a:3:0:830:630 aurora-1.web.telegram.org 314 | 315 | ## Medium 316 | 2400:cb00:2048:1::6810:787f medium.com 317 | 2400:cb00:2048:1::6810:787f www.medium.com 318 | 2400:cb00:2048:1::6810:7891 api.medium.com 319 | 2400:cb00:2048:1::6810:7891 cdn-static-1.medium.com 320 | 2400:cb00:2048:1::6810:7891 cdn-images-1.medium.com 321 | 2400:cb00:2048:1::6810:7891 cdn-images-2.medium.com 322 | 323 | ## Pinterest 324 | 2a04:4e42:2e::84 pinterest.com 325 | 2a04:4e42:2e::84 www.pinterest.com 326 | 2a04:4e42:2e::84 about.pinterest.com 327 | 2a04:4e42:2e::84 blog.pinterest.com 328 | 2a04:4e42:2e::84 ads.pinterest.com 329 | 2a04:4e42:2e::84 analytics.pinterest.com 330 | 2a04:4e42:2e::84 br.pinterest.com 331 | 2a04:4e42:2e::84 business.pinterest.com 332 | 2a04:4e42:2e::84 businessblog.pinterest.com 333 | 2a04:4e42:2e::84 canary.pinterest.com 334 | 2a04:4e42:2e::84 cz.pinterest.com 335 | 2a04:4e42:2e::84 de.pinterest.com 336 | 2a04:4e42:2e::84 dk.pinterest.com 337 | 2a04:4e42:2e::84 es.pinterest.com 338 | 2a04:4e42:2e::84 fi.pinterest.com 339 | 2a04:4e42:2e::84 fr.pinterest.com 340 | 2a04:4e42:2e::84 gb.pinterest.com 341 | 2a04:4e42:2e::84 gr.pinterest.com 342 | 2a04:4e42:2e::84 help.pinterest.com 343 | 2a04:4e42:2e::84 hu.pinterest.com 344 | 2a04:4e42:2e::84 id.pinterest.com 345 | 2a04:4e42:2e::84 in.pinterest.com 346 | 2a04:4e42:2e::84 it.pinterest.com 347 | 2a04:4e42:2e::84 jp.pinterest.com 348 | 2a04:4e42:2e::84 kr.pinterest.com 349 | 2a04:4e42:2e::84 m.pinterest.com 350 | 2a04:4e42:2e::84 media-cache-ec0.pinterest.com 351 | 2a04:4e42:2e::84 pl.pinterest.com 352 | 2a04:4e42:2e::84 pt.pinterest.com 353 | 2a04:4e42:2e::84 ro.pinterest.com 354 | 2a04:4e42:2e::84 ru.pinterest.com 355 | 2a04:4e42:2e::84 se.pinterest.com 356 | 2a04:4e42:2e::84 sk.pinterest.com 357 | 2a04:4e42:2e::84 tr.pinterest.com 358 | 2a04:4e42:2e::84 uk.about.pinterest.com 359 | 2a04:4e42:2e::84 uk.pinterest.com 360 | 2a04:4e42:2e::84 no.pinterest.com 361 | 2a04:4e42:2e::84 engineering.pinterest.com 362 | 2a04:4e42:2e::84 ak.pinterest.com 363 | 2a04:4e42:2e::84 api.pinterest.com 364 | 2a04:4e42:2e::84 nl.pinterest.com 365 | 2a04:4e42:2e::84 passets-cdn.pinterest.com 366 | 2a04:4e42:2e::84 www.pinterest.jp 367 | 2a04:4e42:2e::84 s.pinimg.com 368 | 2a04:4e42:2e::84 i.pinimg.com 369 | 2a04:4e42:2e::84 v.pinimg.com 370 | 2600:1406:3f:299::1931 s-media-cache-ak0.pinimg.com 371 | 372 | ## BBC 373 | 2a04:4e42:2e::81 bbc.com 374 | 2a04:4e42:2e::81 www.bbc.com 375 | 2a04:4e42:2e::81 bbc.co.uk 376 | 2a04:4e42:2e::81 fig.bbc.co.uk 377 | 2600:1406:3f:299::f33 emp.bbc.com 378 | 2600:1406:3f:299::f33 www.bbc.co.uk 379 | 2600:1406:3f:299::f33 emp.bbc.co.uk 380 | 2600:1406:3f:299::f33 static.bbc.co.uk 381 | 2600:1406:3f:299::f33 gel.files.bbci.co.uk 382 | 2600:1406:3f:299::f33 ichef.bbci.co.uk 383 | 2600:1406:3f:299::f33 mybbc-analytics.files.bbci.co.uk 384 | 2600:1406:3f:299::f33 mybbc.files.bbci.co.uk 385 | 2600:1406:3f:299::f33 nav.files.bbci.co.uk 386 | 2600:1406:3f:299::f33 static.bbci.co.uk 387 | 2600:1406:3f:299::f33 walter-producer-cdn.api.bbci.co.uk 388 | 212.58.244.214 account.bbc.com 389 | 77.72.118.213 sa.bbc.co.uk 390 | 212.58.244.115 ssl.bbc.co.uk 391 | 207.159.133.98 shop.bbc.com 392 | 34.241.20.74 ssc.api.bbc.com 393 | 394 | ## Discord.gg 395 | 2400:cb00:2048:1::6810:3a05 discordapp.com 396 | 2400:cb00:2048:1::6810:3a05 www.discordapp.com 397 | 2400:cb00:2048:1::6810:9e7 canary.discordapp.com 398 | 2400:cb00:2048:1::6810:9e7 feedback.discordapp.com 399 | 2400:cb00:2048:1::6810:9e7 i18n.discordapp.com 400 | 2400:cb00:2048:1::6810:9e7 merch.discordapp.com 401 | 2400:cb00:2048:1::6810:9e7 printer.discordapp.com 402 | 2400:cb00:2048:1::6810:9e7 status.discordapp.com 403 | 2400:cb00:2048:1::6810:9e7 support.discordapp.com 404 | 2400:cb00:2048:1::6810:3b25 discord.gg 405 | 2400:cb00:2048:1::6810:fa90 dl.discordapp.net 406 | 2600:9000:2012:: dka575ofm4ao0.cloudfront.net 407 | 408 | ## Quora 409 | 2a04:4e42:2e::258 www.quora.com 410 | 2a04:4e42:2e::258 de.quora.com 411 | 2a04:4e42:2e::258 debunkingdoomsday.quora.com 412 | 2a04:4e42:2e::258 drchoresny.quora.com 413 | 2a04:4e42:2e::258 engineering.quora.com 414 | 2a04:4e42:2e::258 es.quora.com 415 | 2a04:4e42:2e::258 fr.quora.com 416 | 2a04:4e42:2e::258 hi.quora.com 417 | 2a04:4e42:2e::258 id.quora.com 418 | 2a04:4e42:2e::258 it.quora.com 419 | 2a04:4e42:2e::258 jp.quora.com 420 | 2a04:4e42:2e::258 pt.quora.com 421 | 2a04:4e42:2e::258 qph.fs.quoracdn.net 422 | 2a04:4e42:2e::258 qsbr.fs.quoracdn.net 423 | 2a04:4e42:2e::258 qsf.fs.quoracdn.net 424 | 425 | ## ABC.net.au 426 | 2600:1406:3f:299::c59 www.abc.net.au 427 | 2600:1406:3f:299::c59 about.abc.net.au 428 | 2600:1406:3f:299::c59 api.abc.net.au 429 | 2600:1406:3f:299::c59 api.iview.abc.net.au 430 | 2600:1406:3f:299::c59 cdn.iview.abc.net.au 431 | 2600:1406:3f:299::c59 education.abc.net.au 432 | 2600:1406:3f:299::c59 iview.abc.net.au 433 | 2600:1406:3f:299::c59 mobile.abc.net.au 434 | 2600:1406:3f:299::c59 mylogin.abc.net.au 435 | 2600:1406:3f:299::c59 open.abc.net.au 436 | 2600:1406:3f:299::c59 radio.abc.net.au 437 | 2600:1406:3f:299::c59 recommendations.abc.net.au 438 | 2600:1406:3f:299::c59 res.abc.net.au 439 | 2600:1406:3f:299::c59 search.abc.net.au 440 | 2600:1406:3f:299::c59 content-gateway.abc-prod.net.au 441 | 2600:1406:3f:299::c59 content-gateway.abc-prod.net.au 442 | 2600:1406:3f:299::c59 program.abcradio.net.au 443 | 2400:cb00:2048:1::6811:64d3 shop.abc.net.au 444 | 2600:9000:2012:: login.abc.net.au 445 | 2600:9000:2012:: resize.abcradio.net.au 446 | 2600:1406:3f:299::208d cdns.au1.gigya.com 447 | 2406:daa0:c044:8:36e7:f90a:: abc-wcms-media-prod.s3-ap-southeast-2.amazonaws.com 448 | 449 | ## NY Times 450 | 2a04:4e42:2e::420 nytimes.com 451 | 2a04:4e42:2e::420 www.nytimes.com 452 | 2a04:4e42:2e::420 myaccount.nytimes.com 453 | 2a04:4e42:2e::420 up.nytimes.com 454 | 2a04:4e42:2e::420 graphics8.nytimes.com 455 | 2a04:4e42:2e::420 json8.nytimes.com 456 | 2a04:4e42:2e::420 typeface.nytimes.com 457 | 151.101.0.164 cigsvc.nytimes.com 458 | 2600:9000:2012:2c00:18:9b35:e940:93a1 cn.nytimes.com 459 | 35.186.231.252 m.cn.nytimes.com 460 | 122.152.169.5 l0.cn.nytimes.com 461 | 54.210.141.179 et.nytimes.com 462 | 52.7.59.79 messaging-notifications.api.nytimes.com 463 | 52.7.59.79 messaging-sub.api.nytimes.com 464 | 34.233.208.93 rec.api.nytimes.com 465 | 23.21.73.215 nytab.nytimes.com 466 | 34.234.124.214 content.api.nytimes.com 467 | 209.234.225.89 markets.on.nytimes.com 468 | 23.23.198.251 tagx.nytimes.com 469 | 52.38.98.191 meter-svc.nytimes.com 470 | 2600:9000:2012:2c00:18:a95e:5140:93a1 cn.nytstyle.com 471 | 2600:9000:2012:2c00:18:a95e:5140:93a1 m.cn.nytstyle.com 472 | 54.249.25.75 sso.nytcn.me 473 | 2600:9000:2012:c00:13:702f:a6c0:21 static.sxzhchina.com 474 | 2a04:4e42:2e::420 typeface.nyt.com 475 | 2a04:4e42:2e::420 vp.nyt.com 476 | 2a04:4e42:2e::420 a1.nyt.com 477 | 2a04:4e42:2e::420 s1.nyt.com 478 | 2a04:4e42:2e::420 i1.nyt.com 479 | 2a04:4e42:2e::420 static01.nyt.com 480 | 2a04:4e42:2e::420 static02.nyt.com 481 | 2a04:4e42:2e::420 js.nyt.com 482 | 2a04:4e42:2e::420 css.nyt.com 483 | 2a04:4e42:2e::420 int.nyt.com 484 | 2600:9000:2012:4400:8:1cb7:c900:93a1 d1f1eryiqyjs0r.cloudfront.net 485 | 2600:9000:2012:4400:8:1cb7:c900:93a1 d3lar09xbwlsge.cloudfront.net 486 | 2600:9000:2012:4400:8:1cb7:c900:93a1 d3q1qj9jzsu8nw.cloudfront.net 487 | 2600:9000:2012:4400:8:1cb7:c900:93a1 dc8xl0ndzn2cb.cloudfront.net 488 | 489 | ## EA Games 490 | 2600:1406:3f::17d7:6464 akamai.cdn.ea.com 491 | 2001:1900:2380:d00::1fe lvlt.cdn.ea.com 492 | 2600:1406:3f::17d7:6464 origin-a.akamaihd.net 493 | 494 | -------------------------------------------------------------------------------- /snippets/12_ipv4.txt: -------------------------------------------------------------------------------- 1 | ## Dropbox 2 | 2620:100:6017:1::a27d:201 www.dropbox.com #www.v.dropbox.com 3 | 162.125.33.6 www.v.dropbox.com 4 | 2620:100:6017:1::a27d:201 dropbox.com 5 | 162.125.32.135 d.dropbox.com #d.v.dropbox.com 6 | 162.125.32.135 d.v.dropbox.com 7 | 2620:100:6017:2::a27d:202 m.dropbox.com 8 | 2620:100:6017:6::a27d:206 dl.dropbox.com #block-misc-iad.v.dropbox.com 9 | 2620:100:6017:6::a27d:206 dl.dropboxusercontent.com #block-www.v.dropbox.com 10 | 2620:100:6017:7::a27d:207 api.dropbox.com 11 | 2620:100:6017:7::a27d:207 api.dropboxapi.com 12 | 2600:9000:2012:2c00:18:9b35:e940:93a1 cf.dropboxstatic.com 13 | 2620:100:6017:2::a27d:202 photos.dropbox.com 14 | 162.125.17.129 photos-thumb.x.dropbox.com 15 | 2620:100:6017:5::a27d:205 photos-1.dropbox.com #photos-thumb.x.dropbox.com 16 | 2620:100:6017:5::a27d:205 photos-2.dropbox.com #photos-thumb.x.dropbox.com 17 | 2620:100:6017:5::a27d:205 photos-3.dropbox.com #photos-thumb.x.dropbox.com 18 | 2620:100:6017:5::a27d:205 photos-4.dropbox.com #photos-thumb.x.dropbox.com 19 | 2620:100:6017:5::a27d:205 photos-5.dropbox.com #photos-thumb.x.dropbox.com 20 | 2620:100:6017:5::a27d:205 photos-6.dropbox.com #photos-thumb.x.dropbox.com 21 | 2600:9000:2012:2c00:18:9b35:e940:93a1 status.dropbox.com 22 | 2600:9000:2012:2c00:18:9b35:e940:93a1 forums.dropbox.com 23 | 2600:9000:2012:2c00:18:9b35:e940:93a1 marketing.dropbox.com 24 | 25 | ## DuckDuckGo 26 | 46.51.218.82 duckduckgo.com 27 | 52.77.181.198 icons.duckduckgo.com 28 | 29 | ## EMI Music Publishing 30 | 93.184.221.133 mpod.emimusicpub.com #ne.edgecastcdn.net 31 | 117.18.239.137 mpod1.emimusicpub.com #flash.edgecastcdn.net 32 | 33 | ## Flickr 34 | 2001:4998:28:800::4000 flickr.com 35 | 2001:4998:28:800::4000 www.flickr.com 36 | 2001:4998:18:800::4002 up.flickr.com 37 | 2406:2000:ec:a01::2002 api.flickr.com 38 | 98.136.145.80 secure.flickr.com 39 | 2001:4998:c:401::c:9102 m.flickr.com 40 | 203.84.197.27 heartbeat.flickr.com 41 | 192.0.79.33 code.flickr.com 42 | 2a00:1288:88:800::4000 c.staticflickr.com 43 | 2406:2000:a0:800::1001 c1.staticflickr.com 44 | 2406:2000:ec:a01::4000 c2.staticflickr.com 45 | 2406:2000:a0:800::1002 c3.staticflickr.com 46 | 2406:2000:ec:a01::4000 c4.staticflickr.com 47 | 2406:2000:a0:800::1001 c5.staticflickr.com 48 | 2406:2000:a0:800::1001 c6.staticflickr.com 49 | 2001:4998:f007:1fb::1001 c7.staticflickr.com 50 | 2406:2000:a0:800::1002 c8.staticflickr.com 51 | #2406:2000:fc:402::c:2207 c9.staticflickr.com 52 | 2406:2000:ec:a01::2002 s.yimg.com #s.gycs.b.yahoodns.net 53 | 54 | ## Vimeo 55 | 2a04:4e42:2e::217 vimeo.com 56 | 2a04:4e42:2e::217 api.vimeo.com 57 | 2a04:4e42:2e::217 www.vimeo.com 58 | 2a04:4e42:2e::217 player.vimeo.com 59 | 2a04:4e42:2e::621 i.vimeocdn.com 60 | 2a04:4e42:2e::621 f.vimeocdn.com 61 | 2a04:4e42:2e::450 vimeo-hp-videos.global.ssl.fastly.net 62 | 198.245.92.39 click.email.vimeo.com 63 | 64 | ## Geeksforgeeks 65 | #54.239.130.34 d2dskowxfbo68o.cloudfront.net 66 | 67 | ## GitHub 68 | #192.30.253.112 github.com 69 | #192.30.253.113 www.github.com #github.com 70 | #192.30.253.116 api.github.com 71 | #192.30.253.125 live.github.com 72 | #151.101.0.133 assets-cdn.github.com #github.map.fastly.net 73 | #151.101.0.133 collector-cdn.github.com #github.map.fastly.net 74 | #151.101.0.133 pages.github.com #github.map.fastly.net 75 | #151.101.0.133 help.github.com #github.map.fastly.net 76 | #52.70.180.158 collector.githubapp.com 77 | #151.101.0.133 avatars0.githubusercontent.com #github.map.fastly.net 78 | #151.101.0.133 avatars1.githubusercontent.com #github.map.fastly.net 79 | #151.101.0.133 avatars2.githubusercontent.com #github.map.fastly.net 80 | #151.101.0.133 avatars3.githubusercontent.com #github.map.fastly.net 81 | #151.101.0.133 cloud.githubusercontent.com #github.map.fastly.net 82 | #151.101.0.133 camo.githubusercontent.com #github.map.fastly.net 83 | #151.101.0.133 raw.githubusercontent.com #github.map.fastly.net 84 | #151.101.0.133 gist.githubusercontent.com #github.map.fastly.net 85 | 192.30.253.119 gist.github.com 86 | 87 | ## SoundCloud 88 | 68.232.44.127 soundcloud.com 89 | 68.232.44.127 www.soundcloud.com 90 | 68.232.44.127 api.soundcloud.com 91 | 68.232.44.127 api-mobi.soundcloud.com 92 | 68.232.44.127 api-mobile.soundcloud.com 93 | 68.232.44.127 api-partners.soundcloud.com 94 | 68.232.44.127 api-v2.soundcloud.com 95 | 68.232.44.127 developers.soundcloud.com 96 | 68.232.44.127 directory.soundcloud.com 97 | 68.232.44.127 m.soundcloud.com 98 | 68.232.44.127 on.soundcloud.com 99 | 68.232.44.127 pages.soundcloud.com 100 | 68.232.44.127 promoted.soundcloud.com 101 | 68.232.44.127 visuals.soundcloud.com 102 | 68.232.44.127 featured-profiles.soundcloud.com 103 | 68.232.45.67 ec-media.soundcloud.com 104 | 68.232.44.96 a1.sndcdn.com 105 | 2600:9000:2012:: a-v2.sndcdn.com 106 | 2600:9000:2012:: style.sndcdn.com 107 | 2600:9000:2012:: va.sndcdn.com 108 | 2600:9000:2012:: cf-media.sndcdn.com 109 | 2600:9000:2012:: cf-hls-media.sndcdn.com 110 | 68.232.44.96 ec-preview-media.sndcdn.com 111 | 68.232.45.77 ec-media.sndcdn.com 112 | 111.13.135.197 i1.sndcdn.com 113 | 111.13.135.197 i2.sndcdn.com 114 | 111.13.135.197 i3.sndcdn.com 115 | 111.13.135.197 i4.sndcdn.com 116 | 2600:9000:2012:: wave.sndcdn.com 117 | 2600:9000:2012:: w1.sndcdn.com 118 | 2600:9000:2012:: w2.sndcdn.com 119 | 2600:9000:2012:: wis.sndcdn.com 120 | 111.13.135.197 eventgateway.soundcloud.com 121 | 111.13.135.197 eventlogger.soundcloud.com 122 | 111.13.135.197 l9bjkkhaycw6f8f4.soundcloud.com 123 | 104.196.1.106 blog.soundcloud.com 124 | 125 | ## Squarespace 126 | 151.101.0.238 static.squarespace.com #cs301.wpc.taucdn.net 127 | 128 | ## StackExchange/StackOverflow 129 | 2a04:4e42:2e::325 stackoverflow.com 130 | 2a04:4e42:2e::325 blog.stackoverflow.com 131 | 2a04:4e42:2e::325 es.stackoverflow.com 132 | 2a04:4e42:2e::325 ja.stackoverflow.com 133 | 2a04:4e42:2e::325 pt.stackoverflow.com 134 | 2a04:4e42:2e::325 ru.stackoverflow.com 135 | 2a04:4e42:2e::325 stackexchange.com 136 | 2a04:4e42:2e::325 academia.stackexchange.com 137 | 2a04:4e42:2e::325 android.stackexchange.com 138 | 2a04:4e42:2e::325 anime.stackexchange.com 139 | 2a04:4e42:2e::325 apple.stackexchange.com 140 | 2a04:4e42:2e::325 arduino.stackexchange.com 141 | 2a04:4e42:2e::325 area51.stackexchange.com 142 | 2a04:4e42:2e::325 astronomy.stackexchange.com 143 | 2a04:4e42:2e::325 aviation.stackexchange.com 144 | 2a04:4e42:2e::325 beer.stackexchange.com 145 | 2a04:4e42:2e::325 bicycles.stackexchange.com 146 | 2a04:4e42:2e::325 biology.stackexchange.com 147 | 2a04:4e42:2e::325 bitcoin.stackexchange.com 148 | 2a04:4e42:2e::325 blender.stackexchange.com 149 | 2a04:4e42:2e::325 boardgames.stackexchange.com 150 | 2a04:4e42:2e::325 bricks.stackexchange.com 151 | 2a04:4e42:2e::325 buddhism.stackexchange.com 152 | 2a04:4e42:2e::325 chemistry.stackexchange.com 153 | 2a04:4e42:2e::325 chess.stackexchange.com 154 | 2a04:4e42:2e::325 chinese.stackexchange.com 155 | 2a04:4e42:2e::325 christianity.stackexchange.com 156 | 2a04:4e42:2e::325 civicrm.stackexchange.com 157 | 2a04:4e42:2e::325 codegolf.stackexchange.com 158 | 2a04:4e42:2e::325 codereview.stackexchange.com 159 | 2a04:4e42:2e::325 coffee.stackexchange.com 160 | 2a04:4e42:2e::325 cogsci.stackexchange.com 161 | 2a04:4e42:2e::325 communitybuilding.stackexchange.com 162 | 2a04:4e42:2e::325 computergraphics.stackexchange.com 163 | 2a04:4e42:2e::325 cooking.stackexchange.com 164 | 2a04:4e42:2e::325 craftcms.stackexchange.com 165 | 2a04:4e42:2e::325 crypto.stackexchange.com 166 | 2a04:4e42:2e::325 cs.stackexchange.com 167 | 2a04:4e42:2e::325 cstheory.stackexchange.com 168 | 2a04:4e42:2e::325 datascience.stackexchange.com 169 | 2a04:4e42:2e::325 dba.stackexchange.com 170 | 2a04:4e42:2e::325 diy.stackexchange.com 171 | 2a04:4e42:2e::325 drupal.stackexchange.com 172 | 2a04:4e42:2e::325 dsp.stackexchange.com 173 | 2a04:4e42:2e::325 earthscience.stackexchange.com 174 | 2a04:4e42:2e::325 ebooks.stackexchange.com 175 | 2a04:4e42:2e::325 economics.stackexchange.com 176 | 2a04:4e42:2e::325 electronics.stackexchange.com 177 | 2a04:4e42:2e::325 elementaryos.stackexchange.com 178 | 2a04:4e42:2e::325 ell.stackexchange.com 179 | 2a04:4e42:2e::325 emacs.stackexchange.com 180 | 2a04:4e42:2e::325 engineering.stackexchange.com 181 | 2a04:4e42:2e::325 english.stackexchange.com 182 | 2a04:4e42:2e::325 expatriates.stackexchange.com 183 | 2a04:4e42:2e::325 expressionengine.stackexchange.com 184 | 2a04:4e42:2e::325 fitness.stackexchange.com 185 | 2a04:4e42:2e::325 freelancing.stackexchange.com 186 | 2a04:4e42:2e::325 french.stackexchange.com 187 | 2a04:4e42:2e::325 gamedev.stackexchange.com 188 | 2a04:4e42:2e::325 gaming.stackexchange.com 189 | 2a04:4e42:2e::325 gardening.stackexchange.com 190 | 2a04:4e42:2e::325 genealogy.stackexchange.com 191 | 2a04:4e42:2e::325 german.stackexchange.com 192 | 2a04:4e42:2e::325 gis.stackexchange.com 193 | 2a04:4e42:2e::325 graphicdesign.stackexchange.com 194 | 2a04:4e42:2e::325 ham.stackexchange.com 195 | 2a04:4e42:2e::325 hardwarerecs.stackexchange.com 196 | 2a04:4e42:2e::325 health.stackexchange.com 197 | 2a04:4e42:2e::325 hermeneutics.stackexchange.com 198 | 2a04:4e42:2e::325 hinduism.stackexchange.com 199 | 2a04:4e42:2e::325 history.stackexchange.com 200 | 2a04:4e42:2e::325 homebrew.stackexchange.com 201 | 2a04:4e42:2e::325 hsm.stackexchange.com 202 | 2a04:4e42:2e::325 islam.stackexchange.com 203 | 2a04:4e42:2e::325 italian.stackexchange.com 204 | 2a04:4e42:2e::325 japanese.stackexchange.com 205 | 2a04:4e42:2e::325 joomla.stackexchange.com 206 | 2a04:4e42:2e::325 judaism.stackexchange.com 207 | 2a04:4e42:2e::325 law.stackexchange.com 208 | 2a04:4e42:2e::325 lifehacks.stackexchange.com 209 | 2a04:4e42:2e::325 linguistics.stackexchange.com 210 | 2a04:4e42:2e::325 magento.stackexchange.com 211 | 2a04:4e42:2e::325 martialarts.stackexchange.com 212 | 2a04:4e42:2e::325 math.stackexchange.com 213 | 2a04:4e42:2e::325 matheducators.stackexchange.com 214 | 2a04:4e42:2e::325 mathematica.stackexchange.com 215 | 2a04:4e42:2e::325 mechanics.stackexchange.com 216 | 2a04:4e42:2e::325 meta.stackexchange.com 217 | 2a04:4e42:2e::325 meta.academia.stackexchange.com 218 | 2a04:4e42:2e::325 money.stackexchange.com 219 | 2a04:4e42:2e::325 movies.stackexchange.com 220 | 2a04:4e42:2e::325 music.stackexchange.com 221 | 2a04:4e42:2e::325 musicfans.stackexchange.com 222 | 2a04:4e42:2e::325 mythology.stackexchange.com 223 | 2a04:4e42:2e::325 networkengineering.stackexchange.com 224 | 2a04:4e42:2e::325 opendata.stackexchange.com 225 | 2a04:4e42:2e::325 opensource.stackexchange.com 226 | 2a04:4e42:2e::325 outdoors.stackexchange.com 227 | 2a04:4e42:2e::325 parenting.stackexchange.com 228 | 2a04:4e42:2e::325 patents.stackexchange.com 229 | 2a04:4e42:2e::325 pets.stackexchange.com 230 | 2a04:4e42:2e::325 philosophy.stackexchange.com 231 | 2a04:4e42:2e::325 photo.stackexchange.com 232 | 2a04:4e42:2e::325 physics.stackexchange.com 233 | 2a04:4e42:2e::325 pm.stackexchange.com 234 | 2a04:4e42:2e::325 poker.stackexchange.com 235 | 2a04:4e42:2e::325 politics.stackexchange.com 236 | 2a04:4e42:2e::325 portuguese.stackexchange.com 237 | 2a04:4e42:2e::325 productivity.stackexchange.com 238 | 2a04:4e42:2e::325 programmers.stackexchange.com 239 | 2a04:4e42:2e::325 puzzling.stackexchange.com 240 | 2a04:4e42:2e::325 quant.stackexchange.com 241 | 2a04:4e42:2e::325 raspberrypi.stackexchange.com 242 | 2a04:4e42:2e::325 reverseengineering.stackexchange.com 243 | 2a04:4e42:2e::325 robotics.stackexchange.com 244 | 2a04:4e42:2e::325 rpg.stackexchange.com 245 | 2a04:4e42:2e::325 rus.stackexchange.com 246 | 2a04:4e42:2e::325 russian.stackexchange.com 247 | 2a04:4e42:2e::325 salesforce.stackexchange.com 248 | 2a04:4e42:2e::325 scicomp.stackexchange.com 249 | 2a04:4e42:2e::325 scifi.stackexchange.com 250 | 2a04:4e42:2e::325 security.stackexchange.com 251 | 2a04:4e42:2e::325 sharepoint.stackexchange.com 252 | 2a04:4e42:2e::325 skeptics.stackexchange.com 253 | 2a04:4e42:2e::325 softwarerecs.stackexchange.com 254 | 2a04:4e42:2e::325 sound.stackexchange.com 255 | 2a04:4e42:2e::325 space.stackexchange.com 256 | 2a04:4e42:2e::325 spanish.stackexchange.com 257 | 2a04:4e42:2e::325 sports.stackexchange.com 258 | 2a04:4e42:2e::325 sqa.stackexchange.com 259 | 2a04:4e42:2e::325 startups.stackexchange.com 260 | 2a04:4e42:2e::325 stats.stackexchange.com 261 | 2a04:4e42:2e::325 sustainability.stackexchange.com 262 | 2a04:4e42:2e::325 tex.stackexchange.com 263 | 2a04:4e42:2e::325 tor.stackexchange.com 264 | 2a04:4e42:2e::325 travel.stackexchange.com 265 | 2a04:4e42:2e::325 tridion.stackexchange.com 266 | 2a04:4e42:2e::325 unix.stackexchange.com 267 | 2a04:4e42:2e::325 ux.stackexchange.com 268 | 2a04:4e42:2e::325 vi.stackexchange.com 269 | 2a04:4e42:2e::325 video.stackexchange.com 270 | 2a04:4e42:2e::325 webapps.stackexchange.com 271 | 2a04:4e42:2e::325 webmasters.stackexchange.com 272 | 2a04:4e42:2e::325 windowsphone.stackexchange.com 273 | 2a04:4e42:2e::325 woodworking.stackexchange.com 274 | 2a04:4e42:2e::325 wordpress.stackexchange.com 275 | 2a04:4e42:2e::325 workplace.stackexchange.com 276 | 2a04:4e42:2e::325 worldbuilding.stackexchange.com 277 | 2a04:4e42:2e::325 writers.stackexchange.com 278 | 198.252.206.16 sstatic.net 279 | 2a04:4e42:2e::325 cdn.sstatic.net 280 | 2a04:4e42:2e::325 cdn-careers.sstatic.net 281 | 2a04:4e42:2e::325 cdn-chat.sstatic.net 282 | 2a04:4e42:2e::325 cdn-prom.sstatic.net 283 | 2a04:4e42:2e::325 stackapps.com 284 | 2a04:4e42:2e::325 superuser.com 285 | 2a04:4e42:2e::325 askubuntu.com 286 | 2a04:4e42:2e::325 serverfault.com 287 | 2a04:4e42:2e::325 mathoverflow.net 288 | 2400:cb00:2048:1::6818:1241 mathjax.org 289 | 2400:cb00:2048:1::6818:1241 www.mathjax.org 290 | 2400:cb00:2048:1::6818:1241 beta.mathjax.org 291 | 2400:cb00:2048:1::6818:1341 cdn.mathjax.org 292 | 2400:cb00:2048:1::6810:23 i.stack.imgur.com 293 | 294 | ## PasteBin 295 | 2400:cb00:2048:1::6814:d115 pastebin.com 296 | 297 | ## Tumblr 298 | 68.232.44.253 gs1.wac.edgecastcdn.net 299 | 300 | ## TweetDeck 301 | 199.59.148.92 tweetdeck.com 302 | 199.59.148.21 api.tweetdeck.com 303 | 104.244.42.132 downloads.tweetdeck.com 304 | 104.244.42.4 web.tweetdeck.com 305 | 104.244.42.68 www.tweetdeck.com 306 | 307 | ## Twitter 308 | 104.244.42.193 twitter.com 309 | 104.244.42.3 about.twitter.com 310 | 104.244.42.3 ads.twitter.com 311 | 104.244.42.66 api.twitter.com 312 | 199.59.149.243 blog.twitter.com 313 | 104.244.42.67 business.twitter.com 314 | 104.244.42.67 dev.twitter.com 315 | 104.244.42.195 media.twitter.com 316 | 104.244.42.134 mobile.twitter.com 317 | 104.244.42.67 pic.twitter.com 318 | 104.244.42.131 s.twitter.com 319 | 192.229.237.154 status.twitter.com #cs322.wac.edgecastcdn.net 320 | 199.59.148.206 support.twitter.com 321 | 104.244.42.129 www.twitter.com 322 | 104.244.42.5 t.co 323 | #2606:2800:248:2f:1d8a:787:dc7:17df cdn.api.twitter.com #cs472.wac.edgecastcdn.net 324 | 104.244.43.140 platform.twitter.com #cs41.wac.edgecastcdn.net 325 | 117.18.237.70 abs.twimg.com #ipv6.twimg.com 326 | 104.244.43.195 abs-0.twimg.com #ipv6.twimg.com 327 | 104.244.46.7 pbs.twimg.com #ipv6.twimg.com 328 | 192.229.237.96 pbs-ec.twimg.com #cs41.wac.edgecastcdn.net 329 | #2606:2800:248:1347:709:24f:182c:618 a0.twimg.com #ipv6.twimg.com 330 | #2606:2800:248:1347:709:24f:182c:618 a1.twimg.com #ipv6.twimg.com 331 | #2606:2800:248:1347:709:24f:182c:618 a2.twimg.com #ipv6.twimg.com 332 | #2606:2800:248:1347:709:24f:182c:618 a3.twimg.com #ipv6.twimg.com 333 | #2606:2800:248:1347:709:24f:182c:618 a4.twimg.com #ipv6.twimg.com 334 | #2606:2800:248:1347:709:24f:182c:618 a5.twimg.com #ipv6.twimg.com 335 | #199.96.57.57 a6.twimg.com #us-west-img.tw.map.fastly.net 336 | 104.244.46.167 amp.twimg.com #ipv6.twimg.com 337 | 104.244.46.231 dnt.twimg.com #ipv6.twimg.com 338 | 117.18.237.70 ea.twimg.com #ipv6.twimg.com 339 | 104.244.46.71 g.twimg.com #ipv6.twimg.com 340 | 192.229.237.154 g2.twimg.com #ipv6.twimg.com 341 | 104.244.46.167 gu.twimg.com #ipv6.twimg.com 342 | 117.18.237.70 hca.twimg.com #ipv6.twimg.com 343 | 192.229.237.96 jp.twimg.com #ipv6.twimg.com 344 | 104.244.46.7 ma.twimg.com #ipv6.twimg.com 345 | 104.244.46.199 o.twimg.com #ipv6.twimg.com 346 | 104.244.46.39 oem.twimg.com #ipv6.twimg.com 347 | 104.244.46.103 p.twimg.com #ipv6.twimg.com 348 | #2606:2800:248:1347:709:24f:182c:618 si0.twimg.com #ipv6.twimg.com 349 | #2606:2800:248:1347:709:24f:182c:618 si1.twimg.com #ipv6.twimg.com 350 | #2606:2800:248:1347:709:24f:182c:618 si2.twimg.com #ipv6.twimg.com 351 | #2606:2800:248:1347:709:24f:182c:618 si3.twimg.com #ipv6.twimg.com 352 | #2606:2800:248:1347:709:24f:182c:618 si4.twimg.com #ipv6.twimg.com 353 | #2606:2800:248:1347:709:24f:182c:618 si5.twimg.com #ipv6.twimg.com 354 | 72.21.91.70 ton.twimg.com #ipv6.twimg.com 355 | 104.244.46.39 video.twimg.com #ipv6.twimg.com 356 | 192.229.237.154 tailfeather.twimg.com #cs322.wac.edgecastcdn.net 357 | 192.229.237.139 widgets.twimg.com #cs479.wac.edgecastcdn.net 358 | 210.163.219.24 twimg.com 359 | 104.244.43.135 ipv6.twimg.com 360 | 361 | ## We Heart It 362 | #117.18.237.125 assets1.whicdn.com #cs95.wac.edgecastcdn.net 363 | #117.18.237.125 assets2.whicdn.com #cs95.wac.edgecastcdn.net 364 | #117.18.237.125 assets3.whicdn.com #cs95.wac.edgecastcdn.net 365 | #117.18.237.125 data1.whicdn.com #cs95.wac.edgecastcdn.net 366 | #117.18.237.125 data2.whicdn.com #cs95.wac.edgecastcdn.net 367 | #117.18.237.125 data3.whicdn.com #cs95.wac.edgecastcdn.net 368 | 104.16.162.13 cdn.viglink.com #dp2drdtly304p.cloudfront.net 369 | 370 | ## Wordpress 371 | 192.0.78.9 wordpress.com 372 | 192.0.78.12 www.wordpress.com #lb.wordpress.com 373 | 192.0.78.13 zh-cn.wordpress.com #lb.wordpress.com 374 | 192.0.78.13 lb.wordpress.com 375 | 192.0.72.2 files.wordpress.com 376 | 192.0.76.3 pixel.wp.com 377 | 192.0.76.3 stats.wp.com 378 | 192.0.77.32 s0.wp.com #cs82.wac.edgecastcdn.net 379 | 192.0.77.32 s1.wp.com #cs82.wac.edgecastcdn.net 380 | 192.0.77.32 s2.wp.com #cs82.wac.edgecastcdn.net 381 | 192.0.77.32 widgets.wp.com #cs82.wac.edgecastcdn.net 382 | 66.155.40.249 wordpress.org 383 | 66.155.40.249 www.wordpress.org 384 | 192.0.77.48 s.w.org #cs287.wac.edgecastcdn.net 385 | 192.0.77.48 ts.w.org #cs287.wac.edgecastcdn.net 386 | 387 | -------------------------------------------------------------------------------- /snippets/CN.txt: -------------------------------------------------------------------------------- 1 | ###EXPERIMENTAL### 2 | 3 | ## xdwscache 4 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 ipv6.xdwscache.ourglb0.com 5 | 6 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 www.12306.cn 7 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 kyfw.12306.cn 8 | 9 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 ww1.sinaimg.cn 10 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 ww2.sinaimg.cn 11 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 ww3.sinaimg.cn 12 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 ww4.sinaimg.cn 13 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 mu1.sinaimg.cn 14 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 tp1.sinaimg.cn 15 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 tp2.sinaimg.cn 16 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 tp3.sinaimg.cn 17 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 tp4.sinaimg.cn 18 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 u1.sinaimg.cn 19 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img.t.sinajs.cn 20 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img1.t.sinajs.cn 21 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img2.t.sinajs.cn 22 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img3.t.sinajs.cn 23 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 js.t.sinajs.cn 24 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 js1.t.sinajs.cn 25 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 js2.t.sinajs.cn 26 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 js3.t.sinajs.cn 27 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 tjs.sjs.sinajs.cn 28 | 29 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 www.163.com 30 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 imgcdn.ph.126.net 31 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img1.cache.netease.com 32 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img2.cache.netease.com 33 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img3.cache.netease.com 34 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img4.cache.netease.com 35 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img5.cache.netease.com 36 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 img6.cache.netease.com 37 | 38 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 www.letv.com 39 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 10jia.letv.com 40 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 list.letv.com 41 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 movie.letv.com 42 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 i0.letvimg.com 43 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 i1.letvimg.com 44 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 i2.letvimg.com 45 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 i3.letvimg.com 46 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 css.letvcdn.com 47 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 js.letvcdn.com 48 | 49 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s0.qhimg.com 50 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s1.qhimg.com 51 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s2.qhimg.com 52 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s3.qhimg.com 53 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s4.qhimg.com 54 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s5.qhimg.com 55 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s6.qhimg.com 56 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s7.qhimg.com 57 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s8.qhimg.com 58 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s9.qhimg.com 59 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s10.qhimg.com 60 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s11.qhimg.com 61 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s12.qhimg.com 62 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s13.qhimg.com 63 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s14.qhimg.com 64 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s15.qhimg.com 65 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s16.qhimg.com 66 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s17.qhimg.com 67 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s18.qhimg.com 68 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s19.qhimg.com 69 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 s20.qhimg.com 70 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p1.qhimg.com 71 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p2.qhimg.com 72 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p3.qhimg.com 73 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p4.qhimg.com 74 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p5.qhimg.com 75 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p6.qhimg.com 76 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p7.qhimg.com 77 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p8.qhimg.com 78 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p9.qhimg.com 79 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p10.qhimg.com 80 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p11.qhimg.com 81 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p12.qhimg.com 82 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p13.qhimg.com 83 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p14.qhimg.com 84 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p15.qhimg.com 85 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p16.qhimg.com 86 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p17.qhimg.com 87 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p18.qhimg.com 88 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p19.qhimg.com 89 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p20.qhimg.com 90 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p21.qhimg.com 91 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p22.qhimg.com 92 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p23.qhimg.com 93 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p24.qhimg.com 94 | 95 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 www.cntv.cn 96 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 tv.cntv.cn 97 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p1.img.cctvpic.com 98 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p2.img.cctvpic.com 99 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p3.img.cctvpic.com 100 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p4.img.cctvpic.com 101 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 p5.img.cctvpic.com 102 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 r.img.cctvpic.com 103 | 104 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 analytics.oneplus.cn 105 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 image01.oneplus.cn 106 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 career.oneplus.cn 107 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 static.oneplus.cn 108 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 statics.oneplus.cn 109 | 110 | #2001:da8:8000:600f:16fe:b5ff:fed4:4309 image.cache.xiu8.com 111 | 112 | ## yunjiasu 113 | #2400:cb00:2048:1::a29f:d32d su.baidu.com 114 | #2400:cb00:2048:1::a29f:d32d static.su.baidu.com 115 | 116 | #2400:cb00:2048:1::a29f:d00b i1.tietuku.com 117 | #2400:cb00:2048:1::a29f:d00b i2.tietuku.com 118 | #2400:cb00:2048:1::a29f:d00b i3.tietuku.com 119 | #2400:cb00:2048:1::a29f:d00b i4.tietuku.com 120 | #2400:cb00:2048:1::a29f:d00b i5.tietuku.com 121 | #2400:cb00:2048:1::a29f:d00b i6.tietuku.com 122 | #2400:cb00:2048:1::a29f:d00b i11.tietuku.com 123 | #2400:cb00:2048:1::a29f:d00b i12.tietuku.com 124 | #2400:cb00:2048:1::a29f:d00b i13.tietuku.com 125 | -------------------------------------------------------------------------------- /tools/conv.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | # Read the wiki for more information 4 | # https://github.com/lennylxx/ipv6-hosts/wiki/sn-domains 5 | 6 | import sys 7 | table = '1023456789abcdefghijklmnopqrstuvwxyz' 8 | 9 | def iata2sn(iata): 10 | global table 11 | sn = '' 12 | for v in iata: 13 | if v in table: 14 | i = ((ord(v) - ord('a')) * 7 + 5) % 36 15 | sn += table[i] 16 | else: 17 | sn += v 18 | return sn 19 | 20 | def sn2iata(sn): 21 | global table 22 | iata = '' 23 | for v in sn: 24 | if v in table: 25 | i = table.index(v) 26 | i = (5 - i % 7) * 5 + i // 7 + 10 27 | iata += table[i] 28 | else: 29 | iata += v 30 | return iata 31 | 32 | def num2code(num): 33 | global table 34 | code = '' 35 | for v in num: 36 | if v in table: 37 | i = ((ord(v) - ord('0') + 1) * 7) % 36 38 | code += table[i] 39 | else: 40 | code += v 41 | return code 42 | 43 | def code2num(code): 44 | global table 45 | num = '' 46 | for v in code: 47 | if v in table: 48 | i = table.index(v) 49 | i = i // 7 + i % 7 - 1 50 | num += str(i) 51 | else: 52 | num += v 53 | return num 54 | 55 | def main(): 56 | if len(sys.argv) != 3: 57 | print('usage:\tconv -i iata\n\tconv -s sn\n\tconv -p isp\n\tconv -g ggc') 58 | sys.exit(1) 59 | 60 | input = sys.argv[2] 61 | ret = '' 62 | if sys.argv[1] == '-i': 63 | ret += iata2sn(input[0:3]) 64 | ret += num2code(input[3:5]) 65 | if (len(input) > 3): 66 | ret += 'n' 67 | ret += num2code(input[6:8]) 68 | elif sys.argv[1] == '-s': 69 | ret += sn2iata(input[0:3]) 70 | ret += code2num(input[3:5]) 71 | if (len(input) > 3): 72 | ret += 's' 73 | ret += code2num(input[6:8]) 74 | elif sys.argv[1] == '-p': 75 | lst = input.split('-') 76 | ret += iata2sn(lst[0]) 77 | if (len(lst) == 2): 78 | ret += '-' 79 | ret += iata2sn(lst[1][0:3]) 80 | ret += num2code(lst[1][3:]) 81 | elif sys.argv[1] == '-g': 82 | lst = input.split('-') 83 | ret += sn2iata(lst[0]) 84 | if (len(lst) == 2): 85 | ret += '-' 86 | ret += sn2iata(lst[1][0:3]) 87 | ret += code2num(lst[1][3:]) 88 | else: 89 | print('Unknown option.') 90 | sys.exit(1) 91 | 92 | print(ret) 93 | sys.exit(0) 94 | 95 | if __name__ == '__main__': 96 | main() 97 | -------------------------------------------------------------------------------- /tools/extract_ggc.sh: -------------------------------------------------------------------------------- 1 | d=$(dirname $0) 2 | cat $d/../hosts \ 3 | | grep -oP '(?<=sn\-)([a-z0-9]{1,}\-[a-z0-9]{1,})(?=(\.))' \ 4 | | sort -u \ 5 | | xargs -i sh -c "$d/conv.py -g {}; echo {}" \ 6 | | paste -d' ' - - \ 7 | | sort -V -u - $d/../data/ggc.txt -o $d/../data/ggc.txt 8 | -------------------------------------------------------------------------------- /tools/extract_iata.sh: -------------------------------------------------------------------------------- 1 | d=$(dirname $0) 2 | cat $d/../hosts \ 3 | | grep -oP '(?<=sn\-)([a-z0-9]{3})(?=([a-z0-9]{5}\.))' \ 4 | | sort -u \ 5 | | xargs -i sh -c "$d/conv.py -s {}; echo {}" \ 6 | | paste -d' ' - - \ 7 | | sort -k1 -u - $d/../data/iata.txt -o $d/../data/iata.txt 8 | -------------------------------------------------------------------------------- /tools/extract_iata_1e100.sh: -------------------------------------------------------------------------------- 1 | d=$(dirname $0) 2 | cat $d/../snippets/1e100.txt \ 3 | | grep -oP '([a-z0-9]{3})(?=([a-z0-9]{5}\-in))' \ 4 | | sort -u \ 5 | | xargs -i sh -c "echo {}; $d/conv.py -i {}" \ 6 | | paste -d' ' - - \ 7 | | sort -k1 -u - $d/../data/iata.txt -o $d/../data/iata.txt 8 | -------------------------------------------------------------------------------- /tools/gen-1e100.sh: -------------------------------------------------------------------------------- 1 | d=$(dirname $0) 2 | awk '{print $1}' $d/../data/iata.txt | xargs -n 1 $d/list-1e100.py > 1e100-all.txt 3 | -------------------------------------------------------------------------------- /tools/gen-ggc.sh: -------------------------------------------------------------------------------- 1 | d=$(dirname $0) 2 | awk '{print $2}' $d/../data/ggc.txt | xargs -n 1 $d/list-sn-spec.py > ggc-all.txt 3 | -------------------------------------------------------------------------------- /tools/gen-sn.sh: -------------------------------------------------------------------------------- 1 | d=$(dirname $0) 2 | awk '{print $2}' $d/../data/iata.txt | xargs -n 1 $d/list-sn.py > sn-all.txt 3 | -------------------------------------------------------------------------------- /tools/geoip.sh: -------------------------------------------------------------------------------- 1 | url="ipinfo.io/"$1 2 | echo $url 3 | curl $url 4 | -------------------------------------------------------------------------------- /tools/list-1e100-all.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | 5 | def main(): 6 | infile = open(sys.argv[1], 'r') 7 | hosts = infile.readlines() 8 | 9 | for line in hosts: 10 | if line[0] == '#': 11 | continue 12 | arr = line.split() 13 | for k in range(0, 32): 14 | print(arr[1][:8] + '-in-x' + hex(k)[2:].zfill(2) + '.1e100.net') 15 | 16 | if __name__ == '__main__': 17 | main() 18 | 19 | -------------------------------------------------------------------------------- /tools/list-1e100.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | 5 | def main(): 6 | iata = sys.argv[1] 7 | for i in range(1, 40): 8 | for j in range(1, 90): 9 | print(iata + str(i).zfill(2) + 's' + str(j).zfill(2) + '-in-'\ 10 | 'x' + '01.1e100.net') 11 | 12 | if __name__ == '__main__': 13 | main() 14 | 15 | -------------------------------------------------------------------------------- /tools/list-sn-all.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | 5 | def main(): 6 | infile = open(sys.argv[1], 'r') 7 | hosts = infile.readlines() 8 | 9 | for line in hosts: 10 | if line[0] == '#': 11 | continue 12 | arr = line.split() 13 | for k in range(1, 21): 14 | print('r%d' % k + arr[1][2:]) 15 | 16 | if __name__ == '__main__': 17 | main() 18 | 19 | -------------------------------------------------------------------------------- /tools/list-sn-spec.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | 5 | def main(): 6 | sn = sys.argv[1] 7 | for k in range(1, 21): 8 | print('r%d' % k + '---' + 'sn-' + sn + '.googlevideo.com') 9 | 10 | if __name__ == '__main__': 11 | main() 12 | 13 | -------------------------------------------------------------------------------- /tools/list-sn.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | from conv import num2code 5 | 6 | def main(): 7 | encoded_iata = sys.argv[1] 8 | for i in range(0, 100): 9 | for j in range(0, 100): 10 | a = num2code(str(i).zfill(2)) 11 | b = num2code(str(j).zfill(2)) 12 | print('r2---' + 'sn-' + encoded_iata + a + 'n' + b + '.googlevideo.com') 13 | print('r2---' + 'sn-' + encoded_iata + a + 'u' + b + '.googlevideo.com') 14 | 15 | if __name__ == '__main__': 16 | main() 17 | 18 | -------------------------------------------------------------------------------- /tools/list-xx.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import sys 4 | 5 | table = ( 6 | 'pe', 'ni', 'sa', 'hg', 'tb', 'tf', 'tg', 'ib', 7 | 'ie', 'ig', 'yh', 'gg', 'yn', 'yv', 'yk', 'ob', 8 | 'oa', 'of', 'oe', 'og', 've', 'vb', 'vc', 'vh', 9 | 'qa', 'qc', 'qe', 'qg', 'qh', 'da', 'ph', 'pd', 10 | 'pa', 'pc', 'fa', 'bk', 'dn', 'de', 'wg', 'wj', 11 | 'we', 'wi', 'wb', 'la', 'lb', 'ee', 'ea' 12 | ) 13 | 14 | def main(): 15 | for xx in table: 16 | for i in range(0x00, 0x100): 17 | print(xx + '-in-' + 'x' + hex(i)[2:].zfill(2) + '.1e100.net') 18 | 19 | if __name__ == '__main__': 20 | main() 21 | 22 | -------------------------------------------------------------------------------- /tools/sort-by-ip.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | import sys 5 | import ipaddress 6 | 7 | def main(): 8 | with open(sys.argv[1], 'r') as infile: 9 | hydration = [] 10 | for line in infile.readlines(): 11 | line = line.strip() 12 | if line == '' or line[0] == '#': 13 | continue 14 | hydration.append(line.split()) 15 | 16 | hydration.sort(key=lambda x: ipaddress.ip_address(x[0])) 17 | 18 | with open(sys.argv[1] + '.out', 'w') as outfile: 19 | for host_arr in hydration: 20 | outfile.write(' '.join(host_arr) + '\r\n') 21 | 22 | sys.exit(0) 23 | 24 | if __name__ == '__main__': 25 | main() 26 | -------------------------------------------------------------------------------- /update_hosts.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | import os 5 | import sys 6 | import re 7 | import socket 8 | import ipaddress 9 | import getopt 10 | import threading 11 | import subprocess 12 | import shlex 13 | import time 14 | import select 15 | 16 | blackhole = ( 17 | '10::2222', 18 | '21:2::2', 19 | '101::1234', 20 | '200:2:807:c62d::', 21 | '200:2:253d:369e::', 22 | '200:2:2e52:ae44::', 23 | '200:2:3b18:3ad::', 24 | '200:2:4e10:310f::', 25 | '200:2:5d2e:859::', 26 | '200:2:9f6a:794b::', 27 | '200:2:cb62:741::', 28 | '200:2:cc9b:953e::', 29 | '200:2:f3b9:bb27::', 30 | '2001::212', 31 | '2001:da8:112::21ae', 32 | '2003:ff:1:2:3:4:5fff:6', 33 | '2003:ff:1:2:3:4:5fff:7', 34 | '2003:ff:1:2:3:4:5fff:8', 35 | '2003:ff:1:2:3:4:5fff:9', 36 | '2003:ff:1:2:3:4:5fff:10', 37 | '2003:ff:1:2:3:4:5fff:11', 38 | '2003:ff:1:2:3:4:5fff:12', 39 | '2123::3e12', 40 | '3059:83eb::e015:2bee:0:0', 41 | '1.2.3.4', 42 | '4.36.66.178', 43 | '8.7.198.45', 44 | '37.61.54.158', 45 | '46.82.174.68', 46 | '59.24.3.173', 47 | '64.33.88.161', 48 | '78.16.49.15', 49 | '93.46.8.89', 50 | '127.0.0.1', 51 | '159.106.121.75', 52 | '202.181.7.85', 53 | '203.98.7.65', 54 | '243.185.187.39' 55 | ) 56 | 57 | invalid_network = [ 58 | '200:2::/32', 59 | '2001::/32', #TEREDO 60 | 'a000::/8', 61 | ] 62 | 63 | dns = { 64 | 'google_a': '2001:4860:4860::8888', 65 | 'google_b': '2001:4860:4860::8844', 66 | 'he_net': '2001:470:20::2', 67 | 'lax_he_net': '2001:470:0:9d::2' 68 | } 69 | 70 | config = { 71 | 'dns': dns['google_b'], 72 | 'infile': '', 73 | 'outfile': '', 74 | 'querytype': 'aaaa', 75 | 'cname': False, 76 | 'threadnum': 10 77 | } 78 | 79 | hosts = [] 80 | done_num = 0 81 | thread_lock = threading.Lock() 82 | running = True 83 | 84 | class worker_thread(threading.Thread): 85 | def __init__(self, start_pt, end_pt): 86 | threading.Thread.__init__(self) 87 | self.start_pt = start_pt 88 | self.end_pt = end_pt 89 | 90 | def run(self): 91 | global hosts, done_num 92 | for i in range(self.start_pt, self.end_pt): 93 | if not running: break 94 | 95 | line = hosts[i].strip() 96 | 97 | if line == '' or line[0:2] == '##': 98 | hosts[i] = line + '\r\n' 99 | with thread_lock: done_num += 1 100 | continue 101 | 102 | # uncomment line 103 | line = line.lstrip('#') 104 | # split comment that appended to line 105 | comment = '' 106 | p = line.find('#') 107 | if p > 0: 108 | comment = line[p:] 109 | line = line[:p] 110 | arr = line.split() 111 | 112 | if len(arr) == 1: 113 | domain = arr[0] 114 | else: 115 | domain = arr[1] 116 | 117 | flag = False 118 | if validate_domain(domain): 119 | cname, ip = query_domain(domain, False) 120 | 121 | if ip == '' or ip in blackhole or invalid_address(ip): 122 | cname, ip = query_domain(domain, True) 123 | 124 | if ip: 125 | flag = True 126 | arr[0] = ip 127 | if len(arr) == 1: 128 | arr.append(domain) 129 | if config['cname'] and cname: 130 | arr.append('#' + cname) 131 | else: 132 | if comment: 133 | arr.append(comment) 134 | 135 | if not flag: 136 | arr[0] = '#' + arr[0] 137 | if comment: 138 | arr.append(comment) 139 | 140 | hosts[i] = ' '.join(arr) 141 | hosts[i] += '\r\n' 142 | with thread_lock: done_num += 1 143 | 144 | class watcher_thread(threading.Thread): 145 | def run(self): 146 | total_num = len(hosts) 147 | 148 | wn = int(config['threadnum']) 149 | if wn > total_num: 150 | wn = total_num 151 | print("There are %d threads working..." % wn) 152 | print("Press 'Enter' to exit.\n") 153 | 154 | while True: 155 | if sys.stdin in select.select([sys.stdin], [], [], 0)[0]: 156 | input() 157 | print("Waiting threads to exit...") 158 | global running 159 | with thread_lock: 160 | running = False 161 | break 162 | 163 | dn = done_num 164 | outbuf = "Total: %d lines, Done: %d lines, Ratio: %d %%.\r"\ 165 | % (total_num, dn, dn * 100 / total_num) 166 | print(outbuf, end='', flush=True) 167 | 168 | if dn == total_num: 169 | print(outbuf) 170 | break 171 | 172 | time.sleep(1) 173 | 174 | def query_domain(domain, tcp): 175 | cmd = "dig +short +time=2 -6 %s @'%s' '%s'"\ 176 | % (config['querytype'], config['dns'], domain) 177 | 178 | if tcp: 179 | cmd = cmd + ' +tcp' 180 | 181 | proc = subprocess.Popen(shlex.split(cmd), stdout=subprocess.PIPE) 182 | out, _ = proc.communicate() 183 | outarr = out.decode('utf-8').splitlines() 184 | 185 | cname = ip = '' 186 | for v in outarr: 187 | if cname == '' and validate_domain(v[:-1]): 188 | cname = v[:-1] 189 | if ip == '' and validate_ip_addr(v): 190 | ip = v 191 | break 192 | 193 | return (cname, ip) 194 | 195 | def validate_domain(domain): 196 | pattern = '^((?!-)[*A-Za-z0-9-]{1,63}(? 0: 325 | lines_for_thread += 1 326 | lines_remain -= 1 327 | 328 | t = worker_thread(start_pt, start_pt + lines_for_thread) 329 | start_pt += lines_for_thread 330 | 331 | t.start() 332 | threads.append(t) 333 | 334 | for t in threads: 335 | t.join() 336 | 337 | try: 338 | outfile.writelines(hosts) 339 | except IOError as e: 340 | print(e) 341 | sys.exit(e.errno) 342 | 343 | sys.exit(0) 344 | 345 | if __name__ == '__main__': 346 | main() 347 | --------------------------------------------------------------------------------