├── .gitignore ├── LICENSE ├── README.md ├── SOURCES.md ├── Vazir.ttf ├── favicon.ico ├── img ├── bg │ ├── black-sparse.svg │ ├── black.svg │ ├── blue.svg │ ├── grey.svg │ └── red.svg ├── bracket.svg ├── bubble_background.svg ├── correlation_d.svg ├── correlation_m.svg ├── curve.svg ├── dots_d.svg ├── dots_m.svg ├── eu.svg ├── favicon.png ├── favicon.svg ├── funnel_d.svg ├── funnel_m.svg ├── hypothetical.svg ├── hypothetical_mob.svg ├── hypothetical_stretch.svg ├── lifetime │ ├── Black Men.svg │ ├── Black women.svg │ ├── Combined.svg │ ├── Hispanic Men.svg │ ├── Hispanic Women.svg │ ├── White Women.svg │ └── White men.svg ├── line_segment.svg ├── og_image.png ├── person │ ├── blue.svg │ └── red.svg ├── random.png ├── slice.svg └── stalin.png ├── index.html ├── js ├── bubbles.js └── script.js ├── reza_marmoolak.mp3 ├── styles.css └── zendooni.mp3 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | private 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/README.md -------------------------------------------------------------------------------- /SOURCES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/SOURCES.md -------------------------------------------------------------------------------- /Vazir.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/Vazir.ttf -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/bg/black-sparse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bg/black-sparse.svg -------------------------------------------------------------------------------- /img/bg/black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bg/black.svg -------------------------------------------------------------------------------- /img/bg/blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bg/blue.svg -------------------------------------------------------------------------------- /img/bg/grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bg/grey.svg -------------------------------------------------------------------------------- /img/bg/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bg/red.svg -------------------------------------------------------------------------------- /img/bracket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bracket.svg -------------------------------------------------------------------------------- /img/bubble_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/bubble_background.svg -------------------------------------------------------------------------------- /img/correlation_d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/correlation_d.svg -------------------------------------------------------------------------------- /img/correlation_m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/correlation_m.svg -------------------------------------------------------------------------------- /img/curve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/curve.svg -------------------------------------------------------------------------------- /img/dots_d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/dots_d.svg -------------------------------------------------------------------------------- /img/dots_m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/dots_m.svg -------------------------------------------------------------------------------- /img/eu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/eu.svg -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/favicon.svg -------------------------------------------------------------------------------- /img/funnel_d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/funnel_d.svg -------------------------------------------------------------------------------- /img/funnel_m.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/funnel_m.svg -------------------------------------------------------------------------------- /img/hypothetical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/hypothetical.svg -------------------------------------------------------------------------------- /img/hypothetical_mob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/hypothetical_mob.svg -------------------------------------------------------------------------------- /img/hypothetical_stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/hypothetical_stretch.svg -------------------------------------------------------------------------------- /img/lifetime/Black Men.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/Black Men.svg -------------------------------------------------------------------------------- /img/lifetime/Black women.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/Black women.svg -------------------------------------------------------------------------------- /img/lifetime/Combined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/Combined.svg -------------------------------------------------------------------------------- /img/lifetime/Hispanic Men.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/Hispanic Men.svg -------------------------------------------------------------------------------- /img/lifetime/Hispanic Women.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/Hispanic Women.svg -------------------------------------------------------------------------------- /img/lifetime/White Women.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/White Women.svg -------------------------------------------------------------------------------- /img/lifetime/White men.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/lifetime/White men.svg -------------------------------------------------------------------------------- /img/line_segment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/line_segment.svg -------------------------------------------------------------------------------- /img/og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/og_image.png -------------------------------------------------------------------------------- /img/person/blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/person/blue.svg -------------------------------------------------------------------------------- /img/person/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/person/red.svg -------------------------------------------------------------------------------- /img/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/random.png -------------------------------------------------------------------------------- /img/slice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/slice.svg -------------------------------------------------------------------------------- /img/stalin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/img/stalin.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/index.html -------------------------------------------------------------------------------- /js/bubbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/js/bubbles.js -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/js/script.js -------------------------------------------------------------------------------- /reza_marmoolak.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/reza_marmoolak.mp3 -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/styles.css -------------------------------------------------------------------------------- /zendooni.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PersianHodHod/prisoners/HEAD/zendooni.mp3 --------------------------------------------------------------------------------