Sidebar-WebIcons.js 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. (function()
  2. {
  3. // Adds Web Icons shapes
  4. Sidebar.prototype.addWebIconsPalette = function()
  5. {
  6. var sb = this;
  7. var s = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.webicons.";
  8. var gn = 'mxgraph.webicons';
  9. var dt = 'web icons icon';
  10. var w = 0.2;
  11. var h = 0.2;
  12. this.addPaletteFunctions('webicons', 'Web Icons', false,
  13. [
  14. this.createVertexTemplateEntry(s + 'adfty;fillColor=#66E8F3;gradientColor=#1C7CBA',
  15. w * 512, h * 512, '', 'Adfty', null, null, this.getTagsForStencil(gn, 'adfty', dt).join(' ')),
  16. this.createVertexTemplateEntry(s + 'adobe_pdf;fillColor=#F40C0C;gradientColor=#610603',
  17. w * 512, h * 512, '', 'Adobe PDF', null, null, this.getTagsForStencil(gn, 'adobe pdf', dt).join(' ')),
  18. this.createVertexTemplateEntry(s + 'aim;fillColor=#27E1E5;gradientColor=#0A4361',
  19. w * 512, h * 512, '', 'Aim', null, null, this.getTagsForStencil(gn, 'aim', dt).join(' ')),
  20. this.createVertexTemplateEntry(s + 'allvoices;fillColor=#807E7E;gradientColor=#1B1C1C',
  21. w * 512, h * 512, '', 'Allvoices', null, null, this.getTagsForStencil(gn, 'allvoices', dt).join(' ')),
  22. this.createVertexTemplateEntry(s + 'amazon;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  23. w * 512, h * 512, '', 'Amazon', null, null, this.getTagsForStencil(gn, 'amazon', dt).join(' ')),
  24. this.createVertexTemplateEntry(s + 'amazon_2;fillColor=#605658;gradientColor=#231F20',
  25. w * 512, h * 512, '', 'Amazon', null, null, this.getTagsForStencil(gn, 'amazon', dt).join(' ')),
  26. this.createVertexTemplateEntry(s + 'android;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  27. w * 512, h * 512, '', 'Android', null, null, this.getTagsForStencil(gn, 'android', dt).join(' ')),
  28. this.createVertexTemplateEntry(s + 'apache;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  29. w * 512, h * 512, '', 'Apache', null, null, this.getTagsForStencil(gn, 'apache db database', dt).join(' ')),
  30. this.createVertexTemplateEntry(s + 'apple;fillColor=#807E7E;gradientColor=#1B1C1C',
  31. w * 512, h * 512, '', 'Apple', null, null, this.getTagsForStencil(gn, 'apple', dt).join(' ')),
  32. this.createVertexTemplateEntry(s + 'apple_classic;fillColor=#66E8F3;gradientColor=#1C7CBA',
  33. w * 512, h * 512, '', 'Apple (classic)', null, null, this.getTagsForStencil(gn, 'apple classic', dt).join(' ')),
  34. this.createVertexTemplateEntry(s + 'arduino;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  35. w * 512, h * 512, '', 'Arduino', null, null, this.getTagsForStencil(gn, 'arduino', dt).join(' ')),
  36. this.createVertexTemplateEntry(s + 'ask;fillColor=#F33543;gradientColor=#B50E11',
  37. w * 512, h * 512, '', 'Ask', null, null, this.getTagsForStencil(gn, 'ask', dt).join(' ')),
  38. this.createVertexTemplateEntry(s + 'atlassian;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  39. w * 512, h * 512, '', 'Atlassian', null, null, this.getTagsForStencil(gn, 'atlassian', dt).join(' ')),
  40. this.createVertexTemplateEntry(s + 'audioboo;fillColor=#EB35CF;gradientColor=#8C0E35',
  41. w * 512, h * 512, '', 'Audioboo', null, null, this.getTagsForStencil(gn, 'audioboo', dt).join(' ')),
  42. this.createVertexTemplateEntry(s + 'aws;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  43. w * 512, h * 512, '', 'AWS', null, null, this.getTagsForStencil(gn, 'aws amazon web service', dt).join(' ')),
  44. this.createVertexTemplateEntry(s + 'aws_s3;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  45. w * 512, h * 512, '', 'AWS S3', null, null, this.getTagsForStencil(gn, 'aws s3 amazon web service', dt).join(' ')),
  46. this.createVertexTemplateEntry(s + 'baidu;fillColor=#738FE8;gradientColor=#1F2470',
  47. w * 512, h * 512, '', 'Baidu', null, null, this.getTagsForStencil(gn, 'baidu', dt).join(' ')),
  48. this.createVertexTemplateEntry(s + 'bebo;fillColor=#695D5D;gradientColor=#100E0E',
  49. w * 512, h * 512, '', 'Bebo', null, null, this.getTagsForStencil(gn, 'bebo', dt).join(' ')),
  50. this.createVertexTemplateEntry(s + 'behance;fillColor=#695D5D;gradientColor=#100E0E',
  51. w * 512, h * 512, '', 'Behance', null, null, this.getTagsForStencil(gn, 'behance', dt).join(' ')),
  52. this.createVertexTemplateEntry(s + 'bing;fillColor=#0A776E;gradientColor=#053D39',
  53. w * 512, h * 512, '', 'Bing', null, null, this.getTagsForStencil(gn, 'bing', dt).join(' ')),
  54. this.createVertexTemplateEntry(s + 'bitbucket;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  55. w * 512, h * 512, '', 'Bitbucket', null, null, this.getTagsForStencil(gn, 'bitbucket', dt).join(' ')),
  56. this.createVertexTemplateEntry(s + 'blinklist;fillColor=#695D5D;gradientColor=#100E0E',
  57. w * 512, h * 512, '', 'Blinklist', null, null, this.getTagsForStencil(gn, 'blinklist', dt).join(' ')),
  58. this.createVertexTemplateEntry(s + 'blogger;fillColor=#FDE47C;gradientColor=#F55F21',
  59. w * 512, h * 512, '', 'Blogger', null, null, this.getTagsForStencil(gn, 'blogger', dt).join(' ')),
  60. this.createVertexTemplateEntry(s + 'blogmarks;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  61. w * 512, h * 512, '', 'Blogmarks', null, null, this.getTagsForStencil(gn, 'blogmarks', dt).join(' ')),
  62. this.createVertexTemplateEntry(s + 'bookmarks.fr;fillColor=#F9FAF4;gradientColor=#DCDFBB',
  63. w * 512, h * 512, '', 'Bookmarks.fr', null, null, this.getTagsForStencil(gn, 'bookmarks.fr', dt).join(' ')),
  64. this.createVertexTemplateEntry(s + 'box;fillColor=#4CDFEF;gradientColor=#153EA0',
  65. w * 512, h * 512, '', 'Box', null, null, this.getTagsForStencil(gn, 'box', dt).join(' ')),
  66. this.createVertexTemplateEntry(s + 'buddymarks;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  67. w * 512, h * 512, '', 'Buddymarks', null, null, this.getTagsForStencil(gn, 'buddymarks', dt).join(' ')),
  68. this.createVertexTemplateEntry(s + 'buffer;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  69. w * 512, h * 512, '', 'Buffer', null, null, this.getTagsForStencil(gn, 'buffer', dt).join(' ')),
  70. this.createVertexTemplateEntry(s + 'buzzfeed;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  71. w * 512, h * 512, '', 'Buzzfeed', null, null, this.getTagsForStencil(gn, 'buzzfeed', dt).join(' ')),
  72. this.createVertexTemplateEntry(s + 'chrome;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  73. w * 516, h * 520, '', 'Chrome', null, null, this.getTagsForStencil(gn, 'chrome', dt).join(' ')),
  74. this.createVertexTemplateEntry(s + 'citeulike;fillColor=#ACD65E;gradientColor=#2E3618',
  75. w * 512, h * 512, '', 'Citeulike', null, null, this.getTagsForStencil(gn, 'citeulike', dt).join(' ')),
  76. this.createVertexTemplateEntry(s + 'confluence;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  77. w * 512, h * 512, '', 'Confluence', null, null, this.getTagsForStencil(gn, 'confluence', dt).join(' ')),
  78. this.createVertexTemplateEntry(s + 'connotea;fillColor=#E9FDFC;gradientColor=#BADBE9',
  79. w * 512, h * 512, '', 'Connotea', null, null, this.getTagsForStencil(gn, 'connotea', dt).join(' ')),
  80. this.createVertexTemplateEntry(s + 'dealsplus;fillColor=#B569B5;gradientColor=#7A467A',
  81. w * 512, h * 512, '', 'Dealsplus', null, null, this.getTagsForStencil(gn, 'dealsplus', dt).join(' ')),
  82. this.createVertexTemplateEntry(s + 'delicious',
  83. w * 512, h * 512, '', 'Delicious', null, null, this.getTagsForStencil(gn, 'delicious', dt).join(' ')),
  84. this.createVertexTemplateEntry(s + 'designfloat;fillColor=#247BE0;gradientColor=#0A1F42',
  85. w * 512, h * 512, '', 'Designfloat', null, null, this.getTagsForStencil(gn, 'designfloat', dt).join(' ')),
  86. this.createVertexTemplateEntry(s + 'deviantart;fillColor=#00C659;gradientColor=#00813B',
  87. w * 512, h * 512, '', 'Deviantart', null, null, this.getTagsForStencil(gn, 'deviantart', dt).join(' ')),
  88. this.createVertexTemplateEntry(s + 'digg;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  89. w * 512, h * 512, '', 'Digg', null, null, this.getTagsForStencil(gn, 'digg', dt).join(' ')),
  90. this.createVertexTemplateEntry(s + 'diigo;fillColor=#2C7DE0;gradientColor=#1E5599',
  91. w * 512, h * 512, '', 'Diigo', null, null, this.getTagsForStencil(gn, 'diiigo', dt).join(' ')),
  92. this.createVertexTemplateEntry(s + 'dopplr;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  93. w * 512, h * 512, '', 'Dopplr', null, null, this.getTagsForStencil(gn, 'dopplr', dt).join(' ')),
  94. this.createVertexTemplateEntry(s + 'drawio1;fillColor=#2174CE;gradientColor=#134277',
  95. w * 512, h * 512, '', 'Draw.io', null, null, this.getTagsForStencil(gn, 'drawio draw io', dt).join(' ')),
  96. this.createVertexTemplateEntry(s + 'drawio2;fillColor=#2174CE;gradientColor=#134277',
  97. w * 512, h * 512, '', 'Draw.io', null, null, this.getTagsForStencil(gn, 'drawio draw io', dt).join(' ')),
  98. this.createVertexTemplateEntry(s + 'dribbble;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  99. w * 512, h * 512, '', 'Dribbble', null, null, this.getTagsForStencil(gn, 'dribbble', dt).join(' ')),
  100. this.createVertexTemplateEntry(s + 'dropbox;fillColor=#0BAAFE;gradientColor=#0080E6',
  101. w * 512, h * 512, '', 'Dropbox', null, null, this.getTagsForStencil(gn, 'dropbox', dt).join(' ')),
  102. this.createVertexTemplateEntry(s + 'dropbox2;fillColor=#2FB8FC;gradientColor=#0080E6',
  103. w * 512, h * 512, '', 'Dropbox', null, null, this.getTagsForStencil(gn, 'dropbox', dt).join(' ')),
  104. this.createVertexTemplateEntry(s + 'drupal;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  105. w * 512, h * 512, '', 'Drupal', null, null, this.getTagsForStencil(gn, 'drupal', dt).join(' ')),
  106. this.createVertexTemplateEntry(s + 'dzone;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  107. w * 512, h * 512, '', 'Dzone', null, null, this.getTagsForStencil(gn, 'dzone', dt).join(' ')),
  108. this.createVertexTemplateEntry(s + 'ebay;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  109. w * 512, h * 512, '', 'Ebay', null, null, this.getTagsForStencil(gn, 'ebay', dt).join(' ')),
  110. this.createVertexTemplateEntry(s + 'edmodo;fillColor=#2F81CE;gradientColor=#1F5487',
  111. w * 512, h * 512, '', 'Edmodo', null, null, this.getTagsForStencil(gn, 'edmodo', dt).join(' ')),
  112. this.createVertexTemplateEntry(s + 'evernote;fillColor=#D4EF75;gradientColor=#399F1F',
  113. w * 512, h * 512, '', 'Evernote', null, null, this.getTagsForStencil(gn, 'evernote', dt).join(' ')),
  114. this.createVertexTemplateEntry(s + 'facebook;fillColor=#6294E4;gradientColor=#1A2665',
  115. w * 512, h * 512, '', 'Facebook', null, null, this.getTagsForStencil(gn, 'facebook', dt).join(' ')),
  116. this.createVertexTemplateEntry(s + 'fancy;fillColor=#C3ECF8;gradientColor=#348DD4',
  117. w * 512, h * 512, '', 'Fancy', null, null, this.getTagsForStencil(gn, 'fancy', dt).join(' ')),
  118. this.createVertexTemplateEntry(s + 'fark;fillColor=#EBEBF1;gradientColor=#8482A7',
  119. w * 512, h * 512, '', 'Fark', null, null, this.getTagsForStencil(gn, 'fark', dt).join(' ')),
  120. this.createVertexTemplateEntry(s + 'fashiolista;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  121. w * 512, h * 512, '', 'Fashiolista', null, null, this.getTagsForStencil(gn, 'fashiolista', dt).join(' ')),
  122. this.createVertexTemplateEntry(s + 'feed;fillColor=#FFAC75;gradientColor=#FF6600',
  123. w * 512, h * 512, '', 'Feed', null, null, this.getTagsForStencil(gn, 'feed', dt).join(' ')),
  124. this.createVertexTemplateEntry(s + 'feedburner;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  125. w * 512, h * 512, '', 'Feedburner', null, null, this.getTagsForStencil(gn, 'feedburner', dt).join(' ')),
  126. this.createVertexTemplateEntry(s + 'flickr;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  127. w * 512, h * 512, '', 'Flickr', null, null, this.getTagsForStencil(gn, 'flickr', dt).join(' ')),
  128. this.createVertexTemplateEntry(s + 'folkd;fillColor=#27A2E9;gradientColor=#0A2977',
  129. w * 512, h * 512, '', 'Folkd', null, null, this.getTagsForStencil(gn, 'folkd', dt).join(' ')),
  130. this.createVertexTemplateEntry(s + 'forrst;fillColor=#3E6B32;gradientColor=#111C0D',
  131. w * 512, h * 512, '', 'Forrst', null, null, this.getTagsForStencil(gn, 'forrst', dt).join(' ')),
  132. this.createVertexTemplateEntry(s + 'fotolog;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  133. w * 512, h * 512, '', 'Fotolog', null, null, this.getTagsForStencil(gn, 'fotolog', dt).join(' ')),
  134. this.createVertexTemplateEntry(s + 'freshbump;fillColor=#695D5D;gradientColor=#100E0E',
  135. w * 512, h * 512, '', 'Freshbump', null, null, this.getTagsForStencil(gn, 'freshbump', dt).join(' ')),
  136. this.createVertexTemplateEntry(s + 'fresqui;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  137. w * 512, h * 512, '', 'Fresqui', null, null, this.getTagsForStencil(gn, 'fresqui', dt).join(' ')),
  138. this.createVertexTemplateEntry(s + 'friendfeed;fillColor=#7BDCEF;gradientColor=#21379E',
  139. w * 512, h * 512, '', 'Friendfeed', null, null, this.getTagsForStencil(gn, 'fiendfeed', dt).join(' ')),
  140. this.createVertexTemplateEntry(s + 'funp;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  141. w * 512, h * 512, '', 'Funp', null, null, this.getTagsForStencil(gn, 'funp', dt).join(' ')),
  142. this.createVertexTemplateEntry(s + 'fwisp;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  143. w * 512, h * 512, '', 'Fwisp', null, null, this.getTagsForStencil(gn, 'fwisp', dt).join(' ')),
  144. this.createVertexTemplateEntry(s + 'gabbr;fillColor=#FBAC39;gradientColor=#EA2B0E',
  145. w * 512, h * 512, '', 'Gabbr', null, null, this.getTagsForStencil(gn, 'gabbr', dt).join(' ')),
  146. this.createVertexTemplateEntry(s + 'gamespot;fillColor=#695D5D;gradientColor=#100E0E',
  147. w * 512, h * 512, '', 'Gamespot', null, null, this.getTagsForStencil(gn, 'gamespot', dt).join(' ')),
  148. this.createVertexTemplateEntry(s + 'github;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  149. w * 512, h * 512, '', 'Github', null, null, this.getTagsForStencil(gn, 'github', dt).join(' ')),
  150. this.createVertexTemplateEntry(s + 'gmail;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  151. w * 512, h * 512, '', 'Gmail', null, null, this.getTagsForStencil(gn, 'gmail', dt).join(' ')),
  152. this.createVertexTemplateEntry(s + 'google;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  153. w * 512, h * 512, '', 'Google', null, null, this.getTagsForStencil(gn, 'google', dt).join(' ')),
  154. this.createVertexTemplateEntry(s + 'google_drive;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  155. w * 512, h * 512, '', 'Google Drive', null, null, this.getTagsForStencil(gn, 'google drive', dt).join(' ')),
  156. this.createVertexTemplateEntry(s + 'google_hangout;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  157. w * 512, h * 512, '', 'Google Hangout', null, null, this.getTagsForStencil(gn, 'google hangout', dt).join(' ')),
  158. this.createVertexTemplateEntry(s + 'google_play;fillColor=#000000',
  159. w * 347, h * 103, '', 'Google Play', null, null, this.getTagsForStencil(gn, 'google play', dt).join(' ')),
  160. this.createVertexTemplateEntry(s + 'google_play_light;fillColor=#66E8F3;gradientColor=#1C7CBA',
  161. w * 300, h * 52, '', 'Google Play Light', null, null, this.getTagsForStencil(gn, 'google play light', dt).join(' ')),
  162. this.createVertexTemplateEntry(s + 'google_photos;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  163. w * 512, h * 512, '', 'Google Photos', null, null, this.getTagsForStencil(gn, 'google photos', dt).join(' ')),
  164. this.createVertexTemplateEntry(s + 'google_plus;fillColor=#F24B46;gradientColor=#AD3832',
  165. w * 512, h * 512, '', 'Google Plus', null, null, this.getTagsForStencil(gn, 'google plus', dt).join(' ')),
  166. this.createVertexTemplateEntry(s + 'grooveshark;fillColor=#695D5D;gradientColor=#000000',
  167. w * 512, h * 512, '', 'Grooveshark', null, null, this.getTagsForStencil(gn, 'grooveshark', dt).join(' ')),
  168. this.createVertexTemplateEntry(s + 'hatena;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  169. w * 512, h * 512, '', 'Hatena', null, null, this.getTagsForStencil(gn, 'hatena', dt).join(' ')),
  170. this.createVertexTemplateEntry(s + 'html5;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  171. w * 512, h * 512, '', 'HTML5', null, null, this.getTagsForStencil(gn, 'html5 html', dt).join(' ')),
  172. this.createVertexTemplateEntry(s + 'identi.ca;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  173. w * 512, h * 512, '', 'Identi.ca', null, null, this.getTagsForStencil(gn, 'identi.ca', dt).join(' ')),
  174. this.createVertexTemplateEntry(s + 'instagram;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  175. w * 512, h * 512, '', 'Instagram', null, null, this.getTagsForStencil(gn, 'instagram', dt).join(' ')),
  176. this.createVertexTemplateEntry(s + 'instapaper;fillColor=#807E7E;gradientColor=#1B1C1C',
  177. w * 512, h * 512, '', 'Instapaper', null, null, this.getTagsForStencil(gn, 'instapaper', dt).join(' ')),
  178. this.createVertexTemplateEntry(s + 'ios;fillColor=#695D5D;gradientColor=#100E0E',
  179. w * 512, h * 512, '', 'iOS', null, null, this.getTagsForStencil(gn, 'ios', dt).join(' ')),
  180. this.createVertexTemplateEntry(s + 'jamespot;fillColor=#695D5D;gradientColor=#100E0E',
  181. w * 512, h * 512, '', 'Jamespot', null, null, this.getTagsForStencil(gn, 'jamespot', dt).join(' ')),
  182. this.createVertexTemplateEntry(s + 'java;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  183. w * 512, h * 512, '', 'Java', null, null, this.getTagsForStencil(gn, 'java', dt).join(' ')),
  184. this.createVertexTemplateEntry(s + 'joomla;fillColor=#1F457D;gradientColor=#081220',
  185. w * 512, h * 512, '', 'Joomla', null, null, this.getTagsForStencil(gn, 'joomla', dt).join(' ')),
  186. this.createVertexTemplateEntry(s + 'jquery;fillColor=#0BB9EA;gradientColor=#032F80',
  187. w * 512, h * 512, '', 'Jquery', null, null, this.getTagsForStencil(gn, 'jquery', dt).join(' ')),
  188. this.createVertexTemplateEntry(s + 'json;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  189. w * 512, h * 512, '', 'JSON', null, null, this.getTagsForStencil(gn, 'json', dt).join(' ')),
  190. this.createVertexTemplateEntry(s + 'json_2;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  191. w * 512, h * 512, '', 'JSON', null, null, this.getTagsForStencil(gn, 'json', dt).join(' ')),
  192. this.createVertexTemplateEntry(s + 'last.fm;fillColor=#F33543;gradientColor=#BD0E11',
  193. w * 512, h * 512, '', 'Last.fm', null, null, this.getTagsForStencil(gn, 'last.fm last fm', dt).join(' ')),
  194. this.createVertexTemplateEntry(s + 'linkagogo;fillColor=#F6F5FA;gradientColor=#C8C1E1',
  195. w * 512, h * 512, '', 'Linkagogo', null, null, this.getTagsForStencil(gn, 'linkagogo', dt).join(' ')),
  196. this.createVertexTemplateEntry(s + 'linkedin;fillColor=#0095DB;gradientColor=#006391',
  197. w * 512, h * 512, '', 'LinkedIn', null, null, this.getTagsForStencil(gn, 'linkedin', dt).join(' ')),
  198. this.createVertexTemplateEntry(s + 'livejournal;fillColor=#2690E5;gradientColor=#0A2463',
  199. w * 512, h * 512, '', 'Livejournal', null, null, this.getTagsForStencil(gn, 'livejournal', dt).join(' ')),
  200. this.createVertexTemplateEntry(s + 'mail.ru;fillColor=#267BE0;gradientColor=#0A1F42',
  201. w * 512, h * 512, '', 'Mail.ru', null, null, this.getTagsForStencil(gn, 'mail.ru', dt).join(' ')),
  202. this.createVertexTemplateEntry(s + 'meetup;fillColor=#F83263;gradientColor=#D40D19',
  203. w * 512, h * 512, '', 'Meetup', null, null, this.getTagsForStencil(gn, 'meetup', dt).join(' ')),
  204. this.createVertexTemplateEntry(s + 'meneame;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  205. w * 512, h * 512, '', 'Meneame', null, null, this.getTagsForStencil(gn, 'meneame', dt).join(' ')),
  206. this.createVertexTemplateEntry(s + 'messenger;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  207. w * 512, h * 512, '', 'Messenger', null, null, this.getTagsForStencil(gn, 'messenger', dt).join(' ')),
  208. this.createVertexTemplateEntry(s + 'messenger_2;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  209. w * 512, h * 512, '', 'Messenger', null, null, this.getTagsForStencil(gn, 'messenger', dt).join(' ')),
  210. this.createVertexTemplateEntry(s + 'messenger_3;fillColor=#09BEFC;gradientColor=#0060FA',
  211. w * 512, h * 512, '', 'Messenger', null, null, this.getTagsForStencil(gn, 'messenger', dt).join(' ')),
  212. this.createVertexTemplateEntry(s + 'mind_body_green;fillColor=#E0EEF8;gradientColor=#4496D5',
  213. w * 512, h * 512, '', 'Mind Body Green', null, null, this.getTagsForStencil(gn, 'mind body green', dt).join(' ')),
  214. this.createVertexTemplateEntry(s + 'mongodb;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  215. w * 512, h * 512, '', 'MongoDb', null, null, this.getTagsForStencil(gn, 'mongodb', dt).join(' ')),
  216. this.createVertexTemplateEntry(s + 'myspace;fillColor=#3C69E2;gradientColor=#101B54',
  217. w * 512, h * 512, '', 'MySpace', null, null, this.getTagsForStencil(gn, 'myspace', dt).join(' ')),
  218. this.createVertexTemplateEntry(s + 'n4g;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  219. w * 512, h * 512, '', 'N4g', null, null, this.getTagsForStencil(gn, 'n4g', dt).join(' ')),
  220. this.createVertexTemplateEntry(s + 'netlog;fillColor=#FA3743;gradientColor=#E10E11',
  221. w * 512, h * 512, '', 'Netlog', null, null, this.getTagsForStencil(gn, 'netlog', dt).join(' ')),
  222. this.createVertexTemplateEntry(s + 'netvibes;fillColor=#99DB00;gradientColor=#638E00',
  223. w * 512, h * 512, '', 'Netvibes', null, null, this.getTagsForStencil(gn, 'netvibes', dt).join(' ')),
  224. this.createVertexTemplateEntry(s + 'netvouz;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  225. w * 512, h * 512, '', 'Netvouz', null, null, this.getTagsForStencil(gn, 'netvouz', dt).join(' ')),
  226. this.createVertexTemplateEntry(s + 'networkedblogs;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  227. w * 512, h * 512, '', 'Networkedblogs', null, null, this.getTagsForStencil(gn, 'networkedblogs', dt).join(' ')),
  228. this.createVertexTemplateEntry(s + 'newsvine;fillColor=#008733;gradientColor=#00441B',
  229. w * 512, h * 512, '', 'Newsvine', null, null, this.getTagsForStencil(gn, 'newsvine', dt).join(' ')),
  230. this.createVertexTemplateEntry(s + 'odnoklassniki;fillColor=#FDE15A;gradientColor=#F24317',
  231. w * 512, h * 512, '', 'Odnoklassniki', null, null, this.getTagsForStencil(gn, 'odnoklassniki', dt).join(' ')),
  232. this.createVertexTemplateEntry(s + 'oknotizie;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  233. w * 512, h * 512, '', 'Oknotizie', null, null, this.getTagsForStencil(gn, 'oknotizie', dt).join(' ')),
  234. this.createVertexTemplateEntry(s + 'onedrive;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  235. w * 512, h * 512, '', 'OneDrive', null, null, this.getTagsForStencil(gn, 'onedrive', dt).join(' ')),
  236. this.createVertexTemplateEntry(s + 'oracle;fillColor=#FA3743;gradientColor=#E10E11',
  237. w * 512, h * 512, '', 'Oracle', null, null, this.getTagsForStencil(gn, 'oracle', dt).join(' ')),
  238. this.createVertexTemplateEntry(s + 'paypal;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  239. w * 512, h * 512, '', 'Paypal', null, null, this.getTagsForStencil(gn, 'paypal', dt).join(' ')),
  240. this.createVertexTemplateEntry(s + 'phone;fillColor=#76F21E;gradientColor=#079704',
  241. w * 512, h * 512, '', 'Phone', null, null, this.getTagsForStencil(gn, 'phone', dt).join(' ')),
  242. this.createVertexTemplateEntry(s + 'phonefavs;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  243. w * 512, h * 512, '', 'Phonefavs', null, null, this.getTagsForStencil(gn, 'phonefavs', dt).join(' ')),
  244. this.createVertexTemplateEntry(s + 'pinterest;fillColor=#E50B28;gradientColor=#890616',
  245. w * 512, h * 512, '', 'Pinterest', null, null, this.getTagsForStencil(gn, 'pinterest', dt).join(' ')),
  246. this.createVertexTemplateEntry(s + 'plaxo;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  247. w * 512, h * 512, '', 'Plaxo', null, null, this.getTagsForStencil(gn, 'plaxo', dt).join(' ')),
  248. this.createVertexTemplateEntry(s + 'playfire;fillColor=#695D5D;gradientColor=#100E0E',
  249. w * 512, h * 512, '', 'Playfire', null, null, this.getTagsForStencil(gn, 'playfire', dt).join(' ')),
  250. this.createVertexTemplateEntry(s + 'plurk;fillColor=#FF5656;gradientColor=#A8312D',
  251. w * 512, h * 512, '', 'Plurk', null, null, this.getTagsForStencil(gn, 'plurk', dt).join(' ')),
  252. this.createVertexTemplateEntry(s + 'pocket;fillColor=#FF4460;gradientColor=#B73143',
  253. w * 512, h * 512, '', 'Pocket', null, null, this.getTagsForStencil(gn, 'pocket', dt).join(' ')),
  254. this.createVertexTemplateEntry(s + 'protopage;fillColor=#4B78C0;gradientColor=#294282',
  255. w * 512, h * 512, '', 'Protopage', null, null, this.getTagsForStencil(gn, 'protopage', dt).join(' ')),
  256. this.createVertexTemplateEntry(s + 'readernaut;fillColor=#695D5D;gradientColor=#100E0E',
  257. w * 512, h * 512, '', 'Readernaut', null, null, this.getTagsForStencil(gn, 'readernaut', dt).join(' ')),
  258. this.createVertexTemplateEntry(s + 'reddit;fillColor=#F3F8FC;gradientColor=#B4D2F0',
  259. w * 512, h * 512, '', 'Reddit', null, null, this.getTagsForStencil(gn, 'reddit', dt).join(' ')),
  260. this.createVertexTemplateEntry(s + 'rss;fillColor=#FDE532;gradientColor=#F4600D',
  261. w * 512, h * 512, '', 'RSS', null, null, this.getTagsForStencil(gn, 'rss', dt).join(' ')),
  262. this.createVertexTemplateEntry(s + 'scoopit;fillColor=#8CD845;gradientColor=#4E7A27',
  263. w * 512, h * 512, '', 'Scoopit', null, null, this.getTagsForStencil(gn, 'scoopit', dt).join(' ')),
  264. this.createVertexTemplateEntry(s + 'scribd;fillColor=#1D637D;gradientColor=#071920',
  265. w * 512, h * 512, '', 'Scribd', null, null, this.getTagsForStencil(gn, 'scribd', dt).join(' ')),
  266. this.createVertexTemplateEntry(s + 'segnalo;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  267. w * 512, h * 512, '', 'Segnalo', null, null, this.getTagsForStencil(gn, 'segnalo', dt).join(' ')),
  268. this.createVertexTemplateEntry(s + 'sina;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  269. w * 512, h * 512, '', 'Sina', null, null, this.getTagsForStencil(gn, 'sina', dt).join(' ')),
  270. this.createVertexTemplateEntry(s + 'sitejot;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  271. w * 512, h * 512, '', 'Sitejot', null, null, this.getTagsForStencil(gn, 'sitejot', dt).join(' ')),
  272. this.createVertexTemplateEntry(s + 'skype;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  273. w * 512, h * 512, '', 'Skype', null, null, this.getTagsForStencil(gn, 'skype', dt).join(' ')),
  274. this.createVertexTemplateEntry(s + 'skyrock;fillColor=#47B8FF;gradientColor=#006AAD',
  275. w * 512, h * 512, '', 'Skyrock', null, null, this.getTagsForStencil(gn, 'skyrock', dt).join(' ')),
  276. this.createVertexTemplateEntry(s + 'slashdot;fillColor=#03B2AC;gradientColor=#012C2C',
  277. w * 512, h * 512, '', 'Slashdot', null, null, this.getTagsForStencil(gn, 'slashdot', dt).join(' ')),
  278. this.createVertexTemplateEntry(s + 'sms;fillColor=#86D466;gradientColor=#42B418',
  279. w * 512, h * 512, '', 'SMS', null, null, this.getTagsForStencil(gn, 'sms', dt).join(' ')),
  280. this.createVertexTemplateEntry(s + 'socialvibe;fillColor=#FA16E2;gradientColor=#DF064B',
  281. w * 512, h * 512, '', 'Socialvibe', null, null, this.getTagsForStencil(gn, 'socialvibe', dt).join(' ')),
  282. this.createVertexTemplateEntry(s + 'society6;fillColor=#695D5D;gradientColor=#100E0E',
  283. w * 512, h * 512, '', 'Society6', null, null, this.getTagsForStencil(gn, 'society6', dt).join(' ')),
  284. this.createVertexTemplateEntry(s + 'sonico;fillColor=#3FEAF6;gradientColor=#117EC9',
  285. w * 512, h * 512, '', 'Sonico', null, null, this.getTagsForStencil(gn, 'sonico', dt).join(' ')),
  286. this.createVertexTemplateEntry(s + 'soundcloud;fillColor=#F78E11;gradientColor=#F93A0E',
  287. w * 512, h * 512, '', 'Soundcloud', null, null, this.getTagsForStencil(gn, 'soundcloud', dt).join(' ')),
  288. this.createVertexTemplateEntry(s + 'sourceforge;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  289. w * 512, h * 512, '', 'Sourceforge', null, null, this.getTagsForStencil(gn, 'sourceforge', dt).join(' ')),
  290. this.createVertexTemplateEntry(s + 'sourceforge_2;fillColor=#0078AF;gradientColor=#00385E',
  291. w * 512, h * 512, '', 'Sourceforge', null, null, this.getTagsForStencil(gn, 'sourceforge', dt).join(' ')),
  292. this.createVertexTemplateEntry(s + 'spring.me;fillColor=#3CBEF2;gradientColor=#2B8AAF',
  293. w * 512, h * 512, '', 'Spring.me', null, null, this.getTagsForStencil(gn, 'spring me', dt).join(' ')),
  294. this.createVertexTemplateEntry(s + 'stackexchange;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  295. w * 512, h * 512, '', 'Stackexchange', null, null, this.getTagsForStencil(gn, 'stackexchange stack exchange', dt).join(' ')),
  296. this.createVertexTemplateEntry(s + 'stackoverflow;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  297. w * 512, h * 512, '', 'StackOverflow', null, null, this.getTagsForStencil(gn, 'stackoverflow stack overflow', dt).join(' ')),
  298. this.createVertexTemplateEntry(s + 'startaid;fillColor=#47B0E5;gradientColor=#2F7599',
  299. w * 512, h * 512, '', 'Startaid', null, null, this.getTagsForStencil(gn, 'startaid', dt).join(' ')),
  300. this.createVertexTemplateEntry(s + 'startlap;fillColor=#B9E6F0;gradientColor=#3062A2',
  301. w * 512, h * 512, '', 'Startlap', null, null, this.getTagsForStencil(gn, 'startlap', dt).join(' ')),
  302. this.createVertexTemplateEntry(s + 'steam;fillColor=#695D5D;gradientColor=#100E0E',
  303. w * 512, h * 512, '', 'Steam', null, null, this.getTagsForStencil(gn, 'steam', dt).join(' ')),
  304. this.createVertexTemplateEntry(s + 'stumbleupon;fillColor=#FA823C;gradientColor=#E12110',
  305. w * 512, h * 512, '', 'StumbleUpon', null, null, this.getTagsForStencil(gn, 'stumbleupon', dt).join(' ')),
  306. this.createVertexTemplateEntry(s + 'stumpedia;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  307. w * 512, h * 512, '', 'Stumpedia', null, null, this.getTagsForStencil(gn, 'stumpedia', dt).join(' ')),
  308. this.createVertexTemplateEntry(s + 'technorati;fillColor=#99EC92;gradientColor=#288925',
  309. w * 512, h * 512, '', 'Technorati', null, null, this.getTagsForStencil(gn, 'technorati', dt).join(' ')),
  310. this.createVertexTemplateEntry(s + 'translate;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  311. w * 512, h * 512, '', 'Translate', null, null, this.getTagsForStencil(gn, 'translate', dt).join(' ')),
  312. this.createVertexTemplateEntry(s + 'tumblr;fillColor=#588BBC;gradientColor=#172330',
  313. w * 512, h * 512, '', 'Tumblr', null, null, this.getTagsForStencil(gn, 'tumblr', dt).join(' ')),
  314. this.createVertexTemplateEntry(s + 'tunein;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  315. w * 512, h * 512, '', 'Tunein', null, null, this.getTagsForStencil(gn, 'tunein', dt).join(' ')),
  316. this.createVertexTemplateEntry(s + 'twitter;fillColor=#49EAF7;gradientColor=#137BD0',
  317. w * 512, h * 512, '', 'Twitter', null, null, this.getTagsForStencil(gn, 'twitter', dt).join(' ')),
  318. this.createVertexTemplateEntry(s + 'two;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  319. w * 512, h * 512, '', 'Two', null, null, this.getTagsForStencil(gn, 'two', dt).join(' ')),
  320. this.createVertexTemplateEntry(s + 'typepad;fillColor=#CBD372;gradientColor=#818748',
  321. w * 512, h * 512, '', 'Typepad', null, null, this.getTagsForStencil(gn, 'typepad', dt).join(' ')),
  322. this.createVertexTemplateEntry(s + 'viadeo;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  323. w * 512, h * 512, '', 'Viadeo', null, null, this.getTagsForStencil(gn, 'viadeo', dt).join(' ')),
  324. this.createVertexTemplateEntry(s + 'viber;fillColor=#9964C4;gradientColor=#52366B',
  325. w * 512, h * 512, '', 'Viber', null, null, this.getTagsForStencil(gn, 'viber', dt).join(' ')),
  326. this.createVertexTemplateEntry(s + 'viddler;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  327. w * 512, h * 512, '', 'Viddler', null, null, this.getTagsForStencil(gn, 'viddler', dt).join(' ')),
  328. this.createVertexTemplateEntry(s + 'vimeo;fillColor=#A4EDF9;gradientColor=#2B8ED9',
  329. w * 512, h * 512, '', 'Vimeo', null, null, this.getTagsForStencil(gn, 'vimeo', dt).join(' ')),
  330. this.createVertexTemplateEntry(s + 'virb;fillColor=#536873;gradientColor=#161A1D',
  331. w * 512, h * 512, '', 'Virb', null, null, this.getTagsForStencil(gn, 'virb', dt).join(' ')),
  332. this.createVertexTemplateEntry(s + 'vkontakte;fillColor=#5F94CC;gradientColor=#39587A',
  333. w * 512, h * 512, '', 'Vkontakte', null, null, this.getTagsForStencil(gn, 'vkontakte', dt).join(' ')),
  334. this.createVertexTemplateEntry(s + 'wakoopa;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  335. w * 512, h * 512, '', 'Wakoopa', null, null, this.getTagsForStencil(gn, 'wakoopa', dt).join(' ')),
  336. this.createVertexTemplateEntry(s + 'weheartit;fillColor=#FF7AA2;gradientColor=#FF4577',
  337. w * 512, h * 512, '', 'Weheartit', null, null, this.getTagsForStencil(gn, 'weheartit', dt).join(' ')),
  338. this.createVertexTemplateEntry(s + 'whatsapp;fillColor=#4FE238;gradientColor=#138709',
  339. w * 512, h * 512, '', 'Whatsapp', null, null, this.getTagsForStencil(gn, 'whatsapp', dt).join(' ')),
  340. this.createVertexTemplateEntry(s + 'wix;fillColor=#8AE3F2;gradientColor=#2451B0',
  341. w * 512, h * 512, '', 'Wix', null, null, this.getTagsForStencil(gn, 'wix', dt).join(' ')),
  342. this.createVertexTemplateEntry(s + 'wordpress;fillColor=#35E2EE;gradientColor=#0E4D99',
  343. w * 512, h * 512, '', 'Wordpress', null, null, this.getTagsForStencil(gn, 'wordpress', dt).join(' ')),
  344. this.createVertexTemplateEntry(s + 'wordpress_2;fillColor=#35E2EE;gradientColor=#0E4D99',
  345. w * 512, h * 512, '', 'Wordpress', null, null, this.getTagsForStencil(gn, 'wordpress', dt).join(' ')),
  346. this.createVertexTemplateEntry(s + 'xanga;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  347. w * 512, h * 512, '', 'Xanga', null, null, this.getTagsForStencil(gn, 'xanga', dt).join(' ')),
  348. this.createVertexTemplateEntry(s + 'xerpi;fillColor=#7F719B;gradientColor=#32264B',
  349. w * 512, h * 512, '', 'Xerpi', null, null, this.getTagsForStencil(gn, 'xerpi', dt).join(' ')),
  350. this.createVertexTemplateEntry(s + 'xing;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  351. w * 512, h * 512, '', 'Xing', null, null, this.getTagsForStencil(gn, 'xing', dt).join(' ')),
  352. this.createVertexTemplateEntry(s + 'yahoo;fillColor=#AC37AE;gradientColor=#2E0E2D',
  353. w * 512, h * 512, '', 'Yahoo', null, null, this.getTagsForStencil(gn, 'yahoo', dt).join(' ')),
  354. this.createVertexTemplateEntry(s + 'yahoo_2;fillColor=#AC37AE;gradientColor=#2E0E2D',
  355. w * 512, h * 512, '', 'Yahoo', null, null, this.getTagsForStencil(gn, 'yahoo', dt).join(' ')),
  356. this.createVertexTemplateEntry(s + 'yammer;fillColor=#00AFE0;gradientColor=#005F7A',
  357. w * 512, h * 512, '', 'Yammer', null, null, this.getTagsForStencil(gn, 'yammer', dt).join(' ')),
  358. this.createVertexTemplateEntry(s + 'yandex;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  359. w * 512, h * 512, '', 'Yandex', null, null, this.getTagsForStencil(gn, 'yandex', dt).join(' ')),
  360. this.createVertexTemplateEntry(s + 'yelp;fillColor=#EF5140;gradientColor=#9C1410',
  361. w * 512, h * 512, '', 'Yelp', null, null, this.getTagsForStencil(gn, 'yelp', dt).join(' ')),
  362. this.createVertexTemplateEntry(s + 'yoolink;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  363. w * 512, h * 512, '', 'Yoolink', null, null, this.getTagsForStencil(gn, 'yoolink', dt).join(' ')),
  364. this.createVertexTemplateEntry(s + 'youmob;fillColor=#FFFFFF;gradientColor=#DFDEDE',
  365. w * 512, h * 512, '', 'Youmob', null, null, this.getTagsForStencil(gn, 'youmob', dt).join(' '))
  366. ]);
  367. };
  368. // Adds Web Icons shapes
  369. Sidebar.prototype.addWebLogosPalette = function()
  370. {
  371. var sb = this;
  372. var s = 'dashed=0;html=1;' + mxConstants.STYLE_SHAPE + "=mxgraph.weblogos.";
  373. var gn = 'mxgraph.weblogos';
  374. var dt = 'web logos logo';
  375. var w = 0.2;
  376. var h = 0.2;
  377. this.addPaletteFunctions('weblogos', 'Web Logos', false,
  378. [
  379. this.createVertexTemplateEntry(s + 'adfty;fillColor=#66E8F3;gradientColor=#1C7CBA',
  380. w * 456, h * 458, '', 'Adfty', null, null, this.getTagsForStencil(gn, 'adfty', dt).join(' ')),
  381. this.createVertexTemplateEntry(s + 'adobe_pdf;fillColor=#A60908',
  382. w * 347, h * 338, '', 'Adobe PDF', null, null, this.getTagsForStencil(gn, 'adobe pdf', dt).join(' ')),
  383. this.createVertexTemplateEntry(s + 'aim',
  384. w * 312, h * 342, '', 'Aim', null, null, this.getTagsForStencil(gn, 'aim', dt).join(' ')),
  385. this.createVertexTemplateEntry(s + 'allvoices',
  386. w * 420, h * 398, '', 'Allvoices', null, null, this.getTagsForStencil(gn, 'allvoices', dt).join(' ')),
  387. this.createVertexTemplateEntry(s + 'amazon',
  388. w * 314, h * 341, '', 'Amazon', null, null, this.getTagsForStencil(gn, 'amazon', dt).join(' ')),
  389. this.createVertexTemplateEntry(s + 'android;fillColor=#A4CA39;strokeColor=none',
  390. w * 338, h * 400, '', 'Android', null, null, this.getTagsForStencil(gn, 'android', dt).join(' ')),
  391. this.createVertexTemplateEntry(s + 'apache',
  392. w * 213, h * 426, '', 'Apache', null, null, this.getTagsForStencil(gn, 'apache db database', dt).join(' ')),
  393. this.createVertexTemplateEntry(s + 'apple;fillColor=#1B1C1C;strokeColor=none',
  394. w * 312, h * 381, '', 'Apple', null, null, this.getTagsForStencil(gn, 'apple', dt).join(' ')),
  395. this.createVertexTemplateEntry(s + 'apple_classic',
  396. w * 312, h * 381, '', 'Apple (classic)', null, null, this.getTagsForStencil(gn, 'apple classic', dt).join(' ')),
  397. this.createVertexTemplateEntry(s + 'app_store;fillColor=#000000;strokeColor=none',
  398. w * 306, h * 100, '', 'App Store', null, null, this.getTagsForStencil(gn, 'app store application', dt).join(' ')),
  399. this.createVertexTemplateEntry(s + 'app_store_iphone;fillColor=#75797C;strokeColor=none',
  400. w * 306, h * 100, '', 'App Store iPhone', null, null, this.getTagsForStencil(gn, 'app store iphone', dt).join(' ')),
  401. this.createVertexTemplateEntry(s + 'arduino;fillColor=#36868D;strokeColor=none',
  402. w * 337, h * 160, '', 'Arduino', null, null, this.getTagsForStencil(gn, 'arduino', dt).join(' ')),
  403. this.createVertexTemplateEntry(s + 'ask;fillColor=#D22028;strokeColor=none',
  404. w * 343, h * 253, '', 'Ask', null, null, this.getTagsForStencil(gn, 'ask', dt).join(' ')),
  405. this.createVertexTemplateEntry(s + 'atlassian;fillColor=#59AFE1;strokeColor=none',
  406. w * 301, h * 275, '', 'Atlassian', null, null, this.getTagsForStencil(gn, 'atlassian', dt).join(' ')),
  407. this.createVertexTemplateEntry(s + 'audioboo;fillColor=#B9217E',
  408. w * 270, h * 397, '', 'Audioboo', null, null, this.getTagsForStencil(gn, 'audioboo', dt).join(' ')),
  409. this.createVertexTemplateEntry(s + 'aws',
  410. w * 318, h * 292, '', 'AWS', null, null, this.getTagsForStencil(gn, 'aws amazon web service', dt).join(' ')),
  411. this.createVertexTemplateEntry(s + 'aws_s3',
  412. w * 308, h * 288, '', 'AWS S3', null, null, this.getTagsForStencil(gn, 'aws s3 amazon web service', dt).join(' ')),
  413. this.createVertexTemplateEntry(s + 'baidu;fillColor=#3F4D9E',
  414. w * 355, h * 385, '', 'Baidu', null, null, this.getTagsForStencil(gn, 'baidu', dt).join(' ')),
  415. this.createVertexTemplateEntry(s + 'bebo;fillColor=#EC1C23;strokeColor=none',
  416. w * 279, h * 357, '', 'Bebo', null, null, this.getTagsForStencil(gn, 'bebo', dt).join(' ')),
  417. this.createVertexTemplateEntry(s + 'behance;fillColor=#3A3333',
  418. w * 369, h * 228, '', 'Behance', null, null, this.getTagsForStencil(gn, 'behance', dt).join(' ')),
  419. this.createVertexTemplateEntry(s + 'bing;fillColor=#008373;strokeColor=none',
  420. w * 265, h * 331, '', 'Bing', null, null, this.getTagsForStencil(gn, 'bing', dt).join(' ')),
  421. this.createVertexTemplateEntry(s + 'bitbucket;fillColor=#205081;strokeColor=none',
  422. w * 326, h * 374, '', 'Bitbucket', null, null, this.getTagsForStencil(gn, 'bitbucket', dt).join(' ')),
  423. this.createVertexTemplateEntry(s + 'blinklist;fillColor=#3A3333;strokeColor=none',
  424. w * 406, h * 360, '', 'Blinklist', null, null, this.getTagsForStencil(gn, 'blinklist', dt).join(' ')),
  425. this.createVertexTemplateEntry(s + 'blogger;fillColor=#F66C2A;strokeColor=none',
  426. w * 290, h * 291, '', 'Blogger', null, null, this.getTagsForStencil(gn, 'blogger', dt).join(' ')),
  427. this.createVertexTemplateEntry(s + 'blogmarks',
  428. w * 188, h * 322, '', 'Blogmarks', null, null, this.getTagsForStencil(gn, 'blogmarks', dt).join(' ')),
  429. this.createVertexTemplateEntry(s + 'bookmarks.fr',
  430. w * 351, h * 314, '', 'Bookmarks.fr', null, null, this.getTagsForStencil(gn, 'bookmarks.fr', dt).join(' ')),
  431. this.createVertexTemplateEntry(s + 'box;fillColor=#2771B9;strokeColor=none',
  432. w * 223, h * 321, '', 'Box', null, null, this.getTagsForStencil(gn, 'box', dt).join(' ')),
  433. this.createVertexTemplateEntry(s + 'buddymarks',
  434. w * 397, h * 285, '', 'Buddymarks', null, null, this.getTagsForStencil(gn, 'buddymarks', dt).join(' ')),
  435. this.createVertexTemplateEntry(s + 'buffer;fillColor=#221F1F;strokeColor=none',
  436. w * 352, h * 302, '', 'Buffer', null, null, this.getTagsForStencil(gn, 'buffer', dt).join(' ')),
  437. this.createVertexTemplateEntry(s + 'buzzfeed;fillColor=#ED3223;strokeColor=none',
  438. w * 390, h * 390, '', 'Buzzfeed', null, null, this.getTagsForStencil(gn, 'buzzfeed', dt).join(' ')),
  439. this.createVertexTemplateEntry(s + 'chrome',
  440. w * 374, h * 377, '', 'Chrome', null, null, this.getTagsForStencil(gn, 'chrome', dt).join(' ')),
  441. this.createVertexTemplateEntry(s + 'citeulike;fillColor=#698139',
  442. w * 378, h * 180, '', 'Citeulike', null, null, this.getTagsForStencil(gn, 'citeulike', dt).join(' ')),
  443. this.createVertexTemplateEntry(s + 'confluence;fillColor=#1F5081;strokeColor=none',
  444. w * 389, h * 334, '', 'Confluence', null, null, this.getTagsForStencil(gn, 'confluence', dt).join(' ')),
  445. this.createVertexTemplateEntry(s + 'connotea',
  446. w * 405, h * 413, '', 'Connotea', null, null, this.getTagsForStencil(gn, 'connotea', dt).join(' ')),
  447. this.createVertexTemplateEntry(s + 'dealsplus;fillColor=#935492',
  448. w * 380, h * 333, '', 'Dealsplus', null, null, this.getTagsForStencil(gn, 'dealsplus', dt).join(' ')),
  449. this.createVertexTemplateEntry(s + 'designfloat;strokeColor=none',
  450. w * 360, h * 360, '', 'Designfloat', null, null, this.getTagsForStencil(gn, 'designfloat', dt).join(' ')),
  451. this.createVertexTemplateEntry(s + 'deviantart;fillColor=#009544;strokeColor=none;',
  452. w * 310, h * 432, '', 'Deviantart', null, null, this.getTagsForStencil(gn, 'deviantart', dt).join(' ')),
  453. this.createVertexTemplateEntry(s + 'digg;fillColor=#ffffff',
  454. w * 290, h * 280, '', 'Digg', null, null, this.getTagsForStencil(gn, 'digg', dt).join(' ')),
  455. this.createVertexTemplateEntry(s + 'diigo;fillColor=#2973D2;strokeColor=none',
  456. w * 306, h * 344, '', 'Diigo', null, null, this.getTagsForStencil(gn, 'diiigo', dt).join(' ')),
  457. this.createVertexTemplateEntry(s + 'dopplr;fillColor=#F9634D;strokeColor=none',
  458. w * 512, h * 512, '', 'Dopplr', null, null, this.getTagsForStencil(gn, 'dopplr', dt).join(' ')),
  459. this.createVertexTemplateEntry(s + 'drawio1;fillColor=#1A5BA3',
  460. w * 248, h * 341, '', 'Draw.io', null, null, this.getTagsForStencil(gn, 'drawio draw io', dt).join(' ')),
  461. this.createVertexTemplateEntry(s + 'drawio2;fillColor=#1A5BA3',
  462. w * 261, h * 354, '', 'Draw.io', null, null, this.getTagsForStencil(gn, 'drawio draw io', dt).join(' ')),
  463. this.createVertexTemplateEntry(s + 'dribbble;fillColor=#EB548D',
  464. w * 337, h * 336, '', 'Dribbble', null, null, this.getTagsForStencil(gn, 'dribbble', dt).join(' ')),
  465. this.createVertexTemplateEntry(s + 'dropbox;fillColor=#0287EA',
  466. w * 367, h * 310, '', 'Dropbox2', null, null, this.getTagsForStencil(gn, 'dropbox', dt).join(' ')),
  467. this.createVertexTemplateEntry(s + 'drupal',
  468. w * 303, h * 345, '', 'Drupal', null, null, this.getTagsForStencil(gn, 'drupal', dt).join(' ')),
  469. this.createVertexTemplateEntry(s + 'dzone',
  470. w * 438, h * 306, '', 'Dzone', null, null, this.getTagsForStencil(gn, 'dzone', dt).join(' ')),
  471. this.createVertexTemplateEntry(s + 'ebay',
  472. w * 406, h * 172, '', 'Ebay', null, null, this.getTagsForStencil(gn, 'ebay', dt).join(' ')),
  473. this.createVertexTemplateEntry(s + 'edmodo;fillColor=#276CB0;strokeColor=none',
  474. w * 346, h * 369, '', 'Edmodo', null, null, this.getTagsForStencil(gn, 'edmodo', dt).join(' ')),
  475. this.createVertexTemplateEntry(s + 'evernote;fillColor=#3F3F3F',
  476. w * 317, h * 376, '', 'Evernote', null, null, this.getTagsForStencil(gn, 'evernote', dt).join(' ')),
  477. this.createVertexTemplateEntry(s + 'fancy;fillColor=#6DB3E3',
  478. w * 196, h * 395, '', 'Fancy', null, null, this.getTagsForStencil(gn, 'fancy', dt).join(' ')),
  479. this.createVertexTemplateEntry(s + 'fark;fillColor=#B1B0C7;gradientColor=#ffffff;strokeColor=#B1B0C7',
  480. w * 221, h * 351, '', 'Fark', null, null, this.getTagsForStencil(gn, 'fark', dt).join(' ')),
  481. this.createVertexTemplateEntry(s + 'fashiolista',
  482. w * 388, h * 366, '', 'Fashiolista', null, null, this.getTagsForStencil(gn, 'fashiolista', dt).join(' ')),
  483. this.createVertexTemplateEntry(s + 'feed;fillColor=#000000',
  484. w * 302, h * 296, '', 'Feed', null, null, this.getTagsForStencil(gn, 'feed', dt).join(' ')),
  485. this.createVertexTemplateEntry(s + 'feedburner',
  486. w * 342, h * 372, '', 'Feedburner', null, null, this.getTagsForStencil(gn, 'feedburner', dt).join(' ')),
  487. this.createVertexTemplateEntry(s + 'flickr',
  488. w * 356, h * 156, '', 'Flickr', null, null, this.getTagsForStencil(gn, 'flickr', dt).join(' ')),
  489. this.createVertexTemplateEntry(s + 'folkd;fillColor=#165AA6',
  490. w * 419, h * 218, '', 'Folkd', null, null, this.getTagsForStencil(gn, 'folkd', dt).join(' ')),
  491. this.createVertexTemplateEntry(s + 'forrst;fillColor=#27431F',
  492. w * 264, h * 366, '', 'Forrst', null, null, this.getTagsForStencil(gn, 'forrst', dt).join(' ')),
  493. this.createVertexTemplateEntry(s + 'fotolog;fillColor=#000000;strokeColor=none',
  494. w * 238, h * 238, '', 'Fotolog', null, null, this.getTagsForStencil(gn, 'fotolog', dt).join(' ')),
  495. this.createVertexTemplateEntry(s + 'freshbump;fillColor=#C2D952;strokeColor=none',
  496. w * 356, h * 380, '', 'Freshbump', null, null, this.getTagsForStencil(gn, 'freshbump', dt).join(' ')),
  497. this.createVertexTemplateEntry(s + 'fresqui',
  498. w * 512, h * 512, '', 'Fresqui', null, null, this.getTagsForStencil(gn, 'fresqui', dt).join(' ')),
  499. this.createVertexTemplateEntry(s + 'friendfeed;fillColor=#4172BB',
  500. w * 369, h * 355, '', 'Friendfeed', null, null, this.getTagsForStencil(gn, 'fiendfeed', dt).join(' ')),
  501. this.createVertexTemplateEntry(s + 'funp',
  502. w * 375, h * 200, '', 'Funp', null, null, this.getTagsForStencil(gn, 'funp', dt).join(' ')),
  503. this.createVertexTemplateEntry(s + 'fwisp;fillColor=#66676A;strokeColor=none',
  504. w * 327, h * 330, '', 'Fwisp', null, null, this.getTagsForStencil(gn, 'fwisp', dt).join(' ')),
  505. this.createVertexTemplateEntry(s + 'gabbr;fillColor=#F05B1E',
  506. w * 322, h * 330, '', 'Gabbr', null, null, this.getTagsForStencil(gn, 'gabbr', dt).join(' ')),
  507. this.createVertexTemplateEntry(s + 'gamespot',
  508. w * 408, h * 408, '', 'Gamespot', null, null, this.getTagsForStencil(gn, 'gamespot', dt).join(' ')),
  509. this.createVertexTemplateEntry(s + 'github',
  510. w * 375, h * 375, '', 'Github', null, null, this.getTagsForStencil(gn, 'github', dt).join(' ')),
  511. this.createVertexTemplateEntry(s + 'gmail',
  512. w * 324, h * 234, '', 'Gmail', null, null, this.getTagsForStencil(gn, 'gmail', dt).join(' ')),
  513. this.createVertexTemplateEntry(s + 'google',
  514. w * 326, h * 347, '', 'Google', null, null, this.getTagsForStencil(gn, 'google', dt).join(' ')),
  515. this.createVertexTemplateEntry(s + 'google_drive',
  516. w * 332, h * 290, '', 'Google Drive', null, null, this.getTagsForStencil(gn, 'google drive', dt).join(' ')),
  517. this.createVertexTemplateEntry(s + 'google_hangout;fillColor=#4BA139;strokeColor=none',
  518. w * 324, h * 377, '', 'Google Hangout', null, null, this.getTagsForStencil(gn, 'google hangout', dt).join(' ')),
  519. this.createVertexTemplateEntry(s + 'google_play;fillColor=#000000',
  520. w * 347, h * 103, '', 'Google Play', null, null, this.getTagsForStencil(gn, 'google play', dt).join(' ')),
  521. this.createVertexTemplateEntry(s + 'google_play_light;fillColor=#66E8F3;gradientColor=#1C7CBA',
  522. w * 300, h * 52, '', 'Google Play Light', null, null, this.getTagsForStencil(gn, 'google play light', dt).join(' ')),
  523. this.createVertexTemplateEntry(s + 'google_photos',
  524. w * 436, h * 436, '', 'Google Photos', null, null, this.getTagsForStencil(gn, 'google photos', dt).join(' ')),
  525. this.createVertexTemplateEntry(s + 'google_plus;fillColor=#DD4C40;strokeColor=none',
  526. w * 328, h * 220, '', 'Google+', null, null, this.getTagsForStencil(gn, 'google plus', dt).join(' ')),
  527. this.createVertexTemplateEntry(s + 'grooveshark;fillColor=#000000;strokeColor=none',
  528. w * 311, h * 311, '', 'Grooveshark', null, null, this.getTagsForStencil(gn, 'grooveshark', dt).join(' ')),
  529. this.createVertexTemplateEntry(s + 'hatena',
  530. w * 431, h * 221, '', 'Hatena', null, null, this.getTagsForStencil(gn, 'hatena', dt).join(' ')),
  531. this.createVertexTemplateEntry(s + 'html5',
  532. w * 262, h * 370, '', 'HTML5', null, null, this.getTagsForStencil(gn, 'html5 html', dt).join(' ')),
  533. this.createVertexTemplateEntry(s + 'identi.ca',
  534. w * 371, h * 238, '', 'Identi.ca', null, null, this.getTagsForStencil(gn, 'identi.ca', dt).join(' ')),
  535. this.createVertexTemplateEntry(s + 'instagram;fillColor=#6FC0E4;gradientColor=#1E305B',
  536. w * 361, h * 361, '', 'Instagram', null, null, this.getTagsForStencil(gn, 'instagram', dt).join(' ')),
  537. this.createVertexTemplateEntry(s + 'instapaper',
  538. w * 138, h * 351, '', 'Instapaper', null, null, this.getTagsForStencil(gn, 'instapaper', dt).join(' ')),
  539. this.createVertexTemplateEntry(s + 'ios;fillColor=#695D5D;gradientColor=#100E0E',
  540. w * 368, h * 197, '', 'iOS', null, null, this.getTagsForStencil(gn, 'ios', dt).join(' ')),
  541. this.createVertexTemplateEntry(s + 'jamespot;fillColor=#695D5D;gradientColor=#100E0E',
  542. w * 390, h * 390, '', 'Jamespot', null, null, this.getTagsForStencil(gn, 'jamespot', dt).join(' ')),
  543. this.createVertexTemplateEntry(s + 'java',
  544. w * 172, h * 325, '', 'Java', null, null, this.getTagsForStencil(gn, 'java', dt).join(' ')),
  545. this.createVertexTemplateEntry(s + 'joomla;fillColor=#1F457D;gradientColor=#081220',
  546. w * 330, h * 328, '', 'Joomla', null, null, this.getTagsForStencil(gn, 'joomla', dt).join(' ')),
  547. this.createVertexTemplateEntry(s + 'jquery;fillColor=#0BB9EA;gradientColor=#032F80',
  548. w * 369, h * 335, '', 'Jquery', null, null, this.getTagsForStencil(gn, 'jquery', dt).join(' ')),
  549. this.createVertexTemplateEntry(s + 'json',
  550. w * 350, h * 379, '', 'JSON', null, null, this.getTagsForStencil(gn, 'json', dt).join(' ')),
  551. this.createVertexTemplateEntry(s + 'json_2',
  552. w * 402, h * 126, '', 'JSON', null, null, this.getTagsForStencil(gn, 'json', dt).join(' ')),
  553. this.createVertexTemplateEntry(s + 'last.fm;fillColor=#F33543;gradientColor=#BD0E11',
  554. w * 416, h * 250, '', 'Last.fm', null, null, this.getTagsForStencil(gn, 'last.fm last fm', dt).join(' ')),
  555. this.createVertexTemplateEntry(s + 'linkagogo;fillColor=#F6F5FA;gradientColor=#C8C1E1',
  556. w * 511, h * 400, '', 'Linkagogo', null, null, this.getTagsForStencil(gn, 'linkagogo', dt).join(' ')),
  557. this.createVertexTemplateEntry(s + 'linkedin;fillColor=#0095DB;gradientColor=#006391',
  558. w * 287, h * 303, '', 'LinkedIn', null, null, this.getTagsForStencil(gn, 'linkedin', dt).join(' ')),
  559. this.createVertexTemplateEntry(s + 'livejournal;fillColor=#2690E5;gradientColor=#0A2463',
  560. w * 320, h * 343, '', 'Livejournal', null, null, this.getTagsForStencil(gn, 'livejournal', dt).join(' ')),
  561. this.createVertexTemplateEntry(s + 'mail.ru;fillColor=#267BE0;gradientColor=#0A1F42',
  562. w * 406, h * 393, '', 'Mail.ru', null, null, this.getTagsForStencil(gn, 'mail.ru', dt).join(' ')),
  563. this.createVertexTemplateEntry(s + 'mathoverflow;fillColor=#656463;gradientColor=#F28711;gradientDirection=east',
  564. w * 295, h * 241, '', 'MathOverflow', null, null, this.getTagsForStencil(gn, 'mathoverflow', dt).join(' ')),
  565. this.createVertexTemplateEntry(s + 'meetup;fillColor=#413E3E;strokeColor=none',
  566. w * 374, h * 150, '', 'Meetup', null, null, this.getTagsForStencil(gn, 'meetup', dt).join(' ')),
  567. this.createVertexTemplateEntry(s + 'meneame',
  568. w * 380, h * 338, '', 'Meneame', null, null, this.getTagsForStencil(gn, 'meneame', dt).join(' ')),
  569. this.createVertexTemplateEntry(s + 'messenger',
  570. w * 413, h * 384, '', 'Messenger', null, null, this.getTagsForStencil(gn, 'messenger', dt).join(' ')),
  571. this.createVertexTemplateEntry(s + 'messenger_2',
  572. w * 322, h * 324, '', 'Messenger', null, null, this.getTagsForStencil(gn, 'messenger', dt).join(' ')),
  573. this.createVertexTemplateEntry(s + 'messenger_3;fillColor=#437BBD;strokeColor=#dddddd',
  574. w * 322, h * 324, '', 'Messenger', null, null, this.getTagsForStencil(gn, 'messenger', dt).join(' ')),
  575. this.createVertexTemplateEntry(s + 'mind_body_green;strokeColor=#888888',
  576. w * 407, h * 464, '', 'Mind Body Green', null, null, this.getTagsForStencil(gn, 'mind body green', dt).join(' ')),
  577. this.createVertexTemplateEntry(s + 'mongodb',
  578. w * 206, h * 431, '', 'MongoDb', null, null, this.getTagsForStencil(gn, 'mongodb', dt).join(' ')),
  579. this.createVertexTemplateEntry(s + 'myspace;fillColor=#003399;strokeColor=none',
  580. w * 315, h * 351, '', 'MySpace', null, null, this.getTagsForStencil(gn, 'myspace', dt).join(' ')),
  581. this.createVertexTemplateEntry(s + 'n4g;fillColor=#000000;strokeColor=none',
  582. w * 441, h * 159, '', 'N4g', null, null, this.getTagsForStencil(gn, 'n4g', dt).join(' ')),
  583. this.createVertexTemplateEntry(s + 'netlog;fillColor=#F42424;strokeColor=none',
  584. w * 383, h * 344, '', 'Netlog', null, null, this.getTagsForStencil(gn, 'netlog', dt).join(' ')),
  585. this.createVertexTemplateEntry(s + 'netvibes;fillColor=#84BD00;strokeColor=none',
  586. w * 309, h * 309, '', 'Netvibes', null, null, this.getTagsForStencil(gn, 'netvibes', dt).join(' ')),
  587. this.createVertexTemplateEntry(s + 'netvouz',
  588. w * 286, h * 287, '', 'Netvouz', null, null, this.getTagsForStencil(gn, 'netvouz', dt).join(' ')),
  589. this.createVertexTemplateEntry(s + 'networkedblogs',
  590. w * 394, h * 394, '', 'Networkedblogs', null, null, this.getTagsForStencil(gn, 'networkedblogs', dt).join(' ')),
  591. this.createVertexTemplateEntry(s + 'newsvine;fillColor=#005221;strokeColor=none',
  592. w * 203, h * 386, '', 'Newsvine', null, null, this.getTagsForStencil(gn, 'newsvine', dt).join(' ')),
  593. this.createVertexTemplateEntry(s + 'odnoklassniki;fillColor=#F58220;strokeColor=none',
  594. w * 247, h * 410, '', 'Odnoklassniki', null, null, this.getTagsForStencil(gn, 'odnoklassniki', dt).join(' ')),
  595. this.createVertexTemplateEntry(s + 'oknotizie',
  596. w * 237, h * 352, '', 'Oknotizie', null, null, this.getTagsForStencil(gn, 'oknotizie', dt).join(' ')),
  597. this.createVertexTemplateEntry(s + 'onedrive;fillColor=#094AB1;strokeColor=none',
  598. w * 356, h * 216, '', 'OneDrive', null, null, this.getTagsForStencil(gn, 'onedrive', dt).join(' ')),
  599. this.createVertexTemplateEntry(s + 'oracle;fillColor=#FF0000;strokeColor=none',
  600. w * 450, h * 115, '', 'Oracle', null, null, this.getTagsForStencil(gn, 'oracle', dt).join(' ')),
  601. this.createVertexTemplateEntry(s + 'paypal',
  602. w * 256, h * 290, '', 'Paypal', null, null, this.getTagsForStencil(gn, 'paypal', dt).join(' ')),
  603. this.createVertexTemplateEntry(s + 'phone;fillColor=#36BE0F;strokeColor=none',
  604. w * 289, h * 271, '', 'Phone', null, null, this.getTagsForStencil(gn, 'phone', dt).join(' ')),
  605. this.createVertexTemplateEntry(s + 'phonefavs',
  606. w * 322, h * 394, '', 'Phonefavs', null, null, this.getTagsForStencil(gn, 'phonefavs', dt).join(' ')),
  607. this.createVertexTemplateEntry(s + 'pinterest;fillColor=#BD081C;strokeColor=none',
  608. w * 384, h * 372, '', 'Pinterest', null, null, this.getTagsForStencil(gn, 'pinterest', dt).join(' ')),
  609. this.createVertexTemplateEntry(s + 'plaxo;fillColor=#414F5C;strokeColor=none',
  610. w * 400, h * 400, '', 'Plaxo', null, null, this.getTagsForStencil(gn, 'plaxo', dt).join(' ')),
  611. this.createVertexTemplateEntry(s + 'playfire;fillColor=#FDA21A;gradientColor=#FEE635;strokeColor=none',
  612. w * 310, h * 308, '', 'Playfire', null, null, this.getTagsForStencil(gn, 'playfire', dt).join(' ')),
  613. this.createVertexTemplateEntry(s + 'plurk;fillColor=#E9443D;strokeColor=none',
  614. w * 512, h * 512, '', 'Plurk', null, null, this.getTagsForStencil(gn, 'plurk', dt).join(' ')),
  615. this.createVertexTemplateEntry(s + 'pocket;fillColor=#EE4056;strokeColor=none',
  616. w * 314, h * 289, '', 'Pocket', null, null, this.getTagsForStencil(gn, 'pocket', dt).join(' ')),
  617. this.createVertexTemplateEntry(s + 'protopage;fillColor=#4B78C0;gradientColor=#294282',
  618. w * 394, h * 400, '', 'Protopage', null, null, this.getTagsForStencil(gn, 'protopage', dt).join(' ')),
  619. this.createVertexTemplateEntry(s + 'readernaut;fillColor=#000000;strokeColor=none',
  620. w * 360, h * 360, '', 'Readernaut', null, null, this.getTagsForStencil(gn, 'readernaut', dt).join(' ')),
  621. this.createVertexTemplateEntry(s + 'reddit;fillColor=#F3F8FC;gradientColor=#B4D2F0',
  622. w * 440, h * 368, '', 'Reddit', null, null, this.getTagsForStencil(gn, 'reddit', dt).join(' ')),
  623. this.createVertexTemplateEntry(s + 'rss;fillColor=#F56800;strokeColor=none',
  624. w * 408, h * 408, '', 'RSS', null, null, this.getTagsForStencil(gn, 'rss', dt).join(' ')),
  625. this.createVertexTemplateEntry(s + 'scoopit;fillColor=#6CAB36;strokeColor=none',
  626. w * 290, h * 350, '', 'Scoopit', null, null, this.getTagsForStencil(gn, 'scoopit', dt).join(' ')),
  627. this.createVertexTemplateEntry(s + 'scribd;fillColor=#3D3533;strokeColor=none',
  628. w * 289, h * 346, '', 'Scribd', null, null, this.getTagsForStencil(gn, 'scribd', dt).join(' ')),
  629. this.createVertexTemplateEntry(s + 'segnalo',
  630. w * 403, h * 389, '', 'Segnalo', null, null, this.getTagsForStencil(gn, 'segnalo', dt).join(' ')),
  631. this.createVertexTemplateEntry(s + 'sina',
  632. w * 429, h * 343, '', 'Sina', null, null, this.getTagsForStencil(gn, 'sina', dt).join(' ')),
  633. this.createVertexTemplateEntry(s + 'sitejot',
  634. w * 386, h * 330, '', 'Sitejot', null, null, this.getTagsForStencil(gn, 'sitejot', dt).join(' ')),
  635. this.createVertexTemplateEntry(s + 'skype;fillColor=#2AACE2;strokeColor=none',
  636. w * 388, h * 394, '', 'Skype', null, null, this.getTagsForStencil(gn, 'skype', dt).join(' ')),
  637. this.createVertexTemplateEntry(s + 'skyrock;fillColor=#009AFF;strokeColor=none',
  638. w * 339, h * 352, '', 'Skyrock', null, null, this.getTagsForStencil(gn, 'skyrock', dt).join(' ')),
  639. this.createVertexTemplateEntry(s + 'slashdot;fillColor=#026664;strokeColor=none',
  640. w * 262, h * 310, '', 'Slashdot', null, null, this.getTagsForStencil(gn, 'slashdot', dt).join(' ')),
  641. this.createVertexTemplateEntry(s + 'sms;fillColor=#48B921;strokeColor=none',
  642. w * 346, h * 320, '', 'SMS', null, null, this.getTagsForStencil(gn, 'sms', dt).join(' ')),
  643. this.createVertexTemplateEntry(s + 'socialvibe;fillColor=#EE2F7F;strokeColor=none',
  644. w * 250, h * 250, '', 'Socialvibe', null, null, this.getTagsForStencil(gn, 'socialvibe', dt).join(' ')),
  645. this.createVertexTemplateEntry(s + 'society6;fillColor=#000000;strokeColor=none',
  646. w * 374, h * 265, '', 'Society6', null, null, this.getTagsForStencil(gn, 'society6', dt).join(' ')),
  647. this.createVertexTemplateEntry(s + 'sonico;fillColor=#01AEF0;strokeColor=none',
  648. w * 346, h * 316, '', 'Sonico', null, null, this.getTagsForStencil(gn, 'sonico', dt).join(' ')),
  649. this.createVertexTemplateEntry(s + 'soundcloud;fillColor=#FE4600;strokeColor=none',
  650. w * 367, h * 163, '', 'Soundcloud', null, null, this.getTagsForStencil(gn, 'soundcloud', dt).join(' ')),
  651. this.createVertexTemplateEntry(s + 'sourceforge',
  652. w * 371, h * 372, '', 'Sourceforge', null, null, this.getTagsForStencil(gn, 'sourceforge', dt).join(' ')),
  653. this.createVertexTemplateEntry(s + 'sourceforge_2;fillColor=#00547E;strokeColor=none',
  654. w * 316, h * 234, '', 'Sourceforge', null, null, this.getTagsForStencil(gn, 'sourceforge', dt).join(' ')),
  655. this.createVertexTemplateEntry(s + 'spring.me;fillColor=#0374B8;strokeColor=none',
  656. w * 366, h * 158, '', 'Spring.me', null, null, this.getTagsForStencil(gn, 'spring me', dt).join(' ')),
  657. this.createVertexTemplateEntry(s + 'stackexchange',
  658. w * 319, h * 395, '', 'Stackexchange', null, null, this.getTagsForStencil(gn, 'stackexchange stack exchange', dt).join(' ')),
  659. this.createVertexTemplateEntry(s + 'stackoverflow',
  660. w * 272, h * 320, '', 'StackOverflow', null, null, this.getTagsForStencil(gn, 'stackoverflow stack overflow', dt).join(' ')),
  661. this.createVertexTemplateEntry(s + 'startaid;fillColor=#409FCF;strokeColor=none',
  662. w * 206, h * 213, '', 'Startaid', null, null, this.getTagsForStencil(gn, 'startaid', dt).join(' ')),
  663. this.createVertexTemplateEntry(s + 'startlap;fillColor=#B9E6F0;gradientColor=#3062A2',
  664. w * 410, h * 421, '', 'Startlap', null, null, this.getTagsForStencil(gn, 'startlap', dt).join(' ')),
  665. this.createVertexTemplateEntry(s + 'steam;fillColor=#695D5D;gradientColor=#100E0E',
  666. w * 426, h * 198, '', 'Steam', null, null, this.getTagsForStencil(gn, 'steam', dt).join(' ')),
  667. this.createVertexTemplateEntry(s + 'stumbleupon;fillColor=#EB4924;strokeColor=none',
  668. w * 512, h * 512, '', 'StumbleUpon', null, null, this.getTagsForStencil(gn, 'stumbleupon', dt).join(' ')),
  669. this.createVertexTemplateEntry(s + 'stumpedia',
  670. w * 335, h * 338, '', 'Stumpedia', null, null, this.getTagsForStencil(gn, 'stumpedia', dt).join(' ')),
  671. this.createVertexTemplateEntry(s + 'translate',
  672. w * 342, h * 335, '', 'Translate', null, null, this.getTagsForStencil(gn, 'translate', dt).join(' ')),
  673. this.createVertexTemplateEntry(s + 'tumblr;fillColor=#36465D;strokeColor=none',
  674. w * 203, h * 326, '', 'Tumblr', null, null, this.getTagsForStencil(gn, 'tumblr', dt).join(' ')),
  675. this.createVertexTemplateEntry(s + 'tunein',
  676. w * 350, h * 350, '', 'Tunein', null, null, this.getTagsForStencil(gn, 'tunein', dt).join(' ')),
  677. this.createVertexTemplateEntry(s + 'twitter;fillColor=#1DA1F2;strokeColor=none',
  678. w * 400, h * 350, '', 'Twitter', null, null, this.getTagsForStencil(gn, 'twitter', dt).join(' ')),
  679. this.createVertexTemplateEntry(s + 'two;fillColor=#FF6D00;strokeColor=none',
  680. w * 377, h * 100, '', 'Two', null, null, this.getTagsForStencil(gn, 'two', dt).join(' ')),
  681. this.createVertexTemplateEntry(s + 'typepad;fillColor=#ADB560;strokeColor=none',
  682. w * 324, h * 192, '', 'Typepad', null, null, this.getTagsForStencil(gn, 'typepad', dt).join(' ')),
  683. this.createVertexTemplateEntry(s + 'viadeo',
  684. w * 367, h * 420, '', 'Viadeo', null, null, this.getTagsForStencil(gn, 'viadeo', dt).join(' ')),
  685. this.createVertexTemplateEntry(s + 'viber;fillColor=#7D539F;strokeColor=none',
  686. w * 387, h * 426, '', 'Viber', null, null, this.getTagsForStencil(gn, 'viber', dt).join(' ')),
  687. this.createVertexTemplateEntry(s + 'viddler;fillColor=#1896E0;gradientColor=#06253F',
  688. w * 410, h * 106, '', 'Viddler', null, null, this.getTagsForStencil(gn, 'viddler', dt).join(' ')),
  689. this.createVertexTemplateEntry(s + 'vimeo;fillColor=#1AB7EA;strokeColor=none',
  690. w * 313, h * 290, '', 'Vimeo', null, null, this.getTagsForStencil(gn, 'vimeo', dt).join(' ')),
  691. this.createVertexTemplateEntry(s + 'virb;fillColor=#000000;strokeColor=none',
  692. w * 330, h * 353, '', 'Virb', null, null, this.getTagsForStencil(gn, 'virb', dt).join(' ')),
  693. this.createVertexTemplateEntry(s + 'vkontakte;fillColor=#4C75A3;strokeColor=none',
  694. w * 352, h * 200, '', 'Vkontakte', null, null, this.getTagsForStencil(gn, 'vkontakte', dt).join(' ')),
  695. this.createVertexTemplateEntry(s + 'wakoopa;fillColor=#FF6D00;strokeColor=none',
  696. w * 413, h * 224, '', 'Wakoopa', null, null, this.getTagsForStencil(gn, 'wakoopa', dt).join(' ')),
  697. this.createVertexTemplateEntry(s + 'weheartit;fillColor=#FF4577;strokeColor=none',
  698. w * 411, h * 348, '', 'Weheartit', null, null, this.getTagsForStencil(gn, 'weheartit', dt).join(' ')),
  699. this.createVertexTemplateEntry(s + 'whatsapp;fillColor=#00E676;strokeColor=#dddddd',
  700. w * 372, h * 374, '', 'Whatsapp', null, null, this.getTagsForStencil(gn, 'whatsapp', dt).join(' ')),
  701. this.createVertexTemplateEntry(s + 'wix;strokeColor=#dddddd',
  702. w * 370, h * 308, '', 'Wix', null, null, this.getTagsForStencil(gn, 'wix', dt).join(' ')),
  703. this.createVertexTemplateEntry(s + 'wordpress;fillColor=#00A7DA;strokeColor=none',
  704. w * 333, h * 327, '', 'Wordpress', null, null, this.getTagsForStencil(gn, 'wordpress', dt).join(' ')),
  705. this.createVertexTemplateEntry(s + 'wordpress_2;fillColor=#00A7DA;strokeColor=none',
  706. w * 344, h * 344, '', 'Wordpress', null, null, this.getTagsForStencil(gn, 'wordpress', dt).join(' ')),
  707. this.createVertexTemplateEntry(s + 'xanga;fillColor=#000000;strokeColor=none',
  708. w * 350, h * 190, '', 'Xanga', null, null, this.getTagsForStencil(gn, 'xanga', dt).join(' ')),
  709. this.createVertexTemplateEntry(s + 'xerpi;fillColor=#7F719B;gradientColor=#32264B;strokeColor=none',
  710. w * 351, h * 328, '', 'Xerpi', null, null, this.getTagsForStencil(gn, 'xerpi', dt).join(' ')),
  711. this.createVertexTemplateEntry(s + 'xing',
  712. w * 325, h * 369, '', 'Xing', null, null, this.getTagsForStencil(gn, 'xing', dt).join(' ')),
  713. this.createVertexTemplateEntry(s + 'yahoo;fillColor=#65106E;strokeColor=none',
  714. w * 372, h * 218, '', 'Yahoo', null, null, this.getTagsForStencil(gn, 'yahoo', dt).join(' ')),
  715. this.createVertexTemplateEntry(s + 'yahoo_2;fillColor=#65106E;strokeColor=none',
  716. w * 400, h * 233, '', 'Yahoo', null, null, this.getTagsForStencil(gn, 'yahoo', dt).join(' ')),
  717. this.createVertexTemplateEntry(s + 'yammer;fillColor=#0093BE;strokeColor=none',
  718. w * 348, h * 298, '', 'Yammer', null, null, this.getTagsForStencil(gn, 'yammer', dt).join(' ')),
  719. this.createVertexTemplateEntry(s + 'yandex',
  720. w * 159, h * 332, '', 'Yandex', null, null, this.getTagsForStencil(gn, 'yandex', dt).join(' ')),
  721. this.createVertexTemplateEntry(s + 'yelp;fillColor=#C41200;strokeColor=none',
  722. w * 317, h * 415, '', 'Yelp', null, null, this.getTagsForStencil(gn, 'yelp', dt).join(' ')),
  723. this.createVertexTemplateEntry(s + 'yoolink',
  724. w * 396, h * 396, '', 'Yoolink', null, null, this.getTagsForStencil(gn, 'yoolink', dt).join(' ')),
  725. this.createVertexTemplateEntry(s + 'youmob',
  726. w * 380, h * 381, '', 'Youmob', null, null, this.getTagsForStencil(gn, 'youmob', dt).join(' ')),
  727. this.createVertexTemplateEntry(s + 'youtube;fillColor=#FF2626;gradientColor=#B5171F',
  728. w * 786, h * 329, '', 'Youtube', null, null, this.getTagsForStencil(gn, 'youtube', dt).join(' ')),
  729. this.createVertexTemplateEntry(s + 'youtube_2;fillColor=#FF2626;gradientColor=#B5171F',
  730. w * 232, h * 163, '', 'Youtube', null, null, this.getTagsForStencil(gn, 'youtube', dt).join(' '))
  731. ]);
  732. };
  733. })();