Skip to content

Commit

Permalink
Corrección de un bug en la eliminación de canción de una lista. Mejor…
Browse files Browse the repository at this point in the history
…a en la geneeración de listas de rerpoducción, optimización, extensiones, y validaciones. V3.02
  • Loading branch information
FedeManzano committed Dec 24, 2023
1 parent 915d901 commit ed96d6a
Show file tree
Hide file tree
Showing 92 changed files with 106 additions and 74 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified .vs/MediaPlayer/v17/.suo
Binary file not shown.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Toda la información de la utilización del reproductoror aquí.

Desde este enlace podemos descargar el instalador del reproductor.

:arrow_down: [Descarga Instalador v3.0.1 32 Bits](https://mega.nz/file/1JsExDoJ#MJj3dTxKAqVwwYr6gTTBbQ7B9Nnz4_BipPZOSu9ZhrI)
:arrow_down: [Descarga Instalador v3.0.2 32 Bits](https://mega.nz/file/cdM3WJ5A#m9G9VEDtbV04kVDJf1rLKikHbVRX81I2RB5krYCAfY0)

:arrow_down: [Descarga Instalador v3.0.1 64 Bits](https://mega.nz/file/VIFw3SZD#ZIjh4qUaLJLt4iiHWMpD9IOS8X7yoAV-qq614AiDzlc)
:arrow_down: [Descarga Instalador v3.0.2 64 Bits](https://mega.nz/file/pBNiEDRb#1tC28bMVX1_u0kejt1XA6gfcvhPg9okBIXiotMKDv8I)

### Formatos de audio (Esta versión)

Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ReproductorMusicaTagEditables/Controls/Menu/Menu.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<TextBlock Text="Media Player"
Style="{StaticResource tituloPrincipalLogo}"/>

<TextBlock Text="Versión 3.0.1"
<TextBlock Text="Versión 3.0.2"
Style="{StaticResource tituloSecundarioLogo}"/>
</StackPanel>
</StackPanel>
Expand Down
4 changes: 2 additions & 2 deletions ReproductorMusicaTagEditables/Manual/Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Para descargar el reproductor lo podemos hacer desde los siguientes enlaces:

Dependiendo la arquitectura de su sistema operativo deberán seleccionar una de estas dos opciones:

:arrow_down: [Descarga Instalador v3.0.1 32 Bits](https://mega.nz/file/1JsExDoJ#MJj3dTxKAqVwwYr6gTTBbQ7B9Nnz4_BipPZOSu9ZhrI)
:arrow_down: [Descarga Instalador v3.0.2 32 Bits](https://mega.nz/file/cdM3WJ5A#m9G9VEDtbV04kVDJf1rLKikHbVRX81I2RB5krYCAfY0)

:arrow_down: [Descarga Instalador v3.0.1 64 Bits](https://mega.nz/file/VIFw3SZD#ZIjh4qUaLJLt4iiHWMpD9IOS8X7yoAV-qq614AiDzlc)
:arrow_down: [Descarga Instalador v3.0.2 64 Bits](https://mega.nz/file/pBNiEDRb#1tC28bMVX1_u0kejt1XA6gfcvhPg9okBIXiotMKDv8I)


El resultado de la descarga nos va a dejar un archivo llamado `MediaPlayer.zip`.
Expand Down
2 changes: 1 addition & 1 deletion ReproductorMusicaTagEditables/MediaPlayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>53</ApplicationRevision>
<ApplicationRevision>58</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,13 @@ public static int IndexRan(this ObservableCollection<Cancion> origen)
Random r = new Random();
return r.Next(0, origen.Count);
}
public static bool LaMismaCancion(this Cancion origen, Cancion otraCancion)
{
if (otraCancion == null)
return false;
return origen.Titulo == otraCancion.Titulo && origen.Album == otraCancion.Album && origen.Artista == otraCancion.Artista;
}

}

}
1 change: 1 addition & 0 deletions ReproductorMusicaTagEditables/Mvvm/Model/Cancion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,6 @@ public int CompareTo(Cancion other)
{
return Album.CompareTo(other.Album);
}

}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

using Newtonsoft.Json;
using ReproductorMusicaTagEditables.Mvvm.ExtensionMetodos;
using ReproductorMusicaTagEditables.Mvvm.Model;
using ReproductorMusicaTagEditables.Mvvm.ViewModel.Base.Info;
using System.Collections.Generic;
Expand Down Expand Up @@ -154,7 +155,7 @@ public static List<Cancion> BlanquearListado(this List<Cancion> origen, Cancion

return origen.Where(c => File.Exists(c.Path)).Select(c =>
{
if (c.Equals(ca))
if (c.LaMismaCancion(ca))
{
c.EstadoColor = ca.EstadoColor;
c.Cantidad++;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,20 +144,14 @@ public static bool AgregarCancion(string nombreLista, Cancion c)

return true;
}

private static bool LaMismaCancion(Cancion c1, Cancion c2)
{
return c1.Titulo == c2.Titulo && c1.Artista == c2.Artista && c1.Album == c2.Album;
}

public static bool RemoverCancion(string nombreLista, Cancion c)
{
if (string.IsNullOrEmpty(nombreLista)) return false;
if (c == null) return false;
if (!ExisteLista(nombreLista)) return false;

List<Cancion> listado = nombreLista.ObtenerListadoReproduccion();
listado = listado.Where(cl => !LaMismaCancion(cl,c)).ToList();
List<Cancion> listado = nombreLista.Ruta().ObtenerListadoReproduccion();
listado = listado.Where(cl => !cl.LaMismaCancion(c)).ToList();

try
{
Expand Down Expand Up @@ -260,18 +254,18 @@ public static bool ActualizarListaReproduccion (string nombreLista)
public static bool AgregarCancionAFavoritos(Cancion c)
{
if(c == null) return false;

if (!ExisteLista("FAVORITOS"))
{
Crear("FAVORITOS");
}
c.Cantidad = 0;
if(c.Artista != "Desconocido" && c.Album != "Desconocido")
{
List<Cancion> listaCanciones = "FAVORITOS".Ruta().ObtenerListadoReproduccion();

listaCanciones.ForEach(cl =>
{
if (cl.Equals(c))
if (cl.LaMismaCancion(c))
{
c.Cantidad = cl.Cantidad;
}
Expand Down Expand Up @@ -462,7 +456,7 @@ public static string FechaCreacionDelRegalo(string nombre)
private static List<Cancion> AgregarYBlanquearCanciones(List<Cancion> listado, Cancion c)
{
listado = listado.BlanquearListado(c);
if(!listado.Exists(cl => cl.Equals(c)))
if(!listado.Exists(cl => cl.LaMismaCancion(c)))
{
listado.Add(c);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="ReproductorMusicaTagEditables.application" version="1.0.0.52" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<assemblyIdentity name="ReproductorMusicaTagEditables.application" version="1.0.0.57" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="ReproductorMusicaTagEditables" asmv2:product="ReproductorMusicaTagEditables" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="ReproductorMusicaTagEditables.exe.manifest" size="14399">
<assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.52" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.57" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>PzzXS/dCfBUeaczyrR940VP5YnV3hrL55sgKGVhKr/Q=</dsig:DigestValue>
<dsig:DigestValue>Ecjs7P2lG4YzTfJm0qbkQU1iXYqF2McaQzrlbyDPFjc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.52" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.57" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="nota-musical.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>ivn9Njg8KwfM+zcmr7uS20SYHZvSoDgdmGyB+vB6Iyo=</dsig:DigestValue>
<dsig:DigestValue>N0WoDrmDWYZzc2vQaMsDvNamRdGSxm1j51IDwbT0icQ=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.52" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" />
<asmv1:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.57" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" />
<description asmv2:iconFile="nota-musical.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
Expand Down Expand Up @@ -206,7 +206,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>ivn9Njg8KwfM+zcmr7uS20SYHZvSoDgdmGyB+vB6Iyo=</dsig:DigestValue>
<dsig:DigestValue>N0WoDrmDWYZzc2vQaMsDvNamRdGSxm1j51IDwbT0icQ=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down Expand Up @@ -252,4 +252,4 @@
<dsig:DigestValue>FihlZtVNgcNyH37Pf0Jtll3jZOm+L55ijXNjtoS2/mo=</dsig:DigestValue>
</hash>
</file>
<publisherIdentity name="CN=FEDERICO\feder" issuerKeyHash="6866c176575d2346e87517198fc8763af3e148c5" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>fjnmvtC68mMAuj8AJkXcaT0U4YQGQ6XXQIofNVGjkVU=</DigestValue></Reference></SignedInfo><SignatureValue>NplnUKriYpB0qRrSIP9c3Gl0rV5zHQdxw08TxPpl9UNo2Yh0ndZNh/MTDjS0AY1TJ9EOi6CyVWAyWvdROUta4V2L/R33ckrxU3OH/9YFyuVsezHwU8GMzjVfkSgtIQzJb+lHl1vwjQwjKh2V4Q8T+31vGniKDxdPkbKBVC/tFH4=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="5591a351351f8a40d7a5430684e1143d69dc4526003fba0063f2bad0bee6397e" Description="" Url=""><as:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.52" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=FEDERICO\feder</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>FJjVxy0UIf0DweSHROGt4APDyEPMDGPxhFkhqRxruj0=</DigestValue></Reference></SignedInfo><SignatureValue>M15orJwnlQ73TpkUnuWoVPkgk17bL5fkDi6Vvr8bKGUuAE+s9mg7bUbKxedj0njD0J1PayX2nfhlKge8bIz/K42uHRi1kw8zevjkNvhqNz3bc/qRqViwNy8j62PjQ27eNa090JzoH5C8X/LbRq0IKdn0hEo8THIpgwd7OMjV+u4=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB0TCCATqgAwIBAgIQG4l23l3ktbJLEMkkVAaIUDANBgkqhkiG9w0BAQsFADAnMSUwIwYDVQQDHhwARgBFAEQARQBSAEkAQwBPAFwAZgBlAGQAZQByMB4XDTIzMTIwMzA5MjgyOVoXDTI0MTIwMjE1MjgyOVowJzElMCMGA1UEAx4cAEYARQBEAEUAUgBJAEMATwBcAGYAZQBkAGUAcjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSkCAwEAATANBgkqhkiG9w0BAQsFAAOBgQDUfmsJLlMicMn1yGIgTb0Rl5wj033vgvIyS53Ip2kACMXmGrdszx8SPN4D9ZVf0AgUw5Jk0MU3RYioz633lXqo7luZZWC8Pk01Fm4s9qgGnJKn3wahUQUGmrkeEvjHwzalf3xdmJPPJVRd/ZmvWX+YdNStNEizngQRyNcH+wrgkw==</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
<publisherIdentity name="CN=FEDERICO\feder" issuerKeyHash="6866c176575d2346e87517198fc8763af3e148c5" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>kGDXWpocJlJ4eG7+JRG00HUyqVNoF+48PLmX15pJthY=</DigestValue></Reference></SignedInfo><SignatureValue>s4c+1AUeBFmh/QOzDAG9N7Yj//WIE8xHDklJBLQMad03ruUWRDQyqs2YNhgA2ruDYkS1rH7TYOVAIJYjFKyc4gI4+obAs7WsY8uSJjBCVomQy7auEQgiZXrQ8O45UCF6OG5ohZQY5CIq86OO2BoBmN/IX2mI8XV4fz/c4L8AOHw=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="16b6499ad797b93c3cee176853a93275d0b41125fe6e787852261c9a5ad76090" Description="" Url=""><as:assemblyIdentity name="ReproductorMusicaTagEditables.exe" version="1.0.0.57" publicKeyToken="29c2e5a71cccef7d" language="neutral" processorArchitecture="msil" type="win32" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=FEDERICO\feder</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>DMi+o/2MZGDzoaYMlMqBi7yOznVSivQFr8PYLIUrXzQ=</DigestValue></Reference></SignedInfo><SignatureValue>kjhZQAXu9BGJVbfsjLOsoiZfG4hEkfz/7lZOFx5uKJlISD/WXqKmCCMdcIh+N8lOLKWqdDL9GfFHja+2OtZNj7nmtjvKRIJZ+VXLdJy3UGZtKvLzGuzHnxsUvsCZbzPN2jlHZL9uX2pnMSdpa5BLtOojqCmJl5h0FyqL5AwIyJw=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSk=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB0TCCATqgAwIBAgIQG4l23l3ktbJLEMkkVAaIUDANBgkqhkiG9w0BAQsFADAnMSUwIwYDVQQDHhwARgBFAEQARQBSAEkAQwBPAFwAZgBlAGQAZQByMB4XDTIzMTIwMzA5MjgyOVoXDTI0MTIwMjE1MjgyOVowJzElMCMGA1UEAx4cAEYARQBEAEUAUgBJAEMATwBcAGYAZQBkAGUAcjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA4iNq24i3Z6luLkrIqFFkoG5+wr96eH1pXaHsfIKoSR92kh23+6PLMS6HN4i/TC7ZbFaEg4lz5DnX4QYiJLxJR+69D0omATm5QUaYmGGrZSWGZeqc9ErSkVfXBVEZ0RY508VUCyklm/BHS2StXri+GjwKB64MS/LINcoR9U3phSkCAwEAATANBgkqhkiG9w0BAQsFAAOBgQDUfmsJLlMicMn1yGIgTb0Rl5wj033vgvIyS53Ip2kACMXmGrdszx8SPN4D9ZVf0AgUw5Jk0MU3RYioz633lXqo7luZZWC8Pk01Fm4s9qgGnJKn3wahUQUGmrkeEvjHwzalf3xdmJPPJVRd/ZmvWX+YdNStNEizngQRyNcH+wrgkw==</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
Loading

0 comments on commit ed96d6a

Please sign in to comment.