Problem with weather icons

I am a new beginner node-red user. I installed it on Windows 10 Home. I'm trying to use weather icons. I installed weather-icons-master, set "httpAdminRoot: '/ admin'," and "httpStatic: 'C: \ Users \ MY_ACCOUNT \. Node-red \ public \'," in settings.js file . Unfortunately, only the WEATHER UNDERGROUND (wi-wu *) icons are displayed to me. I don't know where I made the mistake. Below flow:

[{"id":"10832faa.d3077","type":"ui_template","z":"d0071538.bb23f8","group":"3face00c.b0ffc","name":"Weather Icon Image","order":1,"width":"2","height":"2","format":"<div style=\"display: flex;height: 100%;justify-content: center;align-items: center;\">\n<i class=\"fa-4x wi {{msg.payload}}\"></i>\n</div>","storeOutMessages":false,"fwdInMessages":true,"templateScope":"local","x":560,"y":1960,"wires":[[]]},{"id":"b1fe8da3.15ab8","type":"ui_text","z":"d0071538.bb23f8","group":"3face00c.b0ffc","order":0,"width":"6","height":"1","name":"Weather Icon Name","label":"Current icon:","format":"{{msg.payload}}","layout":"row-center","x":550,"y":2000,"wires":[]},{"id":"d2376eda.54ede","type":"inject","z":"d0071538.bb23f8","name":"","topic":"","payload":"","payloadType":"str","repeat":"","crontab":"","once":true,"onceDelay":"","x":110,"y":1880,"wires":[["a8898be.e604778","c50840ad.7d101"]]},{"id":"86479af2.461058","type":"xml","z":"d0071538.bb23f8","name":"","property":"payload","attr":"","chr":"","x":430,"y":1880,"wires":[["8d30f004.72376"]]},{"id":"a8898be.e604778","type":"http request","z":"d0071538.bb23f8","name":"","method":"GET","ret":"txt","paytoqs":false,"url":"http:/skom.pl/weather-icons.xml","tls":"","persist":false,"proxy":"","authType":"","x":270,"y":1880,"wires":[["86479af2.461058"]]},{"id":"8d30f004.72376","type":"function","z":"d0071538.bb23f8","name":"Array of Weather Icon names","func":"var weathericons = [];\nvar icon_name;\nfor( var i = 0; i < msg.payload.resources.string.length; i++ ) {\n    // Replace all of the \"wi_day_sunny\" with \"wi-day-sunny\"\n    // Except when the icon name should actually be wi-wu-nt_*\n    icon_name = msg.payload.resources.string[i].$.name.replace(/_/g,\"-\");\n    icon_name = icon_name.replace(/nt-/g,\"nt_\");\n    weathericons.push(icon_name);\n\n}\n\nmsg.payload = weathericons;\n// flow.set(\"weathericons\", weathericons );\n\nreturn msg;","outputs":1,"noerr":0,"x":640,"y":1880,"wires":[["18942df4.e1bf62","8b3d2886.530498"]]},{"id":"5f7097b2.320948","type":"ui_slider","z":"d0071538.bb23f8","name":"","label":"slider","tooltip":"","group":"3face00c.b0ffc","order":0,"width":0,"height":0,"passthru":true,"outs":"all","topic":"","min":0,"max":"605","step":1,"x":110,"y":1960,"wires":[["d146417c.62631"]]},{"id":"d146417c.62631","type":"function","z":"d0071538.bb23f8","name":"Look up Weather Icon","func":"var weathericons = flow.get( \"weathericons\");\nmsg.payload = weathericons[msg.payload];\nreturn msg;","outputs":1,"noerr":0,"x":300,"y":1960,"wires":[["10832faa.d3077","b1fe8da3.15ab8","302f35c5.ae474a"]]},{"id":"18942df4.e1bf62","type":"change","z":"d0071538.bb23f8","name":"","rules":[{"t":"set","p":"weathericons","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":900,"y":1880,"wires":[[]]},{"id":"c50840ad.7d101","type":"ui_template","z":"d0071538.bb23f8","group":"3face00c.b0ffc","name":"Load CSS","order":0,"width":"0","height":"0","format":"<link rel=\"stylesheet\" href=\"/weather-icons/mycss/weather-icons.min.css\">\n<style>\n    .nr-dashboard-theme-dark ui-card-panel {\n \tbackground-color: #222;\n \toutline: 1px solid #cccccc;\n \t  }\n</style>","storeOutMessages":false,"fwdInMessages":false,"templateScope":"local","x":270,"y":1840,"wires":[[]]},{"id":"8b3d2886.530498","type":"debug","z":"d0071538.bb23f8","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":870,"y":1840,"wires":[]},{"id":"302f35c5.ae474a","type":"debug","z":"d0071538.bb23f8","name":"","active":true,"tosidebar":true,"console":false,"complete":"payload","x":530,"y":2040,"wires":[]},{"id":"3face00c.b0ffc","type":"ui_group","z":"","name":"Weather Icons","tab":"5d556766.a075a8","disp":true,"width":"8","collapse":false},{"id":"5d556766.a075a8","type":"ui_tab","z":"","name":"Weather","icon":"dashboard"}]

screen:
Screenshots of the working flow