├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── logo.png └── workflows │ └── ci-uffs-cc.yml ├── .gitignore ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ROADMAP.md ├── docs ├── LICENSE ├── css │ ├── normalize.css │ └── style.css └── index.html ├── fonts └── Roboto │ ├── LICENSE.txt │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ └── Roboto-ThinItalic.ttf ├── icons ├── bg-main │ ├── cc-logo-icon-bg-main.pdf │ ├── cc-logo-icon-bg-main.png │ ├── cc-logo-icon-bg-main.svg │ ├── cc-logo-icon-bg-main@4x.png │ └── cc-logo-icon-bg-main@512w.png ├── bg-transparent │ ├── cc-logo-icon-bg-transparent.pdf │ ├── cc-logo-icon-bg-transparent.png │ ├── cc-logo-icon-bg-transparent.svg │ ├── cc-logo-icon-bg-transparent@4x.png │ └── cc-logo-icon-bg-transparent@512w.png └── cc-logo-icon.fig └── logos ├── bg-main ├── cc-logo-bg-main.pdf ├── cc-logo-bg-main.png ├── cc-logo-bg-main.svg └── cc-logo-bg-main@4x.png ├── bg-transparent ├── cc-logo-bg-transparent.pdf ├── cc-logo-bg-transparent.png ├── cc-logo-bg-transparent.svg ├── cc-logo-bg-transparent@4x.png ├── cc-logo-black-on-bg-transparent.pdf ├── cc-logo-black-on-bg-transparent.png ├── cc-logo-black-on-bg-transparent.svg └── cc-logo-pure-black-on-bg-transparent.png ├── bg-white ├── cc-logo-black-on-bg-white.png ├── cc-logo-black-on-bg-white@4x.png ├── cc-logo-pure-black-on-bg-white.pdf ├── cc-logo-pure-black-on-bg-white.png ├── cc-logo-pure-black-on-bg-white.svg └── cc-logo-pure-black-on-bg-white@4x.png ├── cc-logo-black.fig └── cc-logo.fig /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Reporte de bug/problema 3 | about: Crie um reporte para nos ajudar a melhorar 4 | title: '' 5 | labels: 'bug' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ** Descreva o bug/problema ** 11 | Uma descrição clara e concisa do que é o erro. 12 | 13 | **Reproduzir** 14 | Etapas para reproduzir o problema: 15 | 1. Vá para '...' 16 | 2. Clique em '....' 17 | 3. Role para baixo até '....' 18 | 4. Ver erro 19 | 20 | **Comportamento esperado** 21 | Uma descrição clara e concisa do que você esperava que acontecesse. 22 | 23 | ** Capturas de tela ** 24 | Se aplicável, adicione capturas de tela (_screenshots_) para ajudar a explicar seu problema. 25 | 26 | ** Desktop (preencha as seguintes informações): ** 27 |   - Sistema operacional: [por exemplo Windows] 28 |   - Navegador [por exemplo Chrome, Firefox] 29 |   - Versão [por exemplo 22] 30 | 31 | ** Smartphone (preencha as seguintes informações): ** 32 |   - Dispositivo: [por exemplo Motorola Moto Z Play] 33 |   - Sistema operacional: [por exemplo Android 8.0] 34 |   - Navegador [por exemplo Chrome] 35 |   - Versão [por exemplo 22] 36 | 37 | ** Contexto adicional ** 38 | Adicione qualquer outro contexto sobre o problema aqui. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Solicitação de funcionalidade 3 | about: Sugira uma ideia para esse projeto 4 | title: '' 5 | labels: 'feature' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ** Sua solicitação de funcionalidade está relacionada a um problema? Por favor descreva.** 11 | Uma descrição clara e concisa de qual é o problema. Ex. Fico sempre frustrado quando [...] 12 | 13 | ** Descreva a solução que você deseja ** 14 | Uma descrição clara e concisa do que você deseja que aconteça. 15 | 16 | ** Descreva as alternativas que você considerou ** 17 | Uma descrição clara e concisa de qualquer solução ou recurso alternativo que você tenha considerado. 18 | 19 | ** Contexto adicional ** 20 | Adicione qualquer outro contexto ou screenshot sobre a sua solicitação de funcionalidade. 21 | -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/.github/logo.png -------------------------------------------------------------------------------- /.github/workflows/ci-uffs-cc.yml: -------------------------------------------------------------------------------- 1 | name: ci.uffs.cc 2 | on: 3 | push: 4 | branches: 5 | - master 6 | - dev 7 | env: 8 | BUILD_HOST: ci.uffs.cc 9 | BUILD_WEB_DIRECTORY: /home/ccuffsci/ci.uffs.cc/template 10 | BUILD_WEB_URL: https://ci.uffs.cc/template 11 | jobs: 12 | build-deploy-audit: 13 | name: Build, deploy and audit 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@v1 17 | - name: Extract branch name 18 | shell: bash 19 | run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" 20 | id: extract_branch 21 | - name: Prepare deploy server 22 | uses: appleboy/ssh-action@master 23 | with: 24 | host: ${{ env.BUILD_HOST }} 25 | username: ${{ secrets.USERNAME }} 26 | password: ${{ secrets.PASSWORD }} 27 | port: ${{ secrets.PORT }} 28 | script: | 29 | mkdir -p ${{ env.BUILD_WEB_DIRECTORY }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }} 30 | mkdir -p ${{ env.BUILD_WEB_DIRECTORY }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }}/_report 31 | - name: Deploy site via SSH 32 | uses: garygrossgarten/github-action-scp@release 33 | with: 34 | local: ${{ github.workspace }}/ 35 | remote: ${{ env.BUILD_WEB_DIRECTORY }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }}/ 36 | host: ${{ env.BUILD_HOST }} 37 | username: ${{ secrets.USERNAME }} 38 | password: ${{ secrets.PASSWORD }} 39 | - name: Audit site performance 40 | uses: jakejarvis/lighthouse-action@master 41 | with: 42 | url: ${{ env.BUILD_WEB_URL }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }} 43 | - name: Upload audit results as an artifact 44 | uses: actions/upload-artifact@master 45 | with: 46 | name: report 47 | path: './report' 48 | - name: Copy audit report to deploy server via SSH 49 | uses: garygrossgarten/github-action-scp@release 50 | with: 51 | local: ${{ github.workspace }}/report 52 | remote: ${{ env.BUILD_WEB_DIRECTORY }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }}/_report/ 53 | host: ${{ env.BUILD_HOST }} 54 | username: ${{ secrets.USERNAME }} 55 | password: ${{ secrets.PASSWORD }} 56 | - name: Summary 57 | run: | 58 | echo "Summary:" 59 | echo " Live URL: ${{ env.BUILD_WEB_URL }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }}" 60 | echo " Audit report URL: ${{ env.BUILD_WEB_URL }}/${{ steps.extract_branch.outputs.branch }}/${{ github.sha }}/_report" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | # Intermediary/compiled files 4 | .class 5 | .o 6 | 7 | ### Mac ### 8 | .DS_Store 9 | 10 | platforms/ 11 | plugins/ 12 | 13 | cordova/www/ 14 | 15 | # res 16 | resources/signing 17 | node_modules 18 | 19 | # Created by https://www.gitignore.io/api/windows,visualstudio 20 | 21 | ### Windows ### 22 | # Windows image file caches 23 | Thumbs.db 24 | ehthumbs.db 25 | 26 | # Folder config file 27 | Desktop.ini 28 | 29 | # Recycle Bin used on file shares 30 | $RECYCLE.BIN/ 31 | 32 | # Windows Installer files 33 | *.cab 34 | *.msi 35 | *.msm 36 | *.msp 37 | 38 | # Windows shortcuts 39 | *.lnk 40 | 41 | 42 | ### VisualStudio ### 43 | ## Ignore Visual Studio temporary files, build results, and 44 | ## files generated by popular Visual Studio add-ons. 45 | 46 | # User-specific files 47 | *.suo 48 | *.user 49 | *.userosscache 50 | *.sln.docstates 51 | 52 | # User-specific files (MonoDevelop/Xamarin Studio) 53 | *.userprefs 54 | 55 | # Build results 56 | [Dd]ebug/ 57 | [Dd]ebugPublic/ 58 | [Rr]elease/ 59 | [Rr]eleases/ 60 | x64/ 61 | x86/ 62 | build/ 63 | bld/ 64 | [Bb]in/ 65 | [Oo]bj/ 66 | 67 | # Visual Studio 2015 cache/options directory 68 | .vs/ 69 | # Uncomment if you have tasks that create the project's static files in wwwroot 70 | #wwwroot/ 71 | 72 | # MSTest test Results 73 | [Tt]est[Rr]esult*/ 74 | [Bb]uild[Ll]og.* 75 | 76 | # NUNIT 77 | *.VisualState.xml 78 | TestResult.xml 79 | 80 | # Build Results of an ATL Project 81 | [Dd]ebugPS/ 82 | [Rr]eleasePS/ 83 | dlldata.c 84 | 85 | # DNX 86 | project.lock.json 87 | artifacts/ 88 | 89 | *_i.c 90 | *_p.c 91 | *_i.h 92 | *.ilk 93 | *.meta 94 | *.obj 95 | *.pch 96 | *.pdb 97 | *.pgc 98 | *.pgd 99 | *.rsp 100 | *.sbr 101 | *.tlb 102 | *.tli 103 | *.tlh 104 | *.tmp 105 | *.tmp_proj 106 | *.log 107 | *.vspscc 108 | *.vssscc 109 | .builds 110 | *.pidb 111 | *.svclog 112 | *.scc 113 | 114 | # Chutzpah Test files 115 | _Chutzpah* 116 | 117 | # Visual C++ cache files 118 | ipch/ 119 | *.aps 120 | *.ncb 121 | *.opensdf 122 | *.sdf 123 | *.cachefile 124 | 125 | # Visual Studio profiler 126 | *.psess 127 | *.vsp 128 | *.vspx 129 | 130 | # TFS 2012 Local Workspace 131 | $tf/ 132 | 133 | # Guidance Automation Toolkit 134 | *.gpState 135 | 136 | # ReSharper is a .NET coding add-in 137 | _ReSharper*/ 138 | *.[Rr]e[Ss]harper 139 | *.DotSettings.user 140 | 141 | # JustCode is a .NET coding add-in 142 | .JustCode 143 | 144 | # TeamCity is a build add-in 145 | _TeamCity* 146 | 147 | # DotCover is a Code Coverage Tool 148 | *.dotCover 149 | 150 | # NCrunch 151 | _NCrunch_* 152 | .*crunch*.local.xml 153 | nCrunchTemp_* 154 | 155 | # MightyMoose 156 | *.mm.* 157 | AutoTest.Net/ 158 | 159 | # Web workbench (sass) 160 | .sass-cache/ 161 | 162 | # Installshield output folder 163 | [Ee]xpress/ 164 | 165 | # DocProject is a documentation generator add-in 166 | DocProject/buildhelp/ 167 | DocProject/Help/*.HxT 168 | DocProject/Help/*.HxC 169 | DocProject/Help/*.hhc 170 | DocProject/Help/*.hhk 171 | DocProject/Help/*.hhp 172 | DocProject/Help/Html2 173 | DocProject/Help/html 174 | 175 | # Click-Once directory 176 | publish/ 177 | 178 | # Publish Web Output 179 | *.[Pp]ublish.xml 180 | *.azurePubxml 181 | # TODO: Comment the next line if you want to checkin your web deploy settings 182 | # but database connection strings (with potential passwords) will be unencrypted 183 | *.pubxml 184 | *.publishproj 185 | 186 | # NuGet Packages 187 | *.nupkg 188 | # The packages folder can be ignored because of Package Restore 189 | **/packages/* 190 | # except build/, which is used as an MSBuild target. 191 | !**/packages/build/ 192 | # Uncomment if necessary however generally it will be regenerated when needed 193 | #!**/packages/repositories.config 194 | 195 | # Windows Azure Build Output 196 | csx/ 197 | *.build.csdef 198 | 199 | # Windows Store app package directory 200 | AppPackages/ 201 | 202 | # Visual Studio cache files 203 | # files ending in .cache can be ignored 204 | *.[Cc]ache 205 | # but keep track of directories ending in .cache 206 | !*.[Cc]ache/ 207 | 208 | # Others 209 | ClientBin/ 210 | [Ss]tyle[Cc]op.* 211 | ~$* 212 | *~ 213 | *.dbmdl 214 | *.dbproj.schemaview 215 | *.pfx 216 | *.publishsettings 217 | node_modules/ 218 | orleans.codegen.cs 219 | 220 | # RIA/Silverlight projects 221 | Generated_Code/ 222 | 223 | # Backup & report files from converting an old project file 224 | # to a newer Visual Studio version. Backup files are not needed, 225 | # because we have git ;-) 226 | _UpgradeReport_Files/ 227 | Backup*/ 228 | UpgradeLog*.XML 229 | UpgradeLog*.htm 230 | 231 | # SQL Server files 232 | *.mdf 233 | *.ldf 234 | 235 | # Business Intelligence projects 236 | *.rdl.data 237 | *.bim.layout 238 | *.bim_*.settings 239 | 240 | # Microsoft Fakes 241 | FakesAssemblies/ 242 | 243 | # Node.js Tools for Visual Studio 244 | .ntvs_analysis.dat 245 | 246 | # Visual Studio 6 build log 247 | *.plg 248 | 249 | # Visual Studio 6 workspace options file 250 | *.opt 251 | 252 | # Visual Studio LightSwitch build output 253 | **/*.HTMLClient/GeneratedArtifacts 254 | **/*.DesktopClient/GeneratedArtifacts 255 | **/*.DesktopClient/ModelManifest.xml 256 | **/*.Server/GeneratedArtifacts 257 | **/*.Server/ModelManifest.xml 258 | _Pvt_Extensions 259 | nwjs/www 260 | dist 261 | .temp 262 | 263 | cordova/resources 264 | electron-build 265 | electron/www 266 | typings 267 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | Todas as alterações notável desse projeto estão documentadas nesse arquivo. O formato é baseado no [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) e o projeto segue [versionamento semântico](http://semver.org/spec/v2.0.0.html). 4 | 5 | ## [1.0.0](https://github.com/ccuffs/template/releases/tag/v.1.0.0) - 2019-10-13 6 | ### Adicionado 7 | - Arquivo `CHANGELOG.md`. 8 | - Estrutura e documentação básica. 9 | - Image de logo para referência. 10 | - Arquivo `.gitignore` básico. 11 | - Arquivo `ROADMAP.md` básico. 12 | 13 | ### Modificado 14 | - `CODE-OF-CONDUCT.md` foi refinado. 15 | - `CONTRIBUTIN.md` foi refinado. -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Código de conduta para colaboradores 2 | 3 | ## Nossa promessa 4 | 5 | Com o interesse de fomentar uma comunidade aberta e acolhedora, nós, como colaboradores e administradores deste projeto, comprometemo-nos a fazer a participação deste projeto uma experiência livre de assédio para todos, independentemente da aparência pessoal, deficiência, etnia, gênero, idade, identidade ou expressão de gênero, identidade ou orientação sexual, nacionalidade, nível de experiência, porte físico, raça ou religião. 6 | 7 | ## Nossos padrões 8 | 9 | Exemplos de comportamentos que contribuem a criar um ambiente positivo incluem: 10 | 11 | - Usar linguagem acolhedora e inclusiva 12 | - Respeitar pontos de vista e experiências diferentes 13 | - Aceitar crítica construtiva com graça 14 | - Focar no que é melhor para a comunidade 15 | - Mostrar empatia com outros membros da comunidade 16 | 17 | Exemplos de comportamentos inaceitáveis por parte dos participantes incluem: 18 | 19 | - Uso de linguagem ou imagens sexuais e atenção ou avanço sexual indesejada 20 | - Comentários insultuosos e/ou depreciativos e ataques pessoais ou políticos (Trolling) 21 | - Assédio público ou privado 22 | - Publicar informação pessoal de outros sem permissão explícita, como, por exemplo, um endereço eletrônico ou residencial 23 | - Qualquer outra forma de conduta que pode ser razoavelmente considerada inapropriada num ambiente profissional 24 | 25 | ## Nossas responsabilidades 26 | 27 | Os administradores do projeto são responsáveis por esclarecer os padrões de comportamento e deverão tomar ação corretiva apropriada e justa em resposta a qualquer instância de comportamento inaceitável. 28 | 29 | Os administradores do projeto têm o direito e a responsabilidade de remover, editar ou rejeitar comentários, commits, código, edições na wiki, erros ou outras formas de contribuição que não estejam de acordo com este Código de Conduta, bem como banir temporariamente ou permanentemente qualquer colaborador por qualquer outro comportamento que se considere impróprio, perigoso, ofensivo ou problemático. 30 | 31 | ## Escopo 32 | 33 | Este Código de Conduta aplica-se dentro dos espaços do projeto ou qualquer espaço público onde alguém represente o mesmo ou a sua comunidade. Exemplos de representação do projeto ou comunidade incluem usar um endereço de email oficial do projeto, postar por uma conta de mídia social oficial, ou agir como um representante designado num evento online ou offline. A representação de um projeto pode ser ainda definida e esclarecida pelos administradores do projeto. 34 | 35 | ## Aplicação 36 | Comportamento abusivo, de assédio ou de outros tipos pode ser comunicado primeiramente contatando-se a equipe do projeto. Se isso não resolver, contate a coordenação geral através do e-mail `computacao.ch@uffs.edu.br`. Todas as queixas serão revistas e investigadas e resultarão numa resposta necessária e apropriada à situação. A equipe é obrigada a manter a confidencialidade em relação ao elemento que reportou o incidente. Demais detalhes de políticas de aplicação podem ser postadas separadamente. 37 | 38 | Administradores do projeto que não sigam ou não mantenham o Código de Conduta em boa fé podem enfrentar repercussões temporárias ou permanentes determinadas por outros membros da liderança do projeto. 39 | 40 | ## Atribuição 41 | 42 | Este Código de Conduta é adaptado do [Contributor Covenant (versão 1.4)](https://www.contributor-covenant.org/pt-br/version/1/4/code-of-conduct.html) e do [Código de conduta para colaboradores - pt-br](https://github.com/portabilis/i-educar/blob/master/code-of-conduct.md) do projeto [i-educar](https://github.com/portabilis/i-educar). 43 | 44 | # Versão 45 | 46 | * **1.0.1** - 2019-10-13: revisões de e-mails. 47 | * **1.0.0** - 2019-09-17: primeiro texto. 48 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Guia de contribuição 2 | 3 | Que bom que você resolveu contribuir conosco, obrigado :heart:! Neste guia vamos explicar como funcionam os nossos processos internos e como podemos trabalhar juntos da melhor forma possível. 4 | 5 | ## Como contribuir 6 | 7 | Existem diversas formas de contribuir com o projeto: 8 | 9 | - [Reportando bugs](#reportando-bugs) 10 | - [Indicando melhorias](#indicando-melhorias) 11 | - [Pedindo funcionalidades](#pedindo-funcionalidades) 12 | - [Discutindo as issues](#discutindo-as-issues) 13 | - [Fazendo pull requests](#fazendo-pull-requests) 14 | - [Outras formas de contribuir](#outras-formas-de-contribuir) 15 | 16 | ### Reportando bugs 17 | 18 | Se encontrou um bug você pode reportá-lo usando a ferramenta de 19 | [issues do GitHub](https://github.com/ccuffs/template/issues). Porém antes 20 | de enviar seu bug é importante fazer as seguintes verificações: 21 | 22 | 1. Atualize seu repositório local no branch `master` mais recente. Talvez seu 23 | bug já tenha sido corrigido na versão mais recente; 24 | 2. Verifique se o bug já foi reportado por outra pessoa fazendo uma busca pelas 25 | issues. 26 | 27 | Se o bug realmente não foi resolvido ou acolhido então está na hora de 28 | [criar uma nova issue](https://github.com/ccuffs/template/issues/new). No 29 | título da issue tente resumir da melhor forma o problema evitando títulos 30 | genéricos como *"Falha no sistema"* ou *"Problemas na instalação"*. 31 | 32 | Se possível inclua imagens ou vídeos à descrição do bug para facilitar o 33 | processo de reprodução. Use um software como 34 | [LICEcap](https://www.cockos.com/licecap/) para criar um gif animado de sua 35 | tela. Informe também detalhes sobre o seu ambiente: plataforma de execução, 36 | sistema operacional, navegador e versão, etc. Você também deve adicionar o 37 | label **bug** à issue. 38 | 39 | #### Nota sobre falhas de segurança 40 | 41 | Se você encontrou alguma falha de segurança **não use as issues para reportar o 42 | bug**. Escreva o seu report via e-mail diretamente para algum administrador do projeto. 43 | Ele será analisado, validado e corrigido de acordo com as necessidades. 44 | Pedimos que **não torne a falha pública** para segurança de todos que utilizam 45 | o projeto em seu estado atual. 46 | 47 | ### Indicando melhorias 48 | 49 | Outra ótima forma de contribuir é indicando melhorias ao código do projeto e em 50 | como ele está estruturado. Se você tem qualquer ideia de como podemos melhorar 51 | alguma abordagem na solução de problemas, refatoração de código, melhoria em 52 | algum recurso ou qualquer outra coisa relacionada, siga estes passos: 53 | 54 | 1. Certifique-se de que sua ideia já não esteja sendo abordada em nosso 55 | [roadmap](./ROADMAP.md); 56 | 2. Também verifique se a ideia já não está pressente em nossas 57 | [issues do GitHub](https://github.com/ccuffs/template/issues); 58 | 3. Defenda a sua ideia e explique de forma convincente porque ela deve ser 59 | acolhida. Eis algumas questões a considerar: 60 | 1. Você realmente esta propondo uma ideia só ou um conjunto de ideias? 61 | 2. Qual é o problema que sua ideia resolve? 62 | 3. Por que sua sugestão é melhor do que o que já existe no código? 63 | 4. Realmente vale a pena demandar tempo para implementar sua ideia dentro de 64 | nossas prioridades? 65 | 66 | Tendo passado pelo crivo de todos estes questionamentos basta 67 | [criar uma nova issue](https://github.com/ccuffs/template/issues/new) 68 | descrevendo as melhorias e usando o label **feature** ou **melhoria**. 69 | 70 | ### Pedindo funcionalidades 71 | 72 | Tendo em vista o que estamos construindo junto com a comunidade, novas funcionalidades 73 | tem prioridade relativa. Vale a pena enviar sua sugestão de funcionalidade 74 | apenas se: 75 | 76 | 1. O recurso em questão resolve um problema que não é resolvido por nada que já 77 | exista no projeto; 78 | 2. O recurso resolve um problema real validado por pessoas que estão em contato 79 | direto com a utilização do projeto. 80 | 81 | Para criar seu pedido de funcionalidade [criar uma nova issue](https://github.com/ccuffs/template/issues/new) usando 82 | o label **feature**. 83 | 84 | ### Discutindo as issues 85 | 86 | Antes de partirmos para o código em si é muito importante discutirmos com a 87 | comunidade como cada issue será abordada. Toda e qualquer questão deve ser 88 | colocada em discussão para que qualquer pessoa que deseje solucionar aquele 89 | problema tenha o máximo de informações para executar uma solução. 90 | 91 | Idealmente todas as issues devem ter um plano de ação claro antes que qualquer 92 | código seja escrito. Sabemos que muitas vezes isto não é possível, sendo 93 | necessário explorar e analisar melhor o que foi indicado. Nestes casos, publique 94 | todas as suas descobertas nas discussões indicando caminhos e recebendo o 95 | feedback da comunidade a respeito do que está sendo proposto. 96 | 97 | Issues que estão em processo de discussão devem receber o label **discussão** 98 | indicando que aquela issue precisa dos inputs e feedbacks dos membros da 99 | comunidade. Nós te encorajamos a participar o máximo possível mas fique atento 100 | ao nosso [código de conduta](./CODE_OF_CONDUCT.md) antes de realizar qualquer 101 | interação com os outros membros da comunidade. 102 | 103 | ### Fazendo pull requests 104 | 105 | Depois de ter um plano de ação relativamente claro você deve estar pronto para 106 | contribuir com código. Para isso faça um fork do projeto e trabalhe em cima de 107 | um branch diferente de master implementando suas soluções. Para saber mais sobre 108 | pull requests e como eles funcionam, veja 109 | [este link](https://help.github.com/articles/about-pull-requests/). 110 | 111 | Antes de abrir seu PR (pull request) certique-se que: 112 | 113 | - O código realmente resolve um problema real (de preferência baseado em alguma 114 | issue levantada); 115 | - Seu PR resolve uma issue apenas. Se você quiser fazer mais de uma coisa, 116 | divida em vários PRs; 117 | - Seu código é funcional (ou algo próximo disso). Providencie testes se 118 | possível; 119 | - As mensagens de seus commits são claras e descrevem bem o trabalho. Para 120 | maiores dicas sobre como escrever mensagens de commit adequadas, veja 121 | [este guia](https://chris.beams.io/posts/git-commit/). 122 | 123 | ### Outras formas de contribuir 124 | 125 | Se você não trabalha com código mas quer ajudar o projeto, existe muitas outras 126 | formas de contribuir: 127 | 128 | - Ajude com a documentação do projeto; 129 | - Fale sobre o projeto nas suas redes sociais, blogs, etc. Espalhe a palavra; 130 | - Organize eventos e dê palestras sobre o projeto; 131 | - Crie material promocional como apresentações, screencasts, mídia para 132 | compartilhamento em redes sociais, etc; 133 | - Viu alguma discussão que te interessa e onde você pode acrescentar mesmo sem 134 | conhecimento técnico? Não se acanhe e participe também nas issues do GitHub. 135 | 136 | Pensou em alguma outra forma de contribuir? Compartilha com a gente! 137 | 138 | # Créditos 139 | 140 | Este documento foi escrito com o auxílio de outros documentos similares 141 | utilizados em outras comunidades. Destacamos: 142 | 143 | - [projeto](https://github.com/portabilis/projeto/blob/master/code-of-conduct.md) 144 | - [Metabase](https://github.com/metabase/metabase/blob/master/docs/contributing.md) 145 | - [Ghost](https://docs.ghost.org/v1/docs/contributing) 146 | - [Ember.js](https://github.com/emberjs/ember.js/blob/master/CONTRIBUTING.md) 147 | - [Ruby on Rails](https://github.com/rails/rails/blob/master/CONTRIBUTING.md) 148 | - [Propostas de William Espindola](https://github.com/portabilis/projeto/issues/201) 149 | - [i-educar](https://github.com/portabilis/i-educar) 150 | 151 | ... dentre outros! 152 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |
3 | 4 | 5 |

6 | 7 | # Título 8 | 9 | Coloque uma descrição do projeto aqui. Geralmente essa descrição tem de duas a três linhas de tamanho. Ela deve dar uma visão geral sobre o que é o projeto, ex.: tecnologia usada, filosofia de existência, qual problema tenta-se resolver, etc. Se você precisa escrever mais que 3 linhas de descrição, crie subseções. 10 | 11 | > **IMPORTANTE:** coloque aqui alguma mensagem que é muito relevante aos usuários do projeto, se for o caso. 12 | 13 | ## Features 14 | 15 | Aqui você pode colocar uma screenshot do produto resultante desse projeto. Descreva também suas features usando uma lista: 16 | 17 | * Fácil integração; 18 | * Poucas dependências; 19 | * Utiliza um template lindo para organizar o `README`; 20 | * Possui ótima documentação e testes. 21 | 22 | ## Começando 23 | 24 | ### 1. Primeiro passo para começar 25 | 26 | Geralmente o primeiro passo para começar é instalar dependências para rodar o projeto. Rode: 27 | 28 | ``` 29 | apt get install dependencia 30 | ``` 31 | 32 | Recomenda-se que cada comando seja colocado em uma linha diferente: 33 | 34 | ``` 35 | apt get install outra-coisa 36 | ``` 37 | 38 | Dessa forma os usuários podem copiar e colar sem ler as documentação (que é o que geralmente acontece). 39 | 40 | ### 2. Outro(s) passo(s) 41 | 42 | Geralmente os próximos passos ensinam como instalar e configurar o projeto para uso/desenvolvimento. Rode: 43 | 44 | ``` 45 | git clone https://github.com/ccuffs/template template 46 | ``` 47 | 48 | ## Contribua 49 | 50 | Sua ajuda é muito bem-vinda, independente da forma! Confira o arquivo [CONTRIBUTING.md](CONTRIBUTING.md) para conhecer todas as formas de contribuir com o projeto. Por exemplo, [sugerir uma nova funcionalidade](https://github.com/ccuffs/template/issues/new?assignees=&labels=&template=feature_request.md&title=), [reportar um problema/bug](https://github.com/ccuffs/template/issues/new?assignees=&labels=bug&template=bug_report.md&title=), [enviar um pull request](https://github.com/ccuffs/hacktoberfest/blob/master/docs/tutorial-pull-request.md), ou simplemente utilizar o projeto e comentar sua experiência. 51 | 52 | Veja o arquivo [ROADMAP.md](ROADMAP.md) para ter uma ideia de como o projeto deve evoluir. 53 | 54 | 55 | ## Licença 56 | 57 | Esse projeto é licenciado nos termos da licença open-source [Apache 2.0](https://choosealicense.com/licenses/apache-2.0/) e está disponível de graça. 58 | 59 | ## Changelog 60 | 61 | Veja todas as alterações desse projeto no arquivo [CHANGELOG.md](CHANGELOG.md). 62 | 63 | ## Projetos semelhates 64 | 65 | Abaixo está uma lista de links interessantes e projetos similares: 66 | 67 | * [Outro projeto](https://github.com/projeto) 68 | * [Projeto inspiração](https://github.com/projeto) 69 | * [Ferramenta semelhante](https://github.com/projeto) 70 | -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- 1 | # Roadmap 2 | 3 | Este arquivo fornece uma visão geral da direção que este projeto está seguindo. O roadmap é organizado em etapas que se concentram em um tema específico, por exemplo, UX. 4 | 5 | ## [M1 - infraestrutura básica](https://github.com/ccuffs/template/milestone/1) 6 | 7 | Nessa fase do projeto o foco é em X, Y e Z. As funcionalidades esperadas são: 8 | 9 | - Alguma coisa que o usuário consegue fazer. 10 | - Descrição de uma feature. 11 | - Capacidade de salvar coisas. 12 | - Etc. 13 | 14 | ## [M2 - experiência do usuário](https://github.com/ccuffs/template/milestone/2) 15 | 16 | Nessa fase do projeto o foco é em A, B e C. As funcionalidades esperadas são: 17 | 18 | - Alguma coisa que o usuário consegue fazer. 19 | - Descrição de uma feature. 20 | - Capacidade de salvar coisas. 21 | - Etc. -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 heeyeun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /docs/css/normalize.css: -------------------------------------------------------------------------------- 1 | /*! normalize.css v3.0.2 | MIT License | git.io/normalize */ 2 | 3 | /** 4 | * 1. Set default font family to sans-serif. 5 | * 2. Prevent iOS text size adjust after orientation change, without disabling 6 | * user zoom. 7 | */ 8 | 9 | html { 10 | font-family: sans-serif; /* 1 */ 11 | -ms-text-size-adjust: 100%; /* 2 */ 12 | -webkit-text-size-adjust: 100%; /* 2 */ 13 | } 14 | 15 | /** 16 | * Remove default margin. 17 | */ 18 | 19 | body { 20 | margin: 0; 21 | } 22 | 23 | /* HTML5 display definitions 24 | ========================================================================== */ 25 | 26 | /** 27 | * Correct `block` display not defined for any HTML5 element in IE 8/9. 28 | * Correct `block` display not defined for `details` or `summary` in IE 10/11 29 | * and Firefox. 30 | * Correct `block` display not defined for `main` in IE 11. 31 | */ 32 | 33 | article, 34 | aside, 35 | details, 36 | figcaption, 37 | figure, 38 | footer, 39 | header, 40 | hgroup, 41 | main, 42 | menu, 43 | nav, 44 | section, 45 | summary { 46 | display: block; 47 | } 48 | 49 | /** 50 | * 1. Correct `inline-block` display not defined in IE 8/9. 51 | * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. 52 | */ 53 | 54 | audio, 55 | canvas, 56 | progress, 57 | video { 58 | display: inline-block; /* 1 */ 59 | vertical-align: baseline; /* 2 */ 60 | } 61 | 62 | /** 63 | * Prevent modern browsers from displaying `audio` without controls. 64 | * Remove excess height in iOS 5 devices. 65 | */ 66 | 67 | audio:not([controls]) { 68 | display: none; 69 | height: 0; 70 | } 71 | 72 | /** 73 | * Address `[hidden]` styling not present in IE 8/9/10. 74 | * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. 75 | */ 76 | 77 | [hidden], 78 | template { 79 | display: none; 80 | } 81 | 82 | /* Links 83 | ========================================================================== */ 84 | 85 | /** 86 | * Remove the gray background color from active links in IE 10. 87 | */ 88 | 89 | a { 90 | background-color: transparent; 91 | } 92 | 93 | /** 94 | * Improve readability when focused and also mouse hovered in all browsers. 95 | */ 96 | 97 | a:active, 98 | a:hover { 99 | outline: 0; 100 | } 101 | 102 | /* Text-level semantics 103 | ========================================================================== */ 104 | 105 | /** 106 | * Address styling not present in IE 8/9/10/11, Safari, and Chrome. 107 | */ 108 | 109 | abbr[title] { 110 | border-bottom: 1px dotted; 111 | } 112 | 113 | /** 114 | * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. 115 | */ 116 | 117 | b, 118 | strong { 119 | font-weight: bold; 120 | } 121 | 122 | /** 123 | * Address styling not present in Safari and Chrome. 124 | */ 125 | 126 | dfn { 127 | font-style: italic; 128 | } 129 | 130 | /** 131 | * Address variable `h1` font-size and margin within `section` and `article` 132 | * contexts in Firefox 4+, Safari, and Chrome. 133 | */ 134 | 135 | h1 { 136 | font-size: 2em; 137 | margin: 0.67em 0; 138 | } 139 | 140 | /** 141 | * Address styling not present in IE 8/9. 142 | */ 143 | 144 | mark { 145 | background: #ff0; 146 | color: #000; 147 | } 148 | 149 | /** 150 | * Address iningredientent and variable font size in all browsers. 151 | */ 152 | 153 | small { 154 | font-size: 80%; 155 | } 156 | 157 | /** 158 | * Prevent `sub` and `sup` affecting `line-height` in all browsers. 159 | */ 160 | 161 | sub, 162 | sup { 163 | font-size: 75%; 164 | line-height: 0; 165 | position: relative; 166 | vertical-align: baseline; 167 | } 168 | 169 | sup { 170 | top: -0.5em; 171 | } 172 | 173 | sub { 174 | bottom: -0.25em; 175 | } 176 | 177 | /* Embedded content 178 | ========================================================================== */ 179 | 180 | /** 181 | * Remove border when inside `a` element in IE 8/9/10. 182 | */ 183 | 184 | img { 185 | border: 0; 186 | } 187 | 188 | /** 189 | * Correct overflow not hidden in IE 9/10/11. 190 | */ 191 | 192 | svg:not(:root) { 193 | overflow: hidden; 194 | } 195 | 196 | /* Grouping content 197 | ========================================================================== */ 198 | 199 | /** 200 | * Address margin not present in IE 8/9 and Safari. 201 | */ 202 | 203 | figure { 204 | margin: 1em 40px; 205 | } 206 | 207 | /** 208 | * Address differences between Firefox and other browsers. 209 | */ 210 | 211 | hr { 212 | box-sizing: content-box; 213 | height: 0; 214 | } 215 | 216 | /** 217 | * Contain overflow in all browsers. 218 | */ 219 | 220 | pre { 221 | overflow: auto; 222 | } 223 | 224 | /** 225 | * Address odd `em`-unit font size rendering in all browsers. 226 | */ 227 | 228 | code, 229 | kbd, 230 | pre, 231 | samp { 232 | font-family: monospace, monospace; 233 | font-size: 1em; 234 | } 235 | 236 | /* Forms 237 | ========================================================================== */ 238 | 239 | /** 240 | * Known limitation: by default, Chrome and Safari on OS X allow very limited 241 | * styling of `select`, unless a `border` property is set. 242 | */ 243 | 244 | /** 245 | * 1. Correct color not being inherited. 246 | * Known issue: affects color of disabled elements. 247 | * 2. Correct font properties not being inherited. 248 | * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. 249 | */ 250 | 251 | button, 252 | input, 253 | optgroup, 254 | select, 255 | textarea { 256 | color: inherit; /* 1 */ 257 | font: inherit; /* 2 */ 258 | margin: 0; /* 3 */ 259 | } 260 | 261 | /** 262 | * Address `overflow` set to `hidden` in IE 8/9/10/11. 263 | */ 264 | 265 | button { 266 | overflow: visible; 267 | } 268 | 269 | /** 270 | * Address iningredientent `text-transform` inheritance for `button` and `select`. 271 | * All other form control elements do not inherit `text-transform` values. 272 | * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. 273 | * Correct `select` style inheritance in Firefox. 274 | */ 275 | 276 | button, 277 | select { 278 | text-transform: none; 279 | } 280 | 281 | /** 282 | * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` 283 | * and `video` controls. 284 | * 2. Correct inability to style clickable `input` types in iOS. 285 | * 3. Improve usability and ingredientency of cursor style between image-type 286 | * `input` and others. 287 | */ 288 | 289 | button, 290 | html input[type="button"], /* 1 */ 291 | input[type="reset"], 292 | input[type="submit"] { 293 | -webkit-appearance: button; /* 2 */ 294 | cursor: pointer; /* 3 */ 295 | } 296 | 297 | /** 298 | * Re-set default cursor for disabled elements. 299 | */ 300 | 301 | button[disabled], 302 | html input[disabled] { 303 | cursor: default; 304 | } 305 | 306 | /** 307 | * Remove inner padding and border in Firefox 4+. 308 | */ 309 | 310 | button::-moz-focus-inner, 311 | input::-moz-focus-inner { 312 | border: 0; 313 | padding: 0; 314 | } 315 | 316 | /** 317 | * Address Firefox 4+ setting `line-height` on `input` using `!important` in 318 | * the UA stylesheet. 319 | */ 320 | 321 | input { 322 | line-height: normal; 323 | } 324 | 325 | /** 326 | * It's recommended that you don't attempt to style these elements. 327 | * Firefox's implementation doesn't respect box-sizing, padding, or width. 328 | * 329 | * 1. Address box sizing set to `content-box` in IE 8/9/10. 330 | * 2. Remove excess padding in IE 8/9/10. 331 | */ 332 | 333 | input[type="checkbox"], 334 | input[type="radio"] { 335 | box-sizing: border-box; /* 1 */ 336 | padding: 0; /* 2 */ 337 | } 338 | 339 | /** 340 | * Fix the cursor style for Chrome's increment/decrement buttons. For certain 341 | * `font-size` values of the `input`, it causes the cursor style of the 342 | * decrement button to change from `default` to `text`. 343 | */ 344 | 345 | input[type="number"]::-webkit-inner-spin-button, 346 | input[type="number"]::-webkit-outer-spin-button { 347 | height: auto; 348 | } 349 | 350 | /** 351 | * 1. Address `appearance` set to `searchfield` in Safari and Chrome. 352 | * 2. Address `box-sizing` set to `border-box` in Safari and Chrome 353 | * (include `-moz` to future-proof). 354 | */ 355 | 356 | input[type="search"] { 357 | -webkit-appearance: textfield; /* 1 */ /* 2 */ 358 | box-sizing: content-box; 359 | } 360 | 361 | /** 362 | * Remove inner padding and search cancel button in Safari and Chrome on OS X. 363 | * Safari (but not Chrome) clips the cancel button when the search input has 364 | * padding (and `textfield` appearance). 365 | */ 366 | 367 | input[type="search"]::-webkit-search-cancel-button, 368 | input[type="search"]::-webkit-search-decoration { 369 | -webkit-appearance: none; 370 | } 371 | 372 | /** 373 | * Define ingredientent border, margin, and padding. 374 | */ 375 | 376 | fieldset { 377 | border: 1px solid #c0c0c0; 378 | margin: 0 2px; 379 | padding: 0.35em 0.625em 0.75em; 380 | } 381 | 382 | /** 383 | * 1. Correct `color` not being inherited in IE 8/9/10/11. 384 | * 2. Remove padding so people aren't caught out if they zero out fieldsets. 385 | */ 386 | 387 | legend { 388 | border: 0; /* 1 */ 389 | padding: 0; /* 2 */ 390 | } 391 | 392 | /** 393 | * Remove default vertical scrollbar in IE 8/9/10/11. 394 | */ 395 | 396 | textarea { 397 | overflow: auto; 398 | } 399 | 400 | /** 401 | * Don't inherit the `font-weight` (applied by a rule above). 402 | * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. 403 | */ 404 | 405 | optgroup { 406 | font-weight: bold; 407 | } 408 | 409 | /* Tables 410 | ========================================================================== */ 411 | 412 | /** 413 | * Remove most spacing between table cells. 414 | */ 415 | 416 | table { 417 | border-collapse: collapse; 418 | border-spacing: 0; 419 | } 420 | 421 | td, 422 | th { 423 | padding: 0; 424 | } 425 | -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- 1 | .clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.container{margin-left:auto;margin-right:auto;padding-left:4%;padding-right:4%;max-width:1000px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (max-width: 543px){.container{padding-left:4.8%;padding-right:4.8%}}@media (min-width: 1600px){.container{max-width:1600px}}.row,.color-chips{margin-left:-2px;margin-right:-2px}.row:before,.color-chips:before,.row:after,.color-chips:after{content:" ";display:table}.row:after,.color-chips:after{clear:both}.col-half{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:100%}@media (min-width: 768px){.col-half{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:50%}}.blog-logo{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:25%}@media (min-width: 768px){.blog-logo{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:20%}}@media (min-width: 1600px){.blog-logo{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:10%}}.cover{margin-left:-2px;margin-right:-2px}.cover:before,.cover:after{content:" ";display:table}.cover:after{clear:both}.cover-content{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:100%}@media (min-width: 544px){.cover-content{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:75%}}@media (min-width: 768px){.cover-content{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:80%}}#carbonads{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:100%}@media (min-width: 544px){#carbonads{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:25%}}@media (min-width: 768px){#carbonads{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:20%}}.shortcut-wrap .shortcut-menus{height:232px;-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:4px;-moz-column-gap:4px;column-gap:4px;-moz-column-fill:auto;column-fill:auto}@media (min-width: 544px){.shortcut-wrap .shortcut-menus{height:150px;-webkit-column-count:4;-moz-column-count:4;column-count:4}}@media (min-width: 768px){.shortcut-wrap .shortcut-menus{height:110px;-webkit-column-count:5;-moz-column-count:5;column-count:5}}@media (min-width: 1600px){.shortcut-wrap .shortcut-menus{height:80px;-webkit-column-count:10;-moz-column-count:10;column-count:10}}.color-chip{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:100%}@media (min-width: 544px){.color-chip{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:25%}}@media (min-width: 768px){.color-chip{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:20%}}@media (min-width: 1600px){.color-chip{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:10%}}@media (min-width: 544px){.docs-section,.introduction-section{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:75%}}@media (min-width: 768px){.docs-section,.introduction-section{position:relative;min-height:1px;padding-right:2px;padding-left:2px;float:left;width:80%}}a.blog-logo{display:inline-block;height:63px;background:url("../asset/images/logo.svg") no-repeat;background-size:40px 40px;background-position:center left;vertical-align:top}.metadata{padding:0;color:#868e96;font-size:12px;font-weight:400;line-height:18px}.nav-menus-wrap{display:inline-block;margin:0;padding:0;float:right}.nav-menus-group{position:relative;margin:0;list-style:none;float:left}.nav-menus-group:hover .nav-menus,.nav-menus-group:focus .nav-menus,.nav-menus-group:active .nav-menus{display:block}.menus-title{display:inline-block;margin:10px 5px;padding:10px 25px 13px;font-size:14px;color:#868e96;background-color:transparent;border:none;border-radius:22px;transition:font-weight 0.2s ease, background-color 0.2s ease, color 0.2s ease}.menus-title:hover{color:#495057;background-color:#f1f3f5}.menus-title:focus,.menus-title:active,.menus-title.active{color:#495057;font-weight:700;background-color:#f1f3f5}.nav-menus{position:absolute;top:100%;left:6px;z-index:1000;display:none;float:left;min-width:160px;margin:0;padding:8px 0;list-style:none;font-size:12px;background-color:#fff;border:1px solid #ced4da;border-radius:4px;box-shadow:0 1px 6px rgba(0,0,0,0.1);background-clip:padding-box;line-height:24px}.nav-menus>li>a{display:block;min-width:160px;padding:1px 40px 1px 20px;clear:both;font-size:14px;font-weight:normal;color:#868e96;line-height:2.5;white-space:nowrap;transition:background 0.2s ease, color 0.2s ease}.nav-menus>li>a:hover,.nav-menus>li>a:focus,.nav-menus>li>a:active{background-color:#f8f9fa;color:#495057}#navbar-toggle,.navbar-toggle{display:none}.navbar-toggle{z-index:2;margin-bottom:0;padding:0;width:auto;font-weight:400;float:right}.navbar-toggle:hover:after{color:#495057;font-weight:700}.navbar-toggle:after{content:'MENU';display:inline-block;margin-right:-4.8vw;padding:15px 30px;background:transparent;text-align:center;font-size:13px;color:#495057;line-height:2.5;-webkit-transition:all 0.5s linear;-moz-transition:all 0.5s linear;-o-transition:all 0.5s linear;transition:all 0.5s linear;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#navbar-toggle:checked+.navbar-toggle:after{color:#495057;font-weight:700}@media only screen and (max-width: 870px){.navbar-toggle{display:inline-block;position:relative;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}#navbar-toggle:checked ~ .nav-menus-wrap{display:block;opacity:1}.nav-menus-wrap{display:none;opacity:0;margin-left:0;padding:20px 0;z-index:1;background:#fff;text-align:center;padding-top:70px}.nav-menus-wrap:before,.nav-menus-wrap:after{content:" ";display:table}.nav-menus-wrap:after{clear:both}.nav-menus-group,.menus-title,.nav-menus{width:100%}.nav-menus-group{margin-bottom:10px}.menus-title:not(.menus-github),.menus-title:not(.menus-github):hover,.menus-title:not(.menus-github):focus,.menus-title:not(.menus-github):active,.menus-title:not(.menus-github).active{margin:0 0 10px;padding:10px 0;color:#495057;font-weight:700}.menus-github{margin:0;padding:20px 0;border:1px solid #ced4da;border-radius:3px}.nav-menus{display:block;position:relative;left:0;text-align:center;border:none;box-shadow:none;padding:0}.nav-menus .nav-menu{padding:6px 0}}.cover{padding:100px 0;border-bottom:1px solid #dee2e6}.cover h1{margin:0 40px 40px 0;font-weight:600;color:#495057;font-size:36px;line-height:1.2}.cover h1 .sub{padding-top:20px;font-size:18px;font-weight:400;color:#868e96;line-height:1.5}.shortcut-wrap{padding:20px 0}.shortcut-wrap .shortcut-menus{list-style:none;margin-top:0;margin-bottom:0;padding:0}.shortcut-wrap a.shortcut{display:block;padding:6px 0;width:100%;font-size:12px;color:#868e96;font-weight:400;text-transform:uppercase;letter-spacing:.05em;transition:all 0.2s ease-out}.shortcut-wrap a.shortcut.gray:hover,.shortcut-wrap a.shortcut.gray:focus,.shortcut-wrap a.shortcut.gray:active{color:#495057}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-gray{background:#495057}.shortcut-wrap a.shortcut.red:hover,.shortcut-wrap a.shortcut.red:focus,.shortcut-wrap a.shortcut.red:active{color:#f03e3e}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-red{background:#f03e3e}.shortcut-wrap a.shortcut.pink:hover,.shortcut-wrap a.shortcut.pink:focus,.shortcut-wrap a.shortcut.pink:active{color:#d6336c}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-pink{background:#d6336c}.shortcut-wrap a.shortcut.grape:hover,.shortcut-wrap a.shortcut.grape:focus,.shortcut-wrap a.shortcut.grape:active{color:#ae3ec9}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-grape{background:#ae3ec9}.shortcut-wrap a.shortcut.violet:hover,.shortcut-wrap a.shortcut.violet:focus,.shortcut-wrap a.shortcut.violet:active{color:#7048e8}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-violet{background:#7048e8}.shortcut-wrap a.shortcut.indigo:hover,.shortcut-wrap a.shortcut.indigo:focus,.shortcut-wrap a.shortcut.indigo:active{color:#4263eb}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-indigo{background:#4263eb}.shortcut-wrap a.shortcut.blue:hover,.shortcut-wrap a.shortcut.blue:focus,.shortcut-wrap a.shortcut.blue:active{color:#1c7ed6}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-blue{background:#1c7ed6}.shortcut-wrap a.shortcut.cyan:hover,.shortcut-wrap a.shortcut.cyan:focus,.shortcut-wrap a.shortcut.cyan:active{color:#1098ad}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-cyan{background:#1098ad}.shortcut-wrap a.shortcut.teal:hover,.shortcut-wrap a.shortcut.teal:focus,.shortcut-wrap a.shortcut.teal:active{color:#0ca678}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-teal{background:#0ca678}.shortcut-wrap a.shortcut.green:hover,.shortcut-wrap a.shortcut.green:focus,.shortcut-wrap a.shortcut.green:active{color:#37b24d}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-green{background:#37b24d}.shortcut-wrap a.shortcut.lime:hover,.shortcut-wrap a.shortcut.lime:focus,.shortcut-wrap a.shortcut.lime:active{color:#74b816}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-lime{background:#74b816}.shortcut-wrap a.shortcut.yellow:hover,.shortcut-wrap a.shortcut.yellow:focus,.shortcut-wrap a.shortcut.yellow:active{color:#f59f00}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-yellow{background:#f59f00}.shortcut-wrap a.shortcut.orange:hover,.shortcut-wrap a.shortcut.orange:focus,.shortcut-wrap a.shortcut.orange:active{color:#f76707}.shortcut-wrap a.shortcut .list-color{display:inline-block;margin-top:-2px;margin-right:10px;width:12px;height:12px;border-radius:3px;vertical-align:middle}.shortcut-wrap a.shortcut .list-color-orange{background:#f76707}.color-wrap{display:inline-block}.color-group{padding-top:40px}.color-title{margin:0 0 30px;font-size:24px;text-transform:capitalize;font-weight:700;line-height:1.5}.color-title span{margin-right:0.5em}.color-chips{text-align:center}.color-chip{margin-bottom:40px;line-height:1.25}.color-chip input[type="text"]{border:none;font-family:"Roboto Mono",monospace;background-color:transparent}.color-name{padding:14px 3px 2px;text-transform:uppercase;text-align:left;font-size:14px;font-weight:500}.color-hex{padding:2px 3px;width:100%;font-size:14px;color:#868e96;line-height:1.3}.color-chip-bg{height:80px;border-radius:2px;position:relative}.color-chip-bg span{position:absolute;top:0;left:0;margin:10px;font-size:12px;text-transform:uppercase}.bg-gray-0{background-color:#f8f9fa}.bg-gray-1{background-color:#f1f3f5}.bg-gray-2{background-color:#e9ecef}.bg-gray-3{background-color:#dee2e6}.bg-gray-4{background-color:#ced4da}.bg-gray-5{background-color:#adb5bd}.bg-gray-6{background-color:#868e96}.bg-gray-7{background-color:#495057}.bg-gray-8{background-color:#343a40}.bg-gray-9{background-color:#212529}.bg-red-0{background-color:#fff5f5}.bg-red-1{background-color:#ffe3e3}.bg-red-2{background-color:#ffc9c9}.bg-red-3{background-color:#ffa8a8}.bg-red-4{background-color:#ff8787}.bg-red-5{background-color:#ff6b6b}.bg-red-6{background-color:#fa5252}.bg-red-7{background-color:#f03e3e}.bg-red-8{background-color:#e03131}.bg-red-9{background-color:#c92a2a}.bg-pink-0{background-color:#fff0f6}.bg-pink-1{background-color:#ffdeeb}.bg-pink-2{background-color:#fcc2d7}.bg-pink-3{background-color:#faa2c1}.bg-pink-4{background-color:#f783ac}.bg-pink-5{background-color:#f06595}.bg-pink-6{background-color:#e64980}.bg-pink-7{background-color:#d6336c}.bg-pink-8{background-color:#c2255c}.bg-pink-9{background-color:#a61e4d}.bg-grape-0{background-color:#f8f0fc}.bg-grape-1{background-color:#f3d9fa}.bg-grape-2{background-color:#eebefa}.bg-grape-3{background-color:#e599f7}.bg-grape-4{background-color:#da77f2}.bg-grape-5{background-color:#cc5de8}.bg-grape-6{background-color:#be4bdb}.bg-grape-7{background-color:#ae3ec9}.bg-grape-8{background-color:#9c36b5}.bg-grape-9{background-color:#862e9c}.bg-violet-0{background-color:#f3f0ff}.bg-violet-1{background-color:#e5dbff}.bg-violet-2{background-color:#d0bfff}.bg-violet-3{background-color:#b197fc}.bg-violet-4{background-color:#9775fa}.bg-violet-5{background-color:#845ef7}.bg-violet-6{background-color:#7950f2}.bg-violet-7{background-color:#7048e8}.bg-violet-8{background-color:#6741d9}.bg-violet-9{background-color:#5f3dc4}.bg-indigo-0{background-color:#edf2ff}.bg-indigo-1{background-color:#dbe4ff}.bg-indigo-2{background-color:#bac8ff}.bg-indigo-3{background-color:#91a7ff}.bg-indigo-4{background-color:#748ffc}.bg-indigo-5{background-color:#5c7cfa}.bg-indigo-6{background-color:#4c6ef5}.bg-indigo-7{background-color:#4263eb}.bg-indigo-8{background-color:#3b5bdb}.bg-indigo-9{background-color:#364fc7}.bg-blue-0{background-color:#e7f5ff}.bg-blue-1{background-color:#d0ebff}.bg-blue-2{background-color:#a5d8ff}.bg-blue-3{background-color:#74c0fc}.bg-blue-4{background-color:#4dabf7}.bg-blue-5{background-color:#339af0}.bg-blue-6{background-color:#228be6}.bg-blue-7{background-color:#1c7ed6}.bg-blue-8{background-color:#1971c2}.bg-blue-9{background-color:#1864ab}.bg-cyan-0{background-color:#e3fafc}.bg-cyan-1{background-color:#c5f6fa}.bg-cyan-2{background-color:#99e9f2}.bg-cyan-3{background-color:#66d9e8}.bg-cyan-4{background-color:#3bc9db}.bg-cyan-5{background-color:#22b8cf}.bg-cyan-6{background-color:#15aabf}.bg-cyan-7{background-color:#1098ad}.bg-cyan-8{background-color:#0c8599}.bg-cyan-9{background-color:#0b7285}.bg-teal-0{background-color:#e6fcf5}.bg-teal-1{background-color:#c3fae8}.bg-teal-2{background-color:#96f2d7}.bg-teal-3{background-color:#63e6be}.bg-teal-4{background-color:#38d9a9}.bg-teal-5{background-color:#20c997}.bg-teal-6{background-color:#12b886}.bg-teal-7{background-color:#0ca678}.bg-teal-8{background-color:#099268}.bg-teal-9{background-color:#087f5b}.bg-green-0{background-color:#ebfbee}.bg-green-1{background-color:#d3f9d8}.bg-green-2{background-color:#b2f2bb}.bg-green-3{background-color:#8ce99a}.bg-green-4{background-color:#69db7c}.bg-green-5{background-color:#51cf66}.bg-green-6{background-color:#40c057}.bg-green-7{background-color:#37b24d}.bg-green-8{background-color:#2f9e44}.bg-green-9{background-color:#2b8a3e}.bg-lime-0{background-color:#f4fce3}.bg-lime-1{background-color:#e9fac8}.bg-lime-2{background-color:#d8f5a2}.bg-lime-3{background-color:#c0eb75}.bg-lime-4{background-color:#a9e34b}.bg-lime-5{background-color:#94d82d}.bg-lime-6{background-color:#82c91e}.bg-lime-7{background-color:#74b816}.bg-lime-8{background-color:#66a80f}.bg-lime-9{background-color:#5c940d}.bg-yellow-0{background-color:#fff9db}.bg-yellow-1{background-color:#fff3bf}.bg-yellow-2{background-color:#ffec99}.bg-yellow-3{background-color:#ffe066}.bg-yellow-4{background-color:#ffd43b}.bg-yellow-5{background-color:#fcc419}.bg-yellow-6{background-color:#fab005}.bg-yellow-7{background-color:#f59f00}.bg-yellow-8{background-color:#f08c00}.bg-yellow-9{background-color:#e67700}.bg-orange-0{background-color:#fff4e6}.bg-orange-1{background-color:#ffe8cc}.bg-orange-2{background-color:#ffd8a8}.bg-orange-3{background-color:#ffc078}.bg-orange-4{background-color:#ffa94d}.bg-orange-5{background-color:#ff922b}.bg-orange-6{background-color:#fd7e14}.bg-orange-7{background-color:#f76707}.bg-orange-8{background-color:#e8590c}.bg-orange-9{background-color:#d9480f}.color-tables{padding-top:40px;margin-bottom:60px}.value-table{border-collapse:separate;font-size:14px;width:100%}.value-table thead>tr>th{padding-top:10px;padding-bottom:10px;text-transform:uppercase;font-size:14px;letter-spacing:0.04em;line-height:1;color:#495057}.value-table tbody>tr>td{border-top:1px solid #e9ecef}.value-table tr>th,.value-table tr>td{padding:8px 12px;text-align:right;background-color:transparent;transition:background-color 0.2s ease-out;font-family:-apple-system,BlinkMacSystemFont,Lato,"Segoe UI",Verdana,Arial,sans-serif;width:calc(100% / 8);color:#868e96;transition:all 0.2s ease-out}.value-table tr>th.level,.value-table tr>td.level{text-align:left}.value-table tr>th:first-child,.value-table tr>td:first-child{padding-left:0}.value-table tr>th>.color-preview,.value-table tr>td>.color-preview{display:inline-block;margin-right:4px;width:16px;height:16px;border-radius:3px;vertical-align:text-top}.value-table tr>td.level{min-width:110px;text-transform:uppercase;letter-spacing:.05em;color:#495057;font-weight:500}.value-table>tbody>tr{transition:all 0.2s ease-out}.value-table>tbody>tr:hover{background-color:#f8f9fa}.value-table>tbody>tr:hover>th,.value-table>tbody>tr:hover>td{color:#495057}.value-table>tbody>tr:hover>th.rgb-red,.value-table>tbody>tr:hover>td.rgb-red{color:#e64980}.value-table>tbody>tr:hover>th.rgb-green,.value-table>tbody>tr:hover>td.rgb-green{color:#12b886}.value-table>tbody>tr:hover>th.rgb-blue,.value-table>tbody>tr:hover>td.rgb-blue{color:#4c6ef5}@media (max-width: 879px){.value-table{margin-left:-4%;margin-right:-4%;width:100vw}.value-table thead>tr>th:first-child,.value-table tbody>tr>td:first-child{padding-left:4%}.value-table thead>tr>th:last-child,.value-table tbody>tr>td:last-child{padding-right:4%}}.docs-section,.introduction-section{padding:40px 0}.docs-section:before,.docs-section:after,.introduction-section:before,.introduction-section:after{content:" ";display:table}.docs-section:after,.introduction-section:after{clear:both}.docs-title,.introduction-title{margin-top:0;margin-bottom:30px;font-size:24px;font-weight:700;line-height:1.5}@media (max-width: 543px){.docs-title,.introduction-title{font-size:20px}}.docs-content,.introduction-content{font-size:20px;line-height:1.6}@media (max-width: 543px){.docs-content,.introduction-content{font-size:16px}}.docs-content h5,.introduction-content h5{font-size:16px;margin-top:0}.docs-content p,.introduction-content p{margin-top:0}.docs-content ul,.introduction-content ul{padding-left:1.5em}.docs-content li .list-title,.introduction-content li .list-title{font-weight:700;width:100px;display:inline-block}.docs-content .row,.docs-content .color-chips,.introduction-content .row,.introduction-content .color-chips{margin-left:-15px;margin-right:-15px}.docs-content .row .col-half,.docs-content .color-chips .col-half,.introduction-content .row .col-half,.introduction-content .color-chips .col-half{padding-left:15px;padding-right:15px}.docs-content .example,.introduction-content .example{margin-top:2em;margin-bottom:2em}.docs-content .example .color-gray-0,.introduction-content .example .color-gray-0{color:#f8f9fa}.docs-content .example .bg-gray-0,.introduction-content .example .bg-gray-0{background-color:#f8f9fa}.docs-content .example .box.border-gray-0,.introduction-content .example .box.border-gray-0{border:1px solid #f8f9fa}.docs-content .example .color-gray-1,.introduction-content .example .color-gray-1{color:#f1f3f5}.docs-content .example .bg-gray-1,.introduction-content .example .bg-gray-1{background-color:#f1f3f5}.docs-content .example .box.border-gray-1,.introduction-content .example .box.border-gray-1{border:1px solid #f1f3f5}.docs-content .example .color-gray-2,.introduction-content .example .color-gray-2{color:#e9ecef}.docs-content .example .bg-gray-2,.introduction-content .example .bg-gray-2{background-color:#e9ecef}.docs-content .example .box.border-gray-2,.introduction-content .example .box.border-gray-2{border:1px solid #e9ecef}.docs-content .example .color-gray-3,.introduction-content .example .color-gray-3{color:#dee2e6}.docs-content .example .bg-gray-3,.introduction-content .example .bg-gray-3{background-color:#dee2e6}.docs-content .example .box.border-gray-3,.introduction-content .example .box.border-gray-3{border:1px solid #dee2e6}.docs-content .example .color-gray-4,.introduction-content .example .color-gray-4{color:#ced4da}.docs-content .example .bg-gray-4,.introduction-content .example .bg-gray-4{background-color:#ced4da}.docs-content .example .box.border-gray-4,.introduction-content .example .box.border-gray-4{border:1px solid #ced4da}.docs-content .example .color-gray-5,.introduction-content .example .color-gray-5{color:#adb5bd}.docs-content .example .bg-gray-5,.introduction-content .example .bg-gray-5{background-color:#adb5bd}.docs-content .example .box.border-gray-5,.introduction-content .example .box.border-gray-5{border:1px solid #adb5bd}.docs-content .example .color-gray-6,.introduction-content .example .color-gray-6{color:#868e96}.docs-content .example .bg-gray-6,.introduction-content .example .bg-gray-6{background-color:#868e96}.docs-content .example .box.border-gray-6,.introduction-content .example .box.border-gray-6{border:1px solid #868e96}.docs-content .example .color-gray-7,.introduction-content .example .color-gray-7{color:#495057}.docs-content .example .bg-gray-7,.introduction-content .example .bg-gray-7{background-color:#495057}.docs-content .example .box.border-gray-7,.introduction-content .example .box.border-gray-7{border:1px solid #495057}.docs-content .example .color-gray-8,.introduction-content .example .color-gray-8{color:#343a40}.docs-content .example .bg-gray-8,.introduction-content .example .bg-gray-8{background-color:#343a40}.docs-content .example .box.border-gray-8,.introduction-content .example .box.border-gray-8{border:1px solid #343a40}.docs-content .example .color-gray-9,.introduction-content .example .color-gray-9{color:#212529}.docs-content .example .bg-gray-9,.introduction-content .example .bg-gray-9{background-color:#212529}.docs-content .example .box.border-gray-9,.introduction-content .example .box.border-gray-9{border:1px solid #212529}.docs-content .example .box,.introduction-content .example .box{padding:2em 0;text-align:center;border-radius:4px;margin-bottom:10px;display:block;width:100%;border:1px solid transparent;transition:background-color 0.2s ease}.docs-content .example .box>.box,.introduction-content .example .box>.box{margin:2em 2em 0;width:auto}.docs-content .example .box.button,.introduction-content .example .box.button{background:#fff;border:1px solid #ced4da}.docs-content .example .box.button:hover,.docs-content .example .box.button:focus,.docs-content .example .box.button:active,.introduction-content .example .box.button:hover,.introduction-content .example .box.button:focus,.introduction-content .example .box.button:active{background-color:#f1f3f5}.docs-content .example .box.button.bg-gray-0,.introduction-content .example .box.button.bg-gray-0{background-color:#f8f9fa}.docs-content .example .box.button.bg-gray-0:hover,.docs-content .example .box.button.bg-gray-0:focus,.docs-content .example .box.button.bg-gray-0:active,.introduction-content .example .box.button.bg-gray-0:hover,.introduction-content .example .box.button.bg-gray-0:focus,.introduction-content .example .box.button.bg-gray-0:active{background-color:#e9ecef}.highlight{margin-left:0;margin-right:0;padding:20px 30px;background-color:#f8f9fa;border-radius:4px}pre{display:block;margin-top:0;margin-bottom:0;padding:0;line-height:1.5;white-space:pre;white-space:-moz-pre;white-space:-pre;white-space:-o-pre;word-wrap:break-word;word-break:break-all}pre code{margin:0;padding:0;font-size:inherit;white-space:pre-wrap;word-break:break-all;background-color:transparent;border-radius:0}@media (max-width: 543px){.cover{padding:20px 0}.cover h1{margin-bottom:30px;font-size:26px}.cover h1 .sub{padding-top:10px;font-size:15px}.cover .version,.cover .license{display:inline-block;float:left;margin-right:20px}.shortcut-wrap{padding:10px 0}.color-group,.color-tables{margin-top:3vw;margin-bottom:5vw;padding-top:2vw;padding-bottom:5vw}.color-title{margin-bottom:5vw;padding:2vw 0;font-size:20px}.color-chips{-webkit-column-count:2;-moz-column-count:2;column-count:2;-webkit-column-gap:4px;-moz-column-gap:4px;column-gap:4px;-moz-column-fill:auto;column-fill:auto}.color-chip{margin-bottom:4vw}.color-chip-bg{width:50px;height:50px;float:left;border-radius:6px}.color-name,.color-hex{width:calc(100% - 50px);float:left}.color-name{padding:8px 0 0 12px}.color-hex{padding:2px 0 2px 12px}.value-table{margin-left:-4.8%;margin-right:-4.8%;width:100vw}.value-table thead>tr>th,.value-table tbody>tr>td{padding:12px;font-size:14px}.value-table thead>tr>th:first-child,.value-table tbody>tr>td:first-child{padding-left:4.8%}.value-table thead>tr>th:nth-child(5),.value-table tbody>tr>td:nth-child(5){padding-right:4.8%}.value-table thead>tr>th:nth-child(6),.value-table thead>tr>th:nth-child(7),.value-table thead>tr>th:nth-child(8),.value-table tbody>tr>td:nth-child(6),.value-table tbody>tr>td:nth-child(7),.value-table tbody>tr>td:nth-child(8){display:none}}#carbonads{display:none;float:right;overflow:hidden;text-transform:none;font-size:12px;line-height:1.5}@media (max-width: 543px){#carbonads{margin-top:50px}}.carbon-text{color:#868e96;transition:all .2s ease-out}.carbon-text:hover,.carbon-text:focus,.carbon-text:active{color:#495057}#carbonads span{display:block;overflow:hidden}.carbon-img{display:block;margin-bottom:10px}.carbon-img img{border-radius:2px}@media (max-width: 543px){.carbon-img{display:inline-block;margin-bottom:0}}.carbon-text{display:block;text-align:left}@media (max-width: 543px){.carbon-text{display:inline-block;width:calc(100% - 130px);padding-left:20px;vertical-align:top}}a.carbon-poweredby{display:block;margin-top:10px;font-size:11px;color:#868e96}a.carbon-poweredby:hover,a.carbon-poweredby:focus,a.carbon-poweredby:active{color:#495057}@media (max-width: 543px){a.carbon-poweredby{margin-top:-22px;line-height:2;margin-left:150px}}html{box-sizing:border-box;font-size:14px}*,*:before,*:after{box-sizing:inherit}body{color:#495057;font-family:-apple-system,BlinkMacSystemFont,Lato,"Segoe UI",Verdana,Arial,sans-serif;font-size:14px;line-height:1.5;letter-spacing:0;-webkit-text-size-adjust:none}::selection{background:#e9ecef}a{color:#339af0;text-decoration:none}a:focus,a:hover{color:#1c7ed6}abbr[title]{border-bottom:none}hr{margin:40px auto;width:50%;height:1px;border:none;background:#dee2e6}ul>li+li{margin-top:0.25em}.no-wrap{display:inline-block;white-space:nowrap}.in-writing{margin-top:40px;font-size:22px;color:#868e96} -------------------------------------------------------------------------------- /fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /icons/bg-main/cc-logo-icon-bg-main.pdf: -------------------------------------------------------------------------------- 1 | %PDF-1.7 2 | 3 | 1 0 obj 4 | << >> 5 | endobj 6 | 7 | 2 0 obj 8 | << /Length 3 0 R >> 9 | stream 10 | /DeviceRGB CS 11 | /DeviceRGB cs 12 | q 13 | 1.000000 0.000000 -0.000000 1.000000 0.000000 0.000000 cm 14 | 0.203922 0.203922 0.203922 scn 15 | 0.000000 679.000000 m 16 | 679.000000 679.000000 l 17 | 679.000000 0.000000 l 18 | 0.000000 0.000000 l 19 | 0.000000 679.000000 l 20 | h 21 | f 22 | n 23 | Q 24 | q 25 | 1.000000 0.000000 -0.000000 1.000000 139.000000 144.288483 cm 26 | 0.988235 0.682353 0.090196 scn 27 | 26.746916 97.702942 m 28 | -28.156771 191.925873 4.138466 312.198608 99.141151 367.310822 c 29 | 194.143814 422.423035 316.409332 391.812927 373.216217 298.694000 c 30 | 430.023071 205.575073 400.177094 84.689178 306.312439 27.711517 c 31 | 262.056702 98.637909 l 32 | 316.495087 131.681580 333.814178 201.774933 300.879791 255.761688 c 33 | 267.945404 309.748444 197.045090 327.486542 141.947128 295.524017 c 34 | 86.849167 263.561493 68.110184 193.823334 99.941177 139.196487 c 35 | 26.746916 97.702942 l 36 | h 37 | f* 38 | n 39 | Q 40 | q 41 | 1.000000 0.000000 -0.000000 1.000000 324.000000 24.315735 cm 42 | 0.443137 0.788235 0.721569 scn 43 | 0.000000 31.864868 m 44 | 31.864868 31.864868 l 45 | 31.864868 -0.000002 l 46 | 0.000000 -0.000002 l 47 | 0.000000 31.864868 l 48 | h 49 | f* 50 | n 51 | Q 52 | q 53 | 1.000000 0.000000 -0.000000 1.000000 324.000000 622.169922 cm 54 | 0.443137 0.788235 0.721569 scn 55 | 0.000000 31.864868 m 56 | 31.864868 31.864868 l 57 | 31.864868 -0.000013 l 58 | 0.000000 -0.000013 l 59 | 0.000000 31.864868 l 60 | h 61 | f* 62 | n 63 | Q 64 | q 65 | 1.000000 0.000000 -0.000000 1.000000 19.930664 33.763000 cm 66 | 0.443137 0.788235 0.721569 scn 67 | 221.910751 0.000000 m 68 | 89.752213 43.102905 0.238492 166.229736 0.000476 305.239410 c 69 | -0.237552 444.249084 88.853973 567.681763 220.864136 611.237000 c 70 | 221.910751 585.316772 l 71 | 101.102966 545.457642 27.077209 432.499451 27.295033 305.286133 c 72 | 27.512863 178.072845 100.967155 65.394531 221.910751 25.949341 c 73 | 221.910751 0.000000 l 74 | h 75 | f* 76 | n 77 | Q 78 | q 79 | -1.000000 -0.000000 -0.000000 1.000000 658.841431 33.763000 cm 80 | 0.443137 0.788235 0.721569 scn 81 | 221.910751 0.000000 m 82 | 89.752213 43.102905 0.238492 166.229736 0.000476 305.239410 c 83 | -0.237552 444.249084 88.853973 567.681763 220.864136 611.237000 c 84 | 221.910751 585.316772 l 85 | 101.102966 545.457642 27.077209 432.499451 27.295033 305.286133 c 86 | 27.512863 178.072845 100.967155 65.394531 221.910751 25.949341 c 87 | 221.910751 0.000000 l 88 | h 89 | f* 90 | n 91 | Q 92 | 93 | endstream 94 | endobj 95 | 96 | 3 0 obj 97 | 2090 98 | endobj 99 | 100 | 4 0 obj 101 | << /Annots [] 102 | /Type /Page 103 | /MediaBox [ 0.000000 0.000000 679.000000 679.000000 ] 104 | /Resources 1 0 R 105 | /Contents 2 0 R 106 | /Parent 5 0 R 107 | >> 108 | endobj 109 | 110 | 5 0 obj 111 | << /Kids [ 4 0 R ] 112 | /Count 1 113 | /Type /Pages 114 | >> 115 | endobj 116 | 117 | 6 0 obj 118 | << /Type /Catalog 119 | /Pages 5 0 R 120 | >> 121 | endobj 122 | 123 | xref 124 | 0 7 125 | 0000000000 65535 f 126 | 0000000010 00000 n 127 | 0000000034 00000 n 128 | 0000002180 00000 n 129 | 0000002203 00000 n 130 | 0000002378 00000 n 131 | 0000002452 00000 n 132 | trailer 133 | << /ID [ (some) (id) ] 134 | /Root 6 0 R 135 | /Size 7 136 | >> 137 | startxref 138 | 2511 139 | %%EOF -------------------------------------------------------------------------------- /icons/bg-main/cc-logo-icon-bg-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/bg-main/cc-logo-icon-bg-main.png -------------------------------------------------------------------------------- /icons/bg-main/cc-logo-icon-bg-main.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /icons/bg-main/cc-logo-icon-bg-main@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/bg-main/cc-logo-icon-bg-main@4x.png -------------------------------------------------------------------------------- /icons/bg-main/cc-logo-icon-bg-main@512w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/bg-main/cc-logo-icon-bg-main@512w.png -------------------------------------------------------------------------------- /icons/bg-transparent/cc-logo-icon-bg-transparent.pdf: -------------------------------------------------------------------------------- 1 | %PDF-1.7 2 | 3 | 1 0 obj 4 | << >> 5 | endobj 6 | 7 | 2 0 obj 8 | << /Length 3 0 R >> 9 | stream 10 | /DeviceRGB CS 11 | /DeviceRGB cs 12 | q 13 | 1.000000 0.000000 -0.000000 1.000000 139.000000 144.288483 cm 14 | 0.988235 0.682353 0.090196 scn 15 | 26.746916 97.702942 m 16 | -28.156771 191.925873 4.138466 312.198608 99.141151 367.310822 c 17 | 194.143814 422.423035 316.409332 391.812927 373.216217 298.694000 c 18 | 430.023071 205.575073 400.177094 84.689178 306.312439 27.711517 c 19 | 262.056702 98.637909 l 20 | 316.495087 131.681580 333.814178 201.774933 300.879791 255.761688 c 21 | 267.945404 309.748444 197.045090 327.486542 141.947128 295.524017 c 22 | 86.849167 263.561493 68.110184 193.823334 99.941177 139.196487 c 23 | 26.746916 97.702942 l 24 | h 25 | f* 26 | n 27 | Q 28 | q 29 | 1.000000 0.000000 -0.000000 1.000000 324.000000 24.315735 cm 30 | 0.443137 0.788235 0.721569 scn 31 | 0.000000 31.864868 m 32 | 31.864868 31.864868 l 33 | 31.864868 -0.000002 l 34 | 0.000000 -0.000002 l 35 | 0.000000 31.864868 l 36 | h 37 | f* 38 | n 39 | Q 40 | q 41 | 1.000000 0.000000 -0.000000 1.000000 324.000000 622.169922 cm 42 | 0.443137 0.788235 0.721569 scn 43 | 0.000000 31.864868 m 44 | 31.864868 31.864868 l 45 | 31.864868 -0.000013 l 46 | 0.000000 -0.000013 l 47 | 0.000000 31.864868 l 48 | h 49 | f* 50 | n 51 | Q 52 | q 53 | 1.000000 0.000000 -0.000000 1.000000 19.930664 33.763000 cm 54 | 0.443137 0.788235 0.721569 scn 55 | 221.910751 0.000000 m 56 | 89.752213 43.102905 0.238492 166.229736 0.000476 305.239410 c 57 | -0.237552 444.249084 88.853973 567.681763 220.864136 611.237000 c 58 | 221.910751 585.316772 l 59 | 101.102966 545.457642 27.077209 432.499451 27.295033 305.286133 c 60 | 27.512863 178.072845 100.967155 65.394531 221.910751 25.949341 c 61 | 221.910751 0.000000 l 62 | h 63 | f* 64 | n 65 | Q 66 | q 67 | -1.000000 -0.000000 -0.000000 1.000000 658.841431 33.763000 cm 68 | 0.443137 0.788235 0.721569 scn 69 | 221.910751 0.000000 m 70 | 89.752213 43.102905 0.238492 166.229736 0.000476 305.239410 c 71 | -0.237552 444.249084 88.853973 567.681763 220.864136 611.237000 c 72 | 221.910751 585.316772 l 73 | 101.102966 545.457642 27.077209 432.499451 27.295033 305.286133 c 74 | 27.512863 178.072845 100.967155 65.394531 221.910751 25.949341 c 75 | 221.910751 0.000000 l 76 | h 77 | f* 78 | n 79 | Q 80 | 81 | endstream 82 | endobj 83 | 84 | 3 0 obj 85 | 1881 86 | endobj 87 | 88 | 4 0 obj 89 | << /Annots [] 90 | /Type /Page 91 | /MediaBox [ 0.000000 0.000000 679.000000 679.000000 ] 92 | /Resources 1 0 R 93 | /Contents 2 0 R 94 | /Parent 5 0 R 95 | >> 96 | endobj 97 | 98 | 5 0 obj 99 | << /Kids [ 4 0 R ] 100 | /Count 1 101 | /Type /Pages 102 | >> 103 | endobj 104 | 105 | 6 0 obj 106 | << /Type /Catalog 107 | /Pages 5 0 R 108 | >> 109 | endobj 110 | 111 | xref 112 | 0 7 113 | 0000000000 65535 f 114 | 0000000010 00000 n 115 | 0000000034 00000 n 116 | 0000001971 00000 n 117 | 0000001994 00000 n 118 | 0000002169 00000 n 119 | 0000002243 00000 n 120 | trailer 121 | << /ID [ (some) (id) ] 122 | /Root 6 0 R 123 | /Size 7 124 | >> 125 | startxref 126 | 2302 127 | %%EOF -------------------------------------------------------------------------------- /icons/bg-transparent/cc-logo-icon-bg-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/bg-transparent/cc-logo-icon-bg-transparent.png -------------------------------------------------------------------------------- /icons/bg-transparent/cc-logo-icon-bg-transparent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icons/bg-transparent/cc-logo-icon-bg-transparent@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/bg-transparent/cc-logo-icon-bg-transparent@4x.png -------------------------------------------------------------------------------- /icons/bg-transparent/cc-logo-icon-bg-transparent@512w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/bg-transparent/cc-logo-icon-bg-transparent@512w.png -------------------------------------------------------------------------------- /icons/cc-logo-icon.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/icons/cc-logo-icon.fig -------------------------------------------------------------------------------- /logos/bg-main/cc-logo-bg-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-main/cc-logo-bg-main.png -------------------------------------------------------------------------------- /logos/bg-main/cc-logo-bg-main.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /logos/bg-main/cc-logo-bg-main@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-main/cc-logo-bg-main@4x.png -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-bg-transparent.pdf: -------------------------------------------------------------------------------- 1 | %PDF-1.7 2 | 3 | 1 0 obj 4 | << /Length 2 0 R >> 5 | stream 6 | 0.597168 0 0.016113 0.000000 0.580566 0.727051 d1 7 | 8 | endstream 9 | endobj 10 | 11 | 2 0 obj 12 | 50 13 | endobj 14 | 15 | 3 0 obj 16 | << /Length 4 0 R >> 17 | stream 18 | 0.666504 0 0.090332 -0.009766 0.576172 0.811035 d1 19 | 20 | endstream 21 | endobj 22 | 23 | 4 0 obj 24 | 51 25 | endobj 26 | 27 | 5 0 obj 28 | << /Length 6 0 R >> 29 | stream 30 | 0.652344 0 0.013672 0.000000 0.639160 0.724609 d1 31 | 32 | endstream 33 | endobj 34 | 35 | 6 0 obj 36 | 50 37 | endobj 38 | 39 | 7 0 obj 40 | << /Length 8 0 R >> 41 | stream 42 | 0.569336 0 0.097656 0.000000 0.530273 0.994141 d1 43 | 44 | endstream 45 | endobj 46 | 47 | 8 0 obj 48 | 50 49 | endobj 50 | 51 | 9 0 obj 52 | << /Length 10 0 R >> 53 | stream 54 | 0.239258 0 0.000000 0.000000 0.239258 1.000000 d1 55 | 56 | endstream 57 | endobj 58 | 59 | 10 0 obj 60 | 50 61 | endobj 62 | 63 | 11 0 obj 64 | << /Length 12 0 R >> 65 | stream 66 | 0.654297 0 0.097656 0.000000 0.587891 0.808594 d1 67 | 68 | endstream 69 | endobj 70 | 71 | 12 0 obj 72 | 50 73 | endobj 74 | 75 | 13 0 obj 76 | << /Length 14 0 R >> 77 | stream 78 | 0.591309 0 0.046875 -0.009766 0.550293 0.777344 d1 79 | 80 | endstream 81 | endobj 82 | 83 | 14 0 obj 84 | 51 85 | endobj 86 | 87 | 15 0 obj 88 | << /Length 16 0 R >> 89 | stream 90 | 0.652344 0 0.013672 0.000000 0.639160 0.905273 d1 91 | 92 | endstream 93 | endobj 94 | 95 | 16 0 obj 96 | 50 97 | endobj 98 | 99 | 17 0 obj 100 | << /Length 18 0 R >> 101 | stream 102 | 0.260742 0 0.117188 0.000000 0.143555 0.828125 d1 103 | 104 | endstream 105 | endobj 106 | 107 | 18 0 obj 108 | 50 109 | endobj 110 | 111 | 19 0 obj 112 | << /Length 20 0 R >> 113 | stream 114 | 0.647949 0 0.070312 -0.009766 0.581055 0.800781 d1 115 | 116 | endstream 117 | endobj 118 | 119 | 20 0 obj 120 | 51 121 | endobj 122 | 123 | 21 0 obj 124 | << /Length 22 0 R >> 125 | stream 126 | 0.648438 0 0.068359 -0.009766 0.583008 0.789062 d1 127 | 128 | endstream 129 | endobj 130 | 131 | 22 0 obj 132 | 51 133 | endobj 134 | 135 | 23 0 obj 136 | << /Length 24 0 R >> 137 | stream 138 | 0.650879 0 0.058105 -0.216797 0.605469 0.995605 d1 139 | 140 | endstream 141 | endobj 142 | 143 | 24 0 obj 144 | 51 145 | endobj 146 | 147 | 25 0 obj 148 | << /Length 26 0 R >> 149 | stream 150 | 0.707520 0 0.097656 0.000000 0.609863 0.808594 d1 151 | 152 | endstream 153 | endobj 154 | 155 | 26 0 obj 156 | 50 157 | endobj 158 | 159 | 27 0 obj 160 | << /Length 28 0 R >> 161 | stream 162 | 0.596680 0 0.023926 0.000000 0.573730 0.734863 d1 163 | 164 | endstream 165 | endobj 166 | 167 | 28 0 obj 168 | 50 169 | endobj 170 | 171 | 29 0 obj 172 | << /Length 30 0 R >> 173 | stream 174 | 0.630859 0 0.082520 0.000000 0.593750 0.793457 d1 175 | 176 | endstream 177 | endobj 178 | 179 | 30 0 obj 180 | 50 181 | endobj 182 | 183 | 31 0 obj 184 | << /Length 32 0 R >> 185 | stream 186 | 0.650879 0 0.058105 -0.009766 0.605469 0.788574 d1 187 | 188 | endstream 189 | endobj 190 | 191 | 32 0 obj 192 | 51 193 | endobj 194 | 195 | 33 0 obj 196 | << /Length 34 0 R >> 197 | stream 198 | 0.873047 0 0.082520 0.000000 0.790039 0.793457 d1 199 | 200 | endstream 201 | endobj 202 | 203 | 34 0 obj 204 | 50 205 | endobj 206 | 207 | 35 0 obj 208 | << /Length 36 0 R >> 209 | stream 210 | 0.687500 0 0.057617 -0.009766 0.629395 0.788086 d1 211 | 212 | endstream 213 | endobj 214 | 215 | 36 0 obj 216 | 51 217 | endobj 218 | 219 | 37 0 obj 220 | << /Length 38 0 R >> 221 | stream 222 | 0.572266 0 0.097656 0.000000 0.538086 0.808594 d1 223 | 224 | endstream 225 | endobj 226 | 227 | 38 0 obj 228 | 50 229 | endobj 230 | 231 | 39 0 obj 232 | [ 0.654297 0.707520 0.569336 0.597168 0.239258 0.260742 0.647949 0.652344 0.650879 0.652344 0.596680 0.630859 0.650879 0.873047 0.687500 0.648438 0.591309 0.572266 0.666504 ] 233 | endobj 234 | 235 | 40 0 obj 236 | << /Length 41 0 R >> 237 | stream 238 | /CIDInit /ProcSet findresource begin 239 | 12 dict begin 240 | begincmap 241 | /CIDSystemInfo 242 | << /Registry (FigmaPDF) 243 | /Ordering (FigmaPDF) 244 | /Supplement 0 245 | >> def 246 | /CMapName /A-B-C def 247 | /CMapType 2 def 248 | 1 begincodespacerange 249 | <00> 250 | endcodespacerange 251 | 1 beginbfchar 252 | <00> <0044> 253 | endbfchar 254 | 1 beginbfchar 255 | <01> <004E> 256 | endbfchar 257 | 1 beginbfchar 258 | <02> <00CA> 259 | endbfchar 260 | 1 beginbfchar 261 | <03> <0041> 262 | endbfchar 263 | 1 beginbfchar 264 | <04> <0020> 265 | endbfchar 266 | 1 beginbfchar 267 | <05> <0049> 268 | endbfchar 269 | 1 beginbfchar 270 | <06> <0043> 271 | endbfchar 272 | 1 beginbfchar 273 | <07> <00C3> 274 | endbfchar 275 | 1 beginbfchar 276 | <08> <00C7> 277 | endbfchar 278 | 1 beginbfchar 279 | <09> <0041> 280 | endbfchar 281 | 1 beginbfchar 282 | <0A> <0054> 283 | endbfchar 284 | 1 beginbfchar 285 | <0B> <0050> 286 | endbfchar 287 | 1 beginbfchar 288 | <0C> <0043> 289 | endbfchar 290 | 1 beginbfchar 291 | <0D> <004D> 292 | endbfchar 293 | 1 beginbfchar 294 | <0E> <004F> 295 | endbfchar 296 | 1 beginbfchar 297 | <0F> <0055> 298 | endbfchar 299 | 1 beginbfchar 300 | <10> <0053> 301 | endbfchar 302 | 1 beginbfchar 303 | <11> <0046> 304 | endbfchar 305 | 1 beginbfchar 306 | <12> <0055> 307 | endbfchar 308 | endcmap 309 | CMapName currentdict /CMap defineresource pop 310 | end 311 | end 312 | endstream 313 | endobj 314 | 315 | 41 0 obj 316 | 980 317 | endobj 318 | 319 | 42 0 obj 320 | << /Subtype /Type3 321 | /CharProcs << /C9 5 0 R 322 | /C3 1 0 R 323 | /C18 3 0 R 324 | /C2 7 0 R 325 | /C4 9 0 R 326 | /C7 15 0 R 327 | /C16 13 0 R 328 | /C0 11 0 R 329 | /C6 19 0 R 330 | /C15 21 0 R 331 | /C8 23 0 R 332 | /C1 25 0 R 333 | /C11 29 0 R 334 | /C12 31 0 R 335 | /C5 17 0 R 336 | /C14 35 0 R 337 | /C13 33 0 R 338 | /C10 27 0 R 339 | /C17 37 0 R 340 | >> 341 | /Encoding << /Type /Encoding 342 | /Differences [ 0 /C0 /C1 /C2 /C3 /C4 /C5 /C6 /C7 /C8 /C9 /C10 /C11 /C12 /C13 /C14 /C15 /C16 /C17 /C18 ] 343 | >> 344 | /Widths 39 0 R 345 | /FontBBox [ 0.000000 0.000000 0.000000 0.000000 ] 346 | /FontMatrix [ 1.000000 0.000000 0.000000 1.000000 0.000000 0.000000 ] 347 | /Type /Font 348 | /ToUnicode 40 0 R 349 | /FirstChar 0 350 | /LastChar 18 351 | /Resources << >> 352 | >> 353 | endobj 354 | 355 | 43 0 obj 356 | << /Font << /F1 42 0 R >> >> 357 | endobj 358 | 359 | 44 0 obj 360 | << /Length 45 0 R >> 361 | stream 362 | /DeviceRGB CS 363 | /DeviceRGB cs 364 | q 365 | 1.000000 0.000000 -0.000000 1.000000 185.522827 150.082794 cm 366 | 0.988235 0.682353 0.090196 scn 367 | 23.842813 87.082336 m 368 | -25.099590 171.062988 3.689123 278.261749 88.376694 327.383087 c 369 | 173.064240 376.504456 282.054535 349.221741 332.693481 266.225128 c 370 | 383.332428 183.228485 356.727051 75.483215 273.053925 24.699188 c 371 | 233.603348 87.915680 l 372 | 282.130981 117.367401 297.569611 179.841415 268.211151 227.959671 c 373 | 238.852676 276.077911 175.650513 291.887817 126.534927 263.399719 c 374 | 77.419342 234.911621 60.714981 172.754181 89.089859 124.065430 c 375 | 23.842813 87.082336 l 376 | h 377 | f* 378 | n 379 | Q 380 | q 381 | 1.000000 0.000000 -0.000000 1.000000 350.540527 42.963165 cm 382 | 0.443137 0.788235 0.721569 scn 383 | 0.000000 28.316650 m 384 | 28.316620 28.316650 l 385 | 28.316620 -0.000002 l 386 | 0.000000 -0.000002 l 387 | 0.000000 28.316650 l 388 | h 389 | f* 390 | n 391 | Q 392 | q 393 | 1.000000 0.000000 -0.000000 1.000000 350.540527 576.097168 cm 394 | 0.443137 0.788235 0.721569 scn 395 | 0.000000 28.316650 m 396 | 28.316620 28.316650 l 397 | 28.316620 0.000002 l 398 | 0.000000 0.000002 l 399 | 0.000000 28.316650 l 400 | h 401 | f* 402 | n 403 | Q 404 | q 405 | 1.000000 0.000000 -0.000000 1.000000 80.067749 51.751099 cm 406 | 0.443137 0.788235 0.721569 scn 407 | 197.240051 0.000000 m 408 | 79.774101 38.421570 0.211978 148.175720 0.000423 272.087708 c 409 | -0.211142 395.999695 78.975723 506.026489 196.309784 544.851257 c 410 | 197.240051 521.746216 l 411 | 89.862946 486.216095 24.066929 385.526184 24.260534 272.129364 c 412 | 24.454149 158.732574 89.742233 58.292114 197.240051 23.131042 c 413 | 197.240051 0.000000 l 414 | h 415 | f* 416 | n 417 | Q 418 | q 419 | -1.000000 -0.000000 -0.000000 1.000000 649.329895 51.751099 cm 420 | 0.443137 0.788235 0.721569 scn 421 | 198.216492 0.000000 m 422 | 80.169022 38.421570 0.213028 148.175720 0.000425 272.087708 c 423 | -0.212188 395.999695 79.366692 506.026489 197.281616 544.851257 c 424 | 198.216492 521.746216 l 425 | 90.307816 486.216095 24.186071 385.526184 24.380636 272.129364 c 426 | 24.575209 158.732574 90.186501 58.292114 198.216492 23.131042 c 427 | 198.216492 0.000000 l 428 | h 429 | f* 430 | n 431 | Q 432 | q 433 | 1.000000 0.000000 -0.000000 1.000000 751.000000 387.062500 cm 434 | 0.780392 0.784314 0.819608 scn 435 | 0.000000 -3.062500 m 436 | h 437 | 87.158203 29.603516 m 438 | 86.132812 18.617188 82.348633 10.169922 75.805664 4.261719 c 439 | 69.262695 -1.597656 60.375977 -4.527344 49.145508 -4.527344 c 440 | 41.577148 -4.527344 34.863281 -2.623047 29.003906 1.185547 c 441 | 23.193359 5.042969 18.676758 10.487305 15.454102 17.518555 c 442 | 12.231445 24.598633 10.595703 32.679688 10.546875 41.761719 c 443 | 10.546875 58.241211 l 444 | 10.546875 67.323242 12.133789 75.428711 15.307617 82.557617 c 445 | 18.481445 89.735352 22.998047 95.277344 28.857422 99.183594 c 446 | 34.765625 103.089844 41.528320 105.042969 49.145508 105.042969 c 447 | 60.278320 105.042969 69.140625 102.113281 75.732422 96.253906 c 448 | 82.324219 90.394531 86.132812 81.996094 87.158203 71.058594 c 449 | 83.203125 71.058594 l 450 | 82.080078 80.873047 78.662109 88.319336 72.949219 93.397461 c 451 | 67.236328 98.524414 59.301758 101.087891 49.145508 101.087891 c 452 | 38.793945 101.087891 30.419922 97.181641 24.023438 89.369141 c 453 | 17.675781 81.556641 14.501953 71.083008 14.501953 57.948242 c 454 | 14.501953 42.274414 l 455 | 14.501953 33.875977 15.917969 26.429688 18.750000 19.935547 c 456 | 21.582031 13.490234 25.634766 8.460938 30.908203 4.847656 c 457 | 36.230469 1.234375 42.309570 -0.572266 49.145508 -0.572266 c 458 | 59.350586 -0.572266 67.309570 1.942383 73.022461 6.971680 c 459 | 78.784180 12.000977 82.177734 19.544922 83.203125 29.603516 c 460 | 87.158203 29.603516 l 461 | h 462 | 97.265625 -3.062500 m 463 | h 464 | 118.798828 -3.062500 m 465 | 114.843750 -3.062500 l 466 | 114.843750 103.578125 l 467 | 118.798828 103.578125 l 468 | 118.798828 -3.062500 l 469 | h 470 | 136.376953 -3.062500 m 471 | h 472 | 208.447266 49.818359 m 473 | 154.980469 49.818359 l 474 | 154.980469 0.892578 l 475 | 215.917969 0.892578 l 476 | 215.917969 -3.062500 l 477 | 151.025391 -3.062500 l 478 | 151.025391 103.578125 l 479 | 215.917969 103.578125 l 480 | 215.917969 99.623047 l 481 | 154.980469 99.623047 l 482 | 154.980469 53.773438 l 483 | 208.447266 53.773438 l 484 | 208.447266 49.818359 l 485 | h 486 | 200.317383 113.612305 m 487 | 200.317383 112.879883 l 488 | 195.336914 112.879883 l 489 | 181.640625 127.235352 l 490 | 168.090820 112.879883 l 491 | 163.403320 112.879883 l 492 | 163.403320 113.905273 l 493 | 180.249023 131.410156 l 494 | 183.178711 131.410156 l 495 | 200.317383 113.612305 l 496 | h 497 | 221.777344 -3.062500 m 498 | h 499 | 313.256836 -3.062500 m 500 | 309.301758 -3.062500 l 501 | 240.454102 96.839844 l 502 | 240.454102 -3.062500 l 503 | 236.425781 -3.062500 l 504 | 236.425781 103.578125 l 505 | 240.454102 103.578125 l 506 | 309.301758 3.895508 l 507 | 309.301758 103.578125 l 508 | 313.256836 103.578125 l 509 | 313.256836 -3.062500 l 510 | h 511 | 327.978516 -3.062500 m 512 | h 513 | 415.136719 29.603516 m 514 | 414.111328 18.617188 410.327148 10.169922 403.784180 4.261719 c 515 | 397.241211 -1.597656 388.354492 -4.527344 377.124023 -4.527344 c 516 | 369.555664 -4.527344 362.841797 -2.623047 356.982422 1.185547 c 517 | 351.171875 5.042969 346.655273 10.487305 343.432617 17.518555 c 518 | 340.209961 24.598633 338.574219 32.679688 338.525391 41.761719 c 519 | 338.525391 58.241211 l 520 | 338.525391 67.323242 340.112305 75.428711 343.286133 82.557617 c 521 | 346.459961 89.735352 350.976562 95.277344 356.835938 99.183594 c 522 | 362.744141 103.089844 369.506836 105.042969 377.124023 105.042969 c 523 | 388.256836 105.042969 397.119141 102.113281 403.710938 96.253906 c 524 | 410.302734 90.394531 414.111328 81.996094 415.136719 71.058594 c 525 | 411.181641 71.058594 l 526 | 410.058594 80.873047 406.640625 88.319336 400.927734 93.397461 c 527 | 395.214844 98.524414 387.280273 101.087891 377.124023 101.087891 c 528 | 366.772461 101.087891 358.398438 97.181641 352.001953 89.369141 c 529 | 345.654297 81.556641 342.480469 71.083008 342.480469 57.948242 c 530 | 342.480469 42.274414 l 531 | 342.480469 33.875977 343.896484 26.429688 346.728516 19.935547 c 532 | 349.560547 13.490234 353.613281 8.460938 358.886719 4.847656 c 533 | 364.208984 1.234375 370.288086 -0.572266 377.124023 -0.572266 c 534 | 387.329102 -0.572266 395.288086 1.942383 401.000977 6.971680 c 535 | 406.762695 12.000977 410.156250 19.544922 411.181641 29.603516 c 536 | 415.136719 29.603516 l 537 | h 538 | 425.244141 -3.062500 m 539 | h 540 | 446.777344 -3.062500 m 541 | 442.822266 -3.062500 l 542 | 442.822266 103.578125 l 543 | 446.777344 103.578125 l 544 | 446.777344 -3.062500 l 545 | h 546 | 465.673828 -3.062500 m 547 | h 548 | 536.499023 28.797852 m 549 | 484.277344 28.797852 l 550 | 472.412109 -3.062500 l 551 | 468.090820 -3.062500 l 552 | 508.007812 103.578125 l 553 | 512.841797 103.578125 l 554 | 552.758789 -3.062500 l 555 | 548.437500 -3.062500 l 556 | 536.499023 28.797852 l 557 | h 558 | 485.742188 32.752930 m 559 | 535.034180 32.752930 l 560 | 510.424805 98.817383 l 561 | 485.742188 32.752930 l 562 | h 563 | 591.210938 -3.062500 m 564 | h 565 | 605.859375 -3.062500 m 566 | 605.859375 103.578125 l 567 | 635.375977 103.578125 l 568 | 643.627930 103.578125 651.098633 101.625000 657.788086 97.718750 c 569 | 664.477539 93.812500 669.726562 88.319336 673.535156 81.239258 c 570 | 677.343750 74.208008 679.296875 66.322266 679.394531 57.582031 c 571 | 679.394531 43.739258 l 572 | 679.394531 34.852539 677.514648 26.844727 673.754883 19.715820 c 573 | 670.043945 12.586914 664.843750 7.020508 658.154297 3.016602 c 574 | 651.464844 -0.987305 643.994141 -3.013672 635.742188 -3.062500 c 575 | 605.859375 -3.062500 l 576 | h 577 | 609.814453 99.623047 m 578 | 609.814453 0.892578 l 579 | 635.375977 0.892578 l 580 | 642.846680 0.892578 649.633789 2.699219 655.737305 6.312500 c 581 | 661.889648 9.974609 666.699219 15.052734 670.166016 21.546875 c 582 | 673.632812 28.089844 675.390625 35.340820 675.439453 43.299805 c 583 | 675.439453 56.996094 l 584 | 675.439453 64.955078 673.730469 72.181641 670.312500 78.675781 c 585 | 666.943359 85.169922 662.207031 90.248047 656.103516 93.910156 c 586 | 650.048828 97.621094 643.334961 99.525391 635.961914 99.623047 c 587 | 609.814453 99.623047 l 588 | h 589 | 687.744141 -3.062500 m 590 | h 591 | 758.569336 28.797852 m 592 | 706.347656 28.797852 l 593 | 694.482422 -3.062500 l 594 | 690.161133 -3.062500 l 595 | 730.078125 103.578125 l 596 | 734.912109 103.578125 l 597 | 774.829102 -3.062500 l 598 | 770.507812 -3.062500 l 599 | 758.569336 28.797852 l 600 | h 601 | 707.812500 32.752930 m 602 | 757.104492 32.752930 l 603 | 732.495117 98.817383 l 604 | 707.812500 32.752930 l 605 | h 606 | f 607 | n 608 | Q 609 | q 610 | 1.000000 0.000000 -0.000000 1.000000 751.000000 387.062500 cm 611 | BT 612 | 150.000000 0.000000 0.000000 150.000000 0.000000 -3.062500 Tm 613 | /F1 1.000000 Tf 614 | [ (\006) (\005) (\002) (\001) (\006) (\005) -8.789062 (\003) (\004) (\000) 10.742188 (\003) ] TJ 615 | ET 616 | Q 617 | q 618 | 1.000000 0.000000 -0.000000 1.000000 751.000000 116.526367 cm 619 | 1.000000 1.000000 1.000000 scn 620 | 0.000000 42.473633 m 621 | h 622 | 142.285156 95.486328 m 623 | 140.219727 77.815430 133.679199 64.160645 122.663574 54.521973 c 624 | 111.724449 44.959793 97.151695 40.178711 78.945312 40.178711 c 625 | 59.208984 40.178711 43.374023 47.254715 31.440430 61.406738 c 626 | 19.583332 75.558762 13.654785 94.491867 13.654785 118.206055 c 627 | 13.654785 134.270508 l 628 | 13.654785 149.799469 16.408691 163.454254 21.916504 175.234863 c 629 | 27.500814 187.015472 35.380043 196.042145 45.554199 202.314941 c 630 | 55.728355 208.664230 67.508949 211.838867 80.895996 211.838867 c 631 | 98.643394 211.838867 112.871910 206.866547 123.581543 196.921875 c 632 | 134.291183 187.053711 140.525711 173.360687 142.285156 155.842773 c 633 | 120.139160 155.842773 l 634 | 118.226723 169.153320 114.057617 178.791992 107.631836 184.758789 c 635 | 101.282555 190.725586 92.370605 193.708984 80.895996 193.708984 c 636 | 66.820473 193.708984 55.766602 188.507172 47.734375 178.103516 c 637 | 39.778645 167.699860 35.800781 152.897629 35.800781 133.696777 c 638 | 35.800781 117.517578 l 639 | 35.800781 99.387695 39.587402 84.967941 47.160645 74.258301 c 640 | 54.733887 63.548660 65.328773 58.193848 78.945312 58.193848 c 641 | 91.184898 58.193848 100.555824 60.947754 107.058105 66.455566 c 642 | 113.636879 72.039871 117.997231 81.716797 120.139160 95.486328 c 643 | 142.285156 95.486328 l 644 | h 645 | 153.071289 42.473633 m 646 | h 647 | 300.979004 120.615723 m 648 | 300.979004 104.245285 298.225098 89.940262 292.717285 77.700684 c 649 | 287.209473 65.537598 279.406738 56.243164 269.309082 49.817383 c 650 | 259.211426 43.391602 247.430832 40.178711 233.967285 40.178711 c 651 | 220.809738 40.178711 209.143875 43.391602 198.969727 49.817383 c 652 | 188.795578 56.319656 180.878098 65.537598 175.217285 77.471191 c 653 | 169.632980 89.481277 166.764328 103.365555 166.611328 119.124023 c 654 | 166.611328 131.172363 l 655 | 166.611328 147.236816 169.403488 161.427094 174.987793 173.743164 c 656 | 180.572098 186.059235 188.451340 195.468414 198.625488 201.970703 c 657 | 208.876144 208.549484 220.580246 211.838867 233.737793 211.838867 c 658 | 247.124832 211.838867 258.905426 208.587723 269.079590 202.085449 c 659 | 279.330231 195.659668 287.209473 186.288727 292.717285 173.972656 c 660 | 298.225098 161.733063 300.979004 147.466309 300.979004 131.172363 c 661 | 300.979004 120.615723 l 662 | h 663 | 279.062500 131.401855 m 664 | 279.062500 151.214691 275.084625 166.399414 267.128906 176.956055 c 665 | 259.173187 187.589203 248.042801 192.905762 233.737793 192.905762 c 666 | 219.815262 192.905762 208.837891 187.589203 200.805664 176.956055 c 667 | 192.849930 166.399414 188.757324 151.711914 188.527832 132.893555 c 668 | 188.527832 120.615723 l 669 | 188.527832 101.414871 192.543945 86.306641 200.576172 75.291016 c 670 | 208.684891 64.351883 219.815262 58.882324 233.967285 58.882324 c 671 | 248.195801 58.882324 259.211426 64.045898 267.014160 74.373047 c 672 | 274.816895 84.776688 278.833008 99.655441 279.062500 119.009277 c 673 | 279.062500 131.401855 l 674 | h 675 | 314.633789 42.473633 m 676 | h 677 | 362.482910 209.543945 m 678 | 417.102051 73.225586 l 679 | 471.721191 209.543945 l 680 | 500.292969 209.543945 l 681 | 500.292969 42.473633 l 682 | 478.261719 42.473633 l 683 | 478.261719 107.534668 l 684 | 480.327148 177.759277 l 685 | 425.478516 42.473633 l 686 | 408.610840 42.473633 l 687 | 353.876953 177.415039 l 688 | 356.057129 107.534668 l 689 | 356.057129 42.473633 l 690 | 334.025879 42.473633 l 691 | 334.025879 209.543945 l 692 | 362.482910 209.543945 l 693 | h 694 | 519.799805 42.473633 m 695 | h 696 | 561.223145 107.878906 m 697 | 561.223145 42.473633 l 698 | 539.191895 42.473633 l 699 | 539.191895 209.543945 l 700 | 600.810547 209.543945 l 701 | 619.093445 209.543945 633.398438 204.877609 643.725586 195.544922 c 702 | 654.129211 186.212250 659.331055 173.857910 659.331055 158.481934 c 703 | 659.331055 142.264481 654.243958 129.757156 644.069824 120.959961 c 704 | 633.972168 112.239258 619.475891 107.878906 600.581055 107.878906 c 705 | 561.223145 107.878906 l 706 | h 707 | 561.223145 125.894043 m 708 | 600.810547 125.894043 l 709 | 612.591125 125.894043 621.617859 128.647949 627.890625 134.155762 c 710 | 634.163391 139.740082 637.299805 147.772308 637.299805 158.252441 c 711 | 637.299805 168.197113 634.163391 176.152832 627.890625 182.119629 c 712 | 621.617859 188.086426 613.011902 191.184570 602.072754 191.414062 c 713 | 561.223145 191.414062 l 714 | 561.223145 125.894043 l 715 | h 716 | 668.051758 42.473633 m 717 | h 718 | 805.058594 209.543945 m 719 | 805.058594 95.945312 l 720 | 804.982117 80.186844 800.009766 67.297043 790.141602 57.275879 c 721 | 780.349915 47.254715 767.039368 41.632156 750.209961 40.408203 c 722 | 744.357910 40.178711 l 723 | 726.075012 40.178711 711.502258 45.112793 700.639648 54.980957 c 724 | 689.777039 64.849121 684.269226 78.427414 684.116211 95.715820 c 725 | 684.116211 209.543945 l 726 | 705.917969 209.543945 l 727 | 705.917969 96.404297 l 728 | 705.917969 84.317703 709.245605 74.908524 715.900879 68.176758 c 729 | 722.556152 61.521484 732.041809 58.193848 744.357910 58.193848 c 730 | 756.826965 58.193848 766.350891 61.521484 772.929688 68.176758 c 731 | 779.584961 74.832031 782.912598 84.202957 782.912598 96.289551 c 732 | 782.912598 209.543945 l 733 | 805.058594 209.543945 l 734 | h 735 | 820.434570 42.473633 m 736 | h 737 | 955.261230 191.414062 m 738 | 901.560059 191.414062 l 739 | 901.560059 42.473633 l 740 | 879.643555 42.473633 l 741 | 879.643555 191.414062 l 742 | 826.057129 191.414062 l 743 | 826.057129 209.543945 l 744 | 955.261230 209.543945 l 745 | 955.261230 191.414062 l 746 | h 747 | 951.474609 42.473633 m 748 | h 749 | 1063.122559 86.077148 m 750 | 993.127441 86.077148 l 751 | 977.407227 42.473633 l 752 | 954.687500 42.473633 l 753 | 1018.486328 209.543945 l 754 | 1037.763672 209.543945 l 755 | 1101.677246 42.473633 l 756 | 1079.072266 42.473633 l 757 | 1063.122559 86.077148 l 758 | h 759 | 999.782715 104.207031 m 760 | 1056.582031 104.207031 l 761 | 1028.125000 182.349121 l 762 | 999.782715 104.207031 l 763 | h 764 | 1103.398438 42.473633 m 765 | h 766 | 1245.683594 95.486328 m 767 | 1243.618164 77.815430 1237.077637 64.160645 1226.062012 54.521973 c 768 | 1215.122925 44.959793 1200.550171 40.178711 1182.343750 40.178711 c 769 | 1162.607422 40.178711 1146.772461 47.254715 1134.838867 61.406738 c 770 | 1122.981812 75.558762 1117.053223 94.491867 1117.053223 118.206055 c 771 | 1117.053223 134.270508 l 772 | 1117.053223 149.799469 1119.807129 163.454254 1125.314941 175.234863 c 773 | 1130.899292 187.015472 1138.778442 196.042145 1148.952637 202.314941 c 774 | 1159.126831 208.664230 1170.907349 211.838867 1184.294434 211.838867 c 775 | 1202.041870 211.838867 1216.270386 206.866547 1226.979980 196.921875 c 776 | 1237.689575 187.053711 1243.924194 173.360687 1245.683594 155.842773 c 777 | 1223.537598 155.842773 l 778 | 1221.625122 169.153320 1217.456055 178.791992 1211.030273 184.758789 c 779 | 1204.681030 190.725586 1195.769043 193.708984 1184.294434 193.708984 c 780 | 1170.218872 193.708984 1159.165039 188.507172 1151.132812 178.103516 c 781 | 1143.177124 167.699860 1139.199219 152.897629 1139.199219 133.696777 c 782 | 1139.199219 117.517578 l 783 | 1139.199219 99.387695 1142.985840 84.967941 1150.559082 74.258301 c 784 | 1158.132324 63.548660 1168.727173 58.193848 1182.343750 58.193848 c 785 | 1194.583374 58.193848 1203.954224 60.947754 1210.456543 66.455566 c 786 | 1217.035278 72.039871 1221.395630 81.716797 1223.537598 95.486328 c 787 | 1245.683594 95.486328 l 788 | h 789 | 1189.572754 41.440918 m 790 | 1188.195801 35.474121 l 791 | 1199.899902 33.408691 1205.751953 26.791672 1205.751953 15.623047 c 792 | 1205.751953 8.202805 1202.692017 2.350739 1196.572266 -1.933105 c 793 | 1190.452515 -6.293457 1181.922974 -8.473633 1170.983887 -8.473633 c 794 | 1170.180664 3.804199 l 795 | 1176.223999 3.804199 1180.890259 4.798660 1184.179688 6.787598 c 796 | 1187.545532 8.776535 1189.228516 11.568680 1189.228516 15.164062 c 797 | 1189.228516 18.529953 1188.004517 21.016113 1185.556641 22.622559 c 798 | 1183.108765 24.229004 1178.136353 25.376465 1170.639648 26.064941 c 799 | 1174.311523 41.440918 l 800 | 1189.572754 41.440918 l 801 | h 802 | 1256.469727 42.473633 m 803 | h 804 | 1368.117676 86.077148 m 805 | 1298.122559 86.077148 l 806 | 1282.402344 42.473633 l 807 | 1259.682617 42.473633 l 808 | 1323.481445 209.543945 l 809 | 1342.758789 209.543945 l 810 | 1406.672363 42.473633 l 811 | 1384.067383 42.473633 l 812 | 1368.117676 86.077148 l 813 | h 814 | 1304.777832 104.207031 m 815 | 1361.577148 104.207031 l 816 | 1333.120117 182.349121 l 817 | 1304.777832 104.207031 l 818 | h 819 | 1374.313965 250.623047 m 820 | 1374.313965 242.361328 1371.942505 235.667801 1367.199707 230.542480 c 821 | 1362.533325 225.417160 1356.681274 222.854492 1349.643555 222.854492 c 822 | 1346.507202 222.854492 1343.791504 223.236984 1341.496582 224.001953 c 823 | 1339.201660 224.766922 1336.180054 226.335129 1332.431641 228.706543 c 824 | 1328.759766 231.077957 1326.082397 232.493164 1324.399414 232.952148 c 825 | 1322.792969 233.487625 1320.918823 233.755371 1318.776855 233.755371 c 826 | 1315.640503 233.755371 1312.963013 232.531418 1310.744629 230.083496 c 827 | 1308.526245 227.712082 1307.416992 224.652176 1307.416992 220.903809 c 828 | 1293.188477 221.707031 l 829 | 1293.188477 229.892258 1295.483398 236.662277 1300.073242 242.017090 c 830 | 1304.739624 247.371902 1310.629883 250.049316 1317.744141 250.049316 c 831 | 1320.421509 250.049316 1322.831177 249.666824 1324.973145 248.901855 c 832 | 1327.115112 248.136887 1330.021973 246.645187 1333.693848 244.426758 c 833 | 1337.365723 242.208328 1340.157837 240.754883 1342.070312 240.066406 c 834 | 1344.059204 239.377930 1346.239380 239.033691 1348.610840 239.033691 c 835 | 1351.900269 239.033691 1354.615845 240.334152 1356.757812 242.935059 c 836 | 1358.976196 245.535965 1360.085449 248.557617 1360.085449 252.000000 c 837 | 1374.313965 250.623047 l 838 | h 839 | 1408.393555 42.473633 m 840 | h 841 | 1556.301270 120.615723 m 842 | 1556.301270 104.245285 1553.547363 89.940262 1548.039551 77.700684 c 843 | 1542.531738 65.537598 1534.729004 56.243164 1524.631348 49.817383 c 844 | 1514.533691 43.391602 1502.753052 40.178711 1489.289551 40.178711 c 845 | 1476.131958 40.178711 1464.466187 43.391602 1454.291992 49.817383 c 846 | 1444.117798 56.319656 1436.200317 65.537598 1430.539551 77.471191 c 847 | 1424.955200 89.481277 1422.086548 103.365555 1421.933594 119.124023 c 848 | 1421.933594 131.172363 l 849 | 1421.933594 147.236816 1424.725708 161.427094 1430.310059 173.743164 c 850 | 1435.894409 186.059235 1443.773560 195.468414 1453.947754 201.970703 c 851 | 1464.198364 208.549484 1475.902466 211.838867 1489.060059 211.838867 c 852 | 1502.447144 211.838867 1514.227661 208.587723 1524.401855 202.085449 c 853 | 1534.652466 195.659668 1542.531738 186.288727 1548.039551 173.972656 c 854 | 1553.547363 161.733063 1556.301270 147.466309 1556.301270 131.172363 c 855 | 1556.301270 120.615723 l 856 | h 857 | 1534.384766 131.401855 m 858 | 1534.384766 151.214691 1530.406860 166.399414 1522.451172 176.956055 c 859 | 1514.495483 187.589203 1503.365112 192.905762 1489.060059 192.905762 c 860 | 1475.137573 192.905762 1464.160156 187.589203 1456.127930 176.956055 c 861 | 1448.172241 166.399414 1444.079590 151.711914 1443.850098 132.893555 c 862 | 1443.850098 120.615723 l 863 | 1443.850098 101.414871 1447.866211 86.306641 1455.898438 75.291016 c 864 | 1464.007202 64.351883 1475.137573 58.882324 1489.289551 58.882324 c 865 | 1503.518066 58.882324 1514.533691 64.045898 1522.336426 74.373047 c 866 | 1530.139160 84.776688 1534.155273 99.655441 1534.384766 119.009277 c 867 | 1534.384766 131.401855 l 868 | h 869 | f 870 | n 871 | Q 872 | q 873 | 1.000000 0.000000 -0.000000 1.000000 751.000000 116.526367 cm 874 | BT 875 | 235.000000 0.000000 0.000000 235.000000 0.000000 42.473633 Tm 876 | /F1 1.000000 Tf 877 | [ (\014) (\016) (\015) (\013) (\017) (\n) 39.062500 (\t) 5.859375 (\010) (\007) 5.859375 (\016) ] TJ 878 | ET 879 | Q 880 | q 881 | 1.000000 0.000000 -0.000000 1.000000 2348.000000 193.429688 cm 882 | 0.780392 0.784314 0.819608 scn 883 | 0.000000 -29.429688 m 884 | h 885 | 86.425781 77.210938 m 886 | 86.425781 4.994141 l 887 | 86.425781 -6.285156 83.154297 -15.098633 76.611328 -21.446289 c 888 | 70.068359 -27.745117 61.206055 -30.894531 50.024414 -30.894531 c 889 | 38.842773 -30.894531 29.980469 -27.745117 23.437500 -21.446289 c 890 | 16.894531 -15.098633 13.598633 -6.382812 13.549805 4.701172 c 891 | 13.549805 77.210938 l 892 | 17.504883 77.210938 l 893 | 17.504883 5.140625 l 894 | 17.504883 -4.722656 20.458984 -12.535156 26.367188 -18.296875 c 895 | 32.324219 -24.058594 40.209961 -26.939453 50.024414 -26.939453 c 896 | 59.838867 -26.939453 67.700195 -24.058594 73.608398 -18.296875 c 897 | 79.516602 -12.535156 82.470703 -4.698242 82.470703 5.213867 c 898 | 82.470703 77.210938 l 899 | 86.425781 77.210938 l 900 | h 901 | 100.048828 -29.429688 m 902 | h 903 | 173.291016 23.011719 m 904 | 118.652344 23.011719 l 905 | 118.652344 -29.429688 l 906 | 114.697266 -29.429688 l 907 | 114.697266 77.210938 l 908 | 180.761719 77.210938 l 909 | 180.761719 73.255859 l 910 | 118.652344 73.255859 l 911 | 118.652344 27.113281 l 912 | 173.291016 27.113281 l 913 | 173.291016 23.011719 l 914 | h 915 | 185.888672 -29.429688 m 916 | h 917 | 259.130859 23.011719 m 918 | 204.492188 23.011719 l 919 | 204.492188 -29.429688 l 920 | 200.537109 -29.429688 l 921 | 200.537109 77.210938 l 922 | 266.601562 77.210938 l 923 | 266.601562 73.255859 l 924 | 204.492188 73.255859 l 925 | 204.492188 27.113281 l 926 | 259.130859 27.113281 l 927 | 259.130859 23.011719 l 928 | h 929 | 271.728516 -29.429688 m 930 | h 931 | 350.244141 -3.868164 m 932 | 350.244141 0.672852 349.169922 4.505859 347.021484 7.630859 c 933 | 344.921875 10.804688 341.577148 13.587891 336.987305 15.980469 c 934 | 332.446289 18.421875 325.561523 20.912109 316.333008 23.451172 c 935 | 307.104492 25.990234 300.170898 28.553711 295.532227 31.141602 c 936 | 290.942383 33.729492 287.573242 36.732422 285.424805 40.150391 c 937 | 283.276367 43.568359 282.202148 47.718750 282.202148 52.601562 c 938 | 282.202148 60.365234 285.473633 66.639648 292.016602 71.424805 c 939 | 298.559570 76.258789 307.080078 78.675781 317.578125 78.675781 c 940 | 324.414062 78.675781 330.541992 77.333008 335.961914 74.647461 c 941 | 341.430664 72.010742 345.654297 68.275391 348.632812 63.441406 c 942 | 351.611328 58.656250 353.100586 53.236328 353.100586 47.181641 c 943 | 349.145508 47.181641 l 944 | 349.145508 55.140625 346.215820 61.708008 340.356445 66.883789 c 945 | 334.497070 72.108398 326.904297 74.720703 317.578125 74.720703 c 946 | 308.203125 74.720703 300.610352 72.621094 294.799805 68.421875 c 947 | 289.038086 64.271484 286.157227 59.046875 286.157227 52.748047 c 948 | 286.157227 46.351562 288.671875 41.200195 293.701172 37.293945 c 949 | 298.730469 33.387695 307.031250 29.920898 318.603516 26.893555 c 950 | 330.175781 23.915039 338.647461 20.448242 344.018555 16.493164 c 951 | 350.854492 11.463867 354.272461 4.725586 354.272461 -3.721680 c 952 | 354.272461 -9.092773 352.758789 -13.853516 349.731445 -18.003906 c 953 | 346.704102 -22.105469 342.407227 -25.279297 336.840820 -27.525391 c 954 | 331.274414 -29.771484 325.024414 -30.894531 318.090820 -30.894531 c 955 | 310.375977 -30.894531 303.442383 -29.625000 297.290039 -27.085938 c 956 | 291.137695 -24.498047 286.499023 -20.835938 283.374023 -16.099609 c 957 | 280.297852 -11.363281 278.759766 -5.772461 278.759766 0.672852 c 958 | 282.714844 0.672852 l 959 | 282.714844 -8.067383 285.986328 -14.854492 292.529297 -19.688477 c 960 | 299.072266 -24.522461 307.592773 -26.939453 318.090820 -26.939453 c 961 | 327.416992 -26.939453 335.107422 -24.815430 341.162109 -20.567383 c 962 | 347.216797 -16.270508 350.244141 -10.704102 350.244141 -3.868164 c 963 | h 964 | f 965 | n 966 | Q 967 | q 968 | 1.000000 0.000000 -0.000000 1.000000 2348.000000 193.429688 cm 969 | BT 970 | 150.000000 0.000000 0.000000 150.000000 0.000000 -29.429688 Tm 971 | /F1 1.000000 Tf 972 | [ (\022) (\021) (\021) (\020) ] TJ 973 | ET 974 | Q 975 | 976 | endstream 977 | endobj 978 | 979 | 45 0 obj 980 | 21989 981 | endobj 982 | 983 | 46 0 obj 984 | << /Annots [] 985 | /Type /Page 986 | /MediaBox [ 0.000000 0.000000 2702.272461 663.000000 ] 987 | /Resources 43 0 R 988 | /Contents 44 0 R 989 | /Parent 47 0 R 990 | >> 991 | endobj 992 | 993 | 47 0 obj 994 | << /Kids [ 46 0 R ] 995 | /Count 1 996 | /Type /Pages 997 | >> 998 | endobj 999 | 1000 | 48 0 obj 1001 | << /Type /Catalog 1002 | /Pages 47 0 R 1003 | >> 1004 | endobj 1005 | 1006 | xref 1007 | 0 49 1008 | 0000000000 65535 f 1009 | 0000000010 00000 n 1010 | 0000000116 00000 n 1011 | 0000000137 00000 n 1012 | 0000000244 00000 n 1013 | 0000000265 00000 n 1014 | 0000000371 00000 n 1015 | 0000000392 00000 n 1016 | 0000000498 00000 n 1017 | 0000000519 00000 n 1018 | 0000000626 00000 n 1019 | 0000000648 00000 n 1020 | 0000000756 00000 n 1021 | 0000000778 00000 n 1022 | 0000000887 00000 n 1023 | 0000000909 00000 n 1024 | 0000001017 00000 n 1025 | 0000001039 00000 n 1026 | 0000001147 00000 n 1027 | 0000001169 00000 n 1028 | 0000001278 00000 n 1029 | 0000001300 00000 n 1030 | 0000001409 00000 n 1031 | 0000001431 00000 n 1032 | 0000001540 00000 n 1033 | 0000001562 00000 n 1034 | 0000001670 00000 n 1035 | 0000001692 00000 n 1036 | 0000001800 00000 n 1037 | 0000001822 00000 n 1038 | 0000001930 00000 n 1039 | 0000001952 00000 n 1040 | 0000002061 00000 n 1041 | 0000002083 00000 n 1042 | 0000002191 00000 n 1043 | 0000002213 00000 n 1044 | 0000002322 00000 n 1045 | 0000002344 00000 n 1046 | 0000002452 00000 n 1047 | 0000002474 00000 n 1048 | 0000002668 00000 n 1049 | 0000003706 00000 n 1050 | 0000003729 00000 n 1051 | 0000004787 00000 n 1052 | 0000004835 00000 n 1053 | 0000026882 00000 n 1054 | 0000026907 00000 n 1055 | 0000027087 00000 n 1056 | 0000027163 00000 n 1057 | trailer 1058 | << /ID [ (some) (id) ] 1059 | /Root 48 0 R 1060 | /Size 49 1061 | >> 1062 | startxref 1063 | 27224 1064 | %%EOF -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-bg-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-transparent/cc-logo-bg-transparent.png -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-bg-transparent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-bg-transparent@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-transparent/cc-logo-bg-transparent@4x.png -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-black-on-bg-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-transparent/cc-logo-black-on-bg-transparent.png -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-black-on-bg-transparent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /logos/bg-transparent/cc-logo-pure-black-on-bg-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-transparent/cc-logo-pure-black-on-bg-transparent.png -------------------------------------------------------------------------------- /logos/bg-white/cc-logo-black-on-bg-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-white/cc-logo-black-on-bg-white.png -------------------------------------------------------------------------------- /logos/bg-white/cc-logo-black-on-bg-white@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-white/cc-logo-black-on-bg-white@4x.png -------------------------------------------------------------------------------- /logos/bg-white/cc-logo-pure-black-on-bg-white.pdf: -------------------------------------------------------------------------------- 1 | %PDF-1.7 2 | 3 | 1 0 obj 4 | << /Length 2 0 R >> 5 | stream 6 | 0.597168 0 0.016113 0.000000 0.580566 0.727051 d1 7 | 8 | endstream 9 | endobj 10 | 11 | 2 0 obj 12 | 50 13 | endobj 14 | 15 | 3 0 obj 16 | << /Length 4 0 R >> 17 | stream 18 | 0.666504 0 0.090332 -0.009766 0.576172 0.811035 d1 19 | 20 | endstream 21 | endobj 22 | 23 | 4 0 obj 24 | 51 25 | endobj 26 | 27 | 5 0 obj 28 | << /Length 6 0 R >> 29 | stream 30 | 0.648438 0 0.068359 -0.009766 0.583008 0.789062 d1 31 | 32 | endstream 33 | endobj 34 | 35 | 6 0 obj 36 | 51 37 | endobj 38 | 39 | 7 0 obj 40 | << /Length 8 0 R >> 41 | stream 42 | 0.569336 0 0.097656 0.000000 0.530273 0.994141 d1 43 | 44 | endstream 45 | endobj 46 | 47 | 8 0 obj 48 | 50 49 | endobj 50 | 51 | 9 0 obj 52 | << /Length 10 0 R >> 53 | stream 54 | 0.707520 0 0.097656 0.000000 0.609863 0.808594 d1 55 | 56 | endstream 57 | endobj 58 | 59 | 10 0 obj 60 | 50 61 | endobj 62 | 63 | 11 0 obj 64 | << /Length 12 0 R >> 65 | stream 66 | 0.654297 0 0.097656 0.000000 0.587891 0.808594 d1 67 | 68 | endstream 69 | endobj 70 | 71 | 12 0 obj 72 | 50 73 | endobj 74 | 75 | 13 0 obj 76 | << /Length 14 0 R >> 77 | stream 78 | 0.591309 0 0.046875 -0.009766 0.550293 0.777344 d1 79 | 80 | endstream 81 | endobj 82 | 83 | 14 0 obj 84 | 51 85 | endobj 86 | 87 | 15 0 obj 88 | << /Length 16 0 R >> 89 | stream 90 | 0.652344 0 0.013672 0.000000 0.639160 0.905273 d1 91 | 92 | endstream 93 | endobj 94 | 95 | 16 0 obj 96 | 50 97 | endobj 98 | 99 | 17 0 obj 100 | << /Length 18 0 R >> 101 | stream 102 | 0.260742 0 0.117188 0.000000 0.143555 0.828125 d1 103 | 104 | endstream 105 | endobj 106 | 107 | 18 0 obj 108 | 50 109 | endobj 110 | 111 | 19 0 obj 112 | << /Length 20 0 R >> 113 | stream 114 | 0.647949 0 0.070312 -0.009766 0.581055 0.800781 d1 115 | 116 | endstream 117 | endobj 118 | 119 | 20 0 obj 120 | 51 121 | endobj 122 | 123 | 21 0 obj 124 | << /Length 22 0 R >> 125 | stream 126 | 0.650879 0 0.058105 -0.009766 0.605469 0.788574 d1 127 | 128 | endstream 129 | endobj 130 | 131 | 22 0 obj 132 | 51 133 | endobj 134 | 135 | 23 0 obj 136 | << /Length 24 0 R >> 137 | stream 138 | 0.652344 0 0.013672 0.000000 0.639160 0.724609 d1 139 | 140 | endstream 141 | endobj 142 | 143 | 24 0 obj 144 | 50 145 | endobj 146 | 147 | 25 0 obj 148 | << /Length 26 0 R >> 149 | stream 150 | 0.239258 0 0.000000 0.000000 0.239258 1.000000 d1 151 | 152 | endstream 153 | endobj 154 | 155 | 26 0 obj 156 | 50 157 | endobj 158 | 159 | 27 0 obj 160 | << /Length 28 0 R >> 161 | stream 162 | 0.596680 0 0.023926 0.000000 0.573730 0.734863 d1 163 | 164 | endstream 165 | endobj 166 | 167 | 28 0 obj 168 | 50 169 | endobj 170 | 171 | 29 0 obj 172 | << /Length 30 0 R >> 173 | stream 174 | 0.873047 0 0.082520 0.000000 0.790039 0.793457 d1 175 | 176 | endstream 177 | endobj 178 | 179 | 30 0 obj 180 | 50 181 | endobj 182 | 183 | 31 0 obj 184 | << /Length 32 0 R >> 185 | stream 186 | 0.630859 0 0.082520 0.000000 0.593750 0.793457 d1 187 | 188 | endstream 189 | endobj 190 | 191 | 32 0 obj 192 | 50 193 | endobj 194 | 195 | 33 0 obj 196 | << /Length 34 0 R >> 197 | stream 198 | 0.687500 0 0.057617 -0.009766 0.629395 0.788086 d1 199 | 200 | endstream 201 | endobj 202 | 203 | 34 0 obj 204 | 51 205 | endobj 206 | 207 | 35 0 obj 208 | << /Length 36 0 R >> 209 | stream 210 | 0.650879 0 0.058105 -0.216797 0.605469 0.995605 d1 211 | 212 | endstream 213 | endobj 214 | 215 | 36 0 obj 216 | 51 217 | endobj 218 | 219 | 37 0 obj 220 | << /Length 38 0 R >> 221 | stream 222 | 0.572266 0 0.097656 0.000000 0.538086 0.808594 d1 223 | 224 | endstream 225 | endobj 226 | 227 | 38 0 obj 228 | 50 229 | endobj 230 | 231 | 39 0 obj 232 | [ 0.654297 0.239258 0.569336 0.597168 0.707520 0.260742 0.647949 0.652344 0.652344 0.648438 0.596680 0.873047 0.630859 0.687500 0.650879 0.650879 0.591309 0.572266 0.666504 ] 233 | endobj 234 | 235 | 40 0 obj 236 | << /Length 41 0 R >> 237 | stream 238 | /CIDInit /ProcSet findresource begin 239 | 12 dict begin 240 | begincmap 241 | /CIDSystemInfo 242 | << /Registry (FigmaPDF) 243 | /Ordering (FigmaPDF) 244 | /Supplement 0 245 | >> def 246 | /CMapName /A-B-C def 247 | /CMapType 2 def 248 | 1 begincodespacerange 249 | <00> 250 | endcodespacerange 251 | 1 beginbfchar 252 | <00> <0044> 253 | endbfchar 254 | 1 beginbfchar 255 | <01> <0020> 256 | endbfchar 257 | 1 beginbfchar 258 | <02> <00CA> 259 | endbfchar 260 | 1 beginbfchar 261 | <03> <0041> 262 | endbfchar 263 | 1 beginbfchar 264 | <04> <004E> 265 | endbfchar 266 | 1 beginbfchar 267 | <05> <0049> 268 | endbfchar 269 | 1 beginbfchar 270 | <06> <0043> 271 | endbfchar 272 | 1 beginbfchar 273 | <07> <00C3> 274 | endbfchar 275 | 1 beginbfchar 276 | <08> <0041> 277 | endbfchar 278 | 1 beginbfchar 279 | <09> <0055> 280 | endbfchar 281 | 1 beginbfchar 282 | <0A> <0054> 283 | endbfchar 284 | 1 beginbfchar 285 | <0B> <004D> 286 | endbfchar 287 | 1 beginbfchar 288 | <0C> <0050> 289 | endbfchar 290 | 1 beginbfchar 291 | <0D> <004F> 292 | endbfchar 293 | 1 beginbfchar 294 | <0E> <00C7> 295 | endbfchar 296 | 1 beginbfchar 297 | <0F> <0043> 298 | endbfchar 299 | 1 beginbfchar 300 | <10> <0053> 301 | endbfchar 302 | 1 beginbfchar 303 | <11> <0046> 304 | endbfchar 305 | 1 beginbfchar 306 | <12> <0055> 307 | endbfchar 308 | endcmap 309 | CMapName currentdict /CMap defineresource pop 310 | end 311 | end 312 | endstream 313 | endobj 314 | 315 | 41 0 obj 316 | 980 317 | endobj 318 | 319 | 42 0 obj 320 | << /Subtype /Type3 321 | /CharProcs << /C9 5 0 R 322 | /C3 1 0 R 323 | /C18 3 0 R 324 | /C2 7 0 R 325 | /C4 9 0 R 326 | /C7 15 0 R 327 | /C16 13 0 R 328 | /C0 11 0 R 329 | /C6 19 0 R 330 | /C15 21 0 R 331 | /C8 23 0 R 332 | /C1 25 0 R 333 | /C11 29 0 R 334 | /C12 31 0 R 335 | /C5 17 0 R 336 | /C14 35 0 R 337 | /C13 33 0 R 338 | /C10 27 0 R 339 | /C17 37 0 R 340 | >> 341 | /Encoding << /Type /Encoding 342 | /Differences [ 0 /C0 /C1 /C2 /C3 /C4 /C5 /C6 /C7 /C8 /C9 /C10 /C11 /C12 /C13 /C14 /C15 /C16 /C17 /C18 ] 343 | >> 344 | /Widths 39 0 R 345 | /FontBBox [ 0.000000 0.000000 0.000000 0.000000 ] 346 | /FontMatrix [ 1.000000 0.000000 0.000000 1.000000 0.000000 0.000000 ] 347 | /Type /Font 348 | /ToUnicode 40 0 R 349 | /FirstChar 0 350 | /LastChar 18 351 | /Resources << >> 352 | >> 353 | endobj 354 | 355 | 43 0 obj 356 | << /Font << /F1 42 0 R >> >> 357 | endobj 358 | 359 | 44 0 obj 360 | << /Length 45 0 R >> 361 | stream 362 | /DeviceRGB CS 363 | /DeviceRGB cs 364 | q 365 | 1.000000 0.000000 -0.000000 1.000000 751.000000 387.062500 cm 366 | 0.000000 0.000000 0.000000 scn 367 | 0.000000 -3.062500 m 368 | h 369 | 87.158203 29.603516 m 370 | 86.132812 18.617188 82.348633 10.169922 75.805664 4.261719 c 371 | 69.262695 -1.597656 60.375977 -4.527344 49.145508 -4.527344 c 372 | 41.577148 -4.527344 34.863281 -2.623047 29.003906 1.185547 c 373 | 23.193359 5.042969 18.676758 10.487305 15.454102 17.518555 c 374 | 12.231445 24.598633 10.595703 32.679688 10.546875 41.761719 c 375 | 10.546875 58.241211 l 376 | 10.546875 67.323242 12.133789 75.428711 15.307617 82.557617 c 377 | 18.481445 89.735352 22.998047 95.277344 28.857422 99.183594 c 378 | 34.765625 103.089844 41.528320 105.042969 49.145508 105.042969 c 379 | 60.278320 105.042969 69.140625 102.113281 75.732422 96.253906 c 380 | 82.324219 90.394531 86.132812 81.996094 87.158203 71.058594 c 381 | 83.203125 71.058594 l 382 | 82.080078 80.873047 78.662109 88.319336 72.949219 93.397461 c 383 | 67.236328 98.524414 59.301758 101.087891 49.145508 101.087891 c 384 | 38.793945 101.087891 30.419922 97.181641 24.023438 89.369141 c 385 | 17.675781 81.556641 14.501953 71.083008 14.501953 57.948242 c 386 | 14.501953 42.274414 l 387 | 14.501953 33.875977 15.917969 26.429688 18.750000 19.935547 c 388 | 21.582031 13.490234 25.634766 8.460938 30.908203 4.847656 c 389 | 36.230469 1.234375 42.309570 -0.572266 49.145508 -0.572266 c 390 | 59.350586 -0.572266 67.309570 1.942383 73.022461 6.971680 c 391 | 78.784180 12.000977 82.177734 19.544922 83.203125 29.603516 c 392 | 87.158203 29.603516 l 393 | h 394 | 97.265625 -3.062500 m 395 | h 396 | 118.798828 -3.062500 m 397 | 114.843750 -3.062500 l 398 | 114.843750 103.578125 l 399 | 118.798828 103.578125 l 400 | 118.798828 -3.062500 l 401 | h 402 | 136.376953 -3.062500 m 403 | h 404 | 208.447266 49.818359 m 405 | 154.980469 49.818359 l 406 | 154.980469 0.892578 l 407 | 215.917969 0.892578 l 408 | 215.917969 -3.062500 l 409 | 151.025391 -3.062500 l 410 | 151.025391 103.578125 l 411 | 215.917969 103.578125 l 412 | 215.917969 99.623047 l 413 | 154.980469 99.623047 l 414 | 154.980469 53.773438 l 415 | 208.447266 53.773438 l 416 | 208.447266 49.818359 l 417 | h 418 | 200.317383 113.612305 m 419 | 200.317383 112.879883 l 420 | 195.336914 112.879883 l 421 | 181.640625 127.235352 l 422 | 168.090820 112.879883 l 423 | 163.403320 112.879883 l 424 | 163.403320 113.905273 l 425 | 180.249023 131.410156 l 426 | 183.178711 131.410156 l 427 | 200.317383 113.612305 l 428 | h 429 | 221.777344 -3.062500 m 430 | h 431 | 313.256836 -3.062500 m 432 | 309.301758 -3.062500 l 433 | 240.454102 96.839844 l 434 | 240.454102 -3.062500 l 435 | 236.425781 -3.062500 l 436 | 236.425781 103.578125 l 437 | 240.454102 103.578125 l 438 | 309.301758 3.895508 l 439 | 309.301758 103.578125 l 440 | 313.256836 103.578125 l 441 | 313.256836 -3.062500 l 442 | h 443 | 327.978516 -3.062500 m 444 | h 445 | 415.136719 29.603516 m 446 | 414.111328 18.617188 410.327148 10.169922 403.784180 4.261719 c 447 | 397.241211 -1.597656 388.354492 -4.527344 377.124023 -4.527344 c 448 | 369.555664 -4.527344 362.841797 -2.623047 356.982422 1.185547 c 449 | 351.171875 5.042969 346.655273 10.487305 343.432617 17.518555 c 450 | 340.209961 24.598633 338.574219 32.679688 338.525391 41.761719 c 451 | 338.525391 58.241211 l 452 | 338.525391 67.323242 340.112305 75.428711 343.286133 82.557617 c 453 | 346.459961 89.735352 350.976562 95.277344 356.835938 99.183594 c 454 | 362.744141 103.089844 369.506836 105.042969 377.124023 105.042969 c 455 | 388.256836 105.042969 397.119141 102.113281 403.710938 96.253906 c 456 | 410.302734 90.394531 414.111328 81.996094 415.136719 71.058594 c 457 | 411.181641 71.058594 l 458 | 410.058594 80.873047 406.640625 88.319336 400.927734 93.397461 c 459 | 395.214844 98.524414 387.280273 101.087891 377.124023 101.087891 c 460 | 366.772461 101.087891 358.398438 97.181641 352.001953 89.369141 c 461 | 345.654297 81.556641 342.480469 71.083008 342.480469 57.948242 c 462 | 342.480469 42.274414 l 463 | 342.480469 33.875977 343.896484 26.429688 346.728516 19.935547 c 464 | 349.560547 13.490234 353.613281 8.460938 358.886719 4.847656 c 465 | 364.208984 1.234375 370.288086 -0.572266 377.124023 -0.572266 c 466 | 387.329102 -0.572266 395.288086 1.942383 401.000977 6.971680 c 467 | 406.762695 12.000977 410.156250 19.544922 411.181641 29.603516 c 468 | 415.136719 29.603516 l 469 | h 470 | 425.244141 -3.062500 m 471 | h 472 | 446.777344 -3.062500 m 473 | 442.822266 -3.062500 l 474 | 442.822266 103.578125 l 475 | 446.777344 103.578125 l 476 | 446.777344 -3.062500 l 477 | h 478 | 465.673828 -3.062500 m 479 | h 480 | 536.499023 28.797852 m 481 | 484.277344 28.797852 l 482 | 472.412109 -3.062500 l 483 | 468.090820 -3.062500 l 484 | 508.007812 103.578125 l 485 | 512.841797 103.578125 l 486 | 552.758789 -3.062500 l 487 | 548.437500 -3.062500 l 488 | 536.499023 28.797852 l 489 | h 490 | 485.742188 32.752930 m 491 | 535.034180 32.752930 l 492 | 510.424805 98.817383 l 493 | 485.742188 32.752930 l 494 | h 495 | 591.210938 -3.062500 m 496 | h 497 | 605.859375 -3.062500 m 498 | 605.859375 103.578125 l 499 | 635.375977 103.578125 l 500 | 643.627930 103.578125 651.098633 101.625000 657.788086 97.718750 c 501 | 664.477539 93.812500 669.726562 88.319336 673.535156 81.239258 c 502 | 677.343750 74.208008 679.296875 66.322266 679.394531 57.582031 c 503 | 679.394531 43.739258 l 504 | 679.394531 34.852539 677.514648 26.844727 673.754883 19.715820 c 505 | 670.043945 12.586914 664.843750 7.020508 658.154297 3.016602 c 506 | 651.464844 -0.987305 643.994141 -3.013672 635.742188 -3.062500 c 507 | 605.859375 -3.062500 l 508 | h 509 | 609.814453 99.623047 m 510 | 609.814453 0.892578 l 511 | 635.375977 0.892578 l 512 | 642.846680 0.892578 649.633789 2.699219 655.737305 6.312500 c 513 | 661.889648 9.974609 666.699219 15.052734 670.166016 21.546875 c 514 | 673.632812 28.089844 675.390625 35.340820 675.439453 43.299805 c 515 | 675.439453 56.996094 l 516 | 675.439453 64.955078 673.730469 72.181641 670.312500 78.675781 c 517 | 666.943359 85.169922 662.207031 90.248047 656.103516 93.910156 c 518 | 650.048828 97.621094 643.334961 99.525391 635.961914 99.623047 c 519 | 609.814453 99.623047 l 520 | h 521 | 687.744141 -3.062500 m 522 | h 523 | 758.569336 28.797852 m 524 | 706.347656 28.797852 l 525 | 694.482422 -3.062500 l 526 | 690.161133 -3.062500 l 527 | 730.078125 103.578125 l 528 | 734.912109 103.578125 l 529 | 774.829102 -3.062500 l 530 | 770.507812 -3.062500 l 531 | 758.569336 28.797852 l 532 | h 533 | 707.812500 32.752930 m 534 | 757.104492 32.752930 l 535 | 732.495117 98.817383 l 536 | 707.812500 32.752930 l 537 | h 538 | f 539 | n 540 | Q 541 | q 542 | 1.000000 0.000000 -0.000000 1.000000 751.000000 387.062500 cm 543 | BT 544 | 150.000000 0.000000 0.000000 150.000000 0.000000 -3.062500 Tm 545 | /F1 1.000000 Tf 546 | [ (\006) (\005) (\002) (\004) (\006) (\005) -8.789062 (\003) (\001) (\000) 10.742188 (\003) ] TJ 547 | ET 548 | Q 549 | q 550 | 1.000000 0.000000 -0.000000 1.000000 751.000000 116.526367 cm 551 | 0.000000 0.000000 0.000000 scn 552 | 0.000000 42.473633 m 553 | h 554 | 142.285156 95.486328 m 555 | 140.219727 77.815430 133.679199 64.160645 122.663574 54.521973 c 556 | 111.724449 44.959793 97.151695 40.178711 78.945312 40.178711 c 557 | 59.208984 40.178711 43.374023 47.254715 31.440430 61.406738 c 558 | 19.583332 75.558762 13.654785 94.491867 13.654785 118.206055 c 559 | 13.654785 134.270508 l 560 | 13.654785 149.799469 16.408691 163.454254 21.916504 175.234863 c 561 | 27.500814 187.015472 35.380043 196.042145 45.554199 202.314941 c 562 | 55.728355 208.664230 67.508949 211.838867 80.895996 211.838867 c 563 | 98.643394 211.838867 112.871910 206.866547 123.581543 196.921875 c 564 | 134.291183 187.053711 140.525711 173.360687 142.285156 155.842773 c 565 | 120.139160 155.842773 l 566 | 118.226723 169.153320 114.057617 178.791992 107.631836 184.758789 c 567 | 101.282555 190.725586 92.370605 193.708984 80.895996 193.708984 c 568 | 66.820473 193.708984 55.766602 188.507172 47.734375 178.103516 c 569 | 39.778645 167.699860 35.800781 152.897629 35.800781 133.696777 c 570 | 35.800781 117.517578 l 571 | 35.800781 99.387695 39.587402 84.967941 47.160645 74.258301 c 572 | 54.733887 63.548660 65.328773 58.193848 78.945312 58.193848 c 573 | 91.184898 58.193848 100.555824 60.947754 107.058105 66.455566 c 574 | 113.636879 72.039871 117.997231 81.716797 120.139160 95.486328 c 575 | 142.285156 95.486328 l 576 | h 577 | 153.071289 42.473633 m 578 | h 579 | 300.979004 120.615723 m 580 | 300.979004 104.245285 298.225098 89.940262 292.717285 77.700684 c 581 | 287.209473 65.537598 279.406738 56.243164 269.309082 49.817383 c 582 | 259.211426 43.391602 247.430832 40.178711 233.967285 40.178711 c 583 | 220.809738 40.178711 209.143875 43.391602 198.969727 49.817383 c 584 | 188.795578 56.319656 180.878098 65.537598 175.217285 77.471191 c 585 | 169.632980 89.481277 166.764328 103.365555 166.611328 119.124023 c 586 | 166.611328 131.172363 l 587 | 166.611328 147.236816 169.403488 161.427094 174.987793 173.743164 c 588 | 180.572098 186.059235 188.451340 195.468414 198.625488 201.970703 c 589 | 208.876144 208.549484 220.580246 211.838867 233.737793 211.838867 c 590 | 247.124832 211.838867 258.905426 208.587723 269.079590 202.085449 c 591 | 279.330231 195.659668 287.209473 186.288727 292.717285 173.972656 c 592 | 298.225098 161.733063 300.979004 147.466309 300.979004 131.172363 c 593 | 300.979004 120.615723 l 594 | h 595 | 279.062500 131.401855 m 596 | 279.062500 151.214691 275.084625 166.399414 267.128906 176.956055 c 597 | 259.173187 187.589203 248.042801 192.905762 233.737793 192.905762 c 598 | 219.815262 192.905762 208.837891 187.589203 200.805664 176.956055 c 599 | 192.849930 166.399414 188.757324 151.711914 188.527832 132.893555 c 600 | 188.527832 120.615723 l 601 | 188.527832 101.414871 192.543945 86.306641 200.576172 75.291016 c 602 | 208.684891 64.351883 219.815262 58.882324 233.967285 58.882324 c 603 | 248.195801 58.882324 259.211426 64.045898 267.014160 74.373047 c 604 | 274.816895 84.776688 278.833008 99.655441 279.062500 119.009277 c 605 | 279.062500 131.401855 l 606 | h 607 | 314.633789 42.473633 m 608 | h 609 | 362.482910 209.543945 m 610 | 417.102051 73.225586 l 611 | 471.721191 209.543945 l 612 | 500.292969 209.543945 l 613 | 500.292969 42.473633 l 614 | 478.261719 42.473633 l 615 | 478.261719 107.534668 l 616 | 480.327148 177.759277 l 617 | 425.478516 42.473633 l 618 | 408.610840 42.473633 l 619 | 353.876953 177.415039 l 620 | 356.057129 107.534668 l 621 | 356.057129 42.473633 l 622 | 334.025879 42.473633 l 623 | 334.025879 209.543945 l 624 | 362.482910 209.543945 l 625 | h 626 | 519.799805 42.473633 m 627 | h 628 | 561.223145 107.878906 m 629 | 561.223145 42.473633 l 630 | 539.191895 42.473633 l 631 | 539.191895 209.543945 l 632 | 600.810547 209.543945 l 633 | 619.093445 209.543945 633.398438 204.877609 643.725586 195.544922 c 634 | 654.129211 186.212250 659.331055 173.857910 659.331055 158.481934 c 635 | 659.331055 142.264481 654.243958 129.757156 644.069824 120.959961 c 636 | 633.972168 112.239258 619.475891 107.878906 600.581055 107.878906 c 637 | 561.223145 107.878906 l 638 | h 639 | 561.223145 125.894043 m 640 | 600.810547 125.894043 l 641 | 612.591125 125.894043 621.617859 128.647949 627.890625 134.155762 c 642 | 634.163391 139.740082 637.299805 147.772308 637.299805 158.252441 c 643 | 637.299805 168.197113 634.163391 176.152832 627.890625 182.119629 c 644 | 621.617859 188.086426 613.011902 191.184570 602.072754 191.414062 c 645 | 561.223145 191.414062 l 646 | 561.223145 125.894043 l 647 | h 648 | 668.051758 42.473633 m 649 | h 650 | 805.058594 209.543945 m 651 | 805.058594 95.945312 l 652 | 804.982117 80.186844 800.009766 67.297043 790.141602 57.275879 c 653 | 780.349915 47.254715 767.039368 41.632156 750.209961 40.408203 c 654 | 744.357910 40.178711 l 655 | 726.075012 40.178711 711.502258 45.112793 700.639648 54.980957 c 656 | 689.777039 64.849121 684.269226 78.427414 684.116211 95.715820 c 657 | 684.116211 209.543945 l 658 | 705.917969 209.543945 l 659 | 705.917969 96.404297 l 660 | 705.917969 84.317703 709.245605 74.908524 715.900879 68.176758 c 661 | 722.556152 61.521484 732.041809 58.193848 744.357910 58.193848 c 662 | 756.826965 58.193848 766.350891 61.521484 772.929688 68.176758 c 663 | 779.584961 74.832031 782.912598 84.202957 782.912598 96.289551 c 664 | 782.912598 209.543945 l 665 | 805.058594 209.543945 l 666 | h 667 | 820.434570 42.473633 m 668 | h 669 | 955.261230 191.414062 m 670 | 901.560059 191.414062 l 671 | 901.560059 42.473633 l 672 | 879.643555 42.473633 l 673 | 879.643555 191.414062 l 674 | 826.057129 191.414062 l 675 | 826.057129 209.543945 l 676 | 955.261230 209.543945 l 677 | 955.261230 191.414062 l 678 | h 679 | 951.474609 42.473633 m 680 | h 681 | 1063.122559 86.077148 m 682 | 993.127441 86.077148 l 683 | 977.407227 42.473633 l 684 | 954.687500 42.473633 l 685 | 1018.486328 209.543945 l 686 | 1037.763672 209.543945 l 687 | 1101.677246 42.473633 l 688 | 1079.072266 42.473633 l 689 | 1063.122559 86.077148 l 690 | h 691 | 999.782715 104.207031 m 692 | 1056.582031 104.207031 l 693 | 1028.125000 182.349121 l 694 | 999.782715 104.207031 l 695 | h 696 | 1103.398438 42.473633 m 697 | h 698 | 1245.683594 95.486328 m 699 | 1243.618164 77.815430 1237.077637 64.160645 1226.062012 54.521973 c 700 | 1215.122925 44.959793 1200.550171 40.178711 1182.343750 40.178711 c 701 | 1162.607422 40.178711 1146.772461 47.254715 1134.838867 61.406738 c 702 | 1122.981812 75.558762 1117.053223 94.491867 1117.053223 118.206055 c 703 | 1117.053223 134.270508 l 704 | 1117.053223 149.799469 1119.807129 163.454254 1125.314941 175.234863 c 705 | 1130.899292 187.015472 1138.778442 196.042145 1148.952637 202.314941 c 706 | 1159.126831 208.664230 1170.907349 211.838867 1184.294434 211.838867 c 707 | 1202.041870 211.838867 1216.270386 206.866547 1226.979980 196.921875 c 708 | 1237.689575 187.053711 1243.924194 173.360687 1245.683594 155.842773 c 709 | 1223.537598 155.842773 l 710 | 1221.625122 169.153320 1217.456055 178.791992 1211.030273 184.758789 c 711 | 1204.681030 190.725586 1195.769043 193.708984 1184.294434 193.708984 c 712 | 1170.218872 193.708984 1159.165039 188.507172 1151.132812 178.103516 c 713 | 1143.177124 167.699860 1139.199219 152.897629 1139.199219 133.696777 c 714 | 1139.199219 117.517578 l 715 | 1139.199219 99.387695 1142.985840 84.967941 1150.559082 74.258301 c 716 | 1158.132324 63.548660 1168.727173 58.193848 1182.343750 58.193848 c 717 | 1194.583374 58.193848 1203.954224 60.947754 1210.456543 66.455566 c 718 | 1217.035278 72.039871 1221.395630 81.716797 1223.537598 95.486328 c 719 | 1245.683594 95.486328 l 720 | h 721 | 1189.572754 41.440918 m 722 | 1188.195801 35.474121 l 723 | 1199.899902 33.408691 1205.751953 26.791672 1205.751953 15.623047 c 724 | 1205.751953 8.202805 1202.692017 2.350739 1196.572266 -1.933105 c 725 | 1190.452515 -6.293457 1181.922974 -8.473633 1170.983887 -8.473633 c 726 | 1170.180664 3.804199 l 727 | 1176.223999 3.804199 1180.890259 4.798660 1184.179688 6.787598 c 728 | 1187.545532 8.776535 1189.228516 11.568680 1189.228516 15.164062 c 729 | 1189.228516 18.529953 1188.004517 21.016113 1185.556641 22.622559 c 730 | 1183.108765 24.229004 1178.136353 25.376465 1170.639648 26.064941 c 731 | 1174.311523 41.440918 l 732 | 1189.572754 41.440918 l 733 | h 734 | 1256.469727 42.473633 m 735 | h 736 | 1368.117676 86.077148 m 737 | 1298.122559 86.077148 l 738 | 1282.402344 42.473633 l 739 | 1259.682617 42.473633 l 740 | 1323.481445 209.543945 l 741 | 1342.758789 209.543945 l 742 | 1406.672363 42.473633 l 743 | 1384.067383 42.473633 l 744 | 1368.117676 86.077148 l 745 | h 746 | 1304.777832 104.207031 m 747 | 1361.577148 104.207031 l 748 | 1333.120117 182.349121 l 749 | 1304.777832 104.207031 l 750 | h 751 | 1374.313965 250.623047 m 752 | 1374.313965 242.361328 1371.942505 235.667801 1367.199707 230.542480 c 753 | 1362.533325 225.417160 1356.681274 222.854492 1349.643555 222.854492 c 754 | 1346.507202 222.854492 1343.791504 223.236984 1341.496582 224.001953 c 755 | 1339.201660 224.766922 1336.180054 226.335129 1332.431641 228.706543 c 756 | 1328.759766 231.077957 1326.082397 232.493164 1324.399414 232.952148 c 757 | 1322.792969 233.487625 1320.918823 233.755371 1318.776855 233.755371 c 758 | 1315.640503 233.755371 1312.963013 232.531418 1310.744629 230.083496 c 759 | 1308.526245 227.712082 1307.416992 224.652176 1307.416992 220.903809 c 760 | 1293.188477 221.707031 l 761 | 1293.188477 229.892258 1295.483398 236.662277 1300.073242 242.017090 c 762 | 1304.739624 247.371902 1310.629883 250.049316 1317.744141 250.049316 c 763 | 1320.421509 250.049316 1322.831177 249.666824 1324.973145 248.901855 c 764 | 1327.115112 248.136887 1330.021973 246.645187 1333.693848 244.426758 c 765 | 1337.365723 242.208328 1340.157837 240.754883 1342.070312 240.066406 c 766 | 1344.059204 239.377930 1346.239380 239.033691 1348.610840 239.033691 c 767 | 1351.900269 239.033691 1354.615845 240.334152 1356.757812 242.935059 c 768 | 1358.976196 245.535965 1360.085449 248.557617 1360.085449 252.000000 c 769 | 1374.313965 250.623047 l 770 | h 771 | 1408.393555 42.473633 m 772 | h 773 | 1556.301270 120.615723 m 774 | 1556.301270 104.245285 1553.547363 89.940262 1548.039551 77.700684 c 775 | 1542.531738 65.537598 1534.729004 56.243164 1524.631348 49.817383 c 776 | 1514.533691 43.391602 1502.753052 40.178711 1489.289551 40.178711 c 777 | 1476.131958 40.178711 1464.466187 43.391602 1454.291992 49.817383 c 778 | 1444.117798 56.319656 1436.200317 65.537598 1430.539551 77.471191 c 779 | 1424.955200 89.481277 1422.086548 103.365555 1421.933594 119.124023 c 780 | 1421.933594 131.172363 l 781 | 1421.933594 147.236816 1424.725708 161.427094 1430.310059 173.743164 c 782 | 1435.894409 186.059235 1443.773560 195.468414 1453.947754 201.970703 c 783 | 1464.198364 208.549484 1475.902466 211.838867 1489.060059 211.838867 c 784 | 1502.447144 211.838867 1514.227661 208.587723 1524.401855 202.085449 c 785 | 1534.652466 195.659668 1542.531738 186.288727 1548.039551 173.972656 c 786 | 1553.547363 161.733063 1556.301270 147.466309 1556.301270 131.172363 c 787 | 1556.301270 120.615723 l 788 | h 789 | 1534.384766 131.401855 m 790 | 1534.384766 151.214691 1530.406860 166.399414 1522.451172 176.956055 c 791 | 1514.495483 187.589203 1503.365112 192.905762 1489.060059 192.905762 c 792 | 1475.137573 192.905762 1464.160156 187.589203 1456.127930 176.956055 c 793 | 1448.172241 166.399414 1444.079590 151.711914 1443.850098 132.893555 c 794 | 1443.850098 120.615723 l 795 | 1443.850098 101.414871 1447.866211 86.306641 1455.898438 75.291016 c 796 | 1464.007202 64.351883 1475.137573 58.882324 1489.289551 58.882324 c 797 | 1503.518066 58.882324 1514.533691 64.045898 1522.336426 74.373047 c 798 | 1530.139160 84.776688 1534.155273 99.655441 1534.384766 119.009277 c 799 | 1534.384766 131.401855 l 800 | h 801 | f 802 | n 803 | Q 804 | q 805 | 1.000000 0.000000 -0.000000 1.000000 751.000000 116.526367 cm 806 | BT 807 | 235.000000 0.000000 0.000000 235.000000 0.000000 42.473633 Tm 808 | /F1 1.000000 Tf 809 | [ (\017) (\015) (\013) (\014) (\t) (\n) 39.062500 (\010) 5.859375 (\016) (\007) 5.859375 (\015) ] TJ 810 | ET 811 | Q 812 | q 813 | 1.000000 0.000000 -0.000000 1.000000 2348.000000 193.429688 cm 814 | 0.000000 0.000000 0.000000 scn 815 | 0.000000 -29.429688 m 816 | h 817 | 86.425781 77.210938 m 818 | 86.425781 4.994141 l 819 | 86.425781 -6.285156 83.154297 -15.098633 76.611328 -21.446289 c 820 | 70.068359 -27.745117 61.206055 -30.894531 50.024414 -30.894531 c 821 | 38.842773 -30.894531 29.980469 -27.745117 23.437500 -21.446289 c 822 | 16.894531 -15.098633 13.598633 -6.382812 13.549805 4.701172 c 823 | 13.549805 77.210938 l 824 | 17.504883 77.210938 l 825 | 17.504883 5.140625 l 826 | 17.504883 -4.722656 20.458984 -12.535156 26.367188 -18.296875 c 827 | 32.324219 -24.058594 40.209961 -26.939453 50.024414 -26.939453 c 828 | 59.838867 -26.939453 67.700195 -24.058594 73.608398 -18.296875 c 829 | 79.516602 -12.535156 82.470703 -4.698242 82.470703 5.213867 c 830 | 82.470703 77.210938 l 831 | 86.425781 77.210938 l 832 | h 833 | 100.048828 -29.429688 m 834 | h 835 | 173.291016 23.011719 m 836 | 118.652344 23.011719 l 837 | 118.652344 -29.429688 l 838 | 114.697266 -29.429688 l 839 | 114.697266 77.210938 l 840 | 180.761719 77.210938 l 841 | 180.761719 73.255859 l 842 | 118.652344 73.255859 l 843 | 118.652344 27.113281 l 844 | 173.291016 27.113281 l 845 | 173.291016 23.011719 l 846 | h 847 | 185.888672 -29.429688 m 848 | h 849 | 259.130859 23.011719 m 850 | 204.492188 23.011719 l 851 | 204.492188 -29.429688 l 852 | 200.537109 -29.429688 l 853 | 200.537109 77.210938 l 854 | 266.601562 77.210938 l 855 | 266.601562 73.255859 l 856 | 204.492188 73.255859 l 857 | 204.492188 27.113281 l 858 | 259.130859 27.113281 l 859 | 259.130859 23.011719 l 860 | h 861 | 271.728516 -29.429688 m 862 | h 863 | 350.244141 -3.868164 m 864 | 350.244141 0.672852 349.169922 4.505859 347.021484 7.630859 c 865 | 344.921875 10.804688 341.577148 13.587891 336.987305 15.980469 c 866 | 332.446289 18.421875 325.561523 20.912109 316.333008 23.451172 c 867 | 307.104492 25.990234 300.170898 28.553711 295.532227 31.141602 c 868 | 290.942383 33.729492 287.573242 36.732422 285.424805 40.150391 c 869 | 283.276367 43.568359 282.202148 47.718750 282.202148 52.601562 c 870 | 282.202148 60.365234 285.473633 66.639648 292.016602 71.424805 c 871 | 298.559570 76.258789 307.080078 78.675781 317.578125 78.675781 c 872 | 324.414062 78.675781 330.541992 77.333008 335.961914 74.647461 c 873 | 341.430664 72.010742 345.654297 68.275391 348.632812 63.441406 c 874 | 351.611328 58.656250 353.100586 53.236328 353.100586 47.181641 c 875 | 349.145508 47.181641 l 876 | 349.145508 55.140625 346.215820 61.708008 340.356445 66.883789 c 877 | 334.497070 72.108398 326.904297 74.720703 317.578125 74.720703 c 878 | 308.203125 74.720703 300.610352 72.621094 294.799805 68.421875 c 879 | 289.038086 64.271484 286.157227 59.046875 286.157227 52.748047 c 880 | 286.157227 46.351562 288.671875 41.200195 293.701172 37.293945 c 881 | 298.730469 33.387695 307.031250 29.920898 318.603516 26.893555 c 882 | 330.175781 23.915039 338.647461 20.448242 344.018555 16.493164 c 883 | 350.854492 11.463867 354.272461 4.725586 354.272461 -3.721680 c 884 | 354.272461 -9.092773 352.758789 -13.853516 349.731445 -18.003906 c 885 | 346.704102 -22.105469 342.407227 -25.279297 336.840820 -27.525391 c 886 | 331.274414 -29.771484 325.024414 -30.894531 318.090820 -30.894531 c 887 | 310.375977 -30.894531 303.442383 -29.625000 297.290039 -27.085938 c 888 | 291.137695 -24.498047 286.499023 -20.835938 283.374023 -16.099609 c 889 | 280.297852 -11.363281 278.759766 -5.772461 278.759766 0.672852 c 890 | 282.714844 0.672852 l 891 | 282.714844 -8.067383 285.986328 -14.854492 292.529297 -19.688477 c 892 | 299.072266 -24.522461 307.592773 -26.939453 318.090820 -26.939453 c 893 | 327.416992 -26.939453 335.107422 -24.815430 341.162109 -20.567383 c 894 | 347.216797 -16.270508 350.244141 -10.704102 350.244141 -3.868164 c 895 | h 896 | f 897 | n 898 | Q 899 | q 900 | 1.000000 0.000000 -0.000000 1.000000 2348.000000 193.429688 cm 901 | BT 902 | 150.000000 0.000000 0.000000 150.000000 0.000000 -29.429688 Tm 903 | /F1 1.000000 Tf 904 | [ (\022) (\021) (\021) (\020) ] TJ 905 | ET 906 | Q 907 | q 908 | 1.000000 0.000000 -0.000000 1.000000 185.522827 150.082794 cm 909 | 0.000000 0.000000 0.000000 scn 910 | 23.842813 87.082336 m 911 | -25.099590 171.062988 3.689123 278.261749 88.376694 327.383087 c 912 | 173.064240 376.504456 282.054535 349.221741 332.693481 266.225128 c 913 | 383.332428 183.228485 356.727051 75.483215 273.053925 24.699188 c 914 | 233.603348 87.915680 l 915 | 282.130981 117.367401 297.569611 179.841415 268.211151 227.959671 c 916 | 238.852676 276.077911 175.650513 291.887817 126.534927 263.399719 c 917 | 77.419342 234.911621 60.714981 172.754181 89.089859 124.065430 c 918 | 23.842813 87.082336 l 919 | h 920 | f* 921 | n 922 | Q 923 | q 924 | 1.000000 0.000000 -0.000000 1.000000 350.540527 42.963165 cm 925 | 0.000000 0.000000 0.000000 scn 926 | 0.000000 28.316650 m 927 | 28.316620 28.316650 l 928 | 28.316620 -0.000002 l 929 | 0.000000 -0.000002 l 930 | 0.000000 28.316650 l 931 | h 932 | f* 933 | n 934 | Q 935 | q 936 | 1.000000 0.000000 -0.000000 1.000000 350.540527 576.097168 cm 937 | 0.000000 0.000000 0.000000 scn 938 | 0.000000 28.316650 m 939 | 28.316620 28.316650 l 940 | 28.316620 0.000002 l 941 | 0.000000 0.000002 l 942 | 0.000000 28.316650 l 943 | h 944 | f* 945 | n 946 | Q 947 | q 948 | 1.000000 0.000000 -0.000000 1.000000 80.067749 51.751099 cm 949 | 0.000000 0.000000 0.000000 scn 950 | 197.240051 0.000000 m 951 | 79.774101 38.421570 0.211978 148.175720 0.000423 272.087708 c 952 | -0.211142 395.999695 78.975723 506.026489 196.309784 544.851257 c 953 | 197.240051 521.746216 l 954 | 89.862946 486.216095 24.066929 385.526184 24.260534 272.129364 c 955 | 24.454149 158.732574 89.742233 58.292114 197.240051 23.131042 c 956 | 197.240051 0.000000 l 957 | h 958 | f* 959 | n 960 | Q 961 | q 962 | -1.000000 -0.000000 -0.000000 1.000000 649.329895 51.751099 cm 963 | 0.000000 0.000000 0.000000 scn 964 | 198.216492 0.000000 m 965 | 80.169022 38.421570 0.213028 148.175720 0.000425 272.087708 c 966 | -0.212188 395.999695 79.366692 506.026489 197.281616 544.851257 c 967 | 198.216492 521.746216 l 968 | 90.307816 486.216095 24.186071 385.526184 24.380636 272.129364 c 969 | 24.575209 158.732574 90.186501 58.292114 198.216492 23.131042 c 970 | 198.216492 0.000000 l 971 | h 972 | f* 973 | n 974 | Q 975 | 976 | endstream 977 | endobj 978 | 979 | 45 0 obj 980 | 21989 981 | endobj 982 | 983 | 46 0 obj 984 | << /Annots [] 985 | /Type /Page 986 | /MediaBox [ 0.000000 0.000000 2773.000000 652.000000 ] 987 | /Resources 43 0 R 988 | /Contents 44 0 R 989 | /Parent 47 0 R 990 | >> 991 | endobj 992 | 993 | 47 0 obj 994 | << /Kids [ 46 0 R ] 995 | /Count 1 996 | /Type /Pages 997 | >> 998 | endobj 999 | 1000 | 48 0 obj 1001 | << /Type /Catalog 1002 | /Pages 47 0 R 1003 | >> 1004 | endobj 1005 | 1006 | xref 1007 | 0 49 1008 | 0000000000 65535 f 1009 | 0000000010 00000 n 1010 | 0000000116 00000 n 1011 | 0000000137 00000 n 1012 | 0000000244 00000 n 1013 | 0000000265 00000 n 1014 | 0000000372 00000 n 1015 | 0000000393 00000 n 1016 | 0000000499 00000 n 1017 | 0000000520 00000 n 1018 | 0000000627 00000 n 1019 | 0000000649 00000 n 1020 | 0000000757 00000 n 1021 | 0000000779 00000 n 1022 | 0000000888 00000 n 1023 | 0000000910 00000 n 1024 | 0000001018 00000 n 1025 | 0000001040 00000 n 1026 | 0000001148 00000 n 1027 | 0000001170 00000 n 1028 | 0000001279 00000 n 1029 | 0000001301 00000 n 1030 | 0000001410 00000 n 1031 | 0000001432 00000 n 1032 | 0000001540 00000 n 1033 | 0000001562 00000 n 1034 | 0000001670 00000 n 1035 | 0000001692 00000 n 1036 | 0000001800 00000 n 1037 | 0000001822 00000 n 1038 | 0000001930 00000 n 1039 | 0000001952 00000 n 1040 | 0000002060 00000 n 1041 | 0000002082 00000 n 1042 | 0000002191 00000 n 1043 | 0000002213 00000 n 1044 | 0000002322 00000 n 1045 | 0000002344 00000 n 1046 | 0000002452 00000 n 1047 | 0000002474 00000 n 1048 | 0000002668 00000 n 1049 | 0000003706 00000 n 1050 | 0000003729 00000 n 1051 | 0000004787 00000 n 1052 | 0000004835 00000 n 1053 | 0000026882 00000 n 1054 | 0000026907 00000 n 1055 | 0000027087 00000 n 1056 | 0000027163 00000 n 1057 | trailer 1058 | << /ID [ (some) (id) ] 1059 | /Root 48 0 R 1060 | /Size 49 1061 | >> 1062 | startxref 1063 | 27224 1064 | %%EOF -------------------------------------------------------------------------------- /logos/bg-white/cc-logo-pure-black-on-bg-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-white/cc-logo-pure-black-on-bg-white.png -------------------------------------------------------------------------------- /logos/bg-white/cc-logo-pure-black-on-bg-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /logos/bg-white/cc-logo-pure-black-on-bg-white@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/bg-white/cc-logo-pure-black-on-bg-white@4x.png -------------------------------------------------------------------------------- /logos/cc-logo-black.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/cc-logo-black.fig -------------------------------------------------------------------------------- /logos/cc-logo.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccuffs/identidade-visual/31540f46ae71f1d06430dc3c6a39c87e2d729411/logos/cc-logo.fig --------------------------------------------------------------------------------