Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	Delete backup
Browse files
    	
        backup
    DELETED
    
    | 
         @@ -1,1391 +0,0 @@ 
     | 
|
| 1 | 
         
            -
            <!DOCTYPE html>
         
     | 
| 2 | 
         
            -
            <html lang="en">
         
     | 
| 3 | 
         
            -
            <head>
         
     | 
| 4 | 
         
            -
              <meta charset="UTF-8">
         
     | 
| 5 | 
         
            -
              <meta name="viewport" content="width=device-width,initial-scale=1.0">
         
     | 
| 6 | 
         
            -
              <title>Timeline Template</title>
         
     | 
| 7 | 
         
            -
              <style>
         
     | 
| 8 | 
         
            -
                body {
         
     | 
| 9 | 
         
            -
                  font-family: 'Arial', sans-serif;
         
     | 
| 10 | 
         
            -
                  background-color: #f4f4f9;
         
     | 
| 11 | 
         
            -
                  color: #333;
         
     | 
| 12 | 
         
            -
                  margin: 0;
         
     | 
| 13 | 
         
            -
                  padding: 0;
         
     | 
| 14 | 
         
            -
                }
         
     | 
| 15 | 
         
            -
             
     | 
| 16 | 
         
            -
                .timeline-container {
         
     | 
| 17 | 
         
            -
                  width: 100%;
         
     | 
| 18 | 
         
            -
                  overflow-x: hidden;
         
     | 
| 19 | 
         
            -
                  overflow-y: hidden;
         
     | 
| 20 | 
         
            -
                  padding: 20px;
         
     | 
| 21 | 
         
            -
                  box-sizing: border-box;
         
     | 
| 22 | 
         
            -
                }
         
     | 
| 23 | 
         
            -
             
     | 
| 24 | 
         
            -
                .timeline {
         
     | 
| 25 | 
         
            -
                  display: grid;
         
     | 
| 26 | 
         
            -
                  grid-template-columns: repeat(4, 1fr);
         
     | 
| 27 | 
         
            -
                  gap: 20px;
         
     | 
| 28 | 
         
            -
                  padding-bottom: 10px;
         
     | 
| 29 | 
         
            -
                }
         
     | 
| 30 | 
         
            -
             
     | 
| 31 | 
         
            -
                .event {
         
     | 
| 32 | 
         
            -
                  background: white;
         
     | 
| 33 | 
         
            -
                  border-radius: 8px;
         
     | 
| 34 | 
         
            -
                  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
         
     | 
| 35 | 
         
            -
                  padding: 15px;
         
     | 
| 36 | 
         
            -
                  transition: all 0.3s ease;
         
     | 
| 37 | 
         
            -
                }
         
     | 
| 38 | 
         
            -
             
     | 
| 39 | 
         
            -
                /* BEST ํ๊ทธ๊ฐ ์๋ ์นด๋ */
         
     | 
| 40 | 
         
            -
                .event:has(.tag.best) {
         
     | 
| 41 | 
         
            -
                  background-color: #fff8e1;
         
     | 
| 42 | 
         
            -
                  border-left: 4px solid #ffd700;
         
     | 
| 43 | 
         
            -
                }
         
     | 
| 44 | 
         
            -
                /* NEW ํ๊ทธ๊ฐ ์๋ ์นด๋ */
         
     | 
| 45 | 
         
            -
                .event:has(.tag.new) {
         
     | 
| 46 | 
         
            -
                  background-color: #fce4ec;
         
     | 
| 47 | 
         
            -
                  border-left: 4px solid #ff4081;
         
     | 
| 48 | 
         
            -
                }
         
     | 
| 49 | 
         
            -
                /* POPULAR ํ๊ทธ๊ฐ ์๋ ์นด๋ */
         
     | 
| 50 | 
         
            -
                .event:has(.tag.popular) {
         
     | 
| 51 | 
         
            -
                  background-color: #fff3e0; /* ์ฐํ ์ฃผํฉ */
         
     | 
| 52 | 
         
            -
                  border-left: 4px solid #ffa500;
         
     | 
| 53 | 
         
            -
                }
         
     | 
| 54 | 
         
            -
             
     | 
| 55 | 
         
            -
                .event:hover {
         
     | 
| 56 | 
         
            -
                  transform: translateY(-5px);
         
     | 
| 57 | 
         
            -
                  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         
     | 
| 58 | 
         
            -
                }
         
     | 
| 59 | 
         
            -
             
     | 
| 60 | 
         
            -
                .event h4 {
         
     | 
| 61 | 
         
            -
                  margin: 0;
         
     | 
| 62 | 
         
            -
                  font-size: 14px;
         
     | 
| 63 | 
         
            -
                }
         
     | 
| 64 | 
         
            -
             
     | 
| 65 | 
         
            -
                .event p {
         
     | 
| 66 | 
         
            -
                  margin: 5px 0 0;
         
     | 
| 67 | 
         
            -
                  font-size: 12px;
         
     | 
| 68 | 
         
            -
                  color: #666;
         
     | 
| 69 | 
         
            -
                }
         
     | 
| 70 | 
         
            -
             
     | 
| 71 | 
         
            -
                .tag {
         
     | 
| 72 | 
         
            -
                  display: inline-block;
         
     | 
| 73 | 
         
            -
                  padding: 2px 5px;
         
     | 
| 74 | 
         
            -
                  font-size: 10px;
         
     | 
| 75 | 
         
            -
                  border-radius: 3px;
         
     | 
| 76 | 
         
            -
                  margin-top: 5px;
         
     | 
| 77 | 
         
            -
                  margin-right: 3px;
         
     | 
| 78 | 
         
            -
                }
         
     | 
| 79 | 
         
            -
             
     | 
| 80 | 
         
            -
                .tag.best {
         
     | 
| 81 | 
         
            -
                  background-color: #FFD700;
         
     | 
| 82 | 
         
            -
                  color: black;
         
     | 
| 83 | 
         
            -
                }
         
     | 
| 84 | 
         
            -
                .tag.new {
         
     | 
| 85 | 
         
            -
                  background-color: #FF4081;
         
     | 
| 86 | 
         
            -
                  color: white;
         
     | 
| 87 | 
         
            -
                }
         
     | 
| 88 | 
         
            -
                .tag.popular {
         
     | 
| 89 | 
         
            -
                  background-color: #ffa500;
         
     | 
| 90 | 
         
            -
                  color: black;
         
     | 
| 91 | 
         
            -
                }
         
     | 
| 92 | 
         
            -
             
     | 
| 93 | 
         
            -
                /* Existing tag styles */
         
     | 
| 94 | 
         
            -
                .tag.text { background-color: #9c27b0; color: white; }
         
     | 
| 95 | 
         
            -
                .tag.audio { background-color: #ff9800; color: white; }
         
     | 
| 96 | 
         
            -
                .tag.vision { background-color: #03a9f4; color: white; }
         
     | 
| 97 | 
         
            -
                .tag.multimodal { background-color: #795548; color: white; }
         
     | 
| 98 | 
         
            -
                .tag.video { background-color: #E91E63; color: white; }
         
     | 
| 99 | 
         
            -
                .tag.image { background-color: #00BCD4; color: white; }
         
     | 
| 100 | 
         
            -
                .tag.utility { background-color: #9E9E9E; color: white; }
         
     | 
| 101 | 
         
            -
                .tag.predict { background-color: #673AB7; color: white; }
         
     | 
| 102 | 
         
            -
                .tag.game { background-color: #4CAF50; color: white; }
         
     | 
| 103 | 
         
            -
                .tag.education { background-color: #3F51B5; color: white; }
         
     | 
| 104 | 
         
            -
                .tag.announcement { background-color: #607d8b; color: white; }
         
     | 
| 105 | 
         
            -
             
     | 
| 106 | 
         
            -
                /* New Productivity Tag Styles */
         
     | 
| 107 | 
         
            -
                .tag.productivity {
         
     | 
| 108 | 
         
            -
                  background-color: #009688; /* Teal color */
         
     | 
| 109 | 
         
            -
                  color: white;
         
     | 
| 110 | 
         
            -
                }
         
     | 
| 111 | 
         
            -
                .tag.Productivity { /* Ensure case-insensitive matching */
         
     | 
| 112 | 
         
            -
                  background-color: #009688; /* Teal color */
         
     | 
| 113 | 
         
            -
                  color: white;
         
     | 
| 114 | 
         
            -
                }
         
     | 
| 115 | 
         
            -
             
     | 
| 116 | 
         
            -
                .tag.text { background-color: #9c27b0; color: white; }
         
     | 
| 117 | 
         
            -
                .tag.audio { background-color: #ff9800; color: white; }
         
     | 
| 118 | 
         
            -
                .tag.vision { background-color: #03a9f4; color: white; }
         
     | 
| 119 | 
         
            -
                .tag.multimodal { background-color: #795548; color: white; }
         
     | 
| 120 | 
         
            -
                .tag.video { background-color: #E91E63; color: white; }
         
     | 
| 121 | 
         
            -
                .tag.image { background-color: #00BCD4; color: white; }
         
     | 
| 122 | 
         
            -
                .tag.utility { background-color: #9E9E9E; color: white; }
         
     | 
| 123 | 
         
            -
                .tag.predict { background-color: #673AB7; color: white; }
         
     | 
| 124 | 
         
            -
                .tag.game { background-color: #4CAF50; color: white; }
         
     | 
| 125 | 
         
            -
                .tag.education { background-color: #3F51B5; color: white; }
         
     | 
| 126 | 
         
            -
                .tag.announcement { background-color: #607d8b; color: white; }
         
     | 
| 127 | 
         
            -
             
     | 
| 128 | 
         
            -
                .event p a {
         
     | 
| 129 | 
         
            -
                  color: #4caf50;
         
     | 
| 130 | 
         
            -
                  text-decoration: none;
         
     | 
| 131 | 
         
            -
                }
         
     | 
| 132 | 
         
            -
             
     | 
| 133 | 
         
            -
                .event p a:hover {
         
     | 
| 134 | 
         
            -
                  text-decoration: underline;
         
     | 
| 135 | 
         
            -
                }
         
     | 
| 136 | 
         
            -
             
     | 
| 137 | 
         
            -
                .github-link {
         
     | 
| 138 | 
         
            -
                  text-align: center;
         
     | 
| 139 | 
         
            -
                  padding: 8px;
         
     | 
| 140 | 
         
            -
                  background-color: #24292e;
         
     | 
| 141 | 
         
            -
                  color: white;
         
     | 
| 142 | 
         
            -
                  font-size: 14px;
         
     | 
| 143 | 
         
            -
                }
         
     | 
| 144 | 
         
            -
                .github-link a {
         
     | 
| 145 | 
         
            -
                  color: white;
         
     | 
| 146 | 
         
            -
                  text-decoration: none;
         
     | 
| 147 | 
         
            -
                }
         
     | 
| 148 | 
         
            -
                .github-link a:hover {
         
     | 
| 149 | 
         
            -
                  text-decoration: underline;
         
     | 
| 150 | 
         
            -
                }
         
     | 
| 151 | 
         
            -
             
     | 
| 152 | 
         
            -
                .filter-group {
         
     | 
| 153 | 
         
            -
                  display: flex;
         
     | 
| 154 | 
         
            -
                  flex-direction: column;
         
     | 
| 155 | 
         
            -
                  align-items: center;
         
     | 
| 156 | 
         
            -
                  gap: 15px;
         
     | 
| 157 | 
         
            -
                  padding: 20px 0;
         
     | 
| 158 | 
         
            -
                  background-color: white;
         
     | 
| 159 | 
         
            -
                  border-bottom: 1px solid #eee;
         
     | 
| 160 | 
         
            -
                }
         
     | 
| 161 | 
         
            -
             
     | 
| 162 | 
         
            -
                .toggle-container {
         
     | 
| 163 | 
         
            -
                  display: flex;
         
     | 
| 164 | 
         
            -
                  flex-wrap: wrap;
         
     | 
| 165 | 
         
            -
                  gap: 8px;
         
     | 
| 166 | 
         
            -
                  justify-content: center;
         
     | 
| 167 | 
         
            -
                  max-width: 900px;
         
     | 
| 168 | 
         
            -
                  padding: 0 20px;
         
     | 
| 169 | 
         
            -
                }
         
     | 
| 170 | 
         
            -
             
     | 
| 171 | 
         
            -
                .toggle-button {
         
     | 
| 172 | 
         
            -
                  padding: 6px 12px;
         
     | 
| 173 | 
         
            -
                  border: 1px solid #ddd;
         
     | 
| 174 | 
         
            -
                  border-radius: 15px;
         
     | 
| 175 | 
         
            -
                  background-color: white;
         
     | 
| 176 | 
         
            -
                  font-size: 13px;
         
     | 
| 177 | 
         
            -
                  cursor: pointer;
         
     | 
| 178 | 
         
            -
                  transition: all 0.2s ease;
         
     | 
| 179 | 
         
            -
                  min-width: 80px;
         
     | 
| 180 | 
         
            -
                  text-align: center;
         
     | 
| 181 | 
         
            -
                }
         
     | 
| 182 | 
         
            -
                .toggle-button.active {
         
     | 
| 183 | 
         
            -
                  background-color: #2196f3;
         
     | 
| 184 | 
         
            -
                  border-color: #2196f3;
         
     | 
| 185 | 
         
            -
                  color: white;
         
     | 
| 186 | 
         
            -
                }
         
     | 
| 187 | 
         
            -
             
     | 
| 188 | 
         
            -
                /* Existing toggle button styles */
         
     | 
| 189 | 
         
            -
                .toggle-button[data-filter="best"] { background-color: #FFD700; color: black; }
         
     | 
| 190 | 
         
            -
                .toggle-button[data-filter="new"] { background-color: #FF4081; color: white; }
         
     | 
| 191 | 
         
            -
                .toggle-button[data-filter="popular"] { background-color: #ffa500; color: black; }
         
     | 
| 192 | 
         
            -
                .toggle-button[data-filter="text"] { background-color: #9c27b0; color: white; }
         
     | 
| 193 | 
         
            -
                .toggle-button[data-filter="audio"] { background-color: #ff9800; color: white; }
         
     | 
| 194 | 
         
            -
                .toggle-button[data-filter="vision"] { background-color: #03a9f4; color: white; }
         
     | 
| 195 | 
         
            -
                .toggle-button[data-filter="multimodal"] { background-color: #795548; color: white; }
         
     | 
| 196 | 
         
            -
                .toggle-button[data-filter="video"] { background-color: #E91E63; color: white; }
         
     | 
| 197 | 
         
            -
                .toggle-button[data-filter="image"] { background-color: #00BCD4; color: white; }
         
     | 
| 198 | 
         
            -
                .toggle-button[data-filter="utility"] { background-color: #9E9E9E; color: white; }
         
     | 
| 199 | 
         
            -
                .toggle-button[data-filter="predict"] { background-color: #673AB7; color: white; }
         
     | 
| 200 | 
         
            -
                .toggle-button[data-filter="game"] { background-color: #4CAF50; color: white; }
         
     | 
| 201 | 
         
            -
                .toggle-button[data-filter="education"] { background-color: #3F51B5; color: white; }
         
     | 
| 202 | 
         
            -
             
     | 
| 203 | 
         
            -
                /* New Productivity Toggle Button Style */
         
     | 
| 204 | 
         
            -
                .toggle-button[data-filter="productivity"] { background-color: #009688; color: white; }
         
     | 
| 205 | 
         
            -
                .toggle-button[data-filter="productivity"].active { background-color: #00796b; border-color: #00796b; }
         
     | 
| 206 | 
         
            -
             
     | 
| 207 | 
         
            -
                .counter-container {
         
     | 
| 208 | 
         
            -
                  text-align: center;
         
     | 
| 209 | 
         
            -
                  padding: 15px;
         
     | 
| 210 | 
         
            -
                  font-size: 14px;
         
     | 
| 211 | 
         
            -
                  color: #666;
         
     | 
| 212 | 
         
            -
                  background-color: #f8f9fa;
         
     | 
| 213 | 
         
            -
                }
         
     | 
| 214 | 
         
            -
             
     | 
| 215 | 
         
            -
                .counter-item span {
         
     | 
| 216 | 
         
            -
                  font-weight: bold;
         
     | 
| 217 | 
         
            -
                  color: #2196f3;
         
     | 
| 218 | 
         
            -
                }
         
     | 
| 219 | 
         
            -
             
     | 
| 220 | 
         
            -
                .counter-divider {
         
     | 
| 221 | 
         
            -
                  margin: 0 10px;
         
     | 
| 222 | 
         
            -
                  color: #ddd;
         
     | 
| 223 | 
         
            -
                }
         
     | 
| 224 | 
         
            -
             
     | 
| 225 | 
         
            -
                .section-title {
         
     | 
| 226 | 
         
            -
                  text-align: center;
         
     | 
| 227 | 
         
            -
                  padding: 15px;
         
     | 
| 228 | 
         
            -
                  color: white;
         
     | 
| 229 | 
         
            -
                  background-color: #6200ea;
         
     | 
| 230 | 
         
            -
                  margin: 0;
         
     | 
| 231 | 
         
            -
                  font-size: 18px;
         
     | 
| 232 | 
         
            -
                }
         
     | 
| 233 | 
         
            -
              </style>
         
     | 
| 234 | 
         
            -
            </head>
         
     | 
| 235 | 
         
            -
            <body>
         
     | 
| 236 | 
         
            -
              <div class="github-link">
         
     | 
| 237 | 
         
            -
                <a href="https://discord.gg/openfreeai" target="_blank">Community</a>
         
     | 
| 238 | 
         
            -
              </div>
         
     | 
| 239 | 
         
            -
              
         
     | 
| 240 | 
         
            -
              <div class="filter-group">
         
     | 
| 241 | 
         
            -
                <div class="toggle-container">
         
     | 
| 242 | 
         
            -
                  <button class="toggle-button active" data-filter="all">All Models</button>
         
     | 
| 243 | 
         
            -
                  <button class="toggle-button" data-filter="best">BEST</button>
         
     | 
| 244 | 
         
            -
                  <button class="toggle-button" data-filter="new">NEW</button>
         
     | 
| 245 | 
         
            -
                  <button class="toggle-button" data-filter="popular">POPULAR</button>
         
     | 
| 246 | 
         
            -
                </div>
         
     | 
| 247 | 
         
            -
                <div class="category-group">
         
     | 
| 248 | 
         
            -
                  <button class="toggle-button" data-filter="text">Text</button>
         
     | 
| 249 | 
         
            -
                  <button class="toggle-button" data-filter="audio">Audio</button>
         
     | 
| 250 | 
         
            -
                  <button class="toggle-button" data-filter="vision">Vision</button>
         
     | 
| 251 | 
         
            -
                  <button class="toggle-button" data-filter="multimodal">Multimodal</button>
         
     | 
| 252 | 
         
            -
                  <button class="toggle-button" data-filter="video">Video</button>
         
     | 
| 253 | 
         
            -
                  <button class="toggle-button" data-filter="image">Image</button>
         
     | 
| 254 | 
         
            -
                  <button class="toggle-button" data-filter="utility">Utility</button>
         
     | 
| 255 | 
         
            -
                  <button class="toggle-button" data-filter="predict">Predict</button>
         
     | 
| 256 | 
         
            -
                  <button class="toggle-button" data-filter="game">Game</button>
         
     | 
| 257 | 
         
            -
                  <button class="toggle-button" data-filter="education">Education</button>
         
     | 
| 258 | 
         
            -
                  
         
     | 
| 259 | 
         
            -
                  <!-- New Productivity Toggle Button -->
         
     | 
| 260 | 
         
            -
                  <button class="toggle-button" data-filter="productivity">Productivity</button>
         
     | 
| 261 | 
         
            -
                </div>
         
     | 
| 262 | 
         
            -
              </div>
         
     | 
| 263 | 
         
            -
              
         
     | 
| 264 | 
         
            -
              <div class="counter-container">
         
     | 
| 265 | 
         
            -
                <span class="counter-item">
         
     | 
| 266 | 
         
            -
                  <span id="best-count">0</span> BEST
         
     | 
| 267 | 
         
            -
                </span>
         
     | 
| 268 | 
         
            -
                <span class="counter-divider">ยท</span>
         
     | 
| 269 | 
         
            -
                <span class="counter-item">
         
     | 
| 270 | 
         
            -
                  <span id="new-count">0</span> NEW
         
     | 
| 271 | 
         
            -
                </span>
         
     | 
| 272 | 
         
            -
                <span class="counter-divider">ยท</span>
         
     | 
| 273 | 
         
            -
                <span class="counter-item">
         
     | 
| 274 | 
         
            -
                  <span id="popular-count">0</span> POPULAR
         
     | 
| 275 | 
         
            -
                </span>
         
     | 
| 276 | 
         
            -
              </div>
         
     | 
| 277 | 
         
            -
              
         
     | 
| 278 | 
         
            -
              <h2 class="section-title">Latest Models</h2>
         
     | 
| 279 | 
         
            -
             
     | 
| 280 | 
         
            -
              <div class="timeline-container">
         
     | 
| 281 | 
         
            -
                <div class="timeline">
         
     | 
| 282 | 
         
            -
             
     | 
| 283 | 
         
            -
                  <!-- 1) aiqcamp/diagram -->
         
     | 
| 284 | 
         
            -
                  <div class="event">
         
     | 
| 285 | 
         
            -
                    <h4>aiqcamp/diagram</h4>
         
     | 
| 286 | 
         
            -
                    <p>FLUX DIAGRAM GENERATOR(<a href="https://huggingface.co/spaces/aiqcamp/diagram" target="_blank">link</a>).</p>
         
     | 
| 287 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 288 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 289 | 
         
            -
                  </div>
         
     | 
| 290 | 
         
            -
                  
         
     | 
| 291 | 
         
            -
                  <!-- 2) openfree/korea-president-yoon -->
         
     | 
| 292 | 
         
            -
                  <div class="event">
         
     | 
| 293 | 
         
            -
                    <h4>openfree/korea-president-yoon</h4>
         
     | 
| 294 | 
         
            -
                    <p>LoRA IMAGE GENERATOR(<a href="https://huggingface.co/spaces/openfree/korea-president-yoon" target="_blank">link</a>).</p>
         
     | 
| 295 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 296 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 297 | 
         
            -
             
     | 
| 298 | 
         
            -
                  </div>
         
     | 
| 299 | 
         
            -
                  
         
     | 
| 300 | 
         
            -
                  <!-- 3) VIDraft/PaperImpact -->
         
     | 
| 301 | 
         
            -
                  <div class="event">
         
     | 
| 302 | 
         
            -
                    <h4>VIDraft/PaperImpact</h4>
         
     | 
| 303 | 
         
            -
                    <p>Paper Predict(<a href="https://huggingface.co/spaces/VIDraft/PaperImpact" target="_blank">link</a>).</p>
         
     | 
| 304 | 
         
            -
                    <span class="tag Predict">Predict</span>
         
     | 
| 305 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 306 | 
         
            -
                  </div>
         
     | 
| 307 | 
         
            -
                  
         
     | 
| 308 | 
         
            -
                  <!-- 4) openfree/CryptoVision -->
         
     | 
| 309 | 
         
            -
                  <div class="event">
         
     | 
| 310 | 
         
            -
                    <h4>openfree/CryptoVision</h4>
         
     | 
| 311 | 
         
            -
                    <p>Crypto Price Predict(<a href="https://huggingface.co/spaces/openfree/CryptoVision" target="_blank">link</a>).</p>
         
     | 
| 312 | 
         
            -
                    <span class="tag predict">Predict</span>
         
     | 
| 313 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 314 | 
         
            -
             
     | 
| 315 | 
         
            -
                  </div>
         
     | 
| 316 | 
         
            -
                  
         
     | 
| 317 | 
         
            -
                  <!-- 5) gunship999/Gunship-3D-FPS -->
         
     | 
| 318 | 
         
            -
                  <div class="event">
         
     | 
| 319 | 
         
            -
                    <h4>gunship999/Gunship-3D-FPS</h4>
         
     | 
| 320 | 
         
            -
                    <p>3D FPS(<a href="https://huggingface.co/spaces/gunship999/Gunship-3D-FPS" target="_blank">link</a>).</p>
         
     | 
| 321 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 322 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 323 | 
         
            -
                  </div>
         
     | 
| 324 | 
         
            -
                  
         
     | 
| 325 | 
         
            -
                  <!-- 6) fantos/VoiceClone -->
         
     | 
| 326 | 
         
            -
                  <div class="event">
         
     | 
| 327 | 
         
            -
                    <h4>fantos/VoiceClone</h4>
         
     | 
| 328 | 
         
            -
                    <p>Voice Clone & TTS(<a href="https://huggingface.co/spaces/fantos/VoiceClone" target="_blank">link</a>).</p>
         
     | 
| 329 | 
         
            -
                    <span class="tag audio">Audio</span>
         
     | 
| 330 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 331 | 
         
            -
             
     | 
| 332 | 
         
            -
                  </div>
         
     | 
| 333 | 
         
            -
                  
         
     | 
| 334 | 
         
            -
                  <!-- 7) VIDraft/ChemGenesis -->
         
     | 
| 335 | 
         
            -
                  <div class="event">
         
     | 
| 336 | 
         
            -
                    <h4>VIDraft/ChemGenesis</h4>
         
     | 
| 337 | 
         
            -
                    <p>Chemical Predict(<a href="https://huggingface.co/spaces/VIDraft/ChemGenesis" target="_blank">link</a>).</p>
         
     | 
| 338 | 
         
            -
                    <span class="tag Vision">Vision</span>
         
     | 
| 339 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 340 | 
         
            -
                  </div>
         
     | 
| 341 | 
         
            -
                  
         
     | 
| 342 | 
         
            -
                  <!-- 8) seawolf2357/ocrlatex -->
         
     | 
| 343 | 
         
            -
                  <div class="event">
         
     | 
| 344 | 
         
            -
                    <h4>seawolf2357/ocrlatex</h4>
         
     | 
| 345 | 
         
            -
                    <p>OCR LATEX VIEW(<a href="https://huggingface.co/spaces/seawolf2357/ocrlatex" target="_blank">link</a>).</p>
         
     | 
| 346 | 
         
            -
                    <span class="tag Vision">Vision</span>
         
     | 
| 347 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 348 | 
         
            -
             
     | 
| 349 | 
         
            -
                  </div>
         
     | 
| 350 | 
         
            -
                  
         
     | 
| 351 | 
         
            -
                  <!-- 9) seawolf2357/img2vid -->
         
     | 
| 352 | 
         
            -
                  <div class="event">
         
     | 
| 353 | 
         
            -
                    <h4>seawolf2357/img2vid</h4>
         
     | 
| 354 | 
         
            -
                    <p>Image to Video Generation (<a href="https://huggingface.co/spaces/seawolf2357/img2vid" target="_blank">link</a>).</p>
         
     | 
| 355 | 
         
            -
                    <span class="tag video">Video</span>
         
     | 
| 356 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 357 | 
         
            -
                  </div>
         
     | 
| 358 | 
         
            -
                  
         
     | 
| 359 | 
         
            -
                  <!-- 10) seawolf2357/sd-prompt-gen -->
         
     | 
| 360 | 
         
            -
                  <div class="event">
         
     | 
| 361 | 
         
            -
                    <h4>seawolf2357/sd-prompt-gen</h4>
         
     | 
| 362 | 
         
            -
                    <p>Image Prompt Generation(<a href="https://huggingface.co/spaces/seawolf2357/sd-prompt-gen" target="_blank">link</a>).</p>
         
     | 
| 363 | 
         
            -
                    <span class="tag Text">Text</span>
         
     | 
| 364 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 365 | 
         
            -
                  </div>
         
     | 
| 366 | 
         
            -
                  
         
     | 
| 367 | 
         
            -
                  <!-- 11) openfree/badassgi -->
         
     | 
| 368 | 
         
            -
                  <div class="event">
         
     | 
| 369 | 
         
            -
                    <h4>openfree/badassgi</h4>
         
     | 
| 370 | 
         
            -
                    <p>transcribe & translate(<a href="https://huggingface.co/spaces/openfree/badassgi" target="_blank">link</a>).</p>
         
     | 
| 371 | 
         
            -
                    <span class="tag Multimodal">Multimodal</span>
         
     | 
| 372 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 373 | 
         
            -
             
     | 
| 374 | 
         
            -
                  </div>
         
     | 
| 375 | 
         
            -
                  
         
     | 
| 376 | 
         
            -
                  <!-- 12) openfree/tarotcard -->
         
     | 
| 377 | 
         
            -
                  <div class="event">
         
     | 
| 378 | 
         
            -
                    <h4>openfree/tarotcard</h4>
         
     | 
| 379 | 
         
            -
                    <p>Tarot Card Fotune(<a href="https://huggingface.co/spaces/openfree/tarotcard" target="_blank">link</a>).</p>
         
     | 
| 380 | 
         
            -
                    <span class="tag Utility">Utility</span>
         
     | 
| 381 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 382 | 
         
            -
             
     | 
| 383 | 
         
            -
                  </div>
         
     | 
| 384 | 
         
            -
                  
         
     | 
| 385 | 
         
            -
                  <!-- 13) openfree/drqxab -->
         
     | 
| 386 | 
         
            -
                  <div class="event">
         
     | 
| 387 | 
         
            -
                    <h4>openfree/drqxab</h4>
         
     | 
| 388 | 
         
            -
                    <p>3D Simulation(<a href="https://huggingface.co/spaces/openfree/drqxab" target="_blank">link</a>).</p>
         
     | 
| 389 | 
         
            -
                    <span class="tag Education">Education</span>
         
     | 
| 390 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 391 | 
         
            -
                  </div>
         
     | 
| 392 | 
         
            -
                  
         
     | 
| 393 | 
         
            -
                  <!-- 14) aiqcamp/Polaroid -->
         
     | 
| 394 | 
         
            -
                  <div class="event">
         
     | 
| 395 | 
         
            -
                    <h4>aiqcamp/Polaroid</h4>
         
     | 
| 396 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqcamp/Polaroid" target="_blank">link</a>).</p>
         
     | 
| 397 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 398 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 399 | 
         
            -
             
     | 
| 400 | 
         
            -
                  </div>
         
     | 
| 401 | 
         
            -
             
     | 
| 402 | 
         
            -
                  <!-- 15) ginigen/cartoon -->
         
     | 
| 403 | 
         
            -
                  <div class="event">
         
     | 
| 404 | 
         
            -
                    <h4>ginigen/cartoon</h4>
         
     | 
| 405 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/ginigen/cartoon" target="_blank">link</a>).</p>
         
     | 
| 406 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 407 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 408 | 
         
            -
             
     | 
| 409 | 
         
            -
             
     | 
| 410 | 
         
            -
                  </div>
         
     | 
| 411 | 
         
            -
                  
         
     | 
| 412 | 
         
            -
                  <!-- 16) ginigen/Book-Cover -->
         
     | 
| 413 | 
         
            -
                  <div class="event">
         
     | 
| 414 | 
         
            -
                    <h4>ginigen/Book-Cover</h4>
         
     | 
| 415 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/ginigen/Book-Cover" target="_blank">link</a>).</p>
         
     | 
| 416 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 417 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 418 | 
         
            -
             
     | 
| 419 | 
         
            -
                  </div>
         
     | 
| 420 | 
         
            -
             
     | 
| 421 | 
         
            -
                  
         
     | 
| 422 | 
         
            -
                  <!-- 17) aiqcamp/fash -->
         
     | 
| 423 | 
         
            -
                  <div class="event">
         
     | 
| 424 | 
         
            -
                    <h4>aiqcamp/fash</h4>
         
     | 
| 425 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/fash" target="_blank">link</a>).</p>
         
     | 
| 426 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 427 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 428 | 
         
            -
             
     | 
| 429 | 
         
            -
                  </div>
         
     | 
| 430 | 
         
            -
                  
         
     | 
| 431 | 
         
            -
                  <!-- 18) gunship999/Korea-Daily-News -->
         
     | 
| 432 | 
         
            -
                  <div class="event">
         
     | 
| 433 | 
         
            -
                    <h4>gunship999/Korea-Daily-News</h4>
         
     | 
| 434 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/gunship999/Korea-Daily-News" target="_blank">link</a>).</p>
         
     | 
| 435 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 436 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 437 | 
         
            -
             
     | 
| 438 | 
         
            -
                  </div>
         
     | 
| 439 | 
         
            -
                  
         
     | 
| 440 | 
         
            -
                  <!-- 19) kolaslab/Quantum -->
         
     | 
| 441 | 
         
            -
                  <div class="event">
         
     | 
| 442 | 
         
            -
                    <h4>kolaslab/Quantum</h4>
         
     | 
| 443 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Quantum" target="_blank">link</a>).</p>
         
     | 
| 444 | 
         
            -
                    <span class="tag education">Education</span>
         
     | 
| 445 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 446 | 
         
            -
                  </div>
         
     | 
| 447 | 
         
            -
                  
         
     | 
| 448 | 
         
            -
                  <!-- 20) openfree/webtoon -->
         
     | 
| 449 | 
         
            -
                  <div class="event">
         
     | 
| 450 | 
         
            -
                    <h4>openfree/webtoon</h4>
         
     | 
| 451 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/openfree/webtoon" target="_blank">link</a>).</p>
         
     | 
| 452 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 453 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 454 | 
         
            -
             
     | 
| 455 | 
         
            -
                  </div>
         
     | 
| 456 | 
         
            -
                  
         
     | 
| 457 | 
         
            -
                  <!-- 21) immunobiotech/ChicagoGallery -->
         
     | 
| 458 | 
         
            -
                  <div class="event">
         
     | 
| 459 | 
         
            -
                    <h4>immunobiotech/ChicagoGallery</h4>
         
     | 
| 460 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/immunobiotech/ChicagoGallery" target="_blank">link</a>).</p>
         
     | 
| 461 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 462 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 463 | 
         
            -
             
     | 
| 464 | 
         
            -
                  </div>
         
     | 
| 465 | 
         
            -
                  
         
     | 
| 466 | 
         
            -
                  <!-- 22) immunobiotech/MetropolitanMuseum -->
         
     | 
| 467 | 
         
            -
                  <div class="event">
         
     | 
| 468 | 
         
            -
                    <h4>immunobiotech/MetropolitanMuseum</h4>
         
     | 
| 469 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/immunobiotech/MetropolitanMuseum" target="_blank">link</a>).</p>
         
     | 
| 470 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 471 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 472 | 
         
            -
             
     | 
| 473 | 
         
            -
                  </div>
         
     | 
| 474 | 
         
            -
                  
         
     | 
| 475 | 
         
            -
                  <!-- 23) immunobiotech/opensky -->
         
     | 
| 476 | 
         
            -
                  <div class="event">
         
     | 
| 477 | 
         
            -
                    <h4>immunobiotech/opensky</h4>
         
     | 
| 478 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/immunobiotech/opensky" target="_blank">link</a>).</p>
         
     | 
| 479 | 
         
            -
                    <span class="tag Utility">Utility</span>
         
     | 
| 480 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 481 | 
         
            -
             
     | 
| 482 | 
         
            -
                  </div>
         
     | 
| 483 | 
         
            -
                  
         
     | 
| 484 | 
         
            -
                  <!-- 24) kolaslab/Audio-Visualizer -->
         
     | 
| 485 | 
         
            -
                  <div class="event">
         
     | 
| 486 | 
         
            -
                    <h4>kolaslab/Audio-Visualizer</h4>
         
     | 
| 487 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Audio-Visualizer" target="_blank">link</a>).</p>
         
     | 
| 488 | 
         
            -
                    <span class="tag audio">Audio</span>
         
     | 
| 489 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 490 | 
         
            -
                  </div>
         
     | 
| 491 | 
         
            -
                  
         
     | 
| 492 | 
         
            -
                  <!-- 25) kolaslab/Radio-Learning -->
         
     | 
| 493 | 
         
            -
                  <div class="event">
         
     | 
| 494 | 
         
            -
                    <h4>kolaslab/Radio-Learning</h4>
         
     | 
| 495 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Radio-Learning" target="_blank">link</a>).</p>
         
     | 
| 496 | 
         
            -
                    <span class="tag audio">Audio</span>
         
     | 
| 497 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 498 | 
         
            -
                  </div>
         
     | 
| 499 | 
         
            -
                  
         
     | 
| 500 | 
         
            -
                  <!-- 26) kolaslab/Future-Gallaxy -->
         
     | 
| 501 | 
         
            -
                  <div class="event">
         
     | 
| 502 | 
         
            -
                    <h4>kolaslab/Future-Gallaxy</h4>
         
     | 
| 503 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Future-Gallaxy" target="_blank">link</a>).</p>
         
     | 
| 504 | 
         
            -
                    <span class="tag Education">Education</span>
         
     | 
| 505 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 506 | 
         
            -
                  </div>
         
     | 
| 507 | 
         
            -
                  
         
     | 
| 508 | 
         
            -
                  <!-- 27) openfree/ProteinGenesis -->
         
     | 
| 509 | 
         
            -
                  <div class="event">
         
     | 
| 510 | 
         
            -
                    <h4>openfree/ProteinGenesis</h4>
         
     | 
| 511 | 
         
            -
                    <p>Protein generation & Predict(<a href="https://huggingface.co/spaces/openfree/ProteinGenesis" target="_blank">link</a>).</p>
         
     | 
| 512 | 
         
            -
                    <span class="tag Predict">Predict</span>
         
     | 
| 513 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 514 | 
         
            -
                  </div>
         
     | 
| 515 | 
         
            -
                  
         
     | 
| 516 | 
         
            -
                  <!-- 28) openfree/2025saju -->
         
     | 
| 517 | 
         
            -
                  <div class="event">
         
     | 
| 518 | 
         
            -
                    <h4>openfree/2025saju</h4>
         
     | 
| 519 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/openfree/2025saju" target="_blank">link</a>).</p>
         
     | 
| 520 | 
         
            -
                    <span class="tag Utility">Utility</span>
         
     | 
| 521 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 522 | 
         
            -
             
     | 
| 523 | 
         
            -
                  </div>
         
     | 
| 524 | 
         
            -
                  
         
     | 
| 525 | 
         
            -
                  <!-- 29) ginigen/Dokdo-membership -->
         
     | 
| 526 | 
         
            -
                  <div class="event">
         
     | 
| 527 | 
         
            -
                    <h4>ginigen/Dokdo-membership</h4>
         
     | 
| 528 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/ginigen/Dokdo-membership" target="_blank">link</a>).</p>
         
     | 
| 529 | 
         
            -
                    <span class="tag Video">Video</span>
         
     | 
| 530 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 531 | 
         
            -
                  </div>
         
     | 
| 532 | 
         
            -
                  
         
     | 
| 533 | 
         
            -
                  <!-- 30) VIDraft/eum -->
         
     | 
| 534 | 
         
            -
                  <div class="event">
         
     | 
| 535 | 
         
            -
                    <h4>VIDraft/eum</h4>
         
     | 
| 536 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/VIDraft/eum" target="_blank">link</a>).</p>
         
     | 
| 537 | 
         
            -
                    <span class="tag Text">Text</span>
         
     | 
| 538 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 539 | 
         
            -
                  </div>
         
     | 
| 540 | 
         
            -
                  
         
     | 
| 541 | 
         
            -
                  <!-- 31) kolaslab/VisionART -->
         
     | 
| 542 | 
         
            -
                  <div class="event">
         
     | 
| 543 | 
         
            -
                    <h4>kolaslab/VisionART</h4>
         
     | 
| 544 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/VisionART" target="_blank">link</a>).</p>
         
     | 
| 545 | 
         
            -
                    <span class="tag Multimodal">Multimodal</span>
         
     | 
| 546 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 547 | 
         
            -
                  </div>
         
     | 
| 548 | 
         
            -
                  
         
     | 
| 549 | 
         
            -
                  <!-- 32) aiqtech/FLUX-military -->
         
     | 
| 550 | 
         
            -
                  <div class="event">
         
     | 
| 551 | 
         
            -
                    <h4>aiqtech/FLUX-military</h4>
         
     | 
| 552 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqtech/FLUX-military" target="_blank">link</a>).</p>
         
     | 
| 553 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 554 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 555 | 
         
            -
             
     | 
| 556 | 
         
            -
                  </div>
         
     | 
| 557 | 
         
            -
                  
         
     | 
| 558 | 
         
            -
                  <!-- 33) fantaxy/Rolls-Royce -->
         
     | 
| 559 | 
         
            -
                  <div class="event">
         
     | 
| 560 | 
         
            -
                    <h4>fantaxy/Rolls-Royce</h4>
         
     | 
| 561 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/fantaxy/Rolls-Royce" target="_blank">link</a>).</p>
         
     | 
| 562 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 563 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 564 | 
         
            -
             
     | 
| 565 | 
         
            -
                  </div>
         
     | 
| 566 | 
         
            -
                  
         
     | 
| 567 | 
         
            -
                  <!-- 34) seawolf2357/flux-korea-hanbok-lora -->
         
     | 
| 568 | 
         
            -
                  <div class="event">
         
     | 
| 569 | 
         
            -
                    <h4>seawolf2357/flux-korea-hanbok-lora</h4>
         
     | 
| 570 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/seawolf2357/flux-korea-hanbok-lora" target="_blank">link</a>).</p>
         
     | 
| 571 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 572 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 573 | 
         
            -
             
     | 
| 574 | 
         
            -
                  </div>
         
     | 
| 575 | 
         
            -
                  
         
     | 
| 576 | 
         
            -
                  <!-- 35) seawolf2357/flux-korea-palace-lora -->
         
     | 
| 577 | 
         
            -
                  <div class="event">
         
     | 
| 578 | 
         
            -
                    <h4>seawolf2357/flux-korea-palace-lora</h4>
         
     | 
| 579 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/seawolf2357/flux-korea-palace-lora" target="_blank">link</a>).</p>
         
     | 
| 580 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 581 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 582 | 
         
            -
             
     | 
| 583 | 
         
            -
                  </div>
         
     | 
| 584 | 
         
            -
                  
         
     | 
| 585 | 
         
            -
                  <!-- 36) aiqcamp/flux-cat-lora -->
         
     | 
| 586 | 
         
            -
                  <div class="event">
         
     | 
| 587 | 
         
            -
                    <h4>aiqcamp/flux-cat-lora</h4>
         
     | 
| 588 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqcamp/flux-cat-lora" target="_blank">link</a>).</p>
         
     | 
| 589 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 590 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 591 | 
         
            -
             
     | 
| 592 | 
         
            -
                  </div>
         
     | 
| 593 | 
         
            -
                  
         
     | 
| 594 | 
         
            -
                  <!-- 37) gunship999/SexyImages -->
         
     | 
| 595 | 
         
            -
                  <div class="event">
         
     | 
| 596 | 
         
            -
                    <h4>gunship999/SexyImages</h4>
         
     | 
| 597 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/gunship999/SexyImages" target="_blank">link</a>).</p>
         
     | 
| 598 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 599 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 600 | 
         
            -
             
     | 
| 601 | 
         
            -
                  </div>
         
     | 
| 602 | 
         
            -
                  
         
     | 
| 603 | 
         
            -
                  <!-- 38) aiqtech/flux-claude-monet-lora -->
         
     | 
| 604 | 
         
            -
                  <div class="event">
         
     | 
| 605 | 
         
            -
                    <h4>aiqtech/flux-claude-monet-lora</h4>
         
     | 
| 606 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqtech/flux-claude-monet-lora" target="_blank">link</a>).</p>
         
     | 
| 607 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 608 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 609 | 
         
            -
             
     | 
| 610 | 
         
            -
                  </div>
         
     | 
| 611 | 
         
            -
                  
         
     | 
| 612 | 
         
            -
                  <!-- 39) ginigen/CANVAS-o3 -->
         
     | 
| 613 | 
         
            -
                  <div class="event">
         
     | 
| 614 | 
         
            -
                    <h4>ginigen/CANVAS-o3</h4>
         
     | 
| 615 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/ginigen/CANVAS-o3" target="_blank">link</a>).</p>
         
     | 
| 616 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 617 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 618 | 
         
            -
                  </div>
         
     | 
| 619 | 
         
            -
                  
         
     | 
| 620 | 
         
            -
                  <!-- 40) kolaslab/world-sdr -->
         
     | 
| 621 | 
         
            -
                  <div class="event">
         
     | 
| 622 | 
         
            -
                    <h4>kolaslab/world-sdr</h4>
         
     | 
| 623 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/world-sdr" target="_blank">link</a>).</p>
         
     | 
| 624 | 
         
            -
                    <span class="tag Education">Education</span>
         
     | 
| 625 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 626 | 
         
            -
                  </div>
         
     | 
| 627 | 
         
            -
                  
         
     | 
| 628 | 
         
            -
                  <!-- 41) seawolf2357/3D-Avatar-Generator -->
         
     | 
| 629 | 
         
            -
                  <div class="event">
         
     | 
| 630 | 
         
            -
                    <h4>seawolf2357/3D-Avatar-Generator</h4>
         
     | 
| 631 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/3D-Avatar-Generator" target="_blank">link</a>).</p>
         
     | 
| 632 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 633 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 634 | 
         
            -
                  </div>
         
     | 
| 635 | 
         
            -
                  
         
     | 
| 636 | 
         
            -
                  <!-- 42) fantaxy/playground25 -->
         
     | 
| 637 | 
         
            -
                  <div class="event">
         
     | 
| 638 | 
         
            -
                    <h4>fantaxy/playground25</h4>
         
     | 
| 639 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/fantaxy/playground25" target="_blank">link</a>).</p>
         
     | 
| 640 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 641 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 642 | 
         
            -
                  </div>
         
     | 
| 643 | 
         
            -
                  
         
     | 
| 644 | 
         
            -
                  <!-- 43) openfree/ultpixgen -->
         
     | 
| 645 | 
         
            -
                  <div class="event">
         
     | 
| 646 | 
         
            -
                    <h4>openfree/ultpixgen</h4>
         
     | 
| 647 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/openfree/ultpixgen" target="_blank">link</a>).</p>
         
     | 
| 648 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 649 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 650 | 
         
            -
             
     | 
| 651 | 
         
            -
                  </div>
         
     | 
| 652 | 
         
            -
                  
         
     | 
| 653 | 
         
            -
                  <!-- 44) kolaslab/VISION-NIGHT -->
         
     | 
| 654 | 
         
            -
                  <div class="event">
         
     | 
| 655 | 
         
            -
                    <h4>kolaslab/VISION-NIGHT</h4>
         
     | 
| 656 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/VISION-NIGHT" target="_blank">link</a>).</p>
         
     | 
| 657 | 
         
            -
                    <span class="tag vision">Vision</span>
         
     | 
| 658 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 659 | 
         
            -
                  </div>
         
     | 
| 660 | 
         
            -
                  
         
     | 
| 661 | 
         
            -
                  <!-- 45) kolaslab/FLUX-WEB -->
         
     | 
| 662 | 
         
            -
                  <div class="event">
         
     | 
| 663 | 
         
            -
                    <h4>kolaslab/FLUX-WEB</h4>
         
     | 
| 664 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/FLUX-WEB" target="_blank">link</a>).</p>
         
     | 
| 665 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 666 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 667 | 
         
            -
                  </div>
         
     | 
| 668 | 
         
            -
                  
         
     | 
| 669 | 
         
            -
                  <!-- 46) seawolf2357/REALVISXL-V5 -->
         
     | 
| 670 | 
         
            -
                  <div class="event">
         
     | 
| 671 | 
         
            -
                    <h4>seawolf2357/REALVISXL-V5</h4>
         
     | 
| 672 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/REALVISXL-V5" target="_blank">link</a>).</p>
         
     | 
| 673 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 674 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 675 | 
         
            -
             
     | 
| 676 | 
         
            -
                  </div>
         
     | 
| 677 | 
         
            -
                  
         
     | 
| 678 | 
         
            -
                  <!-- 47) ginipick/Dokdo-multimodal -->
         
     | 
| 679 | 
         
            -
                  <div class="event">
         
     | 
| 680 | 
         
            -
                    <h4>ginipick/Dokdo-multimodal</h4>
         
     | 
| 681 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/ginipick/Dokdo-multimodal" target="_blank">link</a>).</p>
         
     | 
| 682 | 
         
            -
                    <span class="tag multimodal">Multimodal</span>
         
     | 
| 683 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 684 | 
         
            -
                  </div>
         
     | 
| 685 | 
         
            -
                  
         
     | 
| 686 | 
         
            -
                  <!-- 48) ginigen/theater -->
         
     | 
| 687 | 
         
            -
                  <div class="event">
         
     | 
| 688 | 
         
            -
                    <h4>ginigen/theater</h4>
         
     | 
| 689 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/ginigen/theater" target="_blank">link</a>).</p>
         
     | 
| 690 | 
         
            -
                    <span class="tag video">Video</span>
         
     | 
| 691 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 692 | 
         
            -
             
     | 
| 693 | 
         
            -
                  </div>
         
     | 
| 694 | 
         
            -
                  
         
     | 
| 695 | 
         
            -
                  <!-- 49) VIDraft/stock -->
         
     | 
| 696 | 
         
            -
                  <div class="event">
         
     | 
| 697 | 
         
            -
                    <h4>VIDraft/stock</h4>
         
     | 
| 698 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/VIDraft/stock" target="_blank">link</a>).</p>
         
     | 
| 699 | 
         
            -
                    <span class="tag predict">Predict</span>
         
     | 
| 700 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 701 | 
         
            -
             
     | 
| 702 | 
         
            -
                  </div>
         
     | 
| 703 | 
         
            -
                  
         
     | 
| 704 | 
         
            -
                  <!-- 50) fantos/flxcontrol -->
         
     | 
| 705 | 
         
            -
                  <div class="event">
         
     | 
| 706 | 
         
            -
                    <h4>fantos/flxcontrol</h4>
         
     | 
| 707 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/fantos/flxcontrol" target="_blank">link</a>).</p>
         
     | 
| 708 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 709 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 710 | 
         
            -
                  </div>
         
     | 
| 711 | 
         
            -
                  
         
     | 
| 712 | 
         
            -
                  <!-- 51) fantos/textcutobject -->
         
     | 
| 713 | 
         
            -
                  <div class="event">
         
     | 
| 714 | 
         
            -
                    <h4>fantos/textcutobject</h4>
         
     | 
| 715 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/fantos/textcutobject" target="_blank">link</a>).</p>
         
     | 
| 716 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 717 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 718 | 
         
            -
             
     | 
| 719 | 
         
            -
                  </div>
         
     | 
| 720 | 
         
            -
                  
         
     | 
| 721 | 
         
            -
                  <!-- 52) ginipick/FLUX-Prompt-Generator -->
         
     | 
| 722 | 
         
            -
                  <div class="event">
         
     | 
| 723 | 
         
            -
                    <h4>ginipick/FLUX-Prompt-Generator</h4>
         
     | 
| 724 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/ginipick/FLUX-Prompt-Generator" target="_blank">link</a>).</p>
         
     | 
| 725 | 
         
            -
                    <span class="tag text">Text</span>
         
     | 
| 726 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 727 | 
         
            -
                  </div>
         
     | 
| 728 | 
         
            -
                  
         
     | 
| 729 | 
         
            -
                  <!-- 53) fantaxy/flxloraexp -->
         
     | 
| 730 | 
         
            -
                  <div class="event">
         
     | 
| 731 | 
         
            -
                    <h4>fantaxy/flxloraexp</h4>
         
     | 
| 732 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/fantaxy/flxloraexp" target="_blank">link</a>).</p>
         
     | 
| 733 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 734 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 735 | 
         
            -
             
     | 
| 736 | 
         
            -
                  </div>
         
     | 
| 737 | 
         
            -
                  
         
     | 
| 738 | 
         
            -
                  <!-- 54) fantos/flxloraexp -->
         
     | 
| 739 | 
         
            -
                  <div class="event">
         
     | 
| 740 | 
         
            -
                    <h4>fantos/flxloraexp</h4>
         
     | 
| 741 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/fantos/flxloraexp" target="_blank">link</a>).</p>
         
     | 
| 742 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 743 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 744 | 
         
            -
                  </div>
         
     | 
| 745 | 
         
            -
                  
         
     | 
| 746 | 
         
            -
                  <!-- 55) seawolf2357/flxloraexp -->
         
     | 
| 747 | 
         
            -
                  <div class="event">
         
     | 
| 748 | 
         
            -
                    <h4>seawolf2357/flxloraexp</h4>
         
     | 
| 749 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/seawolf2357/flxloraexp" target="_blank">link</a>).</p>
         
     | 
| 750 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 751 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 752 | 
         
            -
                  </div>
         
     | 
| 753 | 
         
            -
                  
         
     | 
| 754 | 
         
            -
                  <!-- 56) ginipick/flxloraexp -->
         
     | 
| 755 | 
         
            -
                  <div class="event">
         
     | 
| 756 | 
         
            -
                    <h4>ginipick/flxloraexp</h4>
         
     | 
| 757 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/ginipick/flxloraexp" target="_blank">link</a>).</p>
         
     | 
| 758 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 759 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 760 | 
         
            -
                  </div>
         
     | 
| 761 | 
         
            -
                  
         
     | 
| 762 | 
         
            -
                  <!-- 57) ginipick/FLUX-Prompt-Generator -->
         
     | 
| 763 | 
         
            -
                  <div class="event">
         
     | 
| 764 | 
         
            -
                    <h4>ginipick/FLUX-Prompt-Generator</h4>
         
     | 
| 765 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/ginipick/FLUX-Prompt-Generator" target="_blank">link</a>).</p>
         
     | 
| 766 | 
         
            -
                    <span class="tag text">Text</span>
         
     | 
| 767 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 768 | 
         
            -
             
     | 
| 769 | 
         
            -
                  </div>
         
     | 
| 770 | 
         
            -
                  
         
     | 
| 771 | 
         
            -
                  <!-- 58) ginigen/Dokdo -->
         
     | 
| 772 | 
         
            -
                  <div class="event">
         
     | 
| 773 | 
         
            -
                    <h4>ginigen/Dokdo</h4>
         
     | 
| 774 | 
         
            -
                    <p>Video Generation(<a href="https://huggingface.co/spaces/ginigen/Dokdo" target="_blank">link</a>).</p>
         
     | 
| 775 | 
         
            -
                    <span class="tag Video">Video</span>
         
     | 
| 776 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 777 | 
         
            -
                  </div>
         
     | 
| 778 | 
         
            -
                  
         
     | 
| 779 | 
         
            -
                  <!-- 59) aiqcamp/imagemagic -->
         
     | 
| 780 | 
         
            -
                  <div class="event">
         
     | 
| 781 | 
         
            -
                    <h4>aiqcamp/imagemagic</h4>
         
     | 
| 782 | 
         
            -
                    <p>Image Inpainting(<a href="https://huggingface.co/spaces/aiqcamp/imagemagic" target="_blank">link</a>).</p>
         
     | 
| 783 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 784 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 785 | 
         
            -
             
     | 
| 786 | 
         
            -
                  </div>
         
     | 
| 787 | 
         
            -
                  
         
     | 
| 788 | 
         
            -
                  <!-- 60) openfree/ColorRevive -->
         
     | 
| 789 | 
         
            -
                  <div class="event">
         
     | 
| 790 | 
         
            -
                    <h4>openfree/ColorRevive</h4>
         
     | 
| 791 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/openfree/ColorRevive" target="_blank">link</a>).</p>
         
     | 
| 792 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 793 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 794 | 
         
            -
             
     | 
| 795 | 
         
            -
                  </div>
         
     | 
| 796 | 
         
            -
                  
         
     | 
| 797 | 
         
            -
                  <!-- 61) VIDraft/RAGOndevice -->
         
     | 
| 798 | 
         
            -
                  <div class="event">
         
     | 
| 799 | 
         
            -
                    <h4>VIDraft/RAGOndevice</h4>
         
     | 
| 800 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/VIDraft/RAGOndevice" target="_blank">link</a>).</p>
         
     | 
| 801 | 
         
            -
                    <span class="tag text">Text</span>
         
     | 
| 802 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 803 | 
         
            -
                  </div>
         
     | 
| 804 | 
         
            -
                  
         
     | 
| 805 | 
         
            -
                  <!-- 62) gunship999/Radar-Bluetooth -->
         
     | 
| 806 | 
         
            -
                  <div class="event">
         
     | 
| 807 | 
         
            -
                    <h4>gunship999/Radar-Bluetooth</h4>
         
     | 
| 808 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/gunship999/Radar-Bluetooth" target="_blank">link</a>).</p>
         
     | 
| 809 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 810 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 811 | 
         
            -
                  </div>
         
     | 
| 812 | 
         
            -
                  
         
     | 
| 813 | 
         
            -
                  <!-- 63) gunship999/WiFi-VISION -->
         
     | 
| 814 | 
         
            -
                  <div class="event">
         
     | 
| 815 | 
         
            -
                    <h4>gunship999/WiFi-VISION</h4>
         
     | 
| 816 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/gunship999/WiFi-VISION" target="_blank">link</a>).</p>
         
     | 
| 817 | 
         
            -
                    <span class="tag vision">Vision</span>
         
     | 
| 818 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 819 | 
         
            -
                  </div>
         
     | 
| 820 | 
         
            -
                  
         
     | 
| 821 | 
         
            -
                  <!-- 64) gunship999/SONAR-Radar -->
         
     | 
| 822 | 
         
            -
                  <div class="event">
         
     | 
| 823 | 
         
            -
                    <h4>gunship999/SONAR-Radar</h4>
         
     | 
| 824 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/gunship999/SONAR-Radar" target="_blank">link</a>).</p>
         
     | 
| 825 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 826 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 827 | 
         
            -
                  </div>
         
     | 
| 828 | 
         
            -
                  
         
     | 
| 829 | 
         
            -
                  <!-- 65) aiqcamp/AudioLlama -->
         
     | 
| 830 | 
         
            -
                  <div class="event">
         
     | 
| 831 | 
         
            -
                    <h4>aiqcamp/AudioLlama</h4>
         
     | 
| 832 | 
         
            -
                    <p>Sound Generation(<a href="https://huggingface.co/spaces/aiqcamp/AudioLlama" target="_blank">link</a>).</p>
         
     | 
| 833 | 
         
            -
                    <span class="tag audio">Audio</span>
         
     | 
| 834 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 835 | 
         
            -
             
     | 
| 836 | 
         
            -
                  </div>
         
     | 
| 837 | 
         
            -
                  
         
     | 
| 838 | 
         
            -
                  <!-- 66) ginigen/FLUXllama-Multilingual -->
         
     | 
| 839 | 
         
            -
                  <div class="event">
         
     | 
| 840 | 
         
            -
                    <h4>ginigen/FLUXllama-Multilingual</h4>
         
     | 
| 841 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/ginigen/FLUXllama-Multilingual" target="_blank">link</a>).</p>
         
     | 
| 842 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 843 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 844 | 
         
            -
                  </div>
         
     | 
| 845 | 
         
            -
                  
         
     | 
| 846 | 
         
            -
                  <!-- 67) ginipick/ginimedi -->
         
     | 
| 847 | 
         
            -
                  <div class="event">
         
     | 
| 848 | 
         
            -
                    <h4>ginipick/ginimedi</h4>
         
     | 
| 849 | 
         
            -
                    <p>RAG Chatbot(<a href="https://huggingface.co/spaces/ginipick/ginimedi" target="_blank">link</a>).</p>
         
     | 
| 850 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 851 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 852 | 
         
            -
                  </div>
         
     | 
| 853 | 
         
            -
                  
         
     | 
| 854 | 
         
            -
                  <!-- 68) ginipick/ginilaw -->
         
     | 
| 855 | 
         
            -
                  <div class="event">
         
     | 
| 856 | 
         
            -
                    <h4>ginipick/ginilaw</h4>
         
     | 
| 857 | 
         
            -
                    <p>RAG Chatbot(<a href="https://huggingface.co/spaces/ginipick/ginilaw" target="_blank">link</a>).</p>
         
     | 
| 858 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 859 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 860 | 
         
            -
                  </div>
         
     | 
| 861 | 
         
            -
                  
         
     | 
| 862 | 
         
            -
                  <!-- 69) ginipick/ginipharm -->
         
     | 
| 863 | 
         
            -
                  <div class="event">
         
     | 
| 864 | 
         
            -
                    <h4>ginipick/ginipharm</h4>
         
     | 
| 865 | 
         
            -
                    <p>RAG Chatbot(<a href="https://huggingface.co/spaces/ginipick/ginipharm" target="_blank">link</a>).</p>
         
     | 
| 866 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 867 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 868 | 
         
            -
                  </div>
         
     | 
| 869 | 
         
            -
                  
         
     | 
| 870 | 
         
            -
                  <!-- 70) ginipick/FitGen -->
         
     | 
| 871 | 
         
            -
                  <div class="event">
         
     | 
| 872 | 
         
            -
                    <h4>ginipick/FitGen</h4>
         
     | 
| 873 | 
         
            -
                    <p>Fashion Generation(<a href="https://huggingface.co/spaces/ginipick/FitGen" target="_blank">link</a>).</p>
         
     | 
| 874 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 875 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 876 | 
         
            -
                  </div>
         
     | 
| 877 | 
         
            -
                  
         
     | 
| 878 | 
         
            -
                  <!-- 71) fantaxy/FLUX-Animations -->
         
     | 
| 879 | 
         
            -
                  <div class="event">
         
     | 
| 880 | 
         
            -
                    <h4>fantaxy/FLUX-Animations</h4>
         
     | 
| 881 | 
         
            -
                    <p>Flux GIF Generation(<a href="https://huggingface.co/spaces/fantaxy/FLUX-Animations" target="_blank">link</a>).</p>
         
     | 
| 882 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 883 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 884 | 
         
            -
             
     | 
| 885 | 
         
            -
                  </div>
         
     | 
| 886 | 
         
            -
                  
         
     | 
| 887 | 
         
            -
                  <!-- 72) fantaxy/Remove-Video-Background -->
         
     | 
| 888 | 
         
            -
                  <div class="event">
         
     | 
| 889 | 
         
            -
                    <h4>fantaxy/Remove-Video-Background</h4>
         
     | 
| 890 | 
         
            -
                    <p>Remove Video Background(<a href="https://huggingface.co/spaces/fantaxy/Remove-Video-Background" target="_blank">link</a>).</p>
         
     | 
| 891 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 892 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 893 | 
         
            -
                  </div>
         
     | 
| 894 | 
         
            -
                  
         
     | 
| 895 | 
         
            -
                  <!-- 73) fantaxy/ofai-flx-logo -->
         
     | 
| 896 | 
         
            -
                  <div class="event">
         
     | 
| 897 | 
         
            -
                    <h4>fantaxy/ofai-flx-logo</h4>
         
     | 
| 898 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantaxy/ofai-flx-logo" target="_blank">link</a>).</p>
         
     | 
| 899 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 900 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 901 | 
         
            -
             
     | 
| 902 | 
         
            -
                  </div>
         
     | 
| 903 | 
         
            -
                  
         
     | 
| 904 | 
         
            -
                  <!-- 74) fantaxy/flx-pulid -->
         
     | 
| 905 | 
         
            -
                  <div class="event">
         
     | 
| 906 | 
         
            -
                    <h4>fantaxy/flx-pulid</h4>
         
     | 
| 907 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantaxy/flx-pulid" target="_blank">link</a>).</p>
         
     | 
| 908 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 909 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 910 | 
         
            -
             
     | 
| 911 | 
         
            -
                  </div>
         
     | 
| 912 | 
         
            -
                  
         
     | 
| 913 | 
         
            -
                  <!-- 75) fantaxy/flx-upscale -->
         
     | 
| 914 | 
         
            -
                  <div class="event">
         
     | 
| 915 | 
         
            -
                    <h4>fantaxy/flx-upscale</h4>
         
     | 
| 916 | 
         
            -
                    <p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/fantaxy/flx-upscale" target="_blank">link</a>).</p>
         
     | 
| 917 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 918 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 919 | 
         
            -
                  </div>
         
     | 
| 920 | 
         
            -
                  
         
     | 
| 921 | 
         
            -
                  <!-- 76) aiqcamp/Fashion-FLUX -->
         
     | 
| 922 | 
         
            -
                  <div class="event">
         
     | 
| 923 | 
         
            -
                    <h4>aiqcamp/Fashion-FLUX</h4>
         
     | 
| 924 | 
         
            -
                    <p>Fashion Generation(<a href="https://huggingface.co/spaces/aiqcamp/Fashion-FLUX" target="_blank">link</a>).</p>
         
     | 
| 925 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 926 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 927 | 
         
            -
                  </div>
         
     | 
| 928 | 
         
            -
                  
         
     | 
| 929 | 
         
            -
                  <!-- 77) ginipick/StyleGen -->
         
     | 
| 930 | 
         
            -
                  <div class="event">
         
     | 
| 931 | 
         
            -
                    <h4>ginipick/StyleGen</h4>
         
     | 
| 932 | 
         
            -
                    <p>Fashion Generation(<a href="https://huggingface.co/spaces/ginipick/StyleGen" target="_blank">link</a>).</p>
         
     | 
| 933 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 934 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 935 | 
         
            -
                  </div>
         
     | 
| 936 | 
         
            -
                  
         
     | 
| 937 | 
         
            -
                  <!-- 78) openfree/StoryStar -->
         
     | 
| 938 | 
         
            -
                  <div class="event">
         
     | 
| 939 | 
         
            -
                    <h4>openfree/StoryStar</h4>
         
     | 
| 940 | 
         
            -
                    <p>Fantasy Novel Generation(<a href="https://huggingface.co/spaces/openfree/StoryStar" target="_blank">link</a>).</p>
         
     | 
| 941 | 
         
            -
                    <span class="tag text">Text</span>
         
     | 
| 942 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 943 | 
         
            -
             
     | 
| 944 | 
         
            -
                  </div>
         
     | 
| 945 | 
         
            -
                  
         
     | 
| 946 | 
         
            -
                  <!-- 79) fantos/x-mas -->
         
     | 
| 947 | 
         
            -
                  <div class="event">
         
     | 
| 948 | 
         
            -
                    <h4>fantos/x-mas</h4>
         
     | 
| 949 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantos/x-mas" target="_blank">link</a>).</p>
         
     | 
| 950 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 951 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 952 | 
         
            -
                  </div>
         
     | 
| 953 | 
         
            -
                  
         
     | 
| 954 | 
         
            -
                  <!-- 80) openfree/Korean-Leaderboard -->
         
     | 
| 955 | 
         
            -
                  <div class="event">
         
     | 
| 956 | 
         
            -
                    <h4>openfree/Korean-Leaderboard</h4>
         
     | 
| 957 | 
         
            -
                    <p>LKorean Leaderboard(<a href="https://huggingface.co/spaces/openfree/Korean-Leaderboard" target="_blank">link</a>).</p>
         
     | 
| 958 | 
         
            -
                    <span class="tag Utility">Utility</span>
         
     | 
| 959 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 960 | 
         
            -
                  </div>
         
     | 
| 961 | 
         
            -
                  
         
     | 
| 962 | 
         
            -
                  <!-- 81) ginipick/FLUXllama -->
         
     | 
| 963 | 
         
            -
                  <div class="event">
         
     | 
| 964 | 
         
            -
                    <h4>ginipick/FLUXllama</h4>
         
     | 
| 965 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/ginipick/FLUXllama" target="_blank">link</a>).</p>
         
     | 
| 966 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 967 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 968 | 
         
            -
                  </div>
         
     | 
| 969 | 
         
            -
                  
         
     | 
| 970 | 
         
            -
                  <!-- 82) ginipick/SORA-3D -->
         
     | 
| 971 | 
         
            -
                  <div class="event">
         
     | 
| 972 | 
         
            -
                    <h4>ginipick/SORA-3D</h4>
         
     | 
| 973 | 
         
            -
                    <p>Text/Image to 3D(<a href="https://huggingface.co/spaces/ginipick/SORA-3D" target="_blank">link</a>).</p>
         
     | 
| 974 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 975 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 976 | 
         
            -
                  </div>
         
     | 
| 977 | 
         
            -
                  
         
     | 
| 978 | 
         
            -
                  <!-- 83) fantaxy/Sound-AI-SFX -->
         
     | 
| 979 | 
         
            -
                  <div class="event">
         
     | 
| 980 | 
         
            -
                    <h4>fantaxy/Sound-AI-SFX</h4>
         
     | 
| 981 | 
         
            -
                    <p>Sound Generation(<a href="https://huggingface.co/spaces/fantaxy/Sound-AI-SFX" target="_blank">link</a>).</p>
         
     | 
| 982 | 
         
            -
                    <span class="tag audio">Audio</span>
         
     | 
| 983 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 984 | 
         
            -
             
     | 
| 985 | 
         
            -
                  </div>
         
     | 
| 986 | 
         
            -
                  
         
     | 
| 987 | 
         
            -
                  <!-- 84) fantos/flx8lora -->
         
     | 
| 988 | 
         
            -
                  <div class="event">
         
     | 
| 989 | 
         
            -
                    <h4>fantos/flx8lora</h4>
         
     | 
| 990 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantos/flx8lora" target="_blank">link</a>).</p>
         
     | 
| 991 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 992 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 993 | 
         
            -
             
     | 
| 994 | 
         
            -
                  </div>
         
     | 
| 995 | 
         
            -
                  
         
     | 
| 996 | 
         
            -
                  <!-- 85) ginigen/Canvas -->
         
     | 
| 997 | 
         
            -
                  <div class="event">
         
     | 
| 998 | 
         
            -
                    <h4>ginigen/Canvas</h4>
         
     | 
| 999 | 
         
            -
                    <p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/ginigen/Canvas" target="_blank">link</a>).</p>
         
     | 
| 1000 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 1001 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1002 | 
         
            -
                  </div>
         
     | 
| 1003 | 
         
            -
                  
         
     | 
| 1004 | 
         
            -
                  <!-- 86) fantaxy/erotica -->
         
     | 
| 1005 | 
         
            -
                  <div class="event">
         
     | 
| 1006 | 
         
            -
                    <h4>fantaxy/erotica</h4>
         
     | 
| 1007 | 
         
            -
                    <p>Adult Novel Generation(<a href="https://huggingface.co/spaces/fantaxy/erotica" target="_blank">link</a>).</p>
         
     | 
| 1008 | 
         
            -
                    <span class="tag Text">Text</span>
         
     | 
| 1009 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1010 | 
         
            -
             
     | 
| 1011 | 
         
            -
                  </div>
         
     | 
| 1012 | 
         
            -
                  
         
     | 
| 1013 | 
         
            -
                  <!-- 87) ginipick/time-machine -->
         
     | 
| 1014 | 
         
            -
                  <div class="event">
         
     | 
| 1015 | 
         
            -
                    <h4>ginipick/time-machine</h4>
         
     | 
| 1016 | 
         
            -
                    <p>Flux Image Generation(<a href="https://huggingface.co/spaces/ginipick/time-machine" target="_blank">link</a>).</p>
         
     | 
| 1017 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1018 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1019 | 
         
            -
             
     | 
| 1020 | 
         
            -
                  </div>
         
     | 
| 1021 | 
         
            -
                  
         
     | 
| 1022 | 
         
            -
                  <!-- 88) aiqcamp/FLUX-VisionReply -->
         
     | 
| 1023 | 
         
            -
                  <div class="event">
         
     | 
| 1024 | 
         
            -
                    <h4>aiqcamp/FLUX-VisionReply</h4>
         
     | 
| 1025 | 
         
            -
                    <p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/aiqcamp/FLUX-VisionReply" target="_blank">link</a>).</p>
         
     | 
| 1026 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 1027 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1028 | 
         
            -
             
     | 
| 1029 | 
         
            -
                  </div>
         
     | 
| 1030 | 
         
            -
                  
         
     | 
| 1031 | 
         
            -
                  <!-- 89) openfree/Tetris-Game -->
         
     | 
| 1032 | 
         
            -
                  <div class="event">
         
     | 
| 1033 | 
         
            -
                    <h4>openfree/Tetris-Game</h4>
         
     | 
| 1034 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/openfree/Tetris-Game" target="_blank">link</a>).</p>
         
     | 
| 1035 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1036 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1037 | 
         
            -
             
     | 
| 1038 | 
         
            -
                  </div>
         
     | 
| 1039 | 
         
            -
                  
         
     | 
| 1040 | 
         
            -
                  <!-- 90) openfree/everychat -->
         
     | 
| 1041 | 
         
            -
                  <div class="event">
         
     | 
| 1042 | 
         
            -
                    <h4>openfree/everychat</h4>
         
     | 
| 1043 | 
         
            -
                    <p>Multi LLM Chatbot(<a href="https://huggingface.co/spaces/openfree/everychat" target="_blank">link</a>).</p>
         
     | 
| 1044 | 
         
            -
                    <span class="tag text">Text</span>
         
     | 
| 1045 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1046 | 
         
            -
                  </div>
         
     | 
| 1047 | 
         
            -
                  
         
     | 
| 1048 | 
         
            -
                  <!-- 91) VIDraft/mouse1 -->
         
     | 
| 1049 | 
         
            -
                  <div class="event">
         
     | 
| 1050 | 
         
            -
                    <h4>VIDraft/mouse1</h4>
         
     | 
| 1051 | 
         
            -
                    <p>NLP Creative Coding & Web/App(<a href="https://huggingface.co/spaces/VIDraft/mouse1" target="_blank">link</a>).</p>
         
     | 
| 1052 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 1053 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1054 | 
         
            -
                  </div>
         
     | 
| 1055 | 
         
            -
                  
         
     | 
| 1056 | 
         
            -
                  <!-- 92) kolaslab/alpha-go -->
         
     | 
| 1057 | 
         
            -
                  <div class="event">
         
     | 
| 1058 | 
         
            -
                    <h4>kolaslab/alpha-go</h4>
         
     | 
| 1059 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/alpha-go" target="_blank">link</a>).</p>
         
     | 
| 1060 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1061 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1062 | 
         
            -
                  </div>
         
     | 
| 1063 | 
         
            -
                  
         
     | 
| 1064 | 
         
            -
                  <!-- 93) ginipick/text3d -->
         
     | 
| 1065 | 
         
            -
                  <div class="event">
         
     | 
| 1066 | 
         
            -
                    <h4>ginipick/text3d</h4>
         
     | 
| 1067 | 
         
            -
                    <p>Text to 3D Style Generation(<a href="https://huggingface.co/spaces/ginipick/text3d" target="_blank">link</a>).</p>
         
     | 
| 1068 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1069 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1070 | 
         
            -
                  </div>
         
     | 
| 1071 | 
         
            -
                  
         
     | 
| 1072 | 
         
            -
                  <!-- 94) openfree/trending-board -->
         
     | 
| 1073 | 
         
            -
                  <div class="event">
         
     | 
| 1074 | 
         
            -
                    <h4>openfree/trending-board</h4>
         
     | 
| 1075 | 
         
            -
                    <p>Huggingface Trending Board(<a href="https://huggingface.co/spaces/openfree/trending-board" target="_blank">link</a>).</p>
         
     | 
| 1076 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 1077 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1078 | 
         
            -
                  </div>
         
     | 
| 1079 | 
         
            -
                  
         
     | 
| 1080 | 
         
            -
                  <!-- 95) cutechicken/tankwar -->
         
     | 
| 1081 | 
         
            -
                  <div class="event">
         
     | 
| 1082 | 
         
            -
                    <h4>cutechicken/tankwar</h4>
         
     | 
| 1083 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/cutechicken/tankwar" target="_blank">link</a>).</p>
         
     | 
| 1084 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1085 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1086 | 
         
            -
             
     | 
| 1087 | 
         
            -
                  </div>
         
     | 
| 1088 | 
         
            -
                  
         
     | 
| 1089 | 
         
            -
                  <!-- 96) openfree/game-jewel -->
         
     | 
| 1090 | 
         
            -
                  <div class="event">
         
     | 
| 1091 | 
         
            -
                    <h4>openfree/game-jewel</h4>
         
     | 
| 1092 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/openfree/game-jewel" target="_blank">link</a>).</p>
         
     | 
| 1093 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1094 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1095 | 
         
            -
             
     | 
| 1096 | 
         
            -
                  </div>
         
     | 
| 1097 | 
         
            -
                  
         
     | 
| 1098 | 
         
            -
                  <!-- 97) VIDraft/mouse-chat -->
         
     | 
| 1099 | 
         
            -
                  <div class="event">
         
     | 
| 1100 | 
         
            -
                    <h4>VIDraft/mouse-chat</h4>
         
     | 
| 1101 | 
         
            -
                    <p>Rich Chatbot(<a href="https://huggingface.co/spaces/VIDraft/mouse-chat" target="_blank">link</a>).</p>
         
     | 
| 1102 | 
         
            -
                    <span class="tag Productivity">Productivity</span>
         
     | 
| 1103 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1104 | 
         
            -
                  </div>
         
     | 
| 1105 | 
         
            -
                  
         
     | 
| 1106 | 
         
            -
                  <!-- 98) ginipick/AccDiffusion -->
         
     | 
| 1107 | 
         
            -
                  <div class="event">
         
     | 
| 1108 | 
         
            -
                    <h4>ginipick/AccDiffusion</h4>
         
     | 
| 1109 | 
         
            -
                    <p>Image Generaion(<a href="https://huggingface.co/spaces/ginipick/AccDiffusion" target="_blank">link</a>).</p>
         
     | 
| 1110 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 1111 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1112 | 
         
            -
                  </div>
         
     | 
| 1113 | 
         
            -
                  
         
     | 
| 1114 | 
         
            -
                  <!-- 99) aiqtech/Particle-Accelerator-Simulation -->
         
     | 
| 1115 | 
         
            -
                  <div class="event">
         
     | 
| 1116 | 
         
            -
                    <h4>aiqtech/Particle-Accelerator-Simulation</h4>
         
     | 
| 1117 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/aiqtech/Particle-Accelerator-Simulation" target="_blank">link</a>).</p>
         
     | 
| 1118 | 
         
            -
                    <span class="tag education">Education</span>
         
     | 
| 1119 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1120 | 
         
            -
                  </div>
         
     | 
| 1121 | 
         
            -
                  
         
     | 
| 1122 | 
         
            -
                  <!-- 100) openfree/GiniGEN -->
         
     | 
| 1123 | 
         
            -
                  <div class="event">
         
     | 
| 1124 | 
         
            -
                    <h4>openfree/GiniGEN</h4>
         
     | 
| 1125 | 
         
            -
                    <p>Flux LoRA Image Generaion(<a href="https://huggingface.co/spaces/openfree/GiniGEN" target="_blank">link</a>).</p>
         
     | 
| 1126 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1127 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1128 | 
         
            -
                  </div>
         
     | 
| 1129 | 
         
            -
                  
         
     | 
| 1130 | 
         
            -
                  <!-- 101) kolaslab/3DAudio-Spectrum-Analyzer -->
         
     | 
| 1131 | 
         
            -
                  <div class="event">
         
     | 
| 1132 | 
         
            -
                    <h4>kolaslab/3DAudio-Spectrum-Analyzer</h4>
         
     | 
| 1133 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/3DAudio-Spectrum-Analyzer" target="_blank">link</a>).</p>
         
     | 
| 1134 | 
         
            -
                    <span class="tag audio">Audio</span>
         
     | 
| 1135 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1136 | 
         
            -
                  </div>
         
     | 
| 1137 | 
         
            -
                  
         
     | 
| 1138 | 
         
            -
                  <!-- 102) openfree/trending-news-24 -->
         
     | 
| 1139 | 
         
            -
                  <div class="event">
         
     | 
| 1140 | 
         
            -
                    <h4>openfree/trending-news-24</h4>
         
     | 
| 1141 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/openfree/trending-news-24" target="_blank">link</a>).</p>
         
     | 
| 1142 | 
         
            -
                    <span class="tag Utility">Utility</span>
         
     | 
| 1143 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1144 | 
         
            -
                  </div>
         
     | 
| 1145 | 
         
            -
                  
         
     | 
| 1146 | 
         
            -
                  <!-- 103) ginipick/Realtime-FLUX -->
         
     | 
| 1147 | 
         
            -
                  <div class="event">
         
     | 
| 1148 | 
         
            -
                    <h4>ginipick/Realtime-FLUX</h4>
         
     | 
| 1149 | 
         
            -
                    <p>Flux Image Generaion(<a href="https://huggingface.co/spaces/ginipick/Realtime-FLUX" target="_blank">link</a>).</p>
         
     | 
| 1150 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1151 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1152 | 
         
            -
                  </div>
         
     | 
| 1153 | 
         
            -
                  
         
     | 
| 1154 | 
         
            -
                  <!-- 104) VIDraft/prime-number -->
         
     | 
| 1155 | 
         
            -
                  <div class="event">
         
     | 
| 1156 | 
         
            -
                    <h4>VIDraft/prime-number</h4>
         
     | 
| 1157 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/VIDraft/prime-number" target="_blank">link</a>).</p>
         
     | 
| 1158 | 
         
            -
                    <span class="tag education">Education</span>
         
     | 
| 1159 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1160 | 
         
            -
                  </div>
         
     | 
| 1161 | 
         
            -
                  
         
     | 
| 1162 | 
         
            -
                  <!-- 105) kolaslab/zombie-game -->
         
     | 
| 1163 | 
         
            -
                  <div class="event">
         
     | 
| 1164 | 
         
            -
                    <h4>kolaslab/zombie-game</h4>
         
     | 
| 1165 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/zombie-game" target="_blank">link</a>).</p>
         
     | 
| 1166 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1167 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1168 | 
         
            -
                  </div>
         
     | 
| 1169 | 
         
            -
                  
         
     | 
| 1170 | 
         
            -
                  <!-- 106) fantos/miro-game -->
         
     | 
| 1171 | 
         
            -
                  <div class="event">
         
     | 
| 1172 | 
         
            -
                    <h4>fantos/miro-game</h4>
         
     | 
| 1173 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/fantos/miro-game" target="_blank">link</a>).</p>
         
     | 
| 1174 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1175 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1176 | 
         
            -
                  </div>
         
     | 
| 1177 | 
         
            -
                  
         
     | 
| 1178 | 
         
            -
                  <!-- 107) kolaslab/shooting -->
         
     | 
| 1179 | 
         
            -
                  <div class="event">
         
     | 
| 1180 | 
         
            -
                    <h4>kolaslab/shooting</h4>
         
     | 
| 1181 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/shooting" target="_blank">link</a>).</p>
         
     | 
| 1182 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1183 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1184 | 
         
            -
                  </div>
         
     | 
| 1185 | 
         
            -
                  
         
     | 
| 1186 | 
         
            -
                  <!-- 108) VIDraft/Mouse-Hackathon -->
         
     | 
| 1187 | 
         
            -
                  <div class="event">
         
     | 
| 1188 | 
         
            -
                    <h4>VIDraft/Mouse-Hackathon</h4>
         
     | 
| 1189 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/VIDraft/Mouse-Hackathon" target="_blank">link</a>).</p>
         
     | 
| 1190 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 1191 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1192 | 
         
            -
                  </div>
         
     | 
| 1193 | 
         
            -
                  
         
     | 
| 1194 | 
         
            -
                  <!-- 109) aiqmaster/stocksimulation -->
         
     | 
| 1195 | 
         
            -
                  <div class="event">
         
     | 
| 1196 | 
         
            -
                    <h4>aiqmaster/stocksimulation</h4>
         
     | 
| 1197 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/aiqmaster/stocksimulation" target="_blank">link</a>).</p>
         
     | 
| 1198 | 
         
            -
                    <span class="tag predict">Predict</span>
         
     | 
| 1199 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1200 | 
         
            -
                  </div>
         
     | 
| 1201 | 
         
            -
                  
         
     | 
| 1202 | 
         
            -
                  <!-- 110) aiqmaster/assetai -->
         
     | 
| 1203 | 
         
            -
                  <div class="event">
         
     | 
| 1204 | 
         
            -
                    <h4>aiqmaster/assetai</h4>
         
     | 
| 1205 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/aiqmaster/assetai" target="_blank">link</a>).</p>
         
     | 
| 1206 | 
         
            -
                    <span class="tag predict">Predict</span>
         
     | 
| 1207 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1208 | 
         
            -
                  </div>
         
     | 
| 1209 | 
         
            -
                  
         
     | 
| 1210 | 
         
            -
                  <!-- 111) aiqmaster/stockai -->
         
     | 
| 1211 | 
         
            -
                  <div class="event">
         
     | 
| 1212 | 
         
            -
                    <h4>aiqmaster/stockai</h4>
         
     | 
| 1213 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/aiqmaster/stockai" target="_blank">link</a>).</p>
         
     | 
| 1214 | 
         
            -
                    <span class="tag predict">Predict</span>
         
     | 
| 1215 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1216 | 
         
            -
                  </div>
         
     | 
| 1217 | 
         
            -
                  
         
     | 
| 1218 | 
         
            -
                  <!-- 112) cutechicken/TankWar3D -->
         
     | 
| 1219 | 
         
            -
                  <div class="event">
         
     | 
| 1220 | 
         
            -
                    <h4>cutechicken/TankWar3D</h4>
         
     | 
| 1221 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/cutechicken/TankWar3D" target="_blank">link</a>).</p>
         
     | 
| 1222 | 
         
            -
                    <span class="tag game">Game</span>
         
     | 
| 1223 | 
         
            -
                    <span class="tag best">BEST</span>
         
     | 
| 1224 | 
         
            -
                  </div>
         
     | 
| 1225 | 
         
            -
                  
         
     | 
| 1226 | 
         
            -
                  <!-- 113) kolaslab/RC4-EnDecoder -->
         
     | 
| 1227 | 
         
            -
                  <div class="event">
         
     | 
| 1228 | 
         
            -
                    <h4>kolaslab/RC4-EnDecoder</h4>
         
     | 
| 1229 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/RC4-EnDecoder" target="_blank">link</a>).</p>
         
     | 
| 1230 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 1231 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1232 | 
         
            -
                  </div>
         
     | 
| 1233 | 
         
            -
                  
         
     | 
| 1234 | 
         
            -
                  <!-- 114) kolaslab/simulator -->
         
     | 
| 1235 | 
         
            -
                  <div class="event">
         
     | 
| 1236 | 
         
            -
                    <h4>kolaslab/simulator</h4>
         
     | 
| 1237 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/simulator" target="_blank">link</a>).</p>
         
     | 
| 1238 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 1239 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1240 | 
         
            -
                  </div>
         
     | 
| 1241 | 
         
            -
                  
         
     | 
| 1242 | 
         
            -
                  <!-- 115) kolaslab/calculator -->
         
     | 
| 1243 | 
         
            -
                  <div class="event">
         
     | 
| 1244 | 
         
            -
                    <h4>kolaslab/calculator</h4>
         
     | 
| 1245 | 
         
            -
                    <p>Link (<a href="https://huggingface.co/spaces/kolaslab/calculator" target="_blank">link</a>).</p>
         
     | 
| 1246 | 
         
            -
                    <span class="tag utility">Utility</span>
         
     | 
| 1247 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1248 | 
         
            -
                  </div>
         
     | 
| 1249 | 
         
            -
                  
         
     | 
| 1250 | 
         
            -
                  <!-- 116) aiqtech/kofaceid -->
         
     | 
| 1251 | 
         
            -
                  <div class="event">
         
     | 
| 1252 | 
         
            -
                    <h4>aiqtech/kofaceid</h4>
         
     | 
| 1253 | 
         
            -
                    <p>Image Inpainting(<a href="https://huggingface.co/spaces/aiqtech/kofaceid" target="_blank">link</a>).</p>
         
     | 
| 1254 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1255 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1256 | 
         
            -
             
     | 
| 1257 | 
         
            -
                  </div>
         
     | 
| 1258 | 
         
            -
                  
         
     | 
| 1259 | 
         
            -
                  <!-- 117) fantaxy/fastvideogen -->
         
     | 
| 1260 | 
         
            -
                  <div class="event">
         
     | 
| 1261 | 
         
            -
                    <h4>fantaxy/fastvideogen</h4>
         
     | 
| 1262 | 
         
            -
                    <p>Video Generation(<a href="https://huggingface.co/spaces/fantaxy/fastvideogen" target="_blank">link</a>).</p>
         
     | 
| 1263 | 
         
            -
                    <span class="tag video">Video</span>
         
     | 
| 1264 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1265 | 
         
            -
                  </div>
         
     | 
| 1266 | 
         
            -
                  
         
     | 
| 1267 | 
         
            -
             
     | 
| 1268 | 
         
            -
                  
         
     | 
| 1269 | 
         
            -
                  <!-- 118) openfree/MagicFace -->
         
     | 
| 1270 | 
         
            -
                  <div class="event">
         
     | 
| 1271 | 
         
            -
                    <h4>openfree/MagicFace</h4>
         
     | 
| 1272 | 
         
            -
                    <p>FACE ID Image Generation(<a href="https://huggingface.co/spaces/openfree/MagicFace" target="_blank">link</a>).</p>
         
     | 
| 1273 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1274 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1275 | 
         
            -
                  </div>
         
     | 
| 1276 | 
         
            -
                  
         
     | 
| 1277 | 
         
            -
                  <!-- 119) fantos/flxfashmodel -->
         
     | 
| 1278 | 
         
            -
                  <div class="event">
         
     | 
| 1279 | 
         
            -
                    <h4>fantos/flxfashmodel</h4>
         
     | 
| 1280 | 
         
            -
                    <p>Flux Fashion Image Inpainting(<a href="https://huggingface.co/spaces/fantos/flxfashmodel" target="_blank">link</a>).</p>
         
     | 
| 1281 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 1282 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1283 | 
         
            -
             
     | 
| 1284 | 
         
            -
                  </div>
         
     | 
| 1285 | 
         
            -
                  
         
     | 
| 1286 | 
         
            -
                  <!-- 120) fantos/kolcontrl -->
         
     | 
| 1287 | 
         
            -
                  <div class="event">
         
     | 
| 1288 | 
         
            -
                    <h4>fantos/kolcontrl</h4>
         
     | 
| 1289 | 
         
            -
                    <p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/fantos/kolcontrl" target="_blank">link</a>).</p>
         
     | 
| 1290 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1291 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1292 | 
         
            -
                  </div>
         
     | 
| 1293 | 
         
            -
                  
         
     | 
| 1294 | 
         
            -
                  <!-- 121) fantos/EveryText -->
         
     | 
| 1295 | 
         
            -
                  <div class="event">
         
     | 
| 1296 | 
         
            -
                    <h4>fantos/EveryText</h4>
         
     | 
| 1297 | 
         
            -
                    <p>Image & Text add (<a href="https://huggingface.co/spaces/fantos/EveryText" target="_blank">link</a>).</p>
         
     | 
| 1298 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1299 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1300 | 
         
            -
                  </div>
         
     | 
| 1301 | 
         
            -
                  
         
     | 
| 1302 | 
         
            -
                  <!-- 122) aiqtech/cinevid -->
         
     | 
| 1303 | 
         
            -
                  <div class="event">
         
     | 
| 1304 | 
         
            -
                    <h4>aiqtech/cinevid</h4>
         
     | 
| 1305 | 
         
            -
                    <p>CINE Image Generation(<a href="https://huggingface.co/spaces/aiqtech/cinevid" target="_blank">link</a>).</p>
         
     | 
| 1306 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1307 | 
         
            -
                    <span class="tag new">NEW</span>
         
     | 
| 1308 | 
         
            -
                  </div>
         
     | 
| 1309 | 
         
            -
                  
         
     | 
| 1310 | 
         
            -
                  <!-- 123) aiqtech/FLUX-Ghibli-Studio-LoRA -->
         
     | 
| 1311 | 
         
            -
                  <div class="event">
         
     | 
| 1312 | 
         
            -
                    <h4>aiqtech/FLUX-Ghibli-Studio-LoRA</h4>
         
     | 
| 1313 | 
         
            -
                    <p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqtech/FLUX-Ghibli-Studio-LoRA" target="_blank">link</a>).</p>
         
     | 
| 1314 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 1315 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1316 | 
         
            -
             
     | 
| 1317 | 
         
            -
                  </div>
         
     | 
| 1318 | 
         
            -
                  
         
     | 
| 1319 | 
         
            -
                  <!-- 124) aiqtech/flxgif -->
         
     | 
| 1320 | 
         
            -
                  <div class="event">
         
     | 
| 1321 | 
         
            -
                    <h4>aiqtech/flxgif</h4>
         
     | 
| 1322 | 
         
            -
                    <p>Flux Image to GIF Generation(<a href="https://huggingface.co/spaces/aiqtech/flxgif" target="_blank">link</a>).</p>
         
     | 
| 1323 | 
         
            -
                    <span class="tag Image">Image</span>
         
     | 
| 1324 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1325 | 
         
            -
             
     | 
| 1326 | 
         
            -
                  </div>
         
     | 
| 1327 | 
         
            -
                  
         
     | 
| 1328 | 
         
            -
                  <!-- 125) aiqtech/imaginpaint -->
         
     | 
| 1329 | 
         
            -
                  <div class="event">
         
     | 
| 1330 | 
         
            -
                    <h4>aiqtech/imaginpaint</h4>
         
     | 
| 1331 | 
         
            -
                    <p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/aiqtech/imaginpaint" target="_blank">link</a>).</p>
         
     | 
| 1332 | 
         
            -
                    <span class="tag image">Image</span>
         
     | 
| 1333 | 
         
            -
                    <span class="tag popular">POPULAR</span>
         
     | 
| 1334 | 
         
            -
             
     | 
| 1335 | 
         
            -
                  </div>
         
     | 
| 1336 | 
         
            -
             
     | 
| 1337 | 
         
            -
                </div>
         
     | 
| 1338 | 
         
            -
              </div>
         
     | 
| 1339 | 
         
            -
              
         
     | 
| 1340 | 
         
            -
             
         
     | 
| 1341 | 
         
            -
             
     | 
| 1342 | 
         
            -
              <script>
         
     | 
| 1343 | 
         
            -
                function updateCounts() {
         
     | 
| 1344 | 
         
            -
                  const bestCount = document.querySelectorAll('.tag.best').length;
         
     | 
| 1345 | 
         
            -
                  const newCount = document.querySelectorAll('.tag.new').length;
         
     | 
| 1346 | 
         
            -
                  const popularCount = document.querySelectorAll('.tag.popular').length;
         
     | 
| 1347 | 
         
            -
             
     | 
| 1348 | 
         
            -
                  document.getElementById('best-count').textContent = bestCount;
         
     | 
| 1349 | 
         
            -
                  document.getElementById('new-count').textContent = newCount;
         
     | 
| 1350 | 
         
            -
                  document.getElementById('popular-count').textContent = popularCount;
         
     | 
| 1351 | 
         
            -
                }
         
     | 
| 1352 | 
         
            -
             
     | 
| 1353 | 
         
            -
                let currentFilters = {
         
     | 
| 1354 | 
         
            -
                  category: 'all'
         
     | 
| 1355 | 
         
            -
                };
         
     | 
| 1356 | 
         
            -
             
     | 
| 1357 | 
         
            -
                function filterByCategory(category) {
         
     | 
| 1358 | 
         
            -
                  const buttons = document.querySelectorAll('.toggle-button');
         
     | 
| 1359 | 
         
            -
                  buttons.forEach(button => {
         
     | 
| 1360 | 
         
            -
                    button.classList.remove('active');
         
     | 
| 1361 | 
         
            -
                    if (button.getAttribute('data-filter') === category) {
         
     | 
| 1362 | 
         
            -
                      button.classList.add('active');
         
     | 
| 1363 | 
         
            -
                    }
         
     | 
| 1364 | 
         
            -
                  });
         
     | 
| 1365 | 
         
            -
                  currentFilters.category = category;
         
     | 
| 1366 | 
         
            -
                  applyFilters();
         
     | 
| 1367 | 
         
            -
                }
         
     | 
| 1368 | 
         
            -
             
     | 
| 1369 | 
         
            -
                function applyFilters() {
         
     | 
| 1370 | 
         
            -
                  const events = document.querySelectorAll('.event');
         
     | 
| 1371 | 
         
            -
                  events.forEach(event => {
         
     | 
| 1372 | 
         
            -
                    const matchesCategory =
         
     | 
| 1373 | 
         
            -
                      currentFilters.category === 'all' ||
         
     | 
| 1374 | 
         
            -
                      event.querySelector(`.tag.${currentFilters.category}`);
         
     | 
| 1375 | 
         
            -
                    event.style.display = matchesCategory ? 'block' : 'none';
         
     | 
| 1376 | 
         
            -
                  });
         
     | 
| 1377 | 
         
            -
                  updateCounts();
         
     | 
| 1378 | 
         
            -
                }
         
     | 
| 1379 | 
         
            -
             
     | 
| 1380 | 
         
            -
                document.addEventListener('DOMContentLoaded', function() {
         
     | 
| 1381 | 
         
            -
                  const buttons = document.querySelectorAll('.toggle-button');
         
     | 
| 1382 | 
         
            -
                  buttons.forEach(button => {
         
     | 
| 1383 | 
         
            -
                    button.addEventListener('click', function() {
         
     | 
| 1384 | 
         
            -
                      filterByCategory(this.getAttribute('data-filter'));
         
     | 
| 1385 | 
         
            -
                    });
         
     | 
| 1386 | 
         
            -
                  });
         
     | 
| 1387 | 
         
            -
                  updateCounts();
         
     | 
| 1388 | 
         
            -
                });
         
     | 
| 1389 | 
         
            -
              </script>
         
     | 
| 1390 | 
         
            -
            </body>
         
     | 
| 1391 | 
         
            -
            </html>
         
     | 
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         | 
|
| 
         |